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