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