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