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