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