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