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