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