]> git.lyx.org Git - lyx.git/blob - lib/generate_contributions.py
Fix lilypond support, patch from Julien Rioux, bug #6940.
[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.inc> <blanket-permission.inc>" % 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 $email = str_replace(' () ', '@', $email);
155 $email = str_replace(' ! ', '.', $email);
156
157 if (isset($email) && $email != "")
158         $output=$output. "<dt><b>[[mailto:${email} | ${name}]]</b>";
159 else
160         $output=$output. "<dt><b>${name}</b>";
161
162 $msg = ereg_replace("\\n *", "\\n  ", ltrim($msg));
163
164 $output=$output. "
165  </dt>
166  <dd>
167   ${msg}
168  </dd>";
169  
170 return $output;
171 }
172
173 function credits_output() {
174
175 $output=$output."<p>
176      If your name doesn't appear here although you've done
177      something for LyX, or your entry is wrong or incomplete,
178      just drop an e-mail to the
179      [[mailto:lyx-devel@lists.lyx.org | lyx-devel]]
180      mailing list. Thanks.
181 </p>
182
183 <dl>";
184 ''')
185
186      wrapper = textwrap.TextWrapper(width=60, subsequent_indent="         ")
187
188      for contributer in contributers:
189           if len(contributer.credit) != 0:
190                results.append(contributer.as_php_credits(wrapper))
191
192      results.append('''
193 $output=$output."</dl>";
194
195 return $output;
196
197 }
198 ''')
199      results.append(footer())
200      return "".join(results)
201
202
203 def as_php_blanket(contributers, file):
204      results = []
205
206      results.append(header())
207
208      results.append('''
209
210 function blanket_contrib($name, $email, $msg_title, $msg_ref, $date) {
211
212 $email = str_replace(' () ', '@', $email);
213 $email = str_replace(' ! ', '.', $email);
214
215 $output=$output. "
216
217  <dt>
218   <b>[[mailto:${email} | ${name}]]</b>
219  </dt>
220  <dd>
221   See the lyx-devel mailing list message
222   &quot;";
223
224 if (isset($msg_ref) && $msg_ref != "") {
225         $msg_ref = htmlspecialchars("$msg_ref");
226         $output=$output. "[[http://marc.info/?l=lyx-devel&amp;" . ${msg_ref} . "|" . ${msg_title} . "]]";
227 } else {
228         $output=$output. "${msg_title}";
229 }
230
231 $output=$output. "&quot;
232   of $date.
233  </dd>";
234  
235 return $output;
236 }
237
238 function blanket_output() {
239
240 $output=$output."<p>
241      The following people hereby grant permission to license their
242      contributions to LyX under the
243      [[http://www.opensource.org/licenses/gpl-license.php |
244      Gnu General Public License]], version 2 or later.
245 </p>
246
247 <dl>";
248 ''')
249
250      for contributer in contributers:
251           if contributer.licence == "GPL":
252                results.append(contributer.as_php_blanket())
253
254      results.append('''
255 $output=$output."</dl>";
256
257 $output=$output."
258 <p>
259      The following people hereby grant permission to license their
260      contributions to LyX under the
261      [[http://www.opensource.org/licenses/artistic-license-2.0.php |
262      Artistic License 2]].
263 </p>
264
265 <dl>";
266 ''')
267
268      for contributer in contributers:
269           if contributer.licence == "Artistic":
270                results.append(contributer.as_php_blanket())
271
272      results.append('''
273 $output=$output."</dl>";
274
275 return $output;
276
277 }
278 ''')
279
280      results.append(footer())
281      return "".join(results)
282
283
284 def main(argv, contributers):
285      if len(argv) != 4:
286           error(usage(argv[0]))
287
288      txt_credits_data = unicode(as_txt_credits(contributers)).encode("utf-8")
289      txt_credits = open(argv[1], "w")
290      txt_credits.write(txt_credits_data)
291
292      php_credits_data = unicode(as_php_credits(contributers, argv[2])).encode("utf-8")
293      php_credits = open(argv[2], "w")
294      php_credits.write(php_credits_data)
295
296      php_blanket_data = unicode(as_php_blanket(contributers, argv[3])).encode("utf-8")
297      php_blanket = open(argv[3], "w")
298      php_blanket.write(php_blanket_data)
299
300      warning_data =  unicode(collate_incomplete(contributers) + '\n').encode("utf-8")
301      sys.stderr.write(warning_data)
302
303
304 # Store the raw data.
305 contributers = [
306
307      contributer(u"Ronen Abravanel",
308                  "ronena () gmail ! com",
309                  "GPL",
310                  "Re: Patch: Diagram inset",
311                  "m=128486837824718",
312                  "19 September 2010",
313                  u"Support for feyn diagrams"),
314
315      contributer(u"Maarten Afman",
316                  "info () afman ! net",
317                  "GPL",
318                  "Fwd: Re: The LyX licence",
319                  "m=110958096916679",
320                  "27 February 2005",
321                  u"Dutch translation team member"),
322
323      contributer(u"Hatim Alahmadi",
324                  "dr.hatim () hotmail ! com",
325                  "GPL",
326                  "license issue",
327                  "m=121727417724431",
328                  "28 July 2008",
329                  u"Arabic translation"),
330
331      contributer(u"Asger Alstrup",
332                  "aalstrup () laerdal ! dk",
333                  "GPL",
334                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
335                  "m=110899716913300",
336                  "21 February 2005",
337                  u"General hacking of user interface stuff and those other bits and pieces"),
338
339      contributer(u"Pascal André",
340                  "andre () via ! ecp ! fr",
341                  "GPL",
342                  "Re: The LyX licence --- a gentle nudge",
343                  "m=111263406200012",
344                  "1 April 2005",
345                  u"External style definition files, linuxdoc sgml support and more ftp-site ftp.lyx.org"),
346
347      contributer(u"Liviu Andronic",
348                  "landronimirc () gmail ! com",
349                  "GPL",
350                  "contributions GPLed",
351                  "m=121869084720708",
352                  "14 August 2008",
353                  u"Romanian localization and support for the frletter document class"),
354
355      contributer(u"João Luis Meloni Assirati",
356                  "assirati () nonada ! if ! usp ! br",
357                  "GPL",
358                  "Re: The LyX licence",
359                  "m=110918749022256",
360                  "23 February 2005",
361                  u"Added support for unix sockets and thence the 'inverse DVI' feature"),
362
363      contributer(u"Özgür Uğraş Baran",
364                  "ugras.baran () gmail ! com",
365                  "GPL",
366                  "Re: [patch] new InsetCommandParams",
367                  "m=116124030512963",
368                  "19 October 2006",
369                  u"New commandparams structure, Nomenclature inset"),
370
371     contributer(u"Susana Barbosa",
372                  "susana.barbosa () fc ! up ! pt",
373                  "GPL",
374                  "License",
375                  "m=118707828425316",
376                  "14 August 2007",
377                  u"Portuguese translation"),
378
379      contributer(u"Yves Bastide",
380                  "yves.bastide () irisa ! fr",
381                  "GPL",
382                  "Re: The LyX licence",
383                  "m=110959913631678",
384                  "28 February 2005",
385                  u"Bug fixes"),
386
387      contributer(u"Heinrich Bauer",
388                  "heinrich.bauer () t-mobile ! de",
389                  "GPL",
390                  "Fwd: Re: The LyX licence",
391                  "m=110910430117798",
392                  "22 February 2005",
393                  u"Fixes for dvi output original version of page selection for printing"),
394
395      contributer(u"Georg Baum",
396                  "georg.baum () post ! rwth-aachen ! de",
397                  "GPL",
398                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
399                  "m=110899912526043",
400                  "21 February 2005",
401                  u"tex2lyx improvements, bug fixes, unicode work"),
402
403      contributer(u"Hans Bausewein",
404                  "hans () comerwell ! xs4all ! nl",
405                  "GPL",
406                  "Re: The LyX licence --- a gentle nudge",
407                  "m=111262999400394",
408                  "2 April 2005",
409                  '"case insensitive" and "complete word" search'),
410
411      contributer(u"Kornel Benko",
412                  "Kornel.Benko () berlin ! de",
413                  "GPL",
414                  "The LyX licence",
415                  "m=123100818303101",
416                  "3 January 2009",
417                  u"small bugfixes, CMake build system, Slovak translation"),
418
419      contributer(u"Punyashloka Biswal",
420                  "punya.biswal () gmail ! com",
421                  "GPL",
422                  "Re: Patch for ticket #6848",
423                  "m=128298296923913",
424                  "28 August 2010",
425                  u"Bug fixes"),
426
427      contributer(u"Graham Biswell",
428                  "graham () gbiswell ! com",
429                  "GPL",
430                  "Re: The LyX licence",
431                  "m=111269177728853",
432                  "5 April 2005",
433                  u"Small bugfixes that were very hard to find"),
434
435      contributer(u"Lars Gullik Bjønnes",
436                  "larsbj () gullik ! net",
437                  "GPL",
438                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
439                  "m=110907078027047",
440                  "22 February 2005",
441                  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 previous source maintainer."),
442
443      contributer(u"Alfredo Braunstein",
444                  "abraunst () lyx ! org",
445                  "GPL",
446                  "Re: The LyX licence",
447                  "m=110927069513172",
448                  "24 February 2005",
449                  u"A (pseudo) threaded graphics loader queue, lots of fixes, etc."),
450
451      contributer(u"Christian Buescher",
452                  "christian.buescher () uni-bielefeld ! de",
453                  "",
454                  "",
455                  "",
456                  "",
457                  u"User-definable keys, lyxserver and more"),
458
459      contributer(u"Johnathan Burchill",
460                  "jkerrb () users ! sourceforge ! net",
461                  "GPL",
462                  "Re: The LyX licence",
463                  "m=110908472818670",
464                  "22 February 2005",
465                  u"Ported John Levon's original 'change tracking' code to later versions of LyX. Numerous bug fixes thereof."),
466
467      contributer(u"Francesc Burrull i Mestres",
468                  "fburrull () mat ! upc ! es",
469                  "",
470                  "",
471                  "",
472                  "",
473                  u"Catalan translation"),
474
475      contributer(u"Sergiu Carpov",
476                  "ssmiler () gmail ! com",
477                  "GPL",
478                  "Re: Bug #5522",
479                  "m=124721248310586",
480                  "10 July 2009",
481                  u"Bug fixes"),
482
483      contributer(u"Humberto Nicolás Castejón",
484                  "beconico () gmail ! com",
485                  "GPL",
486                  "Re: The LyX licence",
487                  "m=111833854105023",
488                  "9 June 2005",
489                  u"Spanish translation of the Windows installer"),
490
491      contributer(u"Matěj Cepl",
492                  "matej () ceplovi ! cz",
493                  "GPL",
494                  "Re: The LyX licence",
495                  "m=110913090232039",
496                  "22 February 2005",
497                  u"Improvements to the czech keymaps"),
498
499      contributer(u"Albert Chin",
500                  "lyx-devel () mlists ! thewrittenword ! com",
501                  "GPL",
502                  "Re: The LyX licence --- a gentle nudge",
503                  "m=111220294831831",
504                  "30 March 2005",
505                  u"Bug fixes"),
506
507      contributer(u"Jean-Pierre Chrétien",
508                  "jeanpierre.chretien () free ! fr",
509                  "GPL",
510                  "Re: The LyX licence",
511                  "m=111842518713710",
512                  "10 June 2005",
513                  u"French translations"),
514
515      contributer(u"Claudio Coco",
516                  "lacocio () libero ! it",
517                  "GPL",
518                  "Agreement to GNU General Public licence",
519                  "m=113749629514591",
520                  "17 January 2006",
521                  u"Italian translation"),
522
523      contributer(u"Yuri Chornoivan",
524                  "yurchor () ukr ! net",
525                  "GPL",
526                  "Permission grant",
527                  "m=121681339315810",
528                  "23 July 2008",
529                  u"Ukrainian translation"),
530
531      contributer(u"Matthias Kalle Dalheimer",
532                  "kalle () kdab ! net",
533                  "GPL",
534                  "Re: The LyX licence",
535                  "m=110908857130107",
536                  "22 February 2005",
537                  u"Qt2 port"),
538
539      contributer(u"Ulysse Danglis",
540                  "o2d () freemail ! gr",
541                  "GPL",
542                  "License of el.po",
543                  "m=126738357204586",
544                  "28 February 2010",
545                  u"Greek translations"),
546
547      contributer(u"Ewan Davies",
548                  "ewan.davies () googlemail ! com",
549                  "GPL",
550                  "Re: Starting Development",
551                  "m=124248720628359",
552                  "17 May 2009",
553                  u"doxygen to LFUNs.lyx conversion"),
554
555      contributer(u"Jack Dessert",
556                  "jackdesert556 () gmail ! com",
557                  "GPL",
558                  "License",
559                  "m=126994985831115",
560                  "30 March 2010",
561                  u"Patches for configure.py"),
562
563      contributer(u"Anders Ekberg",
564                  "anek () chalmers ! se",
565                  "GPL",
566                  "License agreement",
567                  "m=113725822602516",
568                  "14 January 2006",
569                  u"Improvements to the Swedish translation of the Windows Installer"),
570      
571      contributer(u"Martin Engbers",
572                  "martin.engbers () gmx ! de",
573                  "GPL",
574                  "Re: [patch] Icon replacement",
575                  "m=123877725311464",
576                  "Apr 3 2009",
577                  u"icon loading tweaks"),
578
579      contributer(u"Matthias Ettrich",
580                  "ettrich () trolltech ! com",
581                  "GPL",
582                  "Fwd: Re: The LyX licence",
583                  "m=110959638810040",
584                  "28 February 2005",
585                  u"Started the project, implemented the early versions, various improvements including undo/redo, tables, and much, much more"),
586
587      contributer(u"Baruch Even",
588                  "baruch () ev-en ! org",
589                  "GPL",
590                  "Re: The LyX licence",
591                  "m=110936007609786",
592                  "25 February 2005",
593                  u"New graphics handling scheme and more"),
594
595      contributer(u"Dov Feldstern",
596                  "dfeldstern () fastimap ! com",
597                  "GPL",
598                  "Re: Farsi support re-submission plus a little more",
599                  "m=118064913824836",
600                  "31 May 2007",
601                  u"RTL/BiDi-related fixes"),
602
603      contributer(u"Michał Fita",
604                  "michal ! fita () gmail ! com",
605                  "GPL",
606                  "Statement for Polish translation",
607                  "m=121615623122376",
608                  "15 July 2008",
609                  u"Polish translation"),
610
611      contributer(u"Ronald Florence",
612                  "ron () 18james ! com",
613                  "GPL",
614                  "Re: The LyX licence --- a gentle nudge",
615                  "m=111262821108510",
616                  "31 March 2005",
617                  u"Maintainer of the OS X port(s)"),
618
619      contributer(u"José Ramom Flores d'as Seixas",
620                  "fa2ramon () usc ! es",
621                  "GPL",
622                  "Re: Galician translation",
623                  "m=116136920230072",
624                  "20 October 2006",
625                  u"Galician documentation and localization"),
626
627      contributer(u"John Michael Floyd",
628                  "jmf () pwd ! nsw ! gov ! au",
629                  "",
630                  "",
631                  "",
632                  "",
633                  u"Bug fix to the spellchecker"),
634
635      contributer(u"Nicola Focci",
636                  "nicola.focci () gmail ! com",
637                  "GPL",
638                  "Permission",
639                  "m=120946605432341",
640                  "29 April 2008",
641                  u"Italian translation of documentations"),
642
643      contributer(u"Enrico Forestieri",
644                  "forenr () tlc ! unipr ! it",
645                  "GPL",
646                  "Re: lyxpreview2ppm.py",
647                  "m=111894292115287",
648                  "16 June 2005",
649                  u"Italian translations, many bug fixes and features"),
650
651      contributer(u"Eitan Frachtenberg",
652                  "sky8an () gmail ! com",
653                  "GPL",
654                  "Re: [PATCH] BibTeX annotation support",
655                  "m=111130799028250",
656                  "20 March 2005",
657                  u"BibTeX annotation support"),
658
659      contributer(u"Darren Freeman",
660                  "dfreeman () ieee ! org",
661                  "GPL",
662                  "Licence",
663                  "m=118612951707590",
664                  "3 August 2007",
665                  u"Improvements to mouse wheel scrolling; many bug reports"),
666
667      contributer(u"Edscott Wilson Garcia",
668                  "edscott () xfce ! org",
669                  "GPL",
670                  "Re: The LyX licence --- a gentle nudge",
671                  "m=111219295119021",
672                  "30 March 2005",
673                  u"Bug fixes"),
674
675      contributer(u"Ignacio García",
676                  "ignacio.garcia () tele2 ! es",
677                  "GPL",
678                  "Re: es_EmbeddedObjects",
679                  "m=117079592919653",
680                  "06 February 2007",
681                  u"Spanish translation of documentations"),
682
683      contributer(u"Michael Gerz",
684                  "michael.gerz () teststep ! org",
685                  "GPL",
686                  "Re: The LyX licence",
687                  "m=110909251110103",
688                  "22 February 2005",
689                  u"Change tracking, German localization, bug fixes"),
690
691      contributer(u"Stefano Ghirlanda",
692                  "stefano.ghirlanda () unibo ! it",
693                  "GPL",
694                  "Re: The LyX licence",
695                  "m=110959835300777",
696                  "28 February 2005",
697                  u"Improvements to lyxserver"),
698
699      contributer(u"Hartmut Goebel",
700                  "h.goebel () crazy-compilers ! com",
701                  "GPL",
702                  "Re: The LyX licence --- a gentle nudge",
703                  "m=111225910223564",
704                  "30 March 2005",
705                  u"Improvements to Koma-Script classes"),
706
707      contributer(u"Riccardo Gori",
708                  "goriccardo () gmail ! com",
709                  "GPL",
710                  "Re: r35561 - lyx-devel/trunk/src/insets",
711                  "m=128626762015975",
712                  "5 Oct 2010",
713                  u"Fixing tabular code"),
714
715       contributer(u"Peter Gumm",
716                  "gumm () mathematik ! uni-marburg ! de",
717                  "GPL",
718                  "Re: xy-pic manual",
719                  "m=122469079629276",
720                  "22 October 2008",
721                  u"XY-pic manual"),
722      
723      contributer(u"İbrahim Güngör",
724                  "h.ibrahim.gungor () gmail ! com",
725                  "GPL",
726                  "Update Turkish Translation",
727                  "m=122583550732670",
728                  "4 Nov 2008",
729                  u"Turkish translation"),
730
731      contributer(u"Hartmut Haase",
732                  "hha4491 () web ! de",
733                  "GPL",
734                  "Re: The LyX licence",
735                  "m=110915427710167",
736                  "23 February 2005",
737                  u"German translation of the documentation"),
738
739      contributer(u"Helge Hafting",
740                  "helgehaf () aitel ! hist ! no",
741                  "GPL",
742                  "Re: The LyX licence",
743                  "m=110916171925288",
744                  "23 February 2005",
745                  u"Norwegian documentation and localization"),
746
747      contributer(u"Richard Heck",
748                  "rgheck () brown ! edu",
749                  "GPL",
750                  "GPL Statement",
751                  "m=117501689204059",
752                  "27 March 2007",
753                  u"Bug fixes, layout modules, BibTeX code"),
754
755      contributer(u"Bennett Helm",
756                  "bennett.helm () fandm ! edu",
757                  "GPL",
758                  "Re: The LyX licence",
759                  "m=110907988312372",
760                  "22 February 2005",
761                  u"Maintainer of the OSX ports, taking over from Ronald Florence"),
762
763      contributer(u"Kevin B. Hendricks",
764                  "kevin.hendricks () sympatico ! ca",
765                  "GPL",
766                  "Fwd: Re: Integration of libmythes and hunspell",
767                  "m=124190107613441",
768                  "9 May 2009",
769                  u"Author of the MyThes thesaurus library"),
770
771      contributer(u"Claus Hentschel",
772                  "claus.hentschel () mbau ! fh-hannover ! de",
773                  "",
774                  "",
775                  "",
776                  "",
777                  u"Win32 port of LyX 1.1.x"),
778
779      contributer(u"Claus Hindsgaul",
780                  "claus_h () image ! dk",
781                  "GPL",
782                  "Re: The LyX licence",
783                  "m=110908607416324",
784                  "22 February 2005",
785                  u"Danish translation"),
786
787      contributer(u"Bernard Hurley",
788                  "bernard () fong-hurley ! org ! uk",
789                  "GPL",
790                  "Re: The LyX licence --- a gentle nudge",
791                  "m=111218682804142",
792                  "30 March 2005",
793                  u"Fixes to literate programming support"),
794
795      contributer(u"Marius Ionescu",
796                  "felijohn () gmail ! com",
797                  "GPL",
798                  "permission to licence",
799                  "m=115935958330941",
800                  "27 September 2006",
801                  u"Romanian localization"),
802
803      contributer(u"Bernhard Iselborn",
804                  "bernhard.iselborn () sap ! com",
805                  "GPL",
806                  "RE: The LyX licence",
807                  "m=111268306522212",
808                  "5 April 2005",
809                  u"Some minor bug-fixes, FAQ, linuxdoc sgml support"),
810
811      contributer(u"Masanori Iwami",
812                  "masa.iwm () gmail ! com",
813                  "GPL",
814                  "Re: [patch] Addition of input method support",
815                  "m=117541512517453",
816                  "1 April 2007",
817                  u"Development of CJK language support"),
818
819      contributer(u"Michal Jaegermann",
820                  "michal () ellpspace ! math ! ualberta ! ca",
821                  "GPL",
822                  "Re: The LyX licence",
823                  "m=110909853626643",
824                  "22 February 2005",
825                  u"Fix to a very hard-to-find egcs bug that crashed LyX on alpha architecture"),
826
827      contributer(u"Harshula Jayasuriya",
828                  "harshula () gmail ! com",
829                  "GPL",
830                  "Re: Bug in export to DocBook",
831                  "m=116884249725701",
832                  "15 January 2007",
833                  u"Fix docbook generation of nested lists"),
834
835      contributer(u"David L. Johnson",
836                  "david.johnson () lehigh ! edu",
837                  "GPL",
838                  "GPL",
839                  "m=110908492016593",
840                  "22 February 2005",
841                  u"Public relations, feedback, documentation and support"),
842
843      contributer(u"Robert van der Kamp",
844                  "robnet () wxs ! nl",
845                  "GPL",
846                  "Re: The LyX licence",
847                  "m=111268623330209",
848                  "5 April 2005",
849                  u"Various small things and code simplifying"),
850
851      contributer(u"Amir Karger",
852                  "amirkarger () gmail ! com",
853                  "GPL",
854                  "Re: The LyX licence",
855                  "m=110912688520245",
856                  "23 February 2005",
857                  u"Tutorial, reLyX: the LaTeX to LyX translator"),
858
859      contributer(u"Carmen Kauffmann",
860                  "",
861                  "",
862                  "",
863                  "",
864                  "",
865                  u"Original name that is now two character shorter"),
866
867      contributer(u"KDE Artists",
868                  "http://artist.kde.org/",
869                  "",
870                  "",
871                  "",
872                  "",
873                  u"Authors of several of the icons LyX uses"),
874
875      contributer(u"Andreas Klostermann",
876                  "andreas_klostermann () web ! de",
877                  "GPL",
878                  "blanket-permission",
879                  "m=111054675600338",
880                  "11 March 2005",
881                  u"Gtk reference insertion dialog"),
882
883      contributer(u"Kostantino",
884                  "ciclope10 () alice ! it",
885                  "GPL",
886                  "Permission granted",
887                  "m=115513400621782",
888                  "9 August 2006",
889                  u"Italian localization of the interface"),
890
891      contributer(u"Michael Koziarski",
892                  "koziarski () gmail ! com",
893                  "GPL",
894                  "Re: The LyX licence",
895                  "m=110909592017966",
896                  "22 February 2005",
897                  u"Gnome port"),
898
899      contributer(u"Peter Kremer",
900                  "kremer () bme-tel ! ttt ! bme ! hu",
901                  "",
902                  "",
903                  "",
904                  "",
905                  u"Hungarian translation and bind file for menu shortcuts"),
906
907      contributer(u'Valeriy Kruchko',
908                  "lerkru () gmail ! com",
909                  "GPL",
910                  "Re: translation in to russian about 68%",
911                  "m=125904983806681",
912                  "24 November 2009",
913                  u"Russian translation of the user interface"),
914
915      contributer(u"Peter Kümmel",
916                  "syntheticpp () gmx ! net",
917                  "GPL",
918                  "License",
919                  "m=114968828021007",
920                  "7 June 2006",
921                  u"Qt4 coding, CMake build system, bug fixing, testing, clean ups, and profiling"),
922
923      contributer(u"Bernd Kümmerlen",
924                  "bkuemmer () gmx ! net",
925                  "GPL",
926                  "Re: The LyX licence",
927                  "m=110934318821667",
928                  "25 February 2005",
929                  u"Initial version of the koma-script textclasses"),
930
931      contributer(u"Felix Kurth",
932                  "felix () fkurth ! de",
933                  "GPL",
934                  "Re: The LyX licence",
935                  "m=110908918916109",
936                  "22 February 2005",
937                  u"Support for textclass g-brief2"),
938
939      contributer(u"Rob Lahaye",
940                  "lahaye () snu ! ac ! kr",
941                  "GPL",
942                  "Re: The LyX licence",
943                  "m=110908714131711",
944                  "22 February 2005",
945                  u"Xforms dialogs and GUI related code"),
946
947      contributer(u"Jean-Marc Lasgouttes",
948                  "lasgouttes () lyx ! org",
949                  "GPL",
950                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
951                  "m=110899928510452",
952                  "21 February 2005",
953                  u"configure and Makefile-stuff, many bugfixes and more. Previous stable branch maintainer."),
954
955      contributer(u"Victor Lavrenko",
956                  "lyx () lavrenko ! pp ! ru",
957                  "",
958                  "",
959                  "",
960                  "",
961                  u"Russian translation"),
962
963      contributer(u"Angus Leeming",
964                  "leeming () lyx ! org",
965                  "GPL",
966                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
967                  "m=110899671520339",
968                  "21 February 2005",
969                  u"GUI-I-fication of insets and more"),
970
971      contributer(u"Edwin Leuven",
972                  "e.leuven () uva ! nl",
973                  "GPL",
974                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
975                  "m=110899657530749",
976                  "21 February 2005",
977                  u"Qt2 frontend GUI-I-fication of several popups.\nDutch translation of the Windows installer"),
978
979      contributer(u"John Levon",
980                  "levon () movementarian ! org",
981                  "GPL",
982                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
983                  "m=110899535600562",
984                  "21 February 2005",
985                  u"Qt2 frontend, GUII work, bugfixes"),
986
987      contributer(u"Ling Li",
988                  "ling () caltech ! edu",
989                  "GPL",
990                  "Re: LyX 1.4cvs crash on Fedora Core 3",
991                  "m=111204368700246",
992                  "28 March 2005",
993                  u"Added native support for \makebox to mathed. Several bug fixes, both to the source code and to the llncs layout file"),
994
995      contributer(u"Tomasz Łuczak",
996                  "tlu () technodat ! com ! pl",
997                  "GPL",
998                  "Re: [Cvslog] lyx-devel po/: ChangeLog pl.po lib/: CREDITS",
999                  "m=113580483406067",
1000                  "28 December 2005",
1001                  u"Polish translation and mw* layouts files"),
1002
1003      contributer(u"Hangzai Luo",
1004                  "memcache () gmail ! com",
1005                  "GPL",
1006                  "Re: [patch] tex2lyx crash when full path is given from commandline on Win32",
1007                  "m=118326161706627",
1008                  "1 July 2007",
1009                  u"Bugfixes"),
1010
1011      contributer(u"Mohamed Magdy",
1012                  "physicist2010 () gmail ! com>",
1013                  "GPL",
1014                  "A permission to use my Arabic-Translation for LyX?",
1015                  "m=126877445318267",
1016                  "16 March 2010",
1017                  u"Arabic translation"),
1018
1019      contributer(u"Tetsuya Makimura",
1020                  "makimura () ims ! tsukuba.ac ! jp",
1021                  "GPL",
1022                  "Re: Support request for Japanese without CJK, again (Re: [Fwd: About Japanese edition ...)",
1023                  "m=121905769227884",
1024                  "18 August 2008",
1025                  u"Improvements to the Japanese language support."),
1026
1027      contributer(u"José Matos",
1028                  "jamatos () fc ! up ! pt",
1029                  "GPL",
1030                  "Re: The LyX licence",
1031                  "m=110907762926766",
1032                  "22 February 2005",
1033                  u"linuxdoc sgml support. Current release manager."),
1034
1035      contributer(u"Roman Maurer",
1036                  "roman.maurer () amis ! net",
1037                  "GPL",
1038                  "Re: The LyX licence",
1039                  "m=110952616722307",
1040                  "27 February 2005",
1041                  u"Slovenian translation coordinator"),
1042
1043      contributer(u"John McCabe-Dansted",
1044                  "gmatht () gmail ! com",
1045                  "GPL",
1046                  "Re: Randomly Generated Crash Reports Useful?",
1047                  "m=124515770509946",
1048                  "15 June 2009",
1049                  u"Keys-test module, bug fixing"),
1050  
1051      contributer(u"Caolán McNamara",
1052                  "caolanm () redhat ! com",
1053                  "GPL",
1054                  "Statement for enchant integration",
1055                  "m=126389593805123",
1056                  "19 January 2010",
1057                  u"Support for the enchant spell checking library"),
1058
1059      contributer(u"Tino Meinen",
1060                  "a.t.meinen () chello ! nl",
1061                  "GPL",
1062                  "Re: Licensing your contributions to LyX",
1063                  "m=113078277722316",
1064                  "31 October 2005",
1065                  u"Dutch translation coordinator"),
1066
1067      contributer(u"Siegfried Meunier-Guttin-Cluzel",
1068                  "meunier () coria ! fr",
1069                  "GPL",
1070                  "French translations",
1071                  "m=119485816312776",
1072                  "12 November 2007",
1073                  u"French translations of the documentation"),
1074      
1075       contributer(u"Günter Milde",
1076                  "milde () users ! berlios ! de",
1077                  "GPL",
1078                  "copyleft",
1079                  "m=122398147620761",
1080                  "14 October 2008",
1081                  u"Unicode and layout file fixes"),
1082
1083      contributer(u"Joan Montané",
1084                  "jmontane () gmail ! com",
1085                  "GPL",
1086                  "Re: LyX translation updates needed",
1087                  "m=118765575314017",
1088                  "21 August 2007",
1089                  u"Catalan translations of menus"),
1090
1091      contributer(u"Iñaki Larrañaga Murgoitio",
1092                  "dooteo () euskalgnu ! org",
1093                  "GPL",
1094                  "Re: The LyX licence",
1095                  "m=110908606525783",
1096                  "22 February 2005",
1097                  u"Basque documentation and localization"),
1098
1099      contributer(u"Daniel Naber",
1100                  "daniel.naber () t-online ! de",
1101                  "GPL",
1102                  "Re: The LyX licence",
1103                  "m=110911176213928",
1104                  "22 February 2005",
1105                  u"Improvements to the find&replace dialog"),
1106
1107      contributer(u"Pablo De Napoli",
1108                  "pdenapo () mate ! dm ! uba ! ar",
1109                  "GPL",
1110                  "Re: The LyX licence",
1111                  "m=110908904400120",
1112                  "22 February 2005",
1113                  u"Math panel dialogs"),
1114
1115      contributer(u"Dirk Niggemann",
1116                  "dabn100 () cam ! ac ! uk",
1117                  "",
1118                  "",
1119                  "",
1120                  "",
1121                  u"config. handling enhancements, bugfixes, printer enhancements path mingling"),
1122
1123      contributer(u"Jens Nöckel",
1124                  "noeckel () uoregon !edu",
1125                  "GPL",
1126                  "GPL statement",
1127                  "m=128485749516885",
1128                  "19 September 2010",
1129                  u"Mac OS X enhancements"),
1130
1131      contributer(u"Rob Oakes",
1132                  "lyx-devel () oak-tree ! us>",
1133                  "GPL",
1134                  "Outline Contributions",
1135                  "m=124615188102843",
1136                  "27 June 2009",
1137                  u"Improvements to the outliner."),
1138
1139      contributer(u"Carl Ollivier-Gooch",
1140                  "cfog () mech ! ubc ! ca",
1141                  "GPL",
1142                  "Re: The LyX licence --- a gentle nudge",
1143                  "m=111220662413921",
1144                  "30 March 2005",
1145                  u"Support for two-column figure (figure*) and table (table*) environments.  Fixed minibuffer entry of floats."),
1146
1147      contributer(u'Panayotis "PAP" Papasotiriou',
1148                  "papasot () upatras ! gr",
1149                  "GPL",
1150                  "Re: The LyX licence",
1151                  "m=110933552929119",
1152                  "25 February 2005",
1153                  u"Support for kluwer and ijmpd document classes"),
1154
1155      contributer(u'Andrey V. Panov',
1156                  "panov () canopus ! iacp ! dvo ! ru",
1157                  "GPL",
1158                  "Re: Russian translation for LyX",
1159                  "m=119853644302866",
1160                  "24 December 2007",
1161                  u"Russian translation of the user interface"),
1162
1163      contributer(u'Bo Peng',
1164                  "ben.bob () gmail ! com",
1165                  "GPL",
1166                  "Re: Python version of configure script (preview version)",
1167                  "m=112681895510418",
1168                  "15 September 2005",
1169                  u"Conversion of all shell scripts to Python, shortcuts dialog, session, view-source, auto-view, embedding features and scons build system."),
1170
1171      contributer(u"Joacim Persson",
1172                  "sp2joap1 () ida ! his ! se",
1173                  "",
1174                  "",
1175                  "",
1176                  "",
1177                  u"po-file for Swedish, a tool for picking shortcuts, bug reports and hacking atrandom"),
1178
1179      contributer(u"Zvezdan Petkovic",
1180                  "zpetkovic () acm ! org",
1181                  "GPL",
1182                  "Re: The LyX licence",
1183                  "m=111276877900892",
1184                  "6 April 2005",
1185                  u"Better support for serbian and serbocroatian"),
1186
1187      contributer(u"Geoffroy Piroux",
1188                  "piroux () fyma ! ucl ! ac ! be",
1189                  "",
1190                  "",
1191                  "",
1192                  "",
1193                  u"Mathematica backend for mathed"),
1194
1195      contributer(u"Neoklis Polyzotis",
1196                  "alkis () soe ! ucsc ! edu",
1197                  "GPL",
1198                  "Fwd: Re: The LyX licence",
1199                  "m=111039215519777",
1200                  "9 March 2005",
1201                  u"Keymap work"),
1202
1203      contributer(u"André Pönitz",
1204                  "andre.poenitz () mathematik ! tu-chemnitz ! de",
1205                  "GPL",
1206                  "Re: The LyX licence",
1207                  "m=111143534724146",
1208                  "21 March 2005",
1209                  u"mathed rewrite to use STL file io with streams --export and --import command line options"),
1210
1211      contributer(u"Kornelia Pönitz",
1212                  "kornelia.poenitz () mathematik ! tu-chemnitz ! de",
1213                  "GPL",
1214                  "Re: The LyX licence",
1215                  "m=111121553103800",
1216                  "19 March 2005",
1217                  u"heavy mathed testing; provided siamltex document class"),
1218
1219      contributer(u"Bernhard Psaier",
1220                  "",
1221                  "",
1222                  "",
1223                  "",
1224                  "",
1225                  u"Designer of the LyX-Banner"),
1226
1227      contributer(u"Thomas Pundt",
1228                  "thomas () pundt ! de",
1229                  "GPL",
1230                  "Re: The LyX licence",
1231                  "m=111277917703326",
1232                  "6 April 2005",
1233                  u"initial configure script"),
1234
1235      contributer(u"Allan Rae",
1236                  "rae () itee ! uq ! edu ! au",
1237                  "GPL",
1238                  "lyx-1.3.6cvs configure.in patch",
1239                  "m=110905169512662",
1240                  "21 February 2005",
1241                  u"GUI-I architect, LyX PR head, LDN, bug reports/fixes, Itemize Bullet Selection, xforms-0.81 + gcc-2.6.3 compatibility"),
1242      
1243      contributer(u"Manoj Rajagopalan",
1244                  "rmanoj () umich ! edu", 
1245                  "GPL", 
1246                  "Re: patch for case-insensitive reference sorting", 
1247                  "m=123506398801004", 
1248                  "Feb 19 2009", 
1249                  u"reference dialog tweaks"),
1250      
1251      contributer(u"Vincent van Ravesteijn",
1252                  "V.F.vanRavesteijn () tudelft ! nl",
1253                  "GPL",
1254                  "RE: crash lyx-1.6rc1",
1255                  "m=121786603726114",
1256                  "4 August 2008",
1257                  u"lots of fixes"),
1258
1259      contributer(u"Adrien Rebollo",
1260                  "adrien.rebollo () gmx ! fr",
1261                  "GPL",
1262                  "Re: The LyX licence",
1263                  "m=110918633227093",
1264                  "23 February 2005",
1265                  u"French translation of the docs; latin 3, 4 and 9 support"),
1266
1267      contributer(u"Garst R. Reese",
1268                  "garstr () isn ! net",
1269                  "GPL",
1270                  "blanket-permission.txt:",
1271                  "m=110911480107491",
1272                  "22 February 2005",
1273                  u"provided hollywood and broadway classes for writing screen scripts and plays"),
1274
1275      contributer(u"Bernhard Reiter",
1276                  "ockham () gmx ! net",
1277                  "GPL",
1278                  "Re: RFC: GThesaurus.C et al.",
1279                  "m=112912017013984",
1280                  "12 October 2005",
1281                  u"Gtk frontend"),
1282
1283      contributer(u"Ruurd Reitsma",
1284                  "rareitsma () yahoo ! com",
1285                  "GPL",
1286                  "Fwd: Re: The LyX licence",
1287                  "m=110959179412819",
1288                  "28 February 2005",
1289                  u"Creator of the native port of LyX to Windows"),
1290
1291      contributer(u"Bernd Rellermeyer",
1292                  "bernd.rellermeyer () arcor ! de",
1293                  "GPL",
1294                  "Re: The LyX licence",
1295                  "m=111317142419908",
1296                  "10 April 2005",
1297                  u"Support for Koma-Script family of classes"),
1298
1299      contributer(u"Michael Ressler",
1300                  "mike.ressler () alum ! mit ! edu",
1301                  "GPL",
1302                  "Re: The LyX licence",
1303                  "m=110926603925431",
1304                  "24 February 2005",
1305                  u"documentation maintainer, AASTeX support"),
1306
1307      contributer(u"Christian Ridderström",
1308                  "christian.ridderstrom () gmail ! com",
1309                  "GPL",
1310                  "Re: The LyX licence",
1311                  "m=110910933124056",
1312                  "22 February 2005",
1313                  u"The driving force behind, and maintainer of, the LyX wiki wiki.\nSwedish translation of the Windows installer"),
1314
1315      contributer(u"Julien Rioux",
1316                  "jrioux () physics ! utoronto ! ca",
1317                  "GPL",
1318                  "Re: #6361: configure.py ignores packages required by user-defined modules",
1319                  "m=125986505101722",
1320                  "3 December 2009",
1321                  u"Bug fixes, lilypond support"),
1322
1323      contributer(u"Bernhard Roider",
1324                  "bernhard.roider () sonnenkinder ! org",
1325                  "GPL",
1326                  "Re: [PATCH] immediatly display saved filename in tab",
1327                  "m=117009852211669",
1328                  "29 January 2007",
1329                  u"Various bug fixes"),
1330
1331      contributer(u"Paul A. Rubin",
1332                  "rubin () msu ! edu",
1333                  "GPL",
1334                  "Re: [patch] reworked AMS classes (bugs 4087, 4223)",
1335                  "m=119072721929143",
1336                  "25 September 2007",
1337                  u"Major rework of the AMS classes"),
1338
1339      contributer(u"Ran Rutenberg",
1340                  "ran.rutenberg () gmail ! com",
1341                  "GPL",
1342                  "The New Hebrew Translation of the Introduction",
1343                  "m=116172457024967",
1344                  "24 October 2006",
1345                  u"Hebrew translation"),
1346
1347      contributer(u'Pavel Sanda',
1348                  "ps () ucw ! cz",
1349                  "GPL",
1350                  "Re: czech translation",
1351                  "m=115522417204086",
1352                  "10 August 2006",
1353                  u"Czech translation, support for the LaTeX package hyperref, fullscreen support, lfuns docs/review"),
1354
1355      contributer(u"Szõke Sándor",
1356                  "alex () lyx ! hu",
1357                  "GPL",
1358                  "Contribution to LyX",
1359                  "m=113449408830523",
1360                  "13 December 2005",
1361                  u"Hungarian translation"),
1362
1363      contributer(u"Janus Sandsgaard",
1364                  "janus () janus ! dk",
1365                  "GPL",
1366                  "Re: The LyX licence",
1367                  "m=111839355328045",
1368                  "10 June 2005",
1369                  u"Danish translation of the Windows installer"),
1370
1371      contributer(u"Stefan Schimanski",
1372                  "sts () 1stein ! org",
1373                  "GPL",
1374                  "GPL statement",
1375                  "m=117541472517274",
1376                  "1 April 2007",
1377                  u"font improvements, bug fixes"),
1378      
1379      contributer(u"Horst Schirmeier",
1380                  "horst () schirmeier ! com",
1381                  "GPL",
1382                  "Re: [patch] reordering capabilities for GuiBibtex",
1383                  "m=120009631506298",
1384                  "12 January 2008",
1385                  u"small fixes"),
1386
1387      contributer(u"Hubert Schreier",
1388                  "schreier () sc ! edu",
1389                  "",
1390                  "",
1391                  "",
1392                  "",
1393                  u"spellchecker (ispell frontend); beautiful document-manager based on the simple table of contents (removed)"),
1394
1395      contributer(u"Ivan Schreter",
1396                  "schreter () kdk ! sk",
1397                  "",
1398                  "",
1399                  "",
1400                  "",
1401                  u"international support and kbmaps for slovak, czech, german, ... wysiwyg figure"),
1402
1403      contributer(u"Eulogio Serradilla Rodríguez",
1404                  "eulogio.sr () terra ! es",
1405                  "GPL",
1406                  "Re: The LyX licence",
1407                  "m=110915313018478",
1408                  "23 February 2005",
1409                  u"contribution to the spanish internationalization"),
1410
1411      contributer(u"Miyata Shigeru",
1412                  "miyata () kusm ! kyoto-u ! ac ! jp",
1413                  "",
1414                  "",
1415                  "",
1416                  "",
1417                  u"OS/2 port"),
1418
1419      contributer(u"Alejandro Aguilar Sierra",
1420                  "asierra () servidor ! unam ! mx",
1421                  "GPL",
1422                  "Fwd: Re: The LyX licence",
1423                  "m=110918647812358",
1424                  "23 February 2005",
1425                  u"Fast parsing with lyxlex, pseudoactions, mathpanel, Math Editor, combox and more"),
1426
1427      contributer(u"Lior Silberman",
1428                  "lior () princeton ! edu",
1429                  "GPL",
1430                  "Fwd: Re: The LyX licence",
1431                  "m=110910432427450",
1432                  "22 February 2005",
1433                  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 different inset properties configurable."),
1434      
1435      contributer(u"Waluyo Adi Siswanto",
1436                  "was.uthm () gmail ! com",
1437                  "GPL",
1438                  "Licence contributions",
1439                  "m=123595530114385",
1440                  "Mar 2 2009",
1441                  u"Indonesian translation"),
1442
1443      contributer(u"Andre Spiegel",
1444                  "spiegel () gnu ! org",
1445                  "GPL",
1446                  "Re: The LyX licence",
1447                  "m=110908534728505",
1448                  "22 February 2005",
1449                  u"vertical spaces"),
1450
1451      contributer(u"Jürgen Spitzmüller",
1452                  "juergen.sp () t-online ! de",
1453                  "GPL",
1454                  "Re: The LyX licence",
1455                  "m=110907530127164",
1456                  "22 February 2005",
1457                  u"Qt frontend, bugfixes. Current stable branch maintainer."),
1458
1459      contributer(u"John Spray",
1460                  "jcs116 () york ! ac ! uk",
1461                  "GPL",
1462                  "Re: The LyX licence",
1463                  "m=110909415400170",
1464                  "22 February 2005",
1465                  u"Gtk frontend"),
1466
1467      contributer(u"Ben Stanley",
1468                  "ben.stanley () exemail ! com ! au",
1469                  "GPL",
1470                  "Re: The LyX licence",
1471                  "m=110923981012056",
1472                  "24 February 2005",
1473                  u"fix bugs with error insets placement"),
1474
1475      contributer(u"Uwe Stöhr",
1476                  "uwestoehr () web ! de",
1477                  "GPL",
1478                  "Re: The LyX licence",
1479                  "m=111833345825278",
1480                  "9 June 2005",
1481                  u"Current documentation maintainer, Windows installer, bug fixes"),
1482
1483      contributer(u"David Suárez de Lis",
1484                  "excalibor () iname ! com",
1485                  "",
1486                  "",
1487                  "",
1488                  "",
1489                  u"maintaining es.po since v1.0.0 and other small i18n issues small fixes"),
1490
1491      contributer(u"Peter Sütterlin",
1492                  "p.suetterlin () astro ! uu ! nl",
1493                  "GPL",
1494                  "Re: The LyX licence",
1495                  "m=110915086404972",
1496                  "23 February 2005",
1497                  u"aapaper support, german documentation translation, bug reports"),
1498
1499      contributer(u"Kayvan Aghaiepour Sylvan",
1500                  "kayvan () sylvan ! com",
1501                  "GPL",
1502                  "Re: The LyX licence",
1503                  "m=110908748407087",
1504                  "22 February 2005",
1505                  u"noweb2lyx and reLyX integration of noweb files. added Import->Noweb and key bindings to menus"),
1506
1507      contributer(u"TaoWang (mgc)",
1508                  "mgcgogo () gmail ! com",
1509                  "GPL",
1510                  "Re: Chinese Version of Tutorial.lyx",
1511                  "m=125785021631705",
1512                  "10 November 2009",
1513                  u"translation of documentation and user interface to Simplified Chinese"),
1514
1515      contributer(u'Sergey Tereschenko',
1516                  "serg.partizan () gmail ! com",
1517                  "GPL",
1518                  "my contributions",
1519                  "m=126065880524135",
1520                  "12 December 2009",
1521                  u"Russian translation of the user interface"),
1522
1523      contributer(u"Reuben Thomas",
1524                  "rrt () sc3d ! org",
1525                  "GPL",
1526                  "Re: The LyX licence",
1527                  "m=110911018202083",
1528                  "22 February 2005",
1529                  u"ENTCS document class and lots of useful bug reports"),
1530
1531      contributer(u"Dekel Tsur",
1532                  "dtsur () cs ! ucsd ! edu",
1533                  "GPL",
1534                  "Fwd: Re: The LyX licence",
1535                  "m=110910437519054",
1536                  "22 February 2005",
1537                  u"Hebrew support, general file converter, many many bug fixes"),
1538
1539      contributer(u"Matthias Urlichs",
1540                  "smurf () smurf ! noris ! de",
1541                  "GPL",
1542                  "Re: The LyX licence",
1543                  "m=110912859312991",
1544                  "22 February 2005",
1545                  u"bug reports and small fixes"),
1546
1547      contributer(u"H. Turgut Uyar",
1548                  "uyar () ce ! itu ! edu ! tr",
1549                  "GPL",
1550                  "Re: The LyX licence",
1551                  "m=110917146423892",
1552                  "23 February 2005",
1553                  u"turkish kbmaps"),
1554
1555      contributer(u"Mostafa Vahedi",
1556                  "vahedi58 () yahoo ! com",
1557                  "GPL",
1558                  "Re: improving Arabic-like language support",
1559                  "m=117769964731842",
1560                  "27 April 2007",
1561                  u"Farsi support and translations"),
1562
1563      contributer(u"Marko Vendelin",
1564                  "markov () ioc ! ee",
1565                  "GPL",
1566                  "Re: The LyX licence",
1567                  "m=110909439912594",
1568                  "22 February 2005",
1569                  u"Gnome frontend"),
1570
1571      contributer(u"Joost Verburg",
1572                  "joostverburg () users ! sourceforge ! net",
1573                  "GPL",
1574                  "Re: New Windows Installer",
1575                  "m=114957884100403",
1576                  "6 June 2006",
1577                  u"A new and improved Windows installer"),
1578
1579      contributer(u"Martin Vermeer",
1580                  "martin.vermeer () hut ! fi",
1581                  "GPL",
1582                  "Re: The LyX licence",
1583                  "m=110907543900367",
1584                  "22 February 2005",
1585                  u"support for optional argument in sections/captions svjour/svjog, egs and llncs document classes. Lot of bug hunting (and fixing!)"),
1586
1587      contributer(u"Jürgen Vigna",
1588                  "jug () lyx ! org",
1589                  "GPL",
1590                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1591                  "m=110899839906262",
1592                  "21 February 2005",
1593                  u"complete rewrite of the tabular, text inset; fax and plain text export support; iletter and dinbrief support"),
1594
1595      contributer(u"Pauli Virtanen",
1596                  "pauli.virtanen () hut ! fi",
1597                  "GPL",
1598                  "Re: The LyX licence",
1599                  "m=110918662408397",
1600                  "23 February 2005",
1601                  u"Finnish localization of the interface"),
1602
1603      contributer(u"Herbert Voß",
1604                  "herbert.voss () alumni ! tu-berlin ! de",
1605                  "GPL",
1606                  "Fwd: Re: The LyX licence",
1607                  "m=110910439013234",
1608                  "22 February 2005",
1609                  u"The one who answers all questions on lyx-users mailing list and maintains www.lyx.org/help/ Big insetgraphics and bibliography cleanups"),
1610
1611      contributer(u"Andreas Vox",
1612                  "avox () arcor ! de",
1613                  "GPL",
1614                  "Re: The LyX licence",
1615                  "m=110907443424620",
1616                  "22 February 2005",
1617                  u"Bug fixes, feedback on LyX behaviour on the Mac, and improvements to DocBook export"),
1618
1619      contributer(u"Jason Waskiewicz",
1620                  "jason.waskiewicz () sendit ! nodak ! edu",
1621                  "GPL",
1622                  "[Fwd: Re: tufte-book layout for LyX]",
1623                  "m=125659179116032",
1624                  "26 October 2009",
1625                  u"Layouts for the Tufte document classes"),
1626
1627      contributer(u"John P. Weiss",
1628                  "jpweiss () frontiernet ! net",
1629                  "Artistic",
1630                  "Re: Small problem with BlanketPermission on the new site.",
1631                  "m=123238170812776",
1632                  "18 January 2009",
1633                  u"Bugreports and suggestions, slides class support, editor of the documentationproject, 6/96-9/97. Tutorial chapter 1"),
1634
1635      contributer(u"Edmar Wienskoski",
1636                  "edmar () freescale ! com",
1637                  "GPL",
1638                  "Re: The LyX licence",
1639                  "m=111280236425781",
1640                  "6 April 2005",
1641                  u"literate programming support; various bug fixes"),
1642
1643      contributer(u"Mate Wierdl",
1644                  "mw () wierdlmpc ! msci ! memphis ! edu",
1645                  "",
1646                  "",
1647                  "",
1648                  "",
1649                  u"Maintainer of the @lists.lyx.org mailing-lists"),
1650
1651      contributer(u"Serge Winitzki",
1652                  "winitzki () erebus ! phys ! cwru ! edu",
1653                  "",
1654                  "",
1655                  "",
1656                  "",
1657                  u"updates to the Scientific Word bindings"),
1658
1659      contributer(u"Stephan Witt",
1660                  "stephan.witt () beusen ! de",
1661                  "GPL",
1662                  "Re: The LyX licence",
1663                  "m=110909031824764",
1664                  "22 February 2005",
1665                  u"support for page selection for printing support for number of copies"),
1666
1667      contributer(u"Russ Woodroofe",
1668                  "paranoia () math ! cornell ! edu",
1669                  "GPL",
1670                  "Re: AMS math question environment",
1671                  "m=123091448326090",
1672                  "1 January 2009",
1673                  u"question layout environment"),
1674
1675      contributer(u"Huang Ying",
1676                  "huangy () sh ! necas ! nec ! com ! cn",
1677                  "GPL",
1678                  "Re: The LyX licence",
1679                  "m=110956742604611",
1680                  "28 February 2005",
1681                  u"Gtk frontend"),
1682
1683      contributer(u"Koji Yokota",
1684                  "yokota () res ! otaru-uc ! ac ! jp",
1685                  "GPL",
1686                  "Re: [PATCH] po/ja.po: Japanese message file for 1.5.0 (merged from",
1687                  "m=118033214223720",
1688                  "28 May 2007",
1689                  u"Japanese translation"),
1690
1691      contributer(u"Abdelrazak Younes",
1692                  "younes.a () free ! fr",
1693                  "GPL",
1694                  "Re: [Patch] RFQ: ParagraphList Rewrite",
1695                  "m=113993670602439",
1696                  "14 February 2006",
1697                  u"Qt4 frontend, editing optimisations"),
1698
1699      contributer(u"Henner Zeller",
1700                  "henner.zeller () freiheit ! com",
1701                  "GPL",
1702                  "Re: The LyX licence",
1703                  "m=110911591218107",
1704                  "22 February 2005",
1705                  u"rotation of wysiwyg figures"),
1706
1707      contributer(u"Xiaokun Zhu",
1708                  "xiaokun () aero ! gla ! ac ! uk",
1709                  "",
1710                  "",
1711                  "",
1712                  "",
1713                  u"bug reports and small fixes") ]
1714
1715
1716 if __name__ == "__main__":
1717      main(sys.argv, contributers)
1718