]> git.lyx.org Git - lyx.git/blob - lib/generate_contributions.py
902b5acb2a4d62ba266f48928bd97197c709f70c
[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.inc and blanket-permission.inc
14
15 Usage:
16 $ python generate_contributions.py \
17   CREDITS \
18   credits.inc \
19   blanket-permission.inc
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                     result.append('@iE-mail: %s\n' % self.contact)
59           result.append('   %s\n' % self.credit.replace('\n', '\n   '))
60           return "".join(result)
61
62
63      def as_php_credits(self, wrapper):
64           return '''
65 $output=$output.credits_contrib("%s",
66         "%s",
67         "%s");
68 ''' % ( xml_escape(self.name),
69         xml_escape(self.contact),
70         "\n".join(wrapper.wrap(xml_escape(self.credit))) )
71
72
73      def as_php_blanket(self):
74           return '''
75 $output=$output.blanket_contrib("%s",
76         "%s",
77         "%s",
78         "%s",
79         "%s");
80 ''' % ( xml_escape(self.name),
81         xml_escape(self.contact),
82         xml_escape(self.permission_title),
83         xml_escape(self.archive_id),
84         xml_escape(self.permission_date) )
85
86
87 def error(message):
88      if message:
89           sys.stderr.write(message + '\n')
90      sys.exit(1)
91
92
93 def usage(prog_name):
94      return "Usage: %s <CREDITS> <credits.php> <blanket-permission.php>" % prog_name
95
96
97 def collate_incomplete(contributers):
98
99     missing_credit = []
100     missing_licence = []
101     for contributer in contributers:
102           if len(contributer.credit) == 0:
103               missing_credit.append(contributer.name)
104           if len(contributer.licence) == 0:
105               missing_licence.append(contributer.name)
106
107     return '''WARNING!
108 The following contributers do not have a CREDITS entry:
109     %s
110
111 These ones have no explicit licence statement:
112     %s
113 ''' % ( ",\n    ".join(missing_credit), ",\n    ".join(missing_licence))
114
115
116 def as_txt_credits(contributers):
117      results = []
118
119      for contributer in contributers:
120           if len(contributer.credit) != 0:
121               results.append(contributer.as_txt_credits())
122
123      results.append('''
124
125 If your name doesn't appear here although you've done
126 something for LyX, or your entry is wrong or incomplete,
127 just drop some e-mail to lyx@lyx.org. Thanks.
128 ''')
129
130      return "".join(results)
131
132
133 def header():
134      return '''<?php
135 // WARNING! This file is autogenerated.
136 // Any changes to it will be lost.
137 // Please modify generate_contributions.py direct.
138 '''
139
140
141 def footer():
142      return '''
143 '''
144
145 def as_php_credits(contributers, file):
146      results = []
147
148      results.append(header())
149
150      results.append('''
151
152 function credits_contrib($name, $email, $msg) {
153
154 $output=$output. "
155
156  <dt>
157   <b>${name}</b>
158 ";
159
160 if (isset($email) && $email != "")
161         $output=$output. "[[mailto:${email} | Contact]]";
162
163 $msg = ereg_replace("\\n *", "\\n  ", ltrim($msg));
164
165 $output=$output. "
166  </dt>
167  <dd>
168   ${msg}
169  </dd>";
170  
171 return $output;
172 }
173
174 function credits_output() {
175
176 $output=$output."<p>
177      If your name doesn't appear here although you've done
178      something for LyX, or your entry is wrong or incomplete,
179      just drop an e-mail to the
180      [[mailto:lyx-devel@lists.lyx.org | lyx-devel]]
181      mailing list. Thanks.
182 </p>
183
184 <dl>";
185 ''')
186
187      wrapper = textwrap.TextWrapper(width=60, subsequent_indent="         ")
188
189      for contributer in contributers:
190           if len(contributer.credit) != 0:
191                results.append(contributer.as_php_credits(wrapper))
192
193      results.append('''
194 $output=$output."</dl>";
195
196 return $output;
197
198 }
199 ''')
200      results.append(footer())
201      return "".join(results)
202
203
204 def as_php_blanket(contributers, file):
205      results = []
206
207      results.append(header())
208
209      results.append('''
210
211 function blanket_contrib($name, $email, $msg_title, $msg_ref, $date) {
212
213 $output=$output. "
214
215  <dt>
216   <b>${name}</b>
217   <i>&lt;${email}&gt;</i>
218  </dt>
219  <dd>
220   See the lyx-devel mailing list message
221   &quot;";
222
223 if (isset($msg_ref) && $msg_ref != "") {
224         $msg_ref = htmlspecialchars("$msg_ref");
225         $output=$output. "[[http://marc.info/?l=lyx-devel&amp;" . ${msg_ref} . "|" . ${msg_title} . "]]";
226 } else {
227         $output=$output. "${msg_title}";
228 }
229
230 $output=$output. "&quot;
231   of $date.
232  </dd>";
233  
234 return $output;
235 }
236
237 function blanket_output() {
238
239 $output=$output."<p>
240      The following people hereby grant permission to license their
241      contributions to LyX under the
242      [[http://www.opensource.org/licenses/gpl-license.php |
243      Gnu General Public License]], version 2 or later.
244 </p>
245
246 <dl>";
247 ''')
248
249      for contributer in contributers:
250           if contributer.licence == "GPL":
251                results.append(contributer.as_php_blanket())
252
253      results.append('''
254 $output=$output."</dl>";
255
256 $output=$output."
257 <p>
258      The following people hereby grant permission to license their
259      contributions to LyX under the
260      [[http://www.opensource.org/licenses/artistic-license.php |
261      Artistic License]].
262 </p>
263
264 <dl>";
265 ''')
266
267      for contributer in contributers:
268           if contributer.licence == "Artistic":
269                results.append(contributer.as_php_blanket())
270
271      results.append('''
272 $output=$output."</dl>";
273
274 return $output;
275
276 }
277 ''')
278
279      results.append(footer())
280      return "".join(results)
281
282
283 def main(argv, contributers):
284      if len(argv) != 4:
285           error(usage(argv[0]))
286
287      txt_credits_data = unicode(as_txt_credits(contributers)).encode("utf-8")
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"Özgür Uğraş Baran",
339                  "ugras.baran@gmail.com",
340                  "GPL",
341                  "Re: [patch] new InsetCommandParams",
342                  "m=116124030512963",
343                  "19 October 2006",
344                  u"New commandparams structure, Nomenclature inset"),
345
346     contributer(u"Susana Barbosa",
347                  "susana.barbosa@fc.up.pt",
348                  "GPL",
349                  "License",
350                  "m=118707828425316",
351                  "14 August 2007",
352                  u"Portuguese translation"),
353
354      contributer(u"Yves Bastide",
355                  "yves.bastide@irisa.fr",
356                  "GPL",
357                  "Re: The LyX licence",
358                  "m=110959913631678",
359                  "28 February 2005",
360                  u"Bug fixes"),
361
362      contributer(u"Heinrich Bauer",
363                  "heinrich.bauer@t-mobile.de",
364                  "GPL",
365                  "Fwd: Re: The LyX licence",
366                  "m=110910430117798",
367                  "22 February 2005",
368                  u"Fixes for dvi output original version of page selection for printing"),
369
370      contributer(u"Georg Baum",
371                  "georg.baum@post.rwth-aachen.de",
372                  "GPL",
373                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
374                  "m=110899912526043",
375                  "21 February 2005",
376                  u"tex2lyx improvements, bug fixes, unicode work"),
377
378      contributer(u"Hans Bausewein",
379                  "hans@comerwell.xs4all.nl",
380                  "GPL",
381                  "Re: The LyX licence --- a gentle nudge",
382                  "m=111262999400394",
383                  "2 April 2005",
384                  '"case insensitive" and "complete word" search'),
385
386      contributer(u"Graham Biswell",
387                  "graham@gbiswell.com",
388                  "GPL",
389                  "Re: The LyX licence",
390                  "m=111269177728853",
391                  "5 April 2005",
392                  u"Small bugfixes that were very hard to find"),
393
394      contributer(u"Lars Gullik Bjønnes",
395                  "larsbj@gullik.net",
396                  "GPL",
397                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
398                  "m=110907078027047",
399                  "22 February 2005",
400                  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"),
401
402      contributer(u"Alfredo Braunstein",
403                  "abraunst@lyx.org",
404                  "GPL",
405                  "Re: The LyX licence",
406                  "m=110927069513172",
407                  "24 February 2005",
408                  u"A (pseudo) threaded graphics loader queue, lots of fixes, etc."),
409
410      contributer(u"Christian Buescher",
411                  "christian.buescher@uni-bielefeld.de",
412                  "",
413                  "",
414                  "",
415                  "",
416                  u"User-definable keys, lyxserver and more"),
417
418      contributer(u"Johnathan Burchill",
419                  "jkerrb@users.sourceforge.net",
420                  "GPL",
421                  "Re: The LyX licence",
422                  "m=110908472818670",
423                  "22 February 2005",
424                  u"Ported John Levon's original 'change tracking' code to later versions of LyX. Numerous bug fixes thereof."),
425
426      contributer(u"Francesc Burrull i Mestres",
427                  "fburrull@mat.upc.es",
428                  "",
429                  "",
430                  "",
431                  "",
432                  u"Catalan translation"),
433
434      contributer(u"Humberto Nicolás Castejón",
435                  "beconico@gmail.com",
436                  "GPL",
437                  "Re: The LyX licence",
438                  "m=111833854105023",
439                  "9 June 2005",
440                  u"Spanish translation of the Windows installer"),
441
442      contributer(u"Matěj Cepl",
443                  "matej@ceplovi.cz",
444                  "GPL",
445                  "Re: The LyX licence",
446                  "m=110913090232039",
447                  "22 February 2005",
448                  u"Improvements to the czech keymaps"),
449
450      contributer(u"Albert Chin",
451                  "lyx-devel@mlists.thewrittenword.com",
452                  "GPL",
453                  "Re: The LyX licence --- a gentle nudge",
454                  "m=111220294831831",
455                  "30 March 2005",
456                  u"Bug fixes"),
457
458      contributer(u"Jean-Pierre Chrétien",
459                  "chretien@cert.fr",
460                  "GPL",
461                  "Re: The LyX licence",
462                  "m=111842518713710",
463                  "10 June 2005",
464                  u"French translation of the Windows installer"),
465
466      contributer(u"Claudio Coco",
467                  "lacocio@libero.it",
468                  "GPL",
469                  "Agreement to GNU General Public licence",
470                  "m=113749629514591",
471                  "17 January 2006",
472                  u"Italian translation"),
473
474      contributer(u"Matthias Kalle Dalheimer",
475                  "kalle@kdab.net",
476                  "GPL",
477                  "Re: The LyX licence",
478                  "m=110908857130107",
479                  "22 February 2005",
480                  u"Qt2 port"),
481
482      contributer(u"Anders Ekberg",
483                  "anek@chalmers.se",
484                  "GPL",
485                  "License agreement",
486                  "m=113725822602516",
487                  "14 January 2006",
488                  u"Improvements to the Swedish translation of the Windows Installer"),
489
490      contributer(u"Matthias Ettrich",
491                  "ettrich@trolltech.com",
492                  "GPL",
493                  "Fwd: Re: The LyX licence",
494                  "m=110959638810040",
495                  "28 February 2005",
496                  u"Started the project, implemented the early versions, various improvements including undo/redo, tables, and much, much more"),
497
498      contributer(u"Baruch Even",
499                  "baruch@ev-en.org",
500                  "GPL",
501                  "Re: The LyX licence",
502                  "m=110936007609786",
503                  "25 February 2005",
504                  u"New graphics handling scheme and more"),
505
506      contributer(u"Dov Feldstern",
507                  "dfeldstern@fastimap.com",
508                  "GPL",
509                  "Re: Farsi support re-submission plus a little more",
510                  "m=118064913824836",
511                  "31 May 2007",
512                  u"RTL/BiDi-related fixes"),
513
514      contributer(u"Ronald Florence",
515                  "ron@18james.com",
516                  "GPL",
517                  "Re: The LyX licence --- a gentle nudge",
518                  "m=111262821108510",
519                  "31 March 2005",
520                  u"Maintainer of the OS X port(s)"),
521
522      contributer(u"José Ramom Flores d'as Seixas",
523                  "fa2ramon@usc.es",
524                  "GPL",
525                  "Re: Galician translation",
526                  "m=116136920230072",
527                  "20 October 2006",
528                  u"Galician documentation and localization"),
529
530      contributer(u"John Michael Floyd",
531                  "jmf@pwd.nsw.gov.au",
532                  "",
533                  "",
534                  "",
535                  "",
536                  u"Bug fix to the spellchecker"),
537
538      contributer(u"Enrico Forestieri",
539                  "forenr@tlc.unipr.it",
540                  "GPL",
541                  "Re: lyxpreview2ppm.py",
542                  "m=111894292115287",
543                  "16 June 2005",
544                  u"Italian translation of the Windows installer"),
545
546      contributer(u"Eitan Frachtenberg",
547                  "sky8an@gmail.com",
548                  "GPL",
549                  "Re: [PATCH] BibTeX annotation support",
550                  "m=111130799028250",
551                  "20 March 2005",
552                  u"BibTeX annotation support"),
553
554      contributer(u"Darren Freeman",
555                  "dfreeman@ieee.org",
556                  "GPL",
557                  "Licence",
558                  "m=118612951707590",
559                  "3 August 2007",
560                  u"Improvements to mouse wheel scrolling; many bug reports"),
561
562      contributer(u"Edscott Wilson Garcia",
563                  "edscott@xfce.org",
564                  "GPL",
565                  "Re: The LyX licence --- a gentle nudge",
566                  "m=111219295119021",
567                  "30 March 2005",
568                  u"Bug fixes"),
569
570      contributer(u"Ignacio García",
571                  "ignacio.garcia@tele2.es",
572                  "GPL",
573                  "Re: es_EmbeddedObjects",
574                  "m=117079592919653",
575                  "06 February 2007",
576                  u"Spanish translation of documentations"),
577
578      contributer(u"Michael Gerz",
579                  "michael.gerz@teststep.org",
580                  "GPL",
581                  "Re: The LyX licence",
582                  "m=110909251110103",
583                  "22 February 2005",
584                  u"Change tracking, German localization, bug fixes"),
585
586      contributer(u"Stefano Ghirlanda",
587                  "stefano.ghirlanda@unibo.it",
588                  "GPL",
589                  "Re: The LyX licence",
590                  "m=110959835300777",
591                  "28 February 2005",
592                  u"Improvements to lyxserver"),
593
594      contributer(u"Hartmut Goebel",
595                  "h.goebel@crazy-compilers.com",
596                  "GPL",
597                  "Re: The LyX licence --- a gentle nudge",
598                  "m=111225910223564",
599                  "30 March 2005",
600                  u"Improvements to Koma-Script classes"),
601
602      contributer(u"Hartmut Haase",
603                  "hha4491@web.de",
604                  "GPL",
605                  "Re: The LyX licence",
606                  "m=110915427710167",
607                  "23 February 2005",
608                  u"German translation of the documentation"),
609
610      contributer(u"Helge Hafting",
611                  "helgehaf@aitel.hist.no",
612                  "GPL",
613                  "Re: The LyX licence",
614                  "m=110916171925288",
615                  "23 February 2005",
616                  u"Norwegian documentation and localization"),
617                  
618      contributer(u"Richard Heck",
619                  "rgheck@brown.edu",
620                  "GPL",
621                  "GPL Statement",
622                  "m=117501689204059",
623                  "27 March 2007",
624                  u"Bug fixes, layout modules, BibTeX code"),
625
626      contributer(u"Bennett Helm",
627                  "bennett.helm@fandm.edu",
628                  "GPL",
629                  "Re: The LyX licence",
630                  "m=110907988312372",
631                  "22 February 2005",
632                  u"Maintainer of the OSX ports, taking over from Ronald Florence"),
633
634      contributer(u"Claus Hentschel",
635                  "claus.hentschel@mbau.fh-hannover.de",
636                  "",
637                  "",
638                  "",
639                  "",
640                  u"Win32 port of LyX 1.1.x"),
641
642      contributer(u"Claus Hindsgaul",
643                  "claus_h@image.dk",
644                  "GPL",
645                  "Re: The LyX licence",
646                  "m=110908607416324",
647                  "22 February 2005",
648                  u"Danish translation"),
649
650      contributer(u"Bernard Hurley",
651                  "bernard@fong-hurley.org.uk",
652                  "GPL",
653                  "Re: The LyX licence --- a gentle nudge",
654                  "m=111218682804142",
655                  "30 March 2005",
656                  u"Fixes to literate programming support"),
657
658      contributer(u"Marius Ionescu",
659                  "felijohn@gmail.com",
660                  "GPL",
661                  "permission to licence",
662                  "m=115935958330941",
663                  "27 September 2006",
664                  u"Romanian localization"),
665
666      contributer(u"Bernhard Iselborn",
667                  "bernhard.iselborn@sap.com",
668                  "GPL",
669                  "RE: The LyX licence",
670                  "m=111268306522212",
671                  "5 April 2005",
672                  u"Some minor bug-fixes, FAQ, linuxdoc sgml support"),
673
674      contributer(u"Masanori Iwami",
675                  "masa.iwm@gmail.com",
676                  "GPL",
677                  "Re: [patch] Addition of input method support",
678                  "m=117541512517453",
679                  "1 April 2007",
680                  u"Development of CJK language support"),
681
682      contributer(u"Michal Jaegermann",
683                  "michal@ellpspace.math.ualberta.ca",
684                  "GPL",
685                  "Re: The LyX licence",
686                  "m=110909853626643",
687                  "22 February 2005",
688                  u"Fix to a very hard-to-find egcs bug that crashed LyX on alpha architecture"),
689
690      contributer(u"Harshula Jayasuriya",
691                  "harshula@gmail.com",
692                  "GPL",
693                  "Re: Bug in export to DocBook",
694                  "m=116884249725701",
695                  "15 January 2007",
696                  u"Fix docbook generation of nested lists"),
697
698      contributer(u"David L. Johnson",
699                  "david.johnson@lehigh.edu",
700                  "GPL",
701                  "GPL",
702                  "m=110908492016593",
703                  "22 February 2005",
704                  u"Public relations, feedback, documentation and support"),
705
706      contributer(u"Robert van der Kamp",
707                  "robnet@wxs.nl",
708                  "GPL",
709                  "Re: The LyX licence",
710                  "m=111268623330209",
711                  "5 April 2005",
712                  u"Various small things and code simplifying"),
713
714      contributer(u"Amir Karger",
715                  "amirkarger@gmail.com",
716                  "GPL",
717                  "Re: The LyX licence",
718                  "m=110912688520245",
719                  "23 February 2005",
720                  u"Tutorial, reLyX: the LaTeX to LyX translator"),
721
722      contributer(u"Carmen Kauffmann",
723                  "",
724                  "",
725                  "",
726                  "",
727                  "",
728                  u"Original name that is now two character shorter"),
729
730      contributer(u"KDE Artists",
731                  "http://artist.kde.org/",
732                  "",
733                  "",
734                  "",
735                  "",
736                  u"Authors of several of the icons LyX uses"),
737
738      contributer(u"Andreas Klostermann",
739                  "andreas_klostermann@web.de",
740                  "GPL",
741                  "blanket-permission",
742                  "m=111054675600338",
743                  "11 March 2005",
744                  u"Gtk reference insertion dialog"),
745
746      contributer(u"Kostantino",
747                  "ciclope10@alice.it",
748                  "GPL",
749                  "Permission granted",
750                  "m=115513400621782",
751                  "9 August 2006",
752                  u"Italian localization of the interface"),
753
754      contributer(u"Michael Koziarski",
755                  "koziarski@gmail.com",
756                  "GPL",
757                  "Re: The LyX licence",
758                  "m=110909592017966",
759                  "22 February 2005",
760                  u"Gnome port"),
761
762      contributer(u"Peter Kremer",
763                  "kremer@bme-tel.ttt.bme.hu",
764                  "",
765                  "",
766                  "",
767                  "",
768                  u"Hungarian translation and bind file for menu shortcuts"),
769
770      contributer(u"Peter Kümmel",
771                  "syntheticpp@gmx.net",
772                  "GPL",
773                  "License",
774                  "m=114968828021007",
775                  "7 June 2006",
776                  u"Qt4 coding, CMake build system, bug fixing, testing, clean ups, and profiling"),
777
778      contributer(u"Bernd Kümmerlen",
779                  "bkuemmer@gmx.net",
780                  "GPL",
781                  "Re: The LyX licence",
782                  "m=110934318821667",
783                  "25 February 2005",
784                  u"Initial version of the koma-script textclasses"),
785
786      contributer(u"Felix Kurth",
787                  "felix@fkurth.de",
788                  "GPL",
789                  "Re: The LyX licence",
790                  "m=110908918916109",
791                  "22 February 2005",
792                  u"Support for textclass g-brief2"),
793
794      contributer(u"Rob Lahaye",
795                  "lahaye@snu.ac.kr",
796                  "GPL",
797                  "Re: The LyX licence",
798                  "m=110908714131711",
799                  "22 February 2005",
800                  u"Xforms dialogs and GUI related code"),
801
802      contributer(u"Jean-Marc Lasgouttes",
803                  "lasgouttes@lyx.org",
804                  "GPL",
805                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
806                  "m=110899928510452",
807                  "21 February 2005",
808                  u"configure and Makefile-stuff and more"),
809
810      contributer(u"Victor Lavrenko",
811                  "lyx@lavrenko.pp.ru",
812                  "",
813                  "",
814                  "",
815                  "",
816                  u"Russian translation"),
817
818      contributer(u"Angus Leeming",
819                  "leeming@lyx.org",
820                  "GPL",
821                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
822                  "m=110899671520339",
823                  "21 February 2005",
824                  u"GUI-I-fication of insets and more"),
825
826      contributer(u"Edwin Leuven",
827                  "e.leuven@uva.nl",
828                  "GPL",
829                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
830                  "m=110899657530749",
831                  "21 February 2005",
832                  u"Qt2 frontend GUI-I-fication of several popups.\nDutch translation of the Windows installer"),
833
834      contributer(u"John Levon",
835                  "levon@movementarian.org",
836                  "GPL",
837                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
838                  "m=110899535600562",
839                  "21 February 2005",
840                  u"Qt2 frontend, GUII work, bugfixes"),
841
842      contributer(u"Ling Li",
843                  "ling@caltech.edu",
844                  "GPL",
845                  "Re: LyX 1.4cvs crash on Fedora Core 3",
846                  "m=111204368700246",
847                  "28 March 2005",
848                  u"Added native support for \makebox to mathed. Several bug fixes, both to the source code and to the llncs layout file"),
849
850      contributer(u"Tomasz Łuczak",
851                  "tlu@technodat.com.pl",
852                  "GPL",
853                  "Re: [Cvslog] lyx-devel po/: ChangeLog pl.po lib/: CREDITS",
854                  "m=113580483406067",
855                  "28 December 2005",
856                  u"Polish translation and mw* layouts files"),
857
858      contributer(u"Hangzai Luo",
859                  "memcache@gmail.com",
860                  "GPL",
861                  "Re: [patch] tex2lyx crash when full path is given from commandline on Win32",
862                  "m=118326161706627",
863                  "1 July 2007",
864                  u"Bugfixes"),
865
866      contributer(u"José Matos",
867                  "jamatos@fc.up.pt",
868                  "GPL",
869                  "Re: The LyX licence",
870                  "m=110907762926766",
871                  "22 February 2005",
872                  u"linuxdoc sgml support"),
873
874      contributer(u"Roman Maurer",
875                  "roman.maurer@amis.net",
876                  "GPL",
877                  "Re: The LyX licence",
878                  "m=110952616722307",
879                  "27 February 2005",
880                  u"Slovenian translation coordinator"),
881
882      contributer(u"Tino Meinen",
883                  "a.t.meinen@chello.nl",
884                  "GPL",
885                  "Re: Licensing your contributions to LyX",
886                  "m=113078277722316",
887                  "31 October 2005",
888                  u"Dutch translation coordinator"),
889
890      contributer(u"Siegfried Meunier-Guttin-Cluzel",
891                  "meunier@coria.fr",
892                  "GPL",
893                  "French translations",
894                  "m=119485816312776",
895                  "12 November 2007",
896                  u"French translations of the documentation"),
897
898      contributer(u"Joan Montané",
899                  "jmontane@gmail.com",
900                  "GPL",
901                  "Re: LyX translation updates needed",
902                  "m=118765575314017",
903                  "21 August 2007",
904                  u"Catalan translations of menus"),
905
906      contributer(u"Iñaki Larrañaga Murgoitio",
907                  "dooteo@euskalgnu.org",
908                  "GPL",
909                  "Re: The LyX licence",
910                  "m=110908606525783",
911                  "22 February 2005",
912                  u"Basque documentation and localization"),
913
914      contributer(u"Daniel Naber",
915                  "daniel.naber@t-online.de",
916                  "GPL",
917                  "Re: The LyX licence",
918                  "m=110911176213928",
919                  "22 February 2005",
920                  u"Improvements to the find&replace dialog"),
921
922      contributer(u"Pablo De Napoli",
923                  "pdenapo@mate.dm.uba.ar",
924                  "GPL",
925                  "Re: The LyX licence",
926                  "m=110908904400120",
927                  "22 February 2005",
928                  u"Math panel dialogs"),
929
930      contributer(u"Dirk Niggemann",
931                  "dabn100@cam.ac.uk",
932                  "",
933                  "",
934                  "",
935                  "",
936                  u"config. handling enhancements, bugfixes, printer enhancements path mingling"),
937
938      contributer(u"Carl Ollivier-Gooch",
939                  "cfog@mech.ubc.ca",
940                  "GPL",
941                  "Re: The LyX licence --- a gentle nudge",
942                  "m=111220662413921",
943                  "30 March 2005",
944                  u"Support for two-column figure (figure*) and table (table*) environments.  Fixed minibuffer entry of floats."),
945
946      contributer(u'Panayotis "PAP" Papasotiriou',
947                  "papasot@upatras.gr",
948                  "GPL",
949                  "Re: The LyX licence",
950                  "m=110933552929119",
951                  "25 February 2005",
952                  u"Support for kluwer and ijmpd document classes"),
953
954      contributer(u'Andrey V. Panov',
955                  "panov@canopus.iacp.dvo.ru",
956                  "GPL",
957                  "Re: Russian translation for LyX",
958                  "m=119853644302866",
959                  "24 December 2007",
960                  u"Russian translation of the user interface"),
961
962      contributer(u'Sanda Pavel',
963                  "ps@ucw.cz",
964                  "GPL",
965                  "Re: czech translation",
966                  "m=115522417204086",
967                  "10 August 2006",
968                  u"Czech translation, support for the LaTeX package hyperref"),
969
970      contributer(u'Bo Peng',
971                  "ben.bob@gmail.com",
972                  "GPL",
973                  "Re: Python version of configure script (preview version)",
974                  "m=112681895510418",
975                  "15 September 2005",
976                  u"Conversion of all shell scripts to Python, shortcuts dialog, session, view-source, auto-view, embedding features and scons build system."),
977
978      contributer(u"Joacim Persson",
979                  "sp2joap1@ida.his.se",
980                  "",
981                  "",
982                  "",
983                  "",
984                  u"po-file for Swedish, a tool for picking shortcuts, bug reports and hacking atrandom"),
985
986      contributer(u"Zvezdan Petkovic",
987                  "zpetkovic@acm.org",
988                  "GPL",
989                  "Re: The LyX licence",
990                  "m=111276877900892",
991                  "6 April 2005",
992                  u"Better support for serbian and serbocroatian"),
993
994      contributer(u"Geoffroy Piroux",
995                  "piroux@fyma.ucl.ac.be",
996                  "",
997                  "",
998                  "",
999                  "",
1000                  u"Mathematica backend for mathed"),
1001
1002      contributer(u"Neoklis Polyzotis",
1003                  "alkis@soe.ucsc.edu",
1004                  "GPL",
1005                  "Fwd: Re: The LyX licence",
1006                  "m=111039215519777",
1007                  "9 March 2005",
1008                  u"Keymap work"),
1009
1010      contributer(u"André Pönitz",
1011                  "andre.poenitz@mathematik.tu-chemnitz.de",
1012                  "GPL",
1013                  "Re: The LyX licence",
1014                  "m=111143534724146",
1015                  "21 March 2005",
1016                  u"mathed rewrite to use STL file io with streams --export and --import command line options"),
1017
1018      contributer(u"Kornelia Pönitz",
1019                  "kornelia.poenitz@mathematik.tu-chemnitz.de",
1020                  "GPL",
1021                  "Re: The LyX licence",
1022                  "m=111121553103800",
1023                  "19 March 2005",
1024                  u"heavy mathed testing; provided siamltex document class"),
1025
1026      contributer(u"Bernhard Psaier",
1027                  "",
1028                  "",
1029                  "",
1030                  "",
1031                  "",
1032                  u"Designer of the LyX-Banner"),
1033
1034      contributer(u"Thomas Pundt",
1035                  "thomas@pundt.de",
1036                  "GPL",
1037                  "Re: The LyX licence",
1038                  "m=111277917703326",
1039                  "6 April 2005",
1040                  u"initial configure script"),
1041
1042      contributer(u"Allan Rae",
1043                  "rae@itee.uq.edu.au",
1044                  "GPL",
1045                  "lyx-1.3.6cvs configure.in patch",
1046                  "m=110905169512662",
1047                  "21 February 2005",
1048                  u"GUI-I architect, LyX PR head, LDN, bug reports/fixes, Itemize Bullet Selection, xforms-0.81 + gcc-2.6.3 compatibility"),
1049
1050      contributer(u"Adrien Rebollo",
1051                  "adrien.rebollo@gmx.fr",
1052                  "GPL",
1053                  "Re: The LyX licence",
1054                  "m=110918633227093",
1055                  "23 February 2005",
1056                  u"French translation of the docs; latin 3, 4 and 9 support"),
1057
1058      contributer(u"Garst R. Reese",
1059                  "garstr@isn.net",
1060                  "GPL",
1061                  "blanket-permission.txt:",
1062                  "m=110911480107491",
1063                  "22 February 2005",
1064                  u"provided hollywood and broadway classes for writing screen scripts and plays"),
1065
1066      contributer(u"Bernhard Reiter",
1067                  "ockham@gmx.net",
1068                  "GPL",
1069                  "Re: RFC: GThesaurus.C et al.",
1070                  "m=112912017013984",
1071                  "12 October 2005",
1072                  u"Gtk frontend"),
1073
1074      contributer(u"Ruurd Reitsma",
1075                  "rareitsma@yahoo.com",
1076                  "GPL",
1077                  "Fwd: Re: The LyX licence",
1078                  "m=110959179412819",
1079                  "28 February 2005",
1080                  u"Creator of the native port of LyX to Windows"),
1081
1082      contributer(u"Bernd Rellermeyer",
1083                  "bernd.rellermeyer@arcor.de",
1084                  "GPL",
1085                  "Re: The LyX licence",
1086                  "m=111317142419908",
1087                  "10 April 2005",
1088                  u"Support for Koma-Script family of classes"),
1089
1090      contributer(u"Michael Ressler",
1091                  "mike.ressler@alum.mit.edu",
1092                  "GPL",
1093                  "Re: The LyX licence",
1094                  "m=110926603925431",
1095                  "24 February 2005",
1096                  u"documentation maintainer, AASTeX support"),
1097
1098      contributer(u"Christian Ridderström",
1099                  "christian.ridderstrom@home.se",
1100                  "GPL",
1101                  "Re: The LyX licence",
1102                  "m=110910933124056",
1103                  "22 February 2005",
1104                  u"The driving force behind, and maintainer of, the LyX wiki wiki.\nSwedish translation of the Windows installer"),
1105
1106      contributer(u"Bernhard Roider",
1107                  "bernhard.roider@sonnenkinder.org",
1108                  "GPL",
1109                  "Re: [PATCH] immediatly display saved filename in tab",
1110                  "m=117009852211669",
1111                  "29 January 2007",
1112                  u"Various bug fixes"),
1113
1114      contributer(u"Paul A. Rubin",
1115                  "rubin@msu.edu",
1116                  "GPL",
1117                  "Re: [patch] reworked AMS classes (bugs 4087, 4223)",
1118                  "m=119072721929143",
1119                  "25 September 2007",
1120                  u"Major rework of the AMS classes"),
1121
1122      contributer(u"Ran Rutenberg",
1123                  "ran.rutenberg@gmail.com",
1124                  "GPL",
1125                  "The New Hebrew Translation of the Introduction",
1126                  "m=116172457024967",
1127                  "24 October 2006",
1128                  u"Hebrew translation"),
1129
1130      contributer(u"Szõke Sándor",
1131                  "alex@lyx.hu",
1132                  "GPL",
1133                  "Contribution to LyX",
1134                  "m=113449408830523",
1135                  "13 December 2005",
1136                  u"Hungarian translation"),
1137
1138      contributer(u"Janus Sandsgaard",
1139                  "janus@janus.dk",
1140                  "GPL",
1141                  "Re: The LyX licence",
1142                  "m=111839355328045",
1143                  "10 June 2005",
1144                  u"Danish translation of the Windows installer"),
1145
1146      contributer(u"Stefan Schimanski",
1147                  "sts@1stein.org",
1148                  "GPL",
1149                  "GPL statement",
1150                  "m=117541472517274",
1151                  "1 April 2007",
1152                  u"font improvements, bug fixes"),
1153
1154      contributer(u"Hubert Schreier",
1155                  "schreier@sc.edu",
1156                  "",
1157                  "",
1158                  "",
1159                  "",
1160                  u"spellchecker (ispell frontend); beautiful document-manager based on the simple table of contents (removed)"),
1161
1162      contributer(u"Ivan Schreter",
1163                  "schreter@kdk.sk",
1164                  "",
1165                  "",
1166                  "",
1167                  "",
1168                  u"international support and kbmaps for slovak, czech, german, ... wysiwyg figure"),
1169
1170      contributer(u"Eulogio Serradilla Rodríguez",
1171                  "eulogio.sr@terra.es",
1172                  "GPL",
1173                  "Re: The LyX licence",
1174                  "m=110915313018478",
1175                  "23 February 2005",
1176                  u"contribution to the spanish internationalization"),
1177
1178      contributer(u"Miyata Shigeru",
1179                  "miyata@kusm.kyoto-u.ac.jp",
1180                  "",
1181                  "",
1182                  "",
1183                  "",
1184                  u"OS/2 port"),
1185
1186      contributer(u"Alejandro Aguilar Sierra",
1187                  "asierra@servidor.unam.mx",
1188                  "GPL",
1189                  "Fwd: Re: The LyX licence",
1190                  "m=110918647812358",
1191                  "23 February 2005",
1192                  u"Fast parsing with lyxlex, pseudoactions, mathpanel, Math Editor, combox and more"),
1193
1194      contributer(u"Lior Silberman",
1195                  "lior@princeton.edu",
1196                  "GPL",
1197                  "Fwd: Re: The LyX licence",
1198                  "m=110910432427450",
1199                  "22 February 2005",
1200                  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."),
1201
1202      contributer(u"Andre Spiegel",
1203                  "spiegel@gnu.org",
1204                  "GPL",
1205                  "Re: The LyX licence",
1206                  "m=110908534728505",
1207                  "22 February 2005",
1208                  u"vertical spaces"),
1209
1210      contributer(u"Jürgen Spitzmüller",
1211                  "juergen.sp@t-online.de",
1212                  "GPL",
1213                  "Re: The LyX licence",
1214                  "m=110907530127164",
1215                  "22 February 2005",
1216                  u"Qt frontend, bugfixes"),
1217
1218      contributer(u"John Spray",
1219                  "jcs116@york.ac.uk",
1220                  "GPL",
1221                  "Re: The LyX licence",
1222                  "m=110909415400170",
1223                  "22 February 2005",
1224                  u"Gtk frontend"),
1225
1226      contributer(u"Ben Stanley",
1227                  "ben.stanley@exemail.com.au",
1228                  "GPL",
1229                  "Re: The LyX licence",
1230                  "m=110923981012056",
1231                  "24 February 2005",
1232                  u"fix bugs with error insets placement"),
1233
1234      contributer(u"Uwe Stöhr",
1235                  "uwestoehr@web.de",
1236                  "GPL",
1237                  "Re: The LyX licence",
1238                  "m=111833345825278",
1239                  "9 June 2005",
1240                  u"documentation updates, Windows installer, small fixes"),
1241
1242      contributer(u"David Suárez de Lis",
1243                  "excalibor@iname.com",
1244                  "",
1245                  "",
1246                  "",
1247                  "",
1248                  u"maintaining es.po since v1.0.0 and other small i18n issues small fixes"),
1249
1250      contributer(u"Peter Sütterlin",
1251                  "p.suetterlin@astro.uu.nl",
1252                  "GPL",
1253                  "Re: The LyX licence",
1254                  "m=110915086404972",
1255                  "23 February 2005",
1256                  u"aapaper support, german documentation translation, bug reports"),
1257
1258      contributer(u"Kayvan Aghaiepour Sylvan",
1259                  "kayvan@sylvan.com",
1260                  "GPL",
1261                  "Re: The LyX licence",
1262                  "m=110908748407087",
1263                  "22 February 2005",
1264                  u"noweb2lyx and reLyX integration of noweb files. added Import->Noweb and key bindings to menus"),
1265
1266      contributer(u"Reuben Thomas",
1267                  "rrt@sc3d.org",
1268                  "GPL",
1269                  "Re: The LyX licence",
1270                  "m=110911018202083",
1271                  "22 February 2005",
1272                  u"encts document class lots of useful bug reports"),
1273
1274      contributer(u"Dekel Tsur",
1275                  "dtsur@cs.ucsd.edu",
1276                  "GPL",
1277                  "Fwd: Re: The LyX licence",
1278                  "m=110910437519054",
1279                  "22 February 2005",
1280                  u"Hebrew support, general file converter, many many bug fixes"),
1281
1282      contributer(u"Matthias Urlichs",
1283                  "smurf@smurf.noris.de",
1284                  "GPL",
1285                  "Re: The LyX licence",
1286                  "m=110912859312991",
1287                  "22 February 2005",
1288                  u"bug reports and small fixes"),
1289
1290      contributer(u"H. Turgut Uyar",
1291                  "uyar@ce.itu.edu.tr",
1292                  "GPL",
1293                  "Re: The LyX licence",
1294                  "m=110917146423892",
1295                  "23 February 2005",
1296                  u"turkish kbmaps"),
1297
1298      contributer(u"Mostafa Vahedi",
1299                  "vahedi58@yahoo.com",
1300                  "GPL",
1301                  "Re: improving Arabic-like language support",
1302                  "m=117769964731842",
1303                  "27 April 2007",
1304                  u"Farsi support and translations"),
1305
1306      contributer(u"Marko Vendelin",
1307                  "markov@ioc.ee",
1308                  "GPL",
1309                  "Re: The LyX licence",
1310                  "m=110909439912594",
1311                  "22 February 2005",
1312                  u"Gnome frontend"),
1313
1314      contributer(u"Joost Verburg",
1315                  "joostverburg@users.sourceforge.net",
1316                  "GPL",
1317                  "Re: New Windows Installer",
1318                  "m=114957884100403",
1319                  "6 June 2006",
1320                  u"A new and improved Windows installer"),
1321
1322      contributer(u"Martin Vermeer",
1323                  "martin.vermeer@hut.fi",
1324                  "GPL",
1325                  "Re: The LyX licence",
1326                  "m=110907543900367",
1327                  "22 February 2005",
1328                  u"support for optional argument in sections/captions svjour/svjog, egs and llncs document classes. Lot of bug hunting (and fixing!)"),
1329
1330      contributer(u"Jürgen Vigna",
1331                  "jug@lyx.org",
1332                  "GPL",
1333                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1334                  "m=110899839906262",
1335                  "21 February 2005",
1336                  u"complete rewrite of the tabular, text inset; fax and plain text export support; iletter and dinbrief support"),
1337
1338      contributer(u"Pauli Virtanen",
1339                  "pauli.virtanen@hut.fi",
1340                  "GPL",
1341                  "Re: The LyX licence",
1342                  "m=110918662408397",
1343                  "23 February 2005",
1344                  u"Finnish localization of the interface"),
1345
1346      contributer(u"Herbert Voß",
1347                  "herbert.voss@alumni.tu-berlin.de",
1348                  "GPL",
1349                  "Fwd: Re: The LyX licence",
1350                  "m=110910439013234",
1351                  "22 February 2005",
1352                  u"The one who answers all questions on lyx-users mailing list and maintains www.lyx.org/help/ Big insetgraphics and bibliography cleanups"),
1353
1354      contributer(u"Andreas Vox",
1355                  "avox@arcor.de",
1356                  "GPL",
1357                  "Re: The LyX licence",
1358                  "m=110907443424620",
1359                  "22 February 2005",
1360                  u"Bug fixes, feedback on LyX behaviour on the Mac, and improvements to DocBook export"),
1361
1362      contributer(u"John P. Weiss",
1363                  "jpweiss@frontiernet.net",
1364                  "Artistic",
1365                  "Re: The LyX licence",
1366                  "m=110913490414280",
1367                  "23 February 2005",
1368                  u"Bugreports and suggestions, slides class support, editor of the documentationproject, 6/96-9/97. Tutorial chapter 1"),
1369
1370      contributer(u"Edmar Wienskoski",
1371                  "edmar@freescale.com",
1372                  "GPL",
1373                  "Re: The LyX licence",
1374                  "m=111280236425781",
1375                  "6 April 2005",
1376                  u"literate programming support; various bug fixes"),
1377
1378      contributer(u"Mate Wierdl",
1379                  "mw@wierdlmpc.msci.memphis.edu",
1380                  "",
1381                  "",
1382                  "",
1383                  "",
1384                  u"Maintainer of the @lists.lyx.org mailing-lists"),
1385
1386      contributer(u"Serge Winitzki",
1387                  "winitzki@erebus.phys.cwru.edu",
1388                  "",
1389                  "",
1390                  "",
1391                  "",
1392                  u"updates to the Scientific Word bindings"),
1393
1394      contributer(u"Stephan Witt",
1395                  "stephan.witt@beusen.de",
1396                  "GPL",
1397                  "Re: The LyX licence",
1398                  "m=110909031824764",
1399                  "22 February 2005",
1400                  u"support for page selection for printing support for number of copies"),
1401
1402      contributer(u"Huang Ying",
1403                  "huangy@sh.necas.nec.com.cn",
1404                  "GPL",
1405                  "Re: The LyX licence",
1406                  "m=110956742604611",
1407                  "28 February 2005",
1408                  u"Gtk frontend"),
1409
1410      contributer(u"Koji Yokota",
1411                  "yokota@res.otaru-uc.ac.jp",
1412                  "GPL",
1413                  "Re: [PATCH] po/ja.po: Japanese message file for 1.5.0 (merged from",
1414                  "m=118033214223720",
1415                  "28 May 2007",
1416                  u"Japanese translation"),
1417
1418      contributer(u"Abdelrazak Younes",
1419                  "younes.a@free.fr",
1420                  "GPL",
1421                  "Re: [Patch] RFQ: ParagraphList Rewrite",
1422                  "m=113993670602439",
1423                  "14 February 2006",
1424                  u"Qt4 frontend, editing optimisations"),
1425
1426      contributer(u"Henner Zeller",
1427                  "henner.zeller@freiheit.com",
1428                  "GPL",
1429                  "Re: The LyX licence",
1430                  "m=110911591218107",
1431                  "22 February 2005",
1432                  u"rotation of wysiwyg figures"),
1433
1434      contributer(u"Horst Schirmeier",
1435                  "horst@schirmeier.com",
1436                  "GPL",
1437                  "Re: [patch] reordering capabilities for GuiBibtex",
1438                  "m=120009631506298",
1439                  "12 January 2008",
1440                  u"small fixes"),
1441
1442      contributer(u"Xiaokun Zhu",
1443                  "xiaokun@aero.gla.ac.uk",
1444                  "",
1445                  "",
1446                  "",
1447                  "",
1448                  u"bug reports and small fixes") ]
1449
1450 if __name__ == "__main__":
1451      main(sys.argv, contributers)