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