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