]> git.lyx.org Git - lyx.git/blob - lib/generate_contributions.py
Fix problem with chunk lyx2lyx conversion spotted by Scott.
[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 contributer:
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(contributers):
108
109     missing_credit = []
110     missing_licence = []
111     for contributer in contributers:
112           if len(contributer.credit) == 0:
113               missing_credit.append(contributer.name)
114           if len(contributer.licence) == 0:
115               missing_licence.append(contributer.name)
116
117     return '''WARNING!
118 The following contributers 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(contributers):
127      results = []
128
129      for contributer in contributers:
130           if len(contributer.credit) != 0:
131               results.append(contributer.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(contributers, 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 contributer in contributers:
200           if len(contributer.credit) != 0:
201                results.append(contributer.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(contributers, 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 contributer in contributers:
262           if contributer.licence == "GPL":
263                results.append(contributer.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 contributer in contributers:
280           if contributer.licence == "Artistic":
281                results.append(contributer.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, contributers):
296      if len(argv) != 4:
297           error(usage(argv[0]))
298
299      txt_credits_data = unicode(as_txt_credits(contributers)).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(contributers, 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(contributers, 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(contributers) + '\n').encode("utf-8")
312      sys.stderr.write(warning_data)
313
314
315 # Store the raw data.
316 contributers = [
317
318      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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     contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(u"Christian Buescher",
495                  "christian.buescher () uni-bielefeld ! de",
496                  "",
497                  "",
498                  "",
499                  "",
500                  u"User-definable keys, lyxserver and more"),
501
502      contributer(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      contributer(u"Francesc Burrull i Mestres",
511                  "fburrull () mat ! upc ! es",
512                  "",
513                  "",
514                  "",
515                  "",
516                  u"Catalan translation"),
517
518      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(u"John Michael Floyd",
679                  "jmf () pwd ! nsw ! gov ! au",
680                  "",
681                  "",
682                  "",
683                  "",
684                  u"Bug fix to the spellchecker"),
685
686      contributer(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      contributer(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      contributer(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      contributer(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      contributer(u"Max Funk",
719                  "maxkhfunk () gmx ! net",
720                  "GPL",
721                  "GPL",
722                  "m=130659936521230",
723                  "28 May 2011",
724                  u"Bug fixes"),
725
726      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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       contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(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      contributer(u"Claus Hindsgaul",
839                  "claus_h () image ! dk",
840                  "GPL",
841                  "Re: The LyX licence",
842                  "m=110908607416324",
843                  "22 February 2005",
844                  u"Danish translation"),
845
846      contributer(u"Bernard Hurley",
847                  "bernard () fong-hurley ! org ! uk",
848                  "GPL",
849                  "Re: The LyX licence --- a gentle nudge",
850                  "m=111218682804142",
851                  "30 March 2005",
852                  u"Fixes to literate programming support"),
853
854      contributer(u"Marius Ionescu",
855                  "felijohn () gmail ! com",
856                  "GPL",
857                  "permission to licence",
858                  "m=115935958330941",
859                  "27 September 2006",
860                  u"Romanian localization"),
861
862      contributer(u"Bernhard Iselborn",
863                  "bernhard.iselborn () sap ! com",
864                  "GPL",
865                  "RE: The LyX licence",
866                  "m=111268306522212",
867                  "5 April 2005",
868                  u"Some minor bug-fixes, FAQ, linuxdoc sgml support"),
869
870      contributer(u"Masanori Iwami",
871                  "masa.iwm () gmail ! com",
872                  "GPL",
873                  "Re: [patch] Addition of input method support",
874                  "m=117541512517453",
875                  "1 April 2007",
876                  u"Development of CJK language support"),
877
878      contributer(u"Michal Jaegermann",
879                  "michal () ellpspace ! math ! ualberta ! ca",
880                  "GPL",
881                  "Re: The LyX licence",
882                  "m=110909853626643",
883                  "22 February 2005",
884                  u"Fix to a very hard-to-find egcs bug that crashed LyX on alpha architecture"),
885
886      contributer(u"Harshula Jayasuriya",
887                  "harshula () gmail ! com",
888                  "GPL",
889                  "Re: Bug in export to DocBook",
890                  "m=116884249725701",
891                  "15 January 2007",
892                  u"Fix docbook generation of nested lists"),
893
894      contributer(u"David L. Johnson",
895                  "david.johnson () lehigh ! edu",
896                  "GPL",
897                  "GPL",
898                  "m=110908492016593",
899                  "22 February 2005",
900                  u"Public relations, feedback, documentation and support"),
901
902      contributer(u"Robert van der Kamp",
903                  "robnet () wxs ! nl",
904                  "GPL",
905                  "Re: The LyX licence",
906                  "m=111268623330209",
907                  "5 April 2005",
908                  u"Various small things and code simplifying"),
909
910      contributer(u"Amir Karger",
911                  "amirkarger () gmail ! com",
912                  "GPL",
913                  "Re: The LyX licence",
914                  "m=110912688520245",
915                  "23 February 2005",
916                  u"Tutorial, reLyX: the LaTeX to LyX translator"),
917
918      contributer(u"Zahari Dmitrov Kassabov",
919                  "zaharid () gmail ! com",
920                  "GPL",
921                  "GPL Statement",
922                  "m=135540059615508",
923                  "13 December 2012",
924                  u"Bug fixes"),
925
926      contributer(u"Carmen Kauffmann",
927                  "",
928                  "",
929                  "",
930                  "",
931                  "",
932                  u"Original name that is now two characters shorter"),
933
934      contributer(u"KDE Artists",
935                  "http://artist.kde.org/",
936                  "",
937                  "",
938                  "",
939                  "",
940                  u"Authors of several of the icons LyX uses"),
941
942      contributer(u"Andreas Klostermann",
943                  "andreas_klostermann () web ! de",
944                  "GPL",
945                  "blanket-permission",
946                  "m=111054675600338",
947                  "11 March 2005",
948                  u"Gtk reference insertion dialog"),
949
950      contributer(u"Timo Kluck",
951                  "tkluck () gmail ! com",
952                  "GPL",
953                  "license statement",
954                  "m=132334049317495",
955                  "8 December 2011",
956                  u"Dutch translation, icon fixes"),
957
958      contributer(u"Kostantino",
959                  "ciclope10 () alice ! it",
960                  "GPL",
961                  "Permission granted",
962                  "m=115513400621782",
963                  "9 August 2006",
964                  u"Italian localization of the interface"),
965
966      contributer(u"Scott Kostyshak",
967                  "skostysh@princeton.edu",
968                  "GPL",
969                  "GPL Statement",
970                  "m=133076234031944",
971                  "3 March 2012",
972                  u"Small UI fixes"),
973
974      contributer(u"Michael Koziarski",
975                  "koziarski () gmail ! com",
976                  "GPL",
977                  "Re: The LyX licence",
978                  "m=110909592017966",
979                  "22 February 2005",
980                  u"Gnome port"),
981
982      contributer(u"Peter Kremer",
983                  "kremer () bme-tel ! ttt ! bme ! hu",
984                  "",
985                  "",
986                  "",
987                  "",
988                  u"Hungarian translation and bind file for menu shortcuts"),
989
990      contributer(u'Marcus Kriele',
991                  "mkriele () me ! com",
992                  "GPL",
993                  "License permission",
994                  "m=130384781027177",
995                  "26 April 2011",
996                  u"Fixing various sv* layouts"),
997
998      contributer(u'Valeriy Kruchko',
999                  "lerkru () gmail ! com",
1000                  "GPL",
1001                  "Re: translation in to russian about 68%",
1002                  "m=125904983806681",
1003                  "24 November 2009",
1004                  u"Russian translation of the user interface"),
1005
1006      contributer(u"Peter Kümmel",
1007                  "syntheticpp () gmx ! net",
1008                  "GPL",
1009                  "License",
1010                  "m=114968828021007",
1011                  "7 June 2006",
1012                  u"Qt4 coding, CMake build system, bug fixing, testing, clean ups, and profiling"),
1013
1014      contributer(u"Bernd Kümmerlen",
1015                  "bkuemmer () gmx ! net",
1016                  "GPL",
1017                  "Re: The LyX licence",
1018                  "m=110934318821667",
1019                  "25 February 2005",
1020                  u"Initial version of the koma-script textclasses"),
1021
1022      contributer(u"Felix Kurth",
1023                  "felix () fkurth ! de",
1024                  "GPL",
1025                  "Re: The LyX licence",
1026                  "m=110908918916109",
1027                  "22 February 2005",
1028                  u"Support for textclass g-brief2"),
1029
1030      contributer(u"Rob Lahaye",
1031                  "lahaye () snu ! ac ! kr",
1032                  "GPL",
1033                  "Re: The LyX licence",
1034                  "m=110908714131711",
1035                  "22 February 2005",
1036                  u"Xforms dialogs and GUI related code"),
1037
1038      contributer(u"Jean-Marc Lasgouttes",
1039                  "lasgouttes () lyx ! org",
1040                  "GPL",
1041                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1042                  "m=110899928510452",
1043                  "21 February 2005",
1044                  u"configure and Makefile-stuff, many bugfixes and more. Previous stable branch maintainer."),
1045
1046      contributer(u"Victor Lavrenko",
1047                  "lyx () lavrenko ! pp ! ru",
1048                  "",
1049                  "",
1050                  "",
1051                  "",
1052                  u"Russian translation"),
1053
1054      contributer(u"Angus Leeming",
1055                  "leeming () lyx ! org",
1056                  "GPL",
1057                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1058                  "m=110899671520339",
1059                  "21 February 2005",
1060                  u"GUI-I-fication of insets and more"),
1061
1062      contributer(u"Edwin Leuven",
1063                  "e.leuven () gmail ! com",
1064                  "GPL",
1065                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1066                  "m=110899657530749",
1067                  "21 February 2005",
1068                  u"Tabular and misc UI stuff"),
1069
1070      contributer(u"John Levon",
1071                  "levon () movementarian ! org",
1072                  "GPL",
1073                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1074                  "m=110899535600562",
1075                  "21 February 2005",
1076                  u"Qt2 frontend, GUII work, bugfixes"),
1077
1078      contributer(u"Ling Li",
1079                  "ling () caltech ! edu",
1080                  "GPL",
1081                  "Re: LyX 1.4cvs crash on Fedora Core 3",
1082                  "m=111204368700246",
1083                  "28 March 2005",
1084                  u"Added native support for \makebox to mathed. Several bug fixes, both to the source code and to the llncs layout file"),
1085
1086      contributer(u"LibreOffice Team",
1087                  "http://www.libreoffice.org/",
1088                  "LGPL",
1089                  "",
1090                  "",
1091                  "",
1092                  u"Libreoffice Icon Theme"),
1093
1094      contributer(u"Tomasz Łuczak",
1095                  "tlu () technodat ! com ! pl",
1096                  "GPL",
1097                  "Re: [Cvslog] lyx-devel po/: ChangeLog pl.po lib/: CREDITS",
1098                  "m=113580483406067",
1099                  "28 December 2005",
1100                  u"Polish translation and mw* layouts files"),
1101
1102      contributer(u"Hangzai Luo",
1103                  "memcache () gmail ! com",
1104                  "GPL",
1105                  "Re: [patch] tex2lyx crash when full path is given from commandline on Win32",
1106                  "m=118326161706627",
1107                  "1 July 2007",
1108                  u"Bugfixes"),
1109
1110      contributer(u"Mohamed Magdy",
1111                  "physicist2010 () gmail ! com>",
1112                  "GPL",
1113                  "A permission to use my Arabic-Translation for LyX?",
1114                  "m=126877445318267",
1115                  "16 March 2010",
1116                  u"Arabic translation"),
1117
1118      contributer(u"Tetsuya Makimura",
1119                  "makimura () ims ! tsukuba.ac ! jp",
1120                  "GPL",
1121                  "Re: Support request for Japanese without CJK, again (Re: [Fwd: About Japanese edition ...)",
1122                  "m=121905769227884",
1123                  "18 August 2008",
1124                  u"Improvements to the Japanese language support."),
1125
1126      contributer(u"José Matos",
1127                  "jamatos () fc ! up ! pt",
1128                  "GPL",
1129                  "Re: The LyX licence",
1130                  "m=110907762926766",
1131                  "22 February 2005",
1132                  u"linuxdoc sgml support. Previous release manager."),
1133
1134      contributer(u"Roman Maurer",
1135                  "roman.maurer () amis ! net",
1136                  "GPL",
1137                  "Re: The LyX licence",
1138                  "m=110952616722307",
1139                  "27 February 2005",
1140                  u"Slovenian translation coordinator"),
1141
1142      contributer(u"John McCabe-Dansted",
1143                  "gmatht () gmail ! com",
1144                  "GPL",
1145                  "Re: Randomly Generated Crash Reports Useful?",
1146                  "m=124515770509946",
1147                  "15 June 2009",
1148                  u"Keys-test module, bug fixing"),
1149  
1150      contributer(u"Caolán McNamara",
1151                  "caolanm () redhat ! com",
1152                  "GPL",
1153                  "Statement for enchant integration",
1154                  "m=126389593805123",
1155                  "19 January 2010",
1156                  u"Support for the enchant spell checking library"),
1157
1158      contributer(u"Tino Meinen",
1159                  "a.t.meinen () chello ! nl",
1160                  "GPL",
1161                  "Re: Licensing your contributions to LyX",
1162                  "m=113078277722316",
1163                  "31 October 2005",
1164                  u"Dutch translation coordinator"),
1165
1166      contributer(u"Siegfried Meunier-Guttin-Cluzel",
1167                  "meunier () coria ! fr",
1168                  "GPL",
1169                  "French translations",
1170                  "m=119485816312776",
1171                  "12 November 2007",
1172                  u"French translations of the documentation"),
1173      
1174       contributer(u"Günter Milde",
1175                  "milde () users ! berlios ! de",
1176                  "GPL",
1177                  "copyleft",
1178                  "m=122398147620761",
1179                  "14 October 2008",
1180                  u"Unicode and layout file fixes"),
1181
1182      contributer(u"Joan Montané",
1183                  "jmontane () gmail ! com",
1184                  "GPL",
1185                  "Re: LyX translation updates needed",
1186                  "m=118765575314017",
1187                  "21 August 2007",
1188                  u"Catalan translations of menus"),
1189
1190      contributer(u"Iñaki Larrañaga Murgoitio",
1191                  "dooteo () euskalgnu ! org",
1192                  "GPL",
1193                  "Re: The LyX licence",
1194                  "m=110908606525783",
1195                  "22 February 2005",
1196                  u"Basque documentation and localization"),
1197
1198      contributer(u"Daniel Naber",
1199                  "daniel.naber () t-online ! de",
1200                  "GPL",
1201                  "Re: The LyX licence",
1202                  "m=110911176213928",
1203                  "22 February 2005",
1204                  u"Improvements to the find&replace dialog"),
1205
1206      contributer(u"Pablo De Napoli",
1207                  "pdenapo () mate ! dm ! uba ! ar",
1208                  "GPL",
1209                  "Re: The LyX licence",
1210                  "m=110908904400120",
1211                  "22 February 2005",
1212                  u"Math panel dialogs"),
1213
1214      contributer(u"Dirk Niggemann",
1215                  "dabn100 () cam ! ac ! uk",
1216                  "",
1217                  "",
1218                  "",
1219                  "",
1220                  u"config. handling enhancements, bugfixes, printer enhancements path mingling"),
1221
1222      contributer(u"Jens Nöckel",
1223                  "noeckel () uoregon !edu",
1224                  "GPL",
1225                  "GPL statement",
1226                  "m=128485749516885",
1227                  "19 September 2010",
1228                  u"Mac OS X enhancements"),
1229
1230      contributer(u"Rob Oakes",
1231                  "lyx-devel () oak-tree ! us>",
1232                  "GPL",
1233                  "Outline Contributions",
1234                  "m=124615188102843",
1235                  "27 June 2009",
1236                  u"Improvements to the outliner."),
1237
1238      contributer(u"Oxygen Team",
1239                  "http://www.oxygen-icons.org/",
1240                  "LGPL",
1241                  "",
1242                  "",
1243                  "",
1244                  u"Oxygen Icon Theme"),
1245
1246      contributer(u"Carl Ollivier-Gooch",
1247                  "cfog () mech ! ubc ! ca",
1248                  "GPL",
1249                  "Re: The LyX licence --- a gentle nudge",
1250                  "m=111220662413921",
1251                  "30 March 2005",
1252                  u"Support for two-column figure (figure*) and table (table*) environments.  Fixed minibuffer entry of floats."),
1253
1254      contributer(u'Panayotis "PAP" Papasotiriou',
1255                  "papasot () upatras ! gr",
1256                  "GPL",
1257                  "Re: The LyX licence",
1258                  "m=110933552929119",
1259                  "25 February 2005",
1260                  u"Support for kluwer and ijmpd document classes"),
1261
1262      contributer(u'Andrey V. Panov',
1263                  "panov () canopus ! iacp ! dvo ! ru",
1264                  "GPL",
1265                  "Re: Russian translation for LyX",
1266                  "m=119853644302866",
1267                  "24 December 2007",
1268                  u"Russian translation of the user interface"),
1269
1270      contributer(u'Bo Peng',
1271                  "ben.bob () gmail ! com",
1272                  "GPL",
1273                  "Re: Python version of configure script (preview version)",
1274                  "m=112681895510418",
1275                  "15 September 2005",
1276                  u"Conversion of all shell scripts to Python, shortcuts dialog, session, view-source, auto-view, embedding features and scons build system."),
1277
1278      contributer(u'John Perry',
1279                  "john.perry () usm ! edu",
1280                  "GPL",
1281                  "Contributions",
1282                  "m=128874016511551",
1283                  "2 November 2010",
1284                  u"Named theorems module."),
1285
1286      contributer(u"Joacim Persson",
1287                  "sp2joap1 () ida ! his ! se",
1288                  "",
1289                  "",
1290                  "",
1291                  "",
1292                  u"po-file for Swedish, a tool for picking shortcuts, bug reports and hacking atrandom"),
1293
1294      contributer(u"Zvezdan Petkovic",
1295                  "zpetkovic () acm ! org",
1296                  "GPL",
1297                  "Re: The LyX licence",
1298                  "m=111276877900892",
1299                  "6 April 2005",
1300                  u"Better support for serbian and serbocroatian"),
1301
1302      contributer(u"Geoffroy Piroux",
1303                  "piroux () fyma ! ucl ! ac ! be",
1304                  "",
1305                  "",
1306                  "",
1307                  "",
1308                  u"Mathematica backend for mathed"),
1309
1310      contributer(u"Benjamin Piwowarski",
1311                  "benjamin ! piwowarski () lip6 ! fr",
1312                  "GPL",
1313                  "GPL statement",
1314                  "m=133958334631163",
1315                  "13 June 2012",
1316                  u"AppleScript, integration with bibliography managers"),
1317
1318      contributer(u"Neoklis Polyzotis",
1319                  "alkis () soe ! ucsc ! edu",
1320                  "GPL",
1321                  "Fwd: Re: The LyX licence",
1322                  "m=111039215519777",
1323                  "9 March 2005",
1324                  u"Keymap work"),
1325
1326      contributer(u"André Pönitz",
1327                  "andre.poenitz () mathematik ! tu-chemnitz ! de",
1328                  "GPL",
1329                  "Re: The LyX licence",
1330                  "m=111143534724146",
1331                  "21 March 2005",
1332                  u"mathed rewrite to use STL file io with streams --export and --import command line options"),
1333
1334      contributer(u"Kornelia Pönitz",
1335                  "kornelia.poenitz () mathematik ! tu-chemnitz ! de",
1336                  "GPL",
1337                  "Re: The LyX licence",
1338                  "m=111121553103800",
1339                  "19 March 2005",
1340                  u"heavy mathed testing; provided siamltex document class"),
1341
1342      contributer(u"Bernhard Psaier",
1343                  "",
1344                  "",
1345                  "",
1346                  "",
1347                  "",
1348                  u"Designer of the LyX-Banner"),
1349
1350      contributer(u"Thomas Pundt",
1351                  "thomas () pundt ! de",
1352                  "GPL",
1353                  "Re: The LyX licence",
1354                  "m=111277917703326",
1355                  "6 April 2005",
1356                  u"initial configure script"),
1357
1358      contributer(u"Allan Rae",
1359                  "rae () itee ! uq ! edu ! au",
1360                  "GPL",
1361                  "lyx-1.3.6cvs configure.in patch",
1362                  "m=110905169512662",
1363                  "21 February 2005",
1364                  u"GUI-I architect, LyX PR head, LDN, bug reports/fixes, Itemize Bullet Selection, xforms-0.81 + gcc-2.6.3 compatibility"),
1365      
1366      contributer(u"Manoj Rajagopalan",
1367                  "rmanoj () umich ! edu", 
1368                  "GPL", 
1369                  "Re: patch for case-insensitive reference sorting", 
1370                  "m=123506398801004", 
1371                  "Feb 19 2009", 
1372                  u"reference dialog tweaks"),
1373      
1374      contributer(u"Vincent van Ravesteijn",
1375                  "V.F.vanRavesteijn () tudelft ! nl",
1376                  "GPL",
1377                  "RE: crash lyx-1.6rc1",
1378                  "m=121786603726114",
1379                  "4 August 2008",
1380                  u"lots of fixes"),
1381
1382      contributer(u"Adrien Rebollo",
1383                  "adrien.rebollo () gmx ! fr",
1384                  "GPL",
1385                  "Re: The LyX licence",
1386                  "m=110918633227093",
1387                  "23 February 2005",
1388                  u"French translation of the docs; latin 3, 4 and 9 support"),
1389
1390      contributer(u"Garst R. Reese",
1391                  "garstr () isn ! net",
1392                  "GPL",
1393                  "blanket-permission.txt:",
1394                  "m=110911480107491",
1395                  "22 February 2005",
1396                  u"provided hollywood and broadway classes for writing screen scripts and plays"),
1397
1398      contributer(u"Bernhard Reiter",
1399                  "ockham () gmx ! net",
1400                  "GPL",
1401                  "Re: RFC: GThesaurus.C et al.",
1402                  "m=112912017013984",
1403                  "12 October 2005",
1404                  u"Gtk frontend"),
1405
1406      contributer(u"Ruurd Reitsma",
1407                  "rareitsma () yahoo ! com",
1408                  "GPL",
1409                  "Fwd: Re: The LyX licence",
1410                  "m=110959179412819",
1411                  "28 February 2005",
1412                  u"Creator of the native port of LyX to Windows"),
1413
1414      contributer(u"Bernd Rellermeyer",
1415                  "bernd.rellermeyer () arcor ! de",
1416                  "GPL",
1417                  "Re: The LyX licence",
1418                  "m=111317142419908",
1419                  "10 April 2005",
1420                  u"Support for Koma-Script family of classes"),
1421
1422      contributer(u"Michael Ressler",
1423                  "mike.ressler () alum ! mit ! edu",
1424                  "GPL",
1425                  "Re: The LyX licence",
1426                  "m=110926603925431",
1427                  "24 February 2005",
1428                  u"documentation maintainer, AASTeX support"),
1429
1430      contributer(u"Richman Reuven",
1431                  "richman.reuven () gmail ! com",
1432                  "GPL",
1433                  "gpl 2+ ok :)",
1434                  "m=130368087529359",
1435                  "24 April 2011",
1436                  u"Hebrew localisation"),
1437
1438      contributer(u"Christian Ridderström",
1439                  "christian.ridderstrom () gmail ! com",
1440                  "GPL",
1441                  "Re: The LyX licence",
1442                  "m=110910933124056",
1443                  "22 February 2005",
1444                  u"The driving force behind, and maintainer of, the LyX wiki wiki.\nSwedish translation of the Windows installer"),
1445
1446      contributer(u"Julien Rioux",
1447                  "jrioux () lyx ! org",
1448                  "GPL",
1449                  "Re: #6361: configure.py ignores packages required by user-defined modules",
1450                  "m=125986505101722",
1451                  "3 December 2009",
1452                  u"Bug fixes, lilypond and revtex support, citation modules."),
1453
1454      contributer(u"Bernhard Roider",
1455                  "bernhard.roider () sonnenkinder ! org",
1456                  "GPL",
1457                  "Re: [PATCH] immediatly display saved filename in tab",
1458                  "m=117009852211669",
1459                  "29 January 2007",
1460                  u"Various bug fixes"),
1461
1462      contributer(u"Jim Rotmalm",
1463                  "jim.rotmalm () gmail ! com",
1464                  "GPL",
1465                  "License for my contributions.",
1466                  "m=129582352017079",
1467                  "24 January 2011",
1468                  u"Swedish translation"),
1469
1470      contributer(u"Paul A. Rubin",
1471                  "rubin () msu ! edu",
1472                  "GPL",
1473                  "Re: [patch] reworked AMS classes (bugs 4087, 4223)",
1474                  "m=119072721929143",
1475                  "25 September 2007",
1476                  u"Major rework of the AMS classes"),
1477
1478      contributer(u"Ran Rutenberg",
1479                  "ran.rutenberg () gmail ! com",
1480                  "GPL",
1481                  "The New Hebrew Translation of the Introduction",
1482                  "m=116172457024967",
1483                  "24 October 2006",
1484                  u"Hebrew translation"),
1485
1486      contributer(u'Pavel Sanda',
1487                  "ps () ucw ! cz",
1488                  "GPL",
1489                  "Re: czech translation",
1490                  "m=115522417204086",
1491                  "10 August 2006",
1492                  u"Czech translation, added various features, lfuns docs/review. Current release manager."),
1493
1494      contributer(u"Szõke Sándor",
1495                  "alex () lyx ! hu",
1496                  "GPL",
1497                  "Contribution to LyX",
1498                  "m=113449408830523",
1499                  "13 December 2005",
1500                  u"Hungarian translation"),
1501
1502      contributer(u"Janus Sandsgaard",
1503                  "janus () janus ! dk",
1504                  "GPL",
1505                  "Re: The LyX licence",
1506                  "m=111839355328045",
1507                  "10 June 2005",
1508                  u"Danish translation of the Windows installer"),
1509
1510      contributer(u"Stefan Schimanski",
1511                  "sts () 1stein ! org",
1512                  "GPL",
1513                  "GPL statement",
1514                  "m=117541472517274",
1515                  "1 April 2007",
1516                  u"font improvements, bug fixes"),
1517      
1518      contributer(u"Horst Schirmeier",
1519                  "horst () schirmeier ! com",
1520                  "GPL",
1521                  "Re: [patch] reordering capabilities for GuiBibtex",
1522                  "m=120009631506298",
1523                  "12 January 2008",
1524                  u"small fixes"),
1525
1526      contributer(u"Hubert Schreier",
1527                  "schreier () sc ! edu",
1528                  "",
1529                  "",
1530                  "",
1531                  "",
1532                  u"spellchecker (ispell frontend); beautiful document-manager based on the simple table of contents (removed)"),
1533
1534      contributer(u"Ivan Schreter",
1535                  "schreter () kdk ! sk",
1536                  "",
1537                  "",
1538                  "",
1539                  "",
1540                  u"international support and kbmaps for slovak, czech, german, ... wysiwyg figure"),
1541
1542      contributer(u"Eulogio Serradilla Rodríguez",
1543                  "eulogio.sr () terra ! es",
1544                  "GPL",
1545                  "Re: The LyX licence",
1546                  "m=110915313018478",
1547                  "23 February 2005",
1548                  u"contribution to the spanish internationalization"),
1549
1550      contributer(u"Nickolay Shashkin",
1551                  "mecareful () gmail ! com",
1552                  "GPL",
1553                  "GPL statement",
1554                  "m=134026564400578",
1555                  "21 June 2012",
1556                  u"bugfixes"),
1557
1558      contributer(u"Miyata Shigeru",
1559                  "miyata () kusm ! kyoto-u ! ac ! jp",
1560                  "",
1561                  "",
1562                  "",
1563                  "",
1564                  u"OS/2 port"),
1565
1566      contributer(u"Alejandro Aguilar Sierra",
1567                  "asierra () servidor ! unam ! mx",
1568                  "GPL",
1569                  "Fwd: Re: The LyX licence",
1570                  "m=110918647812358",
1571                  "23 February 2005",
1572                  u"Fast parsing with lyxlex, pseudoactions, mathpanel, Math Editor, combox and more"),
1573
1574      contributer(u"Lior Silberman",
1575                  "lior () princeton ! edu",
1576                  "GPL",
1577                  "Fwd: Re: The LyX licence",
1578                  "m=110910432427450",
1579                  "22 February 2005",
1580                  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."),
1581      
1582      contributer(u"Waluyo Adi Siswanto",
1583                  "was.uthm () gmail ! com",
1584                  "GPL",
1585                  "Licence contributions",
1586                  "m=123595530114385",
1587                  "Mar 2 2009",
1588                  u"Indonesian translation"),
1589
1590      contributer(u"Giovanni Sora",
1591                  "g.sora () tiscali ! it",
1592                  "GPL",
1593                  "License ia.po",
1594                  "m=129968786830788",
1595                  "9 March 2011",
1596                  u"Interlingua translation"),
1597
1598      contributer(u"Andre Spiegel",
1599                  "spiegel () gnu ! org",
1600                  "GPL",
1601                  "Re: The LyX licence",
1602                  "m=110908534728505",
1603                  "22 February 2005",
1604                  u"vertical spaces"),
1605
1606      contributer(u"Jürgen Spitzmüller",
1607                  "juergen.sp () t-online ! de",
1608                  "GPL",
1609                  "Re: The LyX licence",
1610                  "m=110907530127164",
1611                  "22 February 2005",
1612                  u"Qt frontend, bugfixes. Former stable branch maintainer."),
1613
1614      contributer(u"John Spray",
1615                  "jcs116 () york ! ac ! uk",
1616                  "GPL",
1617                  "Re: The LyX licence",
1618                  "m=110909415400170",
1619                  "22 February 2005",
1620                  u"Gtk frontend"),
1621
1622      contributer(u"Ben Stanley",
1623                  "ben.stanley () exemail ! com ! au",
1624                  "GPL",
1625                  "Re: The LyX licence",
1626                  "m=110923981012056",
1627                  "24 February 2005",
1628                  u"fix bugs with error insets placement"),
1629
1630      contributer(u"Uwe Stöhr",
1631                  "uwestoehr () web ! de",
1632                  "GPL",
1633                  "Re: The LyX licence",
1634                  "m=111833345825278",
1635                  "9 June 2005",
1636                  u"Current documentation maintainer, Windows installer, bug fixes"),
1637
1638      contributer(u"David Suárez de Lis",
1639                  "excalibor () iname ! com",
1640                  "",
1641                  "",
1642                  "",
1643                  "",
1644                  u"maintaining es.po since v1.0.0 and other small i18n issues small fixes"),
1645
1646      contributer(u"Peter Sütterlin",
1647                  "p.suetterlin () astro ! uu ! nl",
1648                  "GPL",
1649                  "Re: The LyX licence",
1650                  "m=110915086404972",
1651                  "23 February 2005",
1652                  u"aapaper support, german documentation translation, bug reports"),
1653
1654      contributer(u"Kayvan Aghaiepour Sylvan",
1655                  "kayvan () sylvan ! com",
1656                  "GPL",
1657                  "Re: The LyX licence",
1658                  "m=110908748407087",
1659                  "22 February 2005",
1660                  u"noweb2lyx and reLyX integration of noweb files. added Import->Noweb and key bindings to menus"),
1661
1662      contributer(u"TaoWang (mgc)",
1663                  "mgcgogo () gmail ! com",
1664                  "GPL",
1665                  "Re: Chinese Version of Tutorial.lyx",
1666                  "m=125785021631705",
1667                  "10 November 2009",
1668                  u"translation of documentation and user interface to Simplified Chinese"),
1669
1670      contributer(u'Sergey Tereschenko',
1671                  "serg.partizan () gmail ! com",
1672                  "GPL",
1673                  "my contributions",
1674                  "m=126065880524135",
1675                  "12 December 2009",
1676                  u"Russian translation of the user interface"),
1677
1678      contributer(u"Reuben Thomas",
1679                  "rrt () sc3d ! org",
1680                  "GPL",
1681                  "Re: The LyX licence",
1682                  "m=110911018202083",
1683                  "22 February 2005",
1684                  u"ENTCS document class and lots of useful bug reports"),
1685
1686      contributer(u"Dekel Tsur",
1687                  "dtsur () cs ! ucsd ! edu",
1688                  "GPL",
1689                  "Fwd: Re: The LyX licence",
1690                  "m=110910437519054",
1691                  "22 February 2005",
1692                  u"Hebrew support, general file converter, many many bug fixes"),
1693
1694      contributer(u"Matthias Urlichs",
1695                  "smurf () smurf ! noris ! de",
1696                  "GPL",
1697                  "Re: The LyX licence",
1698                  "m=110912859312991",
1699                  "22 February 2005",
1700                  u"bug reports and small fixes"),
1701
1702      contributer(u"H. Turgut Uyar",
1703                  "uyar () ce ! itu ! edu ! tr",
1704                  "GPL",
1705                  "Re: The LyX licence",
1706                  "m=110917146423892",
1707                  "23 February 2005",
1708                  u"turkish kbmaps"),
1709
1710      contributer(u"Mostafa Vahedi",
1711                  "vahedi58 () yahoo ! com",
1712                  "GPL",
1713                  "Re: improving Arabic-like language support",
1714                  "m=117769964731842",
1715                  "27 April 2007",
1716                  u"Farsi support and translations"),
1717
1718      contributer(u"Marko Vendelin",
1719                  "markov () ioc ! ee",
1720                  "GPL",
1721                  "Re: The LyX licence",
1722                  "m=110909439912594",
1723                  "22 February 2005",
1724                  u"Gnome frontend"),
1725
1726      contributer(u"Joost Verburg",
1727                  "joostverburg () users ! sourceforge ! net",
1728                  "GPL",
1729                  "Re: New Windows Installer",
1730                  "m=114957884100403",
1731                  "6 June 2006",
1732                  u"A new and improved Windows installer"),
1733
1734      contributer(u"Martin Vermeer",
1735                  "martin.vermeer () hut ! fi",
1736                  "GPL",
1737                  "Re: The LyX licence",
1738                  "m=110907543900367",
1739                  "22 February 2005",
1740                  u"support for optional argument in sections/captions svjour/svjog, egs and llncs document classes. Lot of bug hunting (and fixing!)"),
1741
1742      contributer(u"Jürgen Vigna",
1743                  "jug () lyx ! org",
1744                  "GPL",
1745                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1746                  "m=110899839906262",
1747                  "21 February 2005",
1748                  u"complete rewrite of the tabular, text inset; fax and plain text export support; iletter and dinbrief support"),
1749
1750      contributer(u"Pauli Virtanen",
1751                  "pauli.virtanen () hut ! fi",
1752                  "GPL",
1753                  "Re: The LyX licence",
1754                  "m=110918662408397",
1755                  "23 February 2005",
1756                  u"Finnish localization of the interface"),
1757
1758      contributer(u"Herbert Voß",
1759                  "herbert.voss () alumni ! tu-berlin ! de",
1760                  "GPL",
1761                  "Fwd: Re: The LyX licence",
1762                  "m=110910439013234",
1763                  "22 February 2005",
1764                  u"The one who answers all questions on lyx-users mailing list and maintains www.lyx.org/help/ Big insetgraphics and bibliography cleanups"),
1765
1766      contributer(u"Andreas Vox",
1767                  "avox () arcor ! de",
1768                  "GPL",
1769                  "Re: The LyX licence",
1770                  "m=110907443424620",
1771                  "22 February 2005",
1772                  u"Bug fixes, feedback on LyX behaviour on the Mac, and improvements to DocBook export"),
1773
1774      contributer(u"venom00 (c/o J-M Lasgouttes)",
1775                  "venom00 () arcadiaclub ! com",
1776                  "GPL",
1777                  "I love GPL, what about you?",
1778                  "m=129098897014967",
1779                  "29 November 2010",
1780                  u"Bug fixing"),
1781
1782      contributer(u"Jason Waskiewicz",
1783                  "jason.waskiewicz () sendit ! nodak ! edu",
1784                  "GPL",
1785                  "[Fwd: Re: tufte-book layout for LyX]",
1786                  "m=125659179116032",
1787                  "26 October 2009",
1788                  u"Layouts for the Tufte document classes"),
1789
1790      contributer(u"John P. Weiss",
1791                  "jpweiss () frontiernet ! net",
1792                  "Artistic",
1793                  "Re: Small problem with BlanketPermission on the new site.",
1794                  "m=123238170812776",
1795                  "18 January 2009",
1796                  u"Bugreports and suggestions, slides class support, editor of the documentationproject, 6/96-9/97. Tutorial chapter 1"),
1797
1798      contributer(u"Edmar Wienskoski",
1799                  "edmar () freescale ! com",
1800                  "GPL",
1801                  "Re: The LyX licence",
1802                  "m=111280236425781",
1803                  "6 April 2005",
1804                  u"literate programming support; various bug fixes"),
1805
1806      contributer(u"Mate Wierdl",
1807                  "mw () wierdlmpc ! msci ! memphis ! edu",
1808                  "",
1809                  "",
1810                  "",
1811                  "",
1812                  u"Maintainer of the @lists.lyx.org mailing-lists"),
1813
1814      contributer(u"Serge Winitzki",
1815                  "winitzki () erebus ! phys ! cwru ! edu",
1816                  "",
1817                  "",
1818                  "",
1819                  "",
1820                  u"updates to the Scientific Word bindings"),
1821
1822      contributer(u"Stephan Witt",
1823                  "stephan.witt () beusen ! de",
1824                  "GPL",
1825                  "Re: The LyX licence",
1826                  "m=110909031824764",
1827                  "22 February 2005",
1828                  u"support for CVS revision control, native spell checker interface for Mac OS"),
1829
1830      contributer(u"Russ Woodroofe",
1831                  "paranoia () math ! cornell ! edu",
1832                  "GPL",
1833                  "Re: AMS math question environment",
1834                  "m=123091448326090",
1835                  "1 January 2009",
1836                  u"question layout environment"),
1837
1838      contributer(u"Yihui Xie",
1839                  "xie () yihui ! name",
1840                  "GPL",
1841                  "GPL Statement",
1842                  "m=130523685427995",
1843                  "3 June 2011",
1844                  u"Bugfixing, Chinese translation, Sweave support"),
1845
1846      contributer(u"Huang Ying",
1847                  "huangy () sh ! necas ! nec ! com ! cn",
1848                  "GPL",
1849                  "Re: The LyX licence",
1850                  "m=110956742604611",
1851                  "28 February 2005",
1852                  u"Gtk frontend"),
1853
1854      contributer(u"Koji Yokota",
1855                  "yokota () res ! otaru-uc ! ac ! jp",
1856                  "GPL",
1857                  "Re: [PATCH] po/ja.po: Japanese message file for 1.5.0 (merged from",
1858                  "m=118033214223720",
1859                  "28 May 2007",
1860                  u"Japanese translation"),
1861
1862      contributer(u"Abdelrazak Younes",
1863                  "younes.a () free ! fr",
1864                  "GPL",
1865                  "Re: [Patch] RFQ: ParagraphList Rewrite",
1866                  "m=113993670602439",
1867                  "14 February 2006",
1868                  u"Qt4 frontend, editing optimisations"),
1869
1870      contributer(u"Henner Zeller",
1871                  "henner.zeller () freiheit ! com",
1872                  "GPL",
1873                  "Re: The LyX licence",
1874                  "m=110911591218107",
1875                  "22 February 2005",
1876                  u"rotation of wysiwyg figures"),
1877
1878      contributer(u"Xiaokun Zhu",
1879                  "xiaokun () aero ! gla ! ac ! uk",
1880                  "",
1881                  "",
1882                  "",
1883                  "",
1884                  u"bug reports and small fixes") ]
1885
1886
1887 if __name__ == "__main__":
1888      main(sys.argv, contributers)
1889