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