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