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