]> git.lyx.org Git - lyx.git/blob - lib/generate_contributions.py
Ouput warning of missing info
[lyx.git] / lib / generate_contributions.py
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 '''
5 file generate_contributions.py
6 This file is part of LyX, the document processor.
7 Licence details can be found in the file COPYING.
8
9 author Angus Leeming
10 Full author contact details are available in file CREDITS
11
12 This script both stores and manipulates the raw data needed to
13 create CREDITS, credits.php and blanket-permission.php
14
15 Usage:
16 $ python generate_contributions.py \
17   CREDITS \
18   credits.php \
19   blanket-permission.php
20
21 where the arguments are the names of the generated files.
22 '''
23
24 import codecs, sys
25
26 def xml_escape(s):
27     s = s.replace("&", "&")
28     s = s.replace("<", "&lt;")
29     s = s.replace(">", "&gt;")
30     s = s.replace('"', '&quot;')
31     return s
32
33
34 class contributer:
35      def __init__(self,
36                   name,
37                   contact,
38                   licence,
39                   permission_title,
40                   archive_id,
41                   permission_date,
42                   credit):
43           self.name = name
44           self.contact = contact
45           self.licence = licence
46           self.permission_title = permission_title
47           self.archive_id = archive_id
48           self.permission_date = permission_date
49           self.credit = credit
50
51
52      def as_txt_credits(self):
53           result = [ '@b%s\n' % self.name ]
54           if len(self.contact) != 0:
55                if self.contact.find("http") != -1:
56                     result.append('@i%s\n' % self.contact)
57                else:
58                     ename, address = self.contact.split(" () ", 1)
59                     address = address.replace(" ! ", ".")
60                     contact = "%s@%s" % (ename, address)
61                     result.append('@iE-mail: %s\n' % contact)
62           result.append('   %s\n' % self.credit)
63           return "".join(result)
64
65
66      def as_php_credits(self):
67           return '''
68 contrib("%s",
69         "%s",
70         "%s");
71 ''' % ( xml_escape(self.name),
72         xml_escape(self.contact),
73         xml_escape(self.credit) )
74
75
76      def as_php_blanket(self):
77           return '''
78 contrib("%s",
79         "%s",
80         "%s",
81         "%s",
82         "%s");
83 ''' % ( xml_escape(self.name),
84         xml_escape(self.contact),
85         xml_escape(self.permission_title),
86         xml_escape(self.archive_id),
87         xml_escape(self.permission_date) )
88
89
90 def error(message):
91      if message:
92           sys.stderr.write(message + '\n')
93      sys.exit(1)
94
95
96 def usage(prog_name):
97      return "Usage: %s <CREDITS> <credits.php> <blanket-permission.php" % prog_name
98
99
100 def collate_incomplete(contributers):
101
102     missing_credit = []
103     missing_licence = []
104     for contributer in contributers:
105           if len(contributer.credit) == 0:
106               missing_credit.append(contributer.name)
107           if len(contributer.licence) == 0:
108               missing_licence.append(contributer.name)
109
110     return '''WARNING!
111 The following contributers to not have a CREDITS entry:
112     %s
113
114 These ones have no explicit licence statement:
115     %s
116 ''' % ( ",\n    ".join(missing_credit), ",\n    ".join(missing_licence))
117
118
119 def as_txt_credits(contributers):
120      results = []
121
122      for contributer in contributers:
123           if len(contributer.credit) != 0:
124               results.append(contributer.as_txt_credits())
125
126      results.append('''
127
128 If your name doesn't appear here although you've done
129 something for LyX, or your entry is wrong or incomplete,
130 just drop some e-mail to lyx@lyx.org. Thanks.
131 ''')
132
133      return "".join(results)
134
135
136 def header(title, file):
137      return '''<?php
138 // WARNING! This file is autogenerated.
139 // Any changes to it will be lost.
140 // Please modify generate_contributions.py direct.
141
142 // What's the title of the page?
143 $title = "%s";
144 // Who is the author?
145 $author="lyx-devel@lists.lyx.org";
146 // Full name of this file (relative path from LyX home page)
147 $file_full="about/%s";
148
149 include("start.php3");
150 ?>
151 ''' % ( title, file )
152
153
154 def footer():
155      return '''
156 <?php
157 include("end.php3");
158 ?>
159 '''
160
161 def as_php_credits(contributers, file):
162      results = []
163
164      results.append(header("CREDITS", file))
165
166      results.append('''
167 <?
168 function contrib($name, $email, $msg) {
169
170 echo "
171
172  <dt>
173   <b>${name}</b>";
174
175 if (isset($email) && $email != "")
176         echo "  <i>&lt;${email}&gt;</i>";
177
178 echo " </dt>
179  <dd>
180   ${msg}
181  </dd>";
182 }
183
184 ?>
185
186 <p>
187      If your name doesn't appear here although you've done
188      something for LyX, or your entry is wrong or incomplete,
189      just drop an e-mail to the
190      <a href="mailto:lyx-devel@lists.lyx.org">lyx-devel</a>
191      mailing list. Thanks.
192 </p>
193
194 <dl>
195 <?php''')
196
197      for contributer in contributers:
198           if len(contributer.credit) != 0:
199                results.append(contributer.as_php_credits())
200
201      results.append('''?>
202
203 </dl>
204 ''')
205      results.append(footer())
206      return "".join(results)
207
208
209 def as_php_blanket(contributers, file):
210      results = []
211
212      results.append(header("Permissions", file))
213
214      results.append('''
215 <?
216 function contrib($name, $email, $msg_title, $msg_ref, $date) {
217
218 echo "
219
220  <dt>
221   <b>${name}</b>
222   <i>&lt;${email}&gt;</i>
223  </dt>
224  <dd>
225   See the lyx-devel mailing list message
226   &quot;";
227
228 if (isset($msg_ref) && $msg_ref != "") {
229         $msg_ref = htmlspecialchars("$msg_ref");
230         echo "<a href=\\"http://marc.theaimsgroup.com/?l=lyx-devel&amp;${msg_ref}\\">${msg_title}</a>";
231 } else {
232         echo "${msg_title}";
233 }
234
235 echo "&quot;
236   of $date.
237  </dd>";
238 }
239
240 ?>
241
242 <p>
243      The following people hereby grant permission to licence their
244      contributions to LyX under the
245      <a href="http://www.opensource.org/licenses/gpl-license.php">
246      Gnu General Public Licence</a>, version 2 or later.
247 </p>
248
249 <dl>
250 <?php''')
251
252      for contributer in contributers:
253           if contributer.licence == "GPL":
254                results.append(contributer.as_php_blanket())
255
256      results.append('''?>
257 </dl>
258
259 <p>
260      The following people hereby grant permission to licence their
261      contributions to LyX under the
262      <a href="http://www.opensource.org/licenses/artistic-license.php">
263      Artistic Licence</a>.
264 </p>
265
266 <dl>
267 <?php''')
268
269      for contributer in contributers:
270           if contributer.licence == "Artistic":
271                results.append(contributer.as_php_blanket())
272
273      results.append('''?>
274 </dl>
275 ''')
276
277      results.append(footer())
278      return "".join(results)
279
280
281 def main(argv, contributers):
282      if len(argv) != 4:
283           error(usage(argv[0]))
284
285      txt_credits_data = unicode(as_txt_credits(contributers)) \
286                         .encode("latin1", "xmlcharrefreplace")
287      # This is a fudge to give a 'reasonable' spelling of Matej's name.
288      txt_credits_data = txt_credits_data.replace('&#283;', 'e')
289      txt_credits = open(argv[1], "w")
290      txt_credits.write(txt_credits_data)
291
292      php_credits_data = unicode(as_php_credits(contributers, argv[2])).encode("utf-8")
293      php_credits = open(argv[2], "w")
294      php_credits.write(php_credits_data)
295
296      php_blanket_data = unicode(as_php_blanket(contributers, argv[3])).encode("utf-8")
297      php_blanket = open(argv[3], "w")
298      php_blanket.write(php_blanket_data)
299
300      warning_data =  unicode(collate_incomplete(contributers) + '\n').encode("utf-8")
301      sys.stderr.write(warning_data)
302
303
304 # Store the raw data.
305 contributers = [
306
307      contributer(u"Maarten Afman",
308                  "info () afman ! net",
309                  "GPL",
310                  "Fwd: Re: The LyX licence",
311                  "m=110958096916679",
312                  "27 February 2005",
313                  u"Dutch translation team member"),
314
315      contributer(u"Asger Alstrup",
316                  "aalstrup () laerdal ! dk",
317                  "GPL",
318                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
319                  "m=110899716913300",
320                  "21 February 2005",
321                  u"General hacking of user interface stuff and those other bits and pieces"),
322
323      contributer(u"Pascal André",
324                  "andre () via ! ecp ! fr",
325                  "GPL",
326                  "Re: The LyX licence --- a gentle nudge",
327                  "m=111263406200012",
328                  "1 April 2005",
329                  u"External style definition files, linuxdoc sgml support and more ftp-site ftp.lyx.org"),
330
331      contributer(u"João Luis Meloni Assirati",
332                  "assirati () nonada ! if ! usp ! br",
333                  "GPL",
334                  "Re: The LyX licence",
335                  "m=110918749022256",
336                  "23 February 2005",
337                  u"Added support for unix sockets and thence the 'inverse DVI' feature"),
338
339      contributer(u"Yves Bastide",
340                  "yves.bastide () irisa ! fr",
341                  "GPL",
342                  "Re: The LyX licence",
343                  "m=110959913631678",
344                  "28 February 2005",
345                  u"Bug fixes"),
346
347      contributer(u"Heinrich Bauer",
348                  "heinrich.bauer () t-mobile ! de",
349                  "GPL",
350                  "Fwd: Re: The LyX licence",
351                  "m=110910430117798",
352                  "22 February 2005",
353                  u"Fixes for dvi output original version of page selection for printing"),
354
355      contributer(u"Georg Baum",
356                  "georg.baum () post ! rwth-aachen ! de",
357                  "GPL",
358                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
359                  "m=110899912526043",
360                  "21 February 2005",
361                  u"tex2lyx improvements"),
362
363      contributer(u"Hans Bausewein",
364                  "hans () comerwell ! xs4all ! nl",
365                  "GPL",
366                  "Re: The LyX licence --- a gentle nudge",
367                  "m=111262999400394",
368                  "2 April 2005",
369                  '"case insensitive" and "complete word" search'),
370
371      contributer(u"Graham Biswell",
372                  "graham () gbiswell ! com",
373                  "GPL",
374                  "Re: The LyX licence",
375                  "m=111269177728853",
376                  "5 April 2005",
377                  u"Small bugfixes that were very hard to find"),
378
379      contributer(u"Lars Gullik Bjønnes",
380                  "larsbj () gullik ! net",
381                  "GPL",
382                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
383                  "m=110907078027047",
384                  "22 February 2005",
385                  u"Improvements to user interface (menus and keyhandling) including configurabletoolbar, and a few other (not so) minor things, like rewriting most of the LyX kernel. Also current source maintainer"),
386
387      contributer(u"Alfredo Braunstein",
388                  "abraunst () lyx ! org",
389                  "GPL",
390                  "Re: The LyX licence",
391                  "m=110927069513172",
392                  "24 February 2005",
393                  u"A (pseudo) threaded graphics loader queue, lots of fixes, etc."),
394
395      contributer(u"Christian Buescher",
396                  "christian.buescher () uni-bielefeld ! de",
397                  "",
398                  "",
399                  "",
400                  "",
401                  u"User-definable keys, lyxserver and more"),
402
403      contributer(u"Johnathan Burchill",
404                  "jkerrb () users ! sourceforge ! net",
405                  "GPL",
406                  "Re: The LyX licence",
407                  "m=110908472818670",
408                  "22 February 2005",
409                  u"Ported John Levon's original 'change tracking' code to later versions of LyX.Numerous bug fixes thereof."),
410
411      contributer(u"Francesc Burrull i Mestres",
412                  "fburrull () mat ! upc ! es",
413                  "",
414                  "",
415                  "",
416                  "",
417                  u"Catalan translation"),
418
419      contributer(u"Matěj Cepl",
420                  "matej () ceplovi ! cz",
421                  "GPL",
422                  "Re: The LyX licence",
423                  "m=110913090232039",
424                  "22 February 2005",
425                  u"Improvements to the czech keymaps"),
426
427      contributer(u"Albert Chin",
428                  "lyx-devel () mlists ! thewrittenword ! com",
429                  "GPL",
430                  "Re: The LyX licence --- a gentle nudge",
431                  "m=111220294831831",
432                  "30 March 2005",
433                  u"Bug fixes"),
434
435      contributer(u"Claudio Coco",
436                  "lacocio () iol ! it",
437                  "",
438                  "",
439                  "",
440                  "",
441                  u"Italian translation"),
442
443      contributer(u"Matthias Kalle Dalheimer",
444                  "kalle () kdab ! net",
445                  "GPL",
446                  "Re: The LyX licence",
447                  "m=110908857130107",
448                  "22 February 2005",
449                  u"Qt2 port"),
450
451      contributer(u"Matthias Ettrich",
452                  "ettrich () trolltech ! com",
453                  "GPL",
454                  "Fwd: Re: The LyX licence",
455                  "m=110959638810040",
456                  "28 February 2005",
457                  u"Started the project, implemented the early versions, various improvements including undo/redo, tables, and much, much more"),
458
459      contributer(u"Baruch Even",
460                  "baruch () ev-en ! org",
461                  "GPL",
462                  "Re: The LyX licence",
463                  "m=110936007609786",
464                  "25 February 2005",
465                  u"New graphics handling scheme and more"),
466
467      contributer(u"Ronald Florence",
468                  "ron () 18james ! com",
469                  "GPL",
470                  "Re: The LyX licence --- a gentle nudge",
471                  "m=111262821108510",
472                  "31 March 2005",
473                  u"Maintainer of the OS X port(s)"),
474
475      contributer(u"Eitan Frachtenberg",
476                  "sky8an () gmail ! com",
477                  "GPL",
478                  "Re: [PATCH] BibTeX annotation support",
479                  "m=111130799028250",
480                  "20 March 2005",
481                  u""),
482
483      contributer(u"John Michael Floyd",
484                  "jmf () pwd ! nsw ! gov ! au",
485                  "",
486                  "",
487                  "",
488                  "",
489                  u"Bug fix to the spellchecker"),
490
491      contributer(u"Edscott Wilson Garcia",
492                  "edscott () xfce ! org",
493                  "GPL",
494                  "Re: The LyX licence --- a gentle nudge",
495                  "m=111219295119021",
496                  "30 March 2005",
497                  u"Bug fixes"),
498
499      contributer(u"Stefano Ghirlanda",
500                  "stefano.ghirlanda () unibo ! it",
501                  "GPL",
502                  "Re: The LyX licence",
503                  "m=110959835300777",
504                  "28 February 2005",
505                  u"Improvements to lyxserver; LyX-Client perl package"),
506
507      contributer(u"Hartmut Goebel",
508                  "h.goebel () crazy-compilers ! com",
509                  "GPL",
510                  "Re: The LyX licence --- a gentle nudge",
511                  "m=111225910223564",
512                  "30 March 2005",
513                  u"Improvements to Koma-Script classes"),
514
515      contributer(u"Hartmut Haase",
516                  "hha4491 () atomstromfrei ! de",
517                  "GPL",
518                  "Re: The LyX licence",
519                  "m=110915427710167",
520                  "23 February 2005",
521                  u"German translation of the documentation"),
522
523      contributer(u"Helge Hafting",
524                  "helgehaf () aitel ! hist ! no",
525                  "GPL",
526                  "Re: The LyX licence",
527                  "m=110916171925288",
528                  "23 February 2005",
529                  u"Norwegian documentation and localization"),
530
531      contributer(u"Bennett Helm",
532                  "bennett.helm () fandm ! edu",
533                  "GPL",
534                  "Re: The LyX licence",
535                  "m=110907988312372",
536                  "22 February 2005",
537                  u"Maintainer of the OSX ports, taking over from Ronald Florence"),
538
539      contributer(u"Claus Hentschel",
540                  "claus.hentschel () mbau ! fh-hannover ! de",
541                  "",
542                  "",
543                  "",
544                  "",
545                  u"Win32 port of LyX 1.1.x"),
546
547      contributer(u"Claus Hindsgaul",
548                  "claus_h () image ! dk",
549                  "GPL",
550                  "Re: The LyX licence",
551                  "m=110908607416324",
552                  "22 February 2005",
553                  u"Danish translation"),
554
555      contributer(u"Bernard Hurley",
556                  "bernard () fong-hurley ! org ! uk",
557                  "GPL",
558                  "Re: The LyX licence --- a gentle nudge",
559                  "m=111218682804142",
560                  "30 March 2005",
561                  u"Fixes to literate programming support"),
562
563      contributer(u"Bernhard Iselborn",
564                  "bernhard.iselborn () sap ! com",
565                  "GPL",
566                  "RE: The LyX licence",
567                  "m=111268306522212",
568                  "5 April 2005",
569                  u"Some minor bug-fixes, FAQ, linuxdoc sgml support"),
570
571      contributer(u"Michal Jaegermann",
572                  "michal () ellpspace ! math ! ualberta ! ca",
573                  "GPL",
574                  "Re: The LyX licence",
575                  "m=110909853626643",
576                  "22 February 2005",
577                  u"Fix to a very hard-to-find egcs bug that crashed LyX on alpha architecture"),
578
579      contributer(u"David L. Johnson",
580                  "david.johnson () lehigh ! edu",
581                  "GPL",
582                  "GPL",
583                  "m=110908492016593",
584                  "22 February 2005",
585                  u"Public relations, feedback, documentation and support"),
586
587      contributer(u"Robert van der Kamp",
588                  "robnet () wxs ! nl",
589                  "GPL",
590                  "Re: The LyX licence",
591                  "m=111268623330209",
592                  "5 April 2005",
593                  u"Various small things and code simplifying"),
594
595      contributer(u"Amir Karger",
596                  "amirkarger () gmail ! com",
597                  "GPL",
598                  "Re: The LyX licence",
599                  "m=110912688520245",
600                  "23 February 2005",
601                  u"Tutorial, reLyX: the LaTeX to LyX translator"),
602
603      contributer(u"Carmen Kauffmann",
604                  "",
605                  "",
606                  "",
607                  "",
608                  "",
609                  u"Original name that is now two character shorter"),
610
611      contributer(u"KDE Artists",
612                  "http://artist.kde.org/",
613                  "",
614                  "",
615                  "",
616                  "",
617                  u"Authors of several of the icons LyX uses"),
618
619      contributer(u"Andreas Klostermann",
620                  "andreas_klostermann () web ! de",
621                  "GPL",
622                  "blanket-permission",
623                  "m=111054675600338",
624                  "11 March 2005",
625                  u""),
626
627      contributer(u"Michael Koziarski",
628                  "koziarski () gmail ! com",
629                  "GPL",
630                  "Re: The LyX licence",
631                  "m=110909592017966",
632                  "22 February 2005",
633                  u"Gnome port"),
634
635      contributer(u"Peter Kremer",
636                  "kremer () bme-tel ! ttt ! bme ! hu",
637                  "",
638                  "",
639                  "",
640                  "",
641                  u"Hungarian translation and bind file for menu shortcuts"),
642
643      contributer(u"Bernd Kümmerlen",
644                  "bkuemmer () gmx ! net",
645                  "GPL",
646                  "Re: The LyX licence",
647                  "m=110934318821667",
648                  "25 February 2005",
649                  u"Initial version of the koma-script textclasses"),
650
651      contributer(u"Felix Kurth",
652                  "felix () fkurth ! de",
653                  "GPL",
654                  "Re: The LyX licence",
655                  "m=110908918916109",
656                  "22 February 2005",
657                  u"Support for textclass g-brief2"),
658
659      contributer(u"Rob Lahaye",
660                  "lahaye () snu ! ac ! kr",
661                  "GPL",
662                  "Re: The LyX licence",
663                  "m=110908714131711",
664                  "22 February 2005",
665                  u"Xforms dialogs and GUI related code"),
666
667      contributer(u"Jean-Marc Lasgouttes",
668                  "jean-marc.lasgouttes () inria ! fr",
669                  "GPL",
670                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
671                  "m=110899928510452",
672                  "21 February 2005",
673                  u"configure and Makefile-stuff and more"),
674
675      contributer(u"Victor Lavrenko",
676                  "lyx () lavrenko ! pp ! ru",
677                  "",
678                  "",
679                  "",
680                  "",
681                  u"Russian translation"),
682
683      contributer(u"Angus Leeming",
684                  "leeming () lyx ! org",
685                  "GPL",
686                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
687                  "m=110899671520339",
688                  "21 February 2005",
689                  u"GUI-I-fication of insets and more"),
690
691      contributer(u"Edwin Leuven",
692                  "e.leuven () uva ! nl",
693                  "GPL",
694                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
695                  "m=110899657530749",
696                  "21 February 2005",
697                  u"Qt2 frontend GUI-I-fication of several popups"),
698
699      contributer(u"John Levon",
700                  "levon () movementarian ! org",
701                  "GPL",
702                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
703                  "m=110899535600562",
704                  "21 February 2005",
705                  u"Qt2 frontend, GUII work, bugfixes"),
706
707      contributer(u"Ling Li",
708                  "ling () caltech ! edu",
709                  "GPL",
710                  "Re: LyX 1.4cvs crash on Fedora Core 3",
711                  "m=111204368700246",
712                  "28 March 2005",
713                  u"Added native support for \makebox to mathed. Several bug fixes, both to the source code and to the llncs layout file"),
714
715      contributer(u"José Matos",
716                  "jamatos () fc ! up ! pt",
717                  "GPL",
718                  "Re: The LyX licence",
719                  "m=110907762926766",
720                  "22 February 2005",
721                  u"linuxdoc sgml support"),
722
723      contributer(u"Roman Maurer",
724                  "roman.maurer () amis ! net",
725                  "GPL",
726                  "Re: The LyX licence",
727                  "m=110952616722307",
728                  "27 February 2005",
729                  u"Slovenian translation coordinator"),
730
731      contributer(u"Tino Meinen",
732                  "a.t.meinen () chello ! nl",
733                  "",
734                  "",
735                  "",
736                  "",
737                  u"Dutch translation coordinator"),
738
739      contributer(u"Iñaki Larrañaga Murgoitio",
740                  "dooteo () euskalgnu ! org",
741                  "GPL",
742                  "Re: The LyX licence",
743                  "m=110908606525783",
744                  "22 February 2005",
745                  u"Basque documentation and localization"),
746
747      contributer(u"Daniel Naber",
748                  "daniel.naber () t-online ! de",
749                  "GPL",
750                  "Re: The LyX licence",
751                  "m=110911176213928",
752                  "22 February 2005",
753                  u"Improvements to find&replace popup"),
754
755      contributer(u"Pablo De Napoli",
756                  "pdenapo () mate ! dm ! uba ! ar",
757                  "GPL",
758                  "Re: The LyX licence",
759                  "m=110908904400120",
760                  "22 February 2005",
761                  u"Math panel dialogs"),
762
763      contributer(u"Dirk Niggemann",
764                  "dabn100 () cam ! ac ! uk",
765                  "",
766                  "",
767                  "",
768                  "",
769                  u"config. handling enhancements, bugfixes, printer enhancements path mingling"),
770
771      contributer(u"Carl Ollivier-Gooch",
772                  "cfog () mech ! ubc ! ca",
773                  "GPL",
774                  "Re: The LyX licence --- a gentle nudge",
775                  "m=111220662413921",
776                  "30 March 2005",
777                  u"Support for two-column figure (figure*) and table (table*) environments.  Fixed minibuffer entry of floats."),
778
779      contributer(u'Panayotis "PAP" Papasotiriou',
780                  "papasot () upatras ! gr",
781                  "GPL",
782                  "Re: The LyX licence",
783                  "m=110933552929119",
784                  "25 February 2005",
785                  u"Support for kluwer and ijmpd document classes"),
786
787      contributer(u"Joacim Persson",
788                  "sp2joap1 () ida ! his ! se",
789                  "",
790                  "",
791                  "",
792                  "",
793                  u"po-file for Swedish, a tool for picking shortcuts, bug reports and hacking atrandom"),
794
795      contributer(u"Zvezdan Petkovic",
796                  "zpetkovic () acm ! org",
797                  "GPL",
798                  "Re: The LyX licence",
799                  "m=111276877900892",
800                  "6 April 2005",
801                  u"Better support for serbian and serbocroatian"),
802
803      contributer(u"Geoffroy Piroux",
804                  "piroux () fyma ! ucl ! ac ! be",
805                  "",
806                  "",
807                  "",
808                  "",
809                  u"Mathematica backend for mathed"),
810
811      contributer(u"Neoklis Polyzotis",
812                  "alkis () soe ! ucsc ! edu",
813                  "GPL",
814                  "Fwd: Re: The LyX licence",
815                  "m=111039215519777",
816                  "9 March 2005",
817                  u"Keymap work"),
818
819      contributer(u"André Pönitz",
820                  "andre.poenitz () mathematik ! tu-chemnitz ! de",
821                  "GPL",
822                  "Re: The LyX licence",
823                  "m=111143534724146",
824                  "21 March 2005",
825                  u"mathed rewrite to use STL file io with streams --export and --import command line options"),
826
827      contributer(u"Kornelia Pönitz",
828                  "kornelia.poenitz () mathematik ! tu-chemnitz ! de",
829                  "GPL",
830                  "Re: The LyX licence",
831                  "m=111121553103800",
832                  "19 March 2005",
833                  u"heavy mathed testing provided siamltex document class"),
834
835      contributer(u"Bernhard Psaier",
836                  "",
837                  "",
838                  "",
839                  "",
840                  "",
841                  u"Designer of the LyX-Banner"),
842
843      contributer(u"Thomas Pundt",
844                  "thomas () pundt ! de",
845                  "GPL",
846                  "Re: The LyX licence",
847                  "m=111277917703326",
848                  "6 April 2005",
849                  u"initial configure script"),
850
851      contributer(u"Allan Rae",
852                  "rae () itee ! uq ! edu ! au",
853                  "GPL",
854                  "lyx-1.3.6cvs configure.in patch",
855                  "m=110905169512662",
856                  "21 February 2005",
857                  u"GUI-I architect, LyX PR head, LDN, bug reports/fixes, Itemize Bullet Selection, xforms-0.81 + gcc-2.6.3 compatibility"),
858
859      contributer(u"Adrien Rebollo",
860                  "adrien.rebollo () gmx ! fr",
861                  "GPL",
862                  "Re: The LyX licence",
863                  "m=110918633227093",
864                  "23 February 2005",
865                  u"French translation of the docs; latin 3, 4 and 9 support"),
866
867      contributer(u"Garst R. Reese",
868                  "garstr () isn ! net",
869                  "GPL",
870                  "blanket-permission.txt:",
871                  "m=110911480107491",
872                  "22 February 2005",
873                  u"provided hollywood and broadway classes for writing screen scripts and plays"),
874
875      contributer(u"Ruurd Reitsma",
876                  "rareitsma () yahoo ! com",
877                  "GPL",
878                  "Fwd: Re: The LyX licence",
879                  "m=110959179412819",
880                  "28 February 2005",
881                  u"Creator of the native port of LyX to Windows"),
882
883      contributer(u"Bernd Rellermeyer",
884                  "100.41728 () germanynet ! de",
885                  "",
886                  "",
887                  "",
888                  "",
889                  u"Support for Koma-Script family of classes"),
890
891      contributer(u"Michael Ressler",
892                  "mike.ressler () alum ! mit ! edu",
893                  "GPL",
894                  "Re: The LyX licence",
895                  "m=110926603925431",
896                  "24 February 2005",
897                  u"documentation maintainer, AASTeX support"),
898
899      contributer(u"Christian Ridderström",
900                  "christian.ridderstrom () home ! se",
901                  "GPL",
902                  "Re: The LyX licence",
903                  "m=110910933124056",
904                  "22 February 2005",
905                  u"The driving force behind, and maintainer of, the LyX wiki wiki."),
906
907      contributer(u"Eulogio Serradilla Rodríguez",
908                  "eulogio.sr () terra ! es",
909                  "GPL",
910                  "Re: The LyX licence",
911                  "m=110915313018478",
912                  "23 February 2005",
913                  u"contribution to the spanish internationalization"),
914
915      contributer(u"Michael Schmitt",
916                  "michael.schmitt () teststep ! org",
917                  "GPL",
918                  "Re: The LyX licence",
919                  "m=110909251110103",
920                  "22 February 2005",
921                  u"lots of bug reports and purify runs"),
922
923      contributer(u"Hubert Schreier",
924                  "schreier () sc ! edu",
925                  "",
926                  "",
927                  "",
928                  "",
929                  u"spellchecker (ispell frontend); beautiful document-manager based on the simple table of contents (removed)"),
930
931      contributer(u"Ivan Schreter",
932                  "schreter () kdk ! sk",
933                  "",
934                  "",
935                  "",
936                  "",
937                  u"international support and kbmaps for slovak, czech, german, ... wysiwyg figure"),
938
939      contributer(u"Miyata Shigeru",
940                  "miyata () kusm ! kyoto-u ! ac ! jp",
941                  "",
942                  "",
943                  "",
944                  "",
945                  u"OS/2 port"),
946
947      contributer(u"Alejandro Aguilar Sierra",
948                  "asierra () servidor ! unam ! mx",
949                  "GPL",
950                  "Fwd: Re: The LyX licence",
951                  "m=110918647812358",
952                  "23 February 2005",
953                  u"Fast parsing with lyxlex, pseudoactions, mathpanel, Math Editor, combox and more"),
954
955      contributer(u"Lior Silberman",
956                  "lior () princeton ! edu",
957                  "GPL",
958                  "Fwd: Re: The LyX licence",
959                  "m=110910432427450",
960                  "22 February 2005",
961                  u"Tweaks to various XForms dialogs. Implemented the --userdir command line option, enabling LyX to run with multiple configurations for different users. Implemented the original code to make colours for diferent inset properties configurable."),
962
963      contributer(u"Andre Spiegel",
964                  "spiegel () gnu ! org",
965                  "GPL",
966                  "Re: The LyX licence",
967                  "m=110908534728505",
968                  "22 February 2005",
969                  u"vertical spaces"),
970
971      contributer(u"Jürgen Spitzmüller",
972                  "juergen.sp () t-online ! de",
973                  "GPL",
974                  "Re: The LyX licence",
975                  "m=110907530127164",
976                  "22 February 2005",
977                  u"Qt frontend, bugfixes"),
978
979      contributer(u"John Spray",
980                  "jcs116 () york ! ac ! uk",
981                  "GPL",
982                  "Re: The LyX licence",
983                  "m=110909415400170",
984                  "22 February 2005",
985                  u"Gtk frontend"),
986
987      contributer(u"Ben Stanley",
988                  "ben.stanley () exemail ! com ! au",
989                  "GPL",
990                  "Re: The LyX licence",
991                  "m=110923981012056",
992                  "24 February 2005",
993                  u"fix bugs with error insets placement"),
994
995      contributer(u"David Suárez de Lis",
996                  "excalibor () iname ! com",
997                  "",
998                  "",
999                  "",
1000                  "",
1001                  u"maintaining es.po since v1.0.0 and other small i18n issues small fixes"),
1002
1003      contributer(u"Peter Sütterlin",
1004                  "p.suetterlin () astro ! uu ! nl",
1005                  "GPL",
1006                  "Re: The LyX licence",
1007                  "m=110915086404972",
1008                  "23 February 2005",
1009                  u"aapaper support, german documentation translation, bug reports"),
1010
1011      contributer(u"Kayvan Aghaiepour Sylvan",
1012                  "kayvan () sylvan ! com",
1013                  "GPL",
1014                  "Re: The LyX licence",
1015                  "m=110908748407087",
1016                  "22 February 2005",
1017                  u"noweb2lyx and reLyX integration of noweb files. added Import->Noweb and key bindings to menus"),
1018
1019      contributer(u"Reuben Thomas",
1020                  "rrt () sc3d ! org",
1021                  "GPL",
1022                  "Re: The LyX licence",
1023                  "m=110911018202083",
1024                  "22 February 2005",
1025                  u"encts document class lots of useful bug reports"),
1026
1027      contributer(u"Dekel Tsur",
1028                  "dtsur () cs ! ucsd ! edu",
1029                  "GPL",
1030                  "Fwd: Re: The LyX licence",
1031                  "m=110910437519054",
1032                  "22 February 2005",
1033                  u"Hebrew support, general file converter, many many bug fixes"),
1034
1035      contributer(u"Matthias Urlichs",
1036                  "smurf () smurf ! noris ! de",
1037                  "GPL",
1038                  "Re: The LyX licence",
1039                  "m=110912859312991",
1040                  "22 February 2005",
1041                  u"bug reports and small fixes"),
1042
1043      contributer(u"H. Turgut Uyar",
1044                  "uyar () ce ! itu ! edu ! tr",
1045                  "GPL",
1046                  "Re: The LyX licence",
1047                  "m=110917146423892",
1048                  "23 February 2005",
1049                  u"turkish kbmaps"),
1050
1051      contributer(u"Marko Vendelin",
1052                  "markov () ioc ! ee",
1053                  "GPL",
1054                  "Re: The LyX licence",
1055                  "m=110909439912594",
1056                  "22 February 2005",
1057                  u"Gnome frontend"),
1058
1059      contributer(u"Martin Vermeer",
1060                  "martin.vermeer () hut ! fi",
1061                  "GPL",
1062                  "Re: The LyX licence",
1063                  "m=110907543900367",
1064                  "22 February 2005",
1065                  u"support for optional argument in sections/captions svjour/svjog, egs and llncs document classes Lot of bug hunting (and fixing!)"),
1066
1067      contributer(u"Jürgen Vigna",
1068                  "jug () lyx ! org",
1069                  "GPL",
1070                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1071                  "m=110899839906262",
1072                  "21 February 2005",
1073                  u"complete rewrite of the tabular, text inset fax- and Ascii-Export support iletter and dinbrief support"),
1074
1075      contributer(u"Pauli Virtanen",
1076                  "pauli.virtanen () hut ! fi",
1077                  "GPL",
1078                  "Re: The LyX licence",
1079                  "m=110918662408397",
1080                  "23 February 2005",
1081                  u"Finnish localization of the interface"),
1082
1083      contributer(u"Herbert Voß",
1084                  "herbert.voss () alumni ! tu-berlin ! de",
1085                  "GPL",
1086                  "Fwd: Re: The LyX licence",
1087                  "m=110910439013234",
1088                  "22 February 2005",
1089                  u"The one who answers all questions on lyx-users mailing list and maintains www.lyx.org/help/ Big insetgraphics and bibliography cleanups"),
1090
1091      contributer(u"Andreas Vox",
1092                  "avox () arcor ! de",
1093                  "GPL",
1094                  "Re: The LyX licence",
1095                  "m=110907443424620",
1096                  "22 February 2005",
1097                  u"Bug fixes, feedback on LyX behaviour on the Mac, and improvements to DocBook export"),
1098
1099      contributer(u"John P. Weiss",
1100                  "jpweiss () frontiernet ! net",
1101                  "Artistic",
1102                  "Re: The LyX licence",
1103                  "m=110913490414280",
1104                  "23 February 2005",
1105                  u"Bugreports and suggestions, slides class support, editor of the documentationproject, 6/96-9/97. Tutorial chapter 1"),
1106
1107      contributer(u"Edmar Wienskoski",
1108                  "edmar () freescale ! com",
1109                  "GPL",
1110                  "Re: The LyX licence",
1111                  "m=111280236425781",
1112                  "6 April 2005",
1113                  u"literate programming support; various bug fixes"),
1114
1115      contributer(u"Mate Wierdl",
1116                  "mw () wierdlmpc ! msci ! memphis ! edu",
1117                  "",
1118                  "",
1119                  "",
1120                  "",
1121                  u"Maintainer of the @lists.lyx.org mailing-lists"),
1122
1123      contributer(u"Serge Winitzki",
1124                  "winitzki () erebus ! phys ! cwru ! edu",
1125                  "",
1126                  "",
1127                  "",
1128                  "",
1129                  u"updates to the Scientific Word bindings"),
1130
1131      contributer(u"Stephan Witt",
1132                  "stephan.witt () beusen ! de",
1133                  "GPL",
1134                  "Re: The LyX licence",
1135                  "m=110909031824764",
1136                  "22 February 2005",
1137                  u"support for page selection for printing support for number of copies"),
1138
1139      contributer(u"Huang Ying",
1140                  "huangy () sh ! necas ! nec ! com ! cn",
1141                  "GPL",
1142                  "Re: The LyX licence",
1143                  "m=110956742604611",
1144                  "28 February 2005",
1145                  u"Gtk frontend"),
1146
1147      contributer(u"Henner Zeller",
1148                  "henner.zeller () freiheit ! com",
1149                  "GPL",
1150                  "Re: The LyX licence",
1151                  "m=110911591218107",
1152                  "22 February 2005",
1153                  u"rotation of wysiwyg figures"),
1154
1155      contributer(u"Xiaokun Zhu",
1156                  "xiaokun () aero ! gla ! ac ! uk",
1157                  "",
1158                  "",
1159                  "",
1160                  "",
1161                  u"bug reports and small fixes") ]
1162
1163
1164 if __name__ == "__main__":
1165      main(sys.argv, contributers)