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