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