2 # -*- coding: utf-8 -*-
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.
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
16 $ python generate_contributions.py \
19 blanket-permission.inc
21 where the arguments are the names of the generated files.
24 import codecs
, sys
, textwrap
27 s
= s
.replace("&", "&")
28 s
= s
.replace("<", "<")
29 s
= s
.replace(">", ">")
30 s
= s
.replace('"', '"')
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
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
)
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
):
65 $output=$output.credits_contrib("%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
):
75 $output=$output.blanket_contrib("%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
) )
89 sys
.stderr
.write(message
+ '\n')
94 return "Usage: %s <CREDITS> <credits.php> <blanket-permission.php>" % prog_name
97 def collate_incomplete(contributers
):
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
)
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
):
119 for contributer
in contributers
:
120 if len(contributer
.credit
) != 0:
121 results
.append(contributer
.as_txt_credits())
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.
130 return "".join(results
)
135 // WARNING! This file is autogenerated.
136 // Any changes to it will be lost.
137 // Please modify generate_contributions.py direct.
145 def as_php_credits(contributers
, file):
148 results
.append(header())
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>";
160 $output=$output. "<dt><b>${name}</b>";
162 $msg = ereg_replace("\\n *", "\\n ", ltrim($msg));
173 function credits_output() {
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.
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
))
193 $output=$output."</dl>";
199 results
.append(footer())
200 return "".join(results
)
203 def as_php_blanket(contributers
, file):
206 results
.append(header())
210 function blanket_contrib($name, $email, $msg_title, $msg_ref, $date) {
212 $email = str_replace(' () ', '@', $email);
213 $email = str_replace(' ! ', '.', $email);
218 <b>[[mailto:${email} | ${name}]]</b>
221 See the lyx-devel mailing list message
224 if (isset($msg_ref) && $msg_ref != "") {
225 $msg_ref = htmlspecialchars("$msg_ref");
226 $output=$output. "[[http://marc.info/?l=lyx-devel&" . ${msg_ref} . "|" . ${msg_title} . "]]";
228 $output=$output. "${msg_title}";
231 $output=$output. ""
238 function blanket_output() {
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.
250 for contributer
in contributers
:
251 if contributer
.licence
== "GPL":
252 results
.append(contributer
.as_php_blanket())
255 $output=$output."</dl>";
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 |
268 for contributer
in contributers
:
269 if contributer
.licence
== "Artistic":
270 results
.append(contributer
.as_php_blanket())
273 $output=$output."</dl>";
280 results
.append(footer())
281 return "".join(results
)
284 def main(argv
, contributers
):
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.
307 contributer(u
"Maarten Afman",
308 "info () afman ! net",
310 "Fwd: Re: The LyX licence",
313 u
"Dutch translation team member"),
315 contributer(u
"Asger Alstrup",
316 "aalstrup () laerdal ! dk",
318 "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
321 u
"General hacking of user interface stuff and those other bits and pieces"),
323 contributer(u
"Pascal André",
324 "andre () via ! ecp ! fr",
326 "Re: The LyX licence --- a gentle nudge",
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",
334 "Re: The LyX licence",
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",
342 "Re: [patch] new InsetCommandParams",
345 u
"New commandparams structure, Nomenclature inset"),
347 contributer(u
"Susana Barbosa",
348 "susana.barbosa () fc ! up ! pt",
353 u
"Portuguese translation"),
355 contributer(u
"Yves Bastide",
356 "yves.bastide () irisa ! fr",
358 "Re: The LyX licence",
363 contributer(u
"Heinrich Bauer",
364 "heinrich.bauer () t-mobile ! de",
366 "Fwd: Re: The LyX licence",
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",
374 "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
377 u
"tex2lyx improvements, bug fixes, unicode work"),
379 contributer(u
"Hans Bausewein",
380 "hans () comerwell ! xs4all ! nl",
382 "Re: The LyX licence --- a gentle nudge",
385 '"case insensitive" and "complete word" search'),
387 contributer(u
"Graham Biswell",
388 "graham () gbiswell ! com",
390 "Re: The LyX licence",
393 u
"Small bugfixes that were very hard to find"),
395 contributer(u
"Lars Gullik Bjønnes",
396 "larsbj () gullik ! net",
398 "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
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 current source maintainer"),
403 contributer(u
"Alfredo Braunstein",
404 "abraunst () lyx ! org",
406 "Re: The LyX licence",
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",
422 "Re: The LyX licence",
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",
438 "Re: The LyX licence",
441 u
"Spanish translation of the Windows installer"),
443 contributer(u
"Matěj Cepl",
444 "matej () ceplovi ! cz",
446 "Re: The LyX licence",
449 u
"Improvements to the czech keymaps"),
451 contributer(u
"Albert Chin",
452 "lyx-devel () mlists ! thewrittenword ! com",
454 "Re: The LyX licence --- a gentle nudge",
459 contributer(u
"Jean-Pierre Chrétien",
460 "chretien () cert ! fr",
462 "Re: The LyX licence",
465 u
"French translation of the Windows installer"),
467 contributer(u
"Claudio Coco",
468 "lacocio () libero ! it",
470 "Agreement to GNU General Public licence",
473 u
"Italian translation"),
475 contributer(u
"Matthias Kalle Dalheimer",
476 "kalle () kdab ! net",
478 "Re: The LyX licence",
483 contributer(u
"Anders Ekberg",
484 "anek () chalmers ! se",
489 u
"Improvements to the Swedish translation of the Windows Installer"),
491 contributer(u
"Matthias Ettrich",
492 "ettrich () trolltech ! com",
494 "Fwd: Re: The LyX licence",
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",
502 "Re: The LyX licence",
505 u
"New graphics handling scheme and more"),
507 contributer(u
"Dov Feldstern",
508 "dfeldstern () fastimap ! com",
510 "Re: Farsi support re-submission plus a little more",
513 u
"RTL/BiDi-related fixes"),
515 contributer(u
"Ronald Florence",
516 "ron () 18james ! com",
518 "Re: The LyX licence --- a gentle nudge",
521 u
"Maintainer of the OS X port(s)"),
523 contributer(u
"José Ramom Flores d'as Seixas",
524 "fa2ramon () usc ! es",
526 "Re: Galician translation",
529 u
"Galician documentation and localization"),
531 contributer(u
"John Michael Floyd",
532 "jmf () pwd ! nsw ! gov ! au",
537 u
"Bug fix to the spellchecker"),
539 contributer(u
"Enrico Forestieri",
540 "forenr () tlc ! unipr ! it",
542 "Re: lyxpreview2ppm.py",
545 u
"Italian translation of the Windows installer"),
547 contributer(u
"Eitan Frachtenberg",
548 "sky8an () gmail ! com",
550 "Re: [PATCH] BibTeX annotation support",
553 u
"BibTeX annotation support"),
555 contributer(u
"Darren Freeman",
556 "dfreeman () ieee ! org",
561 u
"Improvements to mouse wheel scrolling; many bug reports"),
563 contributer(u
"Edscott Wilson Garcia",
564 "edscott () xfce ! org",
566 "Re: The LyX licence --- a gentle nudge",
571 contributer(u
"Ignacio García",
572 "ignacio.garcia () tele2 ! es",
574 "Re: es_EmbeddedObjects",
577 u
"Spanish translation of documentations"),
579 contributer(u
"Michael Gerz",
580 "michael.gerz () teststep ! org",
582 "Re: The LyX licence",
585 u
"Change tracking, German localization, bug fixes"),
587 contributer(u
"Stefano Ghirlanda",
588 "stefano.ghirlanda () unibo ! it",
590 "Re: The LyX licence",
593 u
"Improvements to lyxserver"),
595 contributer(u
"Hartmut Goebel",
596 "h.goebel () crazy-compilers ! com",
598 "Re: The LyX licence --- a gentle nudge",
601 u
"Improvements to Koma-Script classes"),
603 contributer(u
"Hartmut Haase",
604 "hha4491 () web ! de",
606 "Re: The LyX licence",
609 u
"German translation of the documentation"),
611 contributer(u
"Helge Hafting",
612 "helgehaf () aitel ! hist ! no",
614 "Re: The LyX licence",
617 u
"Norwegian documentation and localization"),
619 contributer(u
"Richard Heck",
620 "rgheck () brown ! edu",
625 u
"Bug fixes, layout modules, BibTeX code"),
627 contributer(u
"Bennett Helm",
628 "bennett.helm () fandm ! edu",
630 "Re: The LyX licence",
633 u
"Maintainer of the OSX ports, taking over from Ronald Florence"),
635 contributer(u
"Claus Hentschel",
636 "claus.hentschel () mbau ! fh-hannover ! de",
641 u
"Win32 port of LyX 1.1.x"),
643 contributer(u
"Claus Hindsgaul",
644 "claus_h () image ! dk",
646 "Re: The LyX licence",
649 u
"Danish translation"),
651 contributer(u
"Bernard Hurley",
652 "bernard () fong-hurley ! org ! uk",
654 "Re: The LyX licence --- a gentle nudge",
657 u
"Fixes to literate programming support"),
659 contributer(u
"Marius Ionescu",
660 "felijohn () gmail ! com",
662 "permission to licence",
665 u
"Romanian localization"),
667 contributer(u
"Bernhard Iselborn",
668 "bernhard.iselborn () sap ! com",
670 "RE: The LyX licence",
673 u
"Some minor bug-fixes, FAQ, linuxdoc sgml support"),
675 contributer(u
"Masanori Iwami",
676 "masa.iwm () gmail ! com",
678 "Re: [patch] Addition of input method support",
681 u
"Development of CJK language support"),
683 contributer(u
"Michal Jaegermann",
684 "michal () ellpspace ! math ! ualberta ! ca",
686 "Re: The LyX licence",
689 u
"Fix to a very hard-to-find egcs bug that crashed LyX on alpha architecture"),
691 contributer(u
"Harshula Jayasuriya",
692 "harshula () gmail ! com",
694 "Re: Bug in export to DocBook",
697 u
"Fix docbook generation of nested lists"),
699 contributer(u
"David L. Johnson",
700 "david.johnson () lehigh ! edu",
705 u
"Public relations, feedback, documentation and support"),
707 contributer(u
"Robert van der Kamp",
708 "robnet () wxs ! nl",
710 "Re: The LyX licence",
713 u
"Various small things and code simplifying"),
715 contributer(u
"Amir Karger",
716 "amirkarger () gmail ! com",
718 "Re: The LyX licence",
721 u
"Tutorial, reLyX: the LaTeX to LyX translator"),
723 contributer(u
"Carmen Kauffmann",
729 u
"Original name that is now two character shorter"),
731 contributer(u
"KDE Artists",
732 "http://artist.kde.org/",
737 u
"Authors of several of the icons LyX uses"),
739 contributer(u
"Andreas Klostermann",
740 "andreas_klostermann () web ! de",
742 "blanket-permission",
745 u
"Gtk reference insertion dialog"),
747 contributer(u
"Kostantino",
748 "ciclope10 () alice ! it",
750 "Permission granted",
753 u
"Italian localization of the interface"),
755 contributer(u
"Michael Koziarski",
756 "koziarski () gmail ! com",
758 "Re: The LyX licence",
763 contributer(u
"Peter Kremer",
764 "kremer () bme-tel ! ttt ! bme ! hu",
769 u
"Hungarian translation and bind file for menu shortcuts"),
771 contributer(u
"Peter Kümmel",
772 "syntheticpp () gmx ! net",
777 u
"Qt4 coding, CMake build system, bug fixing, testing, clean ups, and profiling"),
779 contributer(u
"Bernd Kümmerlen",
780 "bkuemmer () gmx ! net",
782 "Re: The LyX licence",
785 u
"Initial version of the koma-script textclasses"),
787 contributer(u
"Felix Kurth",
788 "felix () fkurth ! de",
790 "Re: The LyX licence",
793 u
"Support for textclass g-brief2"),
795 contributer(u
"Rob Lahaye",
796 "lahaye () snu ! ac ! kr",
798 "Re: The LyX licence",
801 u
"Xforms dialogs and GUI related code"),
803 contributer(u
"Jean-Marc Lasgouttes",
804 "lasgouttes () lyx ! org",
806 "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
809 u
"configure and Makefile-stuff and more"),
811 contributer(u
"Victor Lavrenko",
812 "lyx () lavrenko ! pp ! ru",
817 u
"Russian translation"),
819 contributer(u
"Angus Leeming",
820 "leeming () lyx ! org",
822 "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
825 u
"GUI-I-fication of insets and more"),
827 contributer(u
"Edwin Leuven",
828 "e.leuven () uva ! nl",
830 "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
833 u
"Qt2 frontend GUI-I-fication of several popups.\nDutch translation of the Windows installer"),
835 contributer(u
"John Levon",
836 "levon () movementarian ! org",
838 "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
841 u
"Qt2 frontend, GUII work, bugfixes"),
843 contributer(u
"Ling Li",
844 "ling () caltech ! edu",
846 "Re: LyX 1.4cvs crash on Fedora Core 3",
849 u
"Added native support for \makebox to mathed. Several bug fixes, both to the source code and to the llncs layout file"),
851 contributer(u
"Tomasz Łuczak",
852 "tlu () technodat ! com ! pl",
854 "Re: [Cvslog] lyx-devel po/: ChangeLog pl.po lib/: CREDITS",
857 u
"Polish translation and mw* layouts files"),
859 contributer(u
"Hangzai Luo",
860 "memcache () gmail ! com",
862 "Re: [patch] tex2lyx crash when full path is given from commandline on Win32",
867 contributer(u
"José Matos",
868 "jamatos () fc ! up ! pt",
870 "Re: The LyX licence",
873 u
"linuxdoc sgml support"),
875 contributer(u
"Roman Maurer",
876 "roman.maurer () amis ! net",
878 "Re: The LyX licence",
881 u
"Slovenian translation coordinator"),
883 contributer(u
"Tino Meinen",
884 "a.t.meinen () chello ! nl",
886 "Re: Licensing your contributions to LyX",
889 u
"Dutch translation coordinator"),
891 contributer(u
"Siegfried Meunier-Guttin-Cluzel",
892 "meunier () coria ! fr",
894 "French translations",
897 u
"French translations of the documentation"),
899 contributer(u
"Joan Montané",
900 "jmontane () gmail ! com",
902 "Re: LyX translation updates needed",
905 u
"Catalan translations of menus"),
907 contributer(u
"Iñaki Larrañaga Murgoitio",
908 "dooteo () euskalgnu ! org",
910 "Re: The LyX licence",
913 u
"Basque documentation and localization"),
915 contributer(u
"Daniel Naber",
916 "daniel.naber () t-online ! de",
918 "Re: The LyX licence",
921 u
"Improvements to the find&replace dialog"),
923 contributer(u
"Pablo De Napoli",
924 "pdenapo () mate ! dm ! uba ! ar",
926 "Re: The LyX licence",
929 u
"Math panel dialogs"),
931 contributer(u
"Dirk Niggemann",
932 "dabn100 () cam ! ac ! uk",
937 u
"config. handling enhancements, bugfixes, printer enhancements path mingling"),
939 contributer(u
"Carl Ollivier-Gooch",
940 "cfog () mech ! ubc ! ca",
942 "Re: The LyX licence --- a gentle nudge",
945 u
"Support for two-column figure (figure*) and table (table*) environments. Fixed minibuffer entry of floats."),
947 contributer(u
'Panayotis "PAP" Papasotiriou',
948 "papasot () upatras ! gr",
950 "Re: The LyX licence",
953 u
"Support for kluwer and ijmpd document classes"),
955 contributer(u
'Andrey V. Panov',
956 "panov () canopus ! iacp ! dvo ! ru",
958 "Re: Russian translation for LyX",
961 u
"Russian translation of the user interface"),
963 contributer(u
'Sanda Pavel',
966 "Re: czech translation",
969 u
"Czech translation, support for the LaTeX package hyperref"),
971 contributer(u
'Bo Peng',
972 "ben.bob () gmail ! com",
974 "Re: Python version of configure script (preview version)",
977 u
"Conversion of all shell scripts to Python, shortcuts dialog, session, view-source, auto-view, embedding features and scons build system."),
979 contributer(u
"Joacim Persson",
980 "sp2joap1 () ida ! his ! se",
985 u
"po-file for Swedish, a tool for picking shortcuts, bug reports and hacking atrandom"),
987 contributer(u
"Zvezdan Petkovic",
988 "zpetkovic () acm ! org",
990 "Re: The LyX licence",
993 u
"Better support for serbian and serbocroatian"),
995 contributer(u
"Geoffroy Piroux",
996 "piroux () fyma ! ucl ! ac ! be",
1001 u
"Mathematica backend for mathed"),
1003 contributer(u
"Neoklis Polyzotis",
1004 "alkis () soe ! ucsc ! edu",
1006 "Fwd: Re: The LyX licence",
1007 "m=111039215519777",
1011 contributer(u
"André Pönitz",
1012 "andre.poenitz () mathematik ! tu-chemnitz ! de",
1014 "Re: The LyX licence",
1015 "m=111143534724146",
1017 u
"mathed rewrite to use STL file io with streams --export and --import command line options"),
1019 contributer(u
"Kornelia Pönitz",
1020 "kornelia.poenitz () mathematik ! tu-chemnitz ! de",
1022 "Re: The LyX licence",
1023 "m=111121553103800",
1025 u
"heavy mathed testing; provided siamltex document class"),
1027 contributer(u
"Bernhard Psaier",
1033 u
"Designer of the LyX-Banner"),
1035 contributer(u
"Thomas Pundt",
1036 "thomas () pundt ! de",
1038 "Re: The LyX licence",
1039 "m=111277917703326",
1041 u
"initial configure script"),
1043 contributer(u
"Allan Rae",
1044 "rae () itee ! uq ! edu ! au",
1046 "lyx-1.3.6cvs configure.in patch",
1047 "m=110905169512662",
1049 u
"GUI-I architect, LyX PR head, LDN, bug reports/fixes, Itemize Bullet Selection, xforms-0.81 + gcc-2.6.3 compatibility"),
1051 contributer(u
"Adrien Rebollo",
1052 "adrien.rebollo () gmx ! fr",
1054 "Re: The LyX licence",
1055 "m=110918633227093",
1057 u
"French translation of the docs; latin 3, 4 and 9 support"),
1059 contributer(u
"Garst R. Reese",
1060 "garstr () isn ! net",
1062 "blanket-permission.txt:",
1063 "m=110911480107491",
1065 u
"provided hollywood and broadway classes for writing screen scripts and plays"),
1067 contributer(u
"Bernhard Reiter",
1068 "ockham () gmx ! net",
1070 "Re: RFC: GThesaurus.C et al.",
1071 "m=112912017013984",
1075 contributer(u
"Ruurd Reitsma",
1076 "rareitsma () yahoo ! com",
1078 "Fwd: Re: The LyX licence",
1079 "m=110959179412819",
1081 u
"Creator of the native port of LyX to Windows"),
1083 contributer(u
"Bernd Rellermeyer",
1084 "bernd.rellermeyer () arcor ! de",
1086 "Re: The LyX licence",
1087 "m=111317142419908",
1089 u
"Support for Koma-Script family of classes"),
1091 contributer(u
"Michael Ressler",
1092 "mike.ressler () alum ! mit ! edu",
1094 "Re: The LyX licence",
1095 "m=110926603925431",
1097 u
"documentation maintainer, AASTeX support"),
1099 contributer(u
"Christian Ridderström",
1100 "christian.ridderstrom () home ! se",
1102 "Re: The LyX licence",
1103 "m=110910933124056",
1105 u
"The driving force behind, and maintainer of, the LyX wiki wiki.\nSwedish translation of the Windows installer"),
1107 contributer(u
"Bernhard Roider",
1108 "bernhard.roider () sonnenkinder ! org",
1110 "Re: [PATCH] immediatly display saved filename in tab",
1111 "m=117009852211669",
1113 u
"Various bug fixes"),
1115 contributer(u
"Paul A. Rubin",
1116 "rubin () msu ! edu",
1118 "Re: [patch] reworked AMS classes (bugs 4087, 4223)",
1119 "m=119072721929143",
1120 "25 September 2007",
1121 u
"Major rework of the AMS classes"),
1123 contributer(u
"Ran Rutenberg",
1124 "ran.rutenberg () gmail ! com",
1126 "The New Hebrew Translation of the Introduction",
1127 "m=116172457024967",
1129 u
"Hebrew translation"),
1131 contributer(u
"Szõke Sándor",
1134 "Contribution to LyX",
1135 "m=113449408830523",
1137 u
"Hungarian translation"),
1139 contributer(u
"Janus Sandsgaard",
1140 "janus () janus ! dk",
1142 "Re: The LyX licence",
1143 "m=111839355328045",
1145 u
"Danish translation of the Windows installer"),
1147 contributer(u
"Stefan Schimanski",
1148 "sts () 1stein ! org",
1151 "m=117541472517274",
1153 u
"font improvements, bug fixes"),
1155 contributer(u
"Hubert Schreier",
1156 "schreier () sc ! edu",
1161 u
"spellchecker (ispell frontend); beautiful document-manager based on the simple table of contents (removed)"),
1163 contributer(u
"Ivan Schreter",
1164 "schreter () kdk ! sk",
1169 u
"international support and kbmaps for slovak, czech, german, ... wysiwyg figure"),
1171 contributer(u
"Eulogio Serradilla Rodríguez",
1172 "eulogio.sr () terra ! es",
1174 "Re: The LyX licence",
1175 "m=110915313018478",
1177 u
"contribution to the spanish internationalization"),
1179 contributer(u
"Miyata Shigeru",
1180 "miyata () kusm ! kyoto-u ! ac ! jp",
1187 contributer(u
"Alejandro Aguilar Sierra",
1188 "asierra () servidor ! unam ! mx",
1190 "Fwd: Re: The LyX licence",
1191 "m=110918647812358",
1193 u
"Fast parsing with lyxlex, pseudoactions, mathpanel, Math Editor, combox and more"),
1195 contributer(u
"Lior Silberman",
1196 "lior () princeton ! edu",
1198 "Fwd: Re: The LyX licence",
1199 "m=110910432427450",
1201 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."),
1203 contributer(u
"Andre Spiegel",
1204 "spiegel () gnu ! org",
1206 "Re: The LyX licence",
1207 "m=110908534728505",
1209 u
"vertical spaces"),
1211 contributer(u
"Jürgen Spitzmüller",
1212 "juergen.sp () t-online ! de",
1214 "Re: The LyX licence",
1215 "m=110907530127164",
1217 u
"Qt frontend, bugfixes"),
1219 contributer(u
"John Spray",
1220 "jcs116 () york ! ac ! uk",
1222 "Re: The LyX licence",
1223 "m=110909415400170",
1227 contributer(u
"Ben Stanley",
1228 "ben.stanley () exemail ! com ! au",
1230 "Re: The LyX licence",
1231 "m=110923981012056",
1233 u
"fix bugs with error insets placement"),
1235 contributer(u
"Uwe Stöhr",
1236 "uwestoehr () web ! de",
1238 "Re: The LyX licence",
1239 "m=111833345825278",
1241 u
"documentation updates, Windows installer, small fixes"),
1243 contributer(u
"David Suárez de Lis",
1244 "excalibor () iname ! com",
1249 u
"maintaining es.po since v1.0.0 and other small i18n issues small fixes"),
1251 contributer(u
"Peter Sütterlin",
1252 "p.suetterlin () astro ! uu ! nl",
1254 "Re: The LyX licence",
1255 "m=110915086404972",
1257 u
"aapaper support, german documentation translation, bug reports"),
1259 contributer(u
"Kayvan Aghaiepour Sylvan",
1260 "kayvan () sylvan ! com",
1262 "Re: The LyX licence",
1263 "m=110908748407087",
1265 u
"noweb2lyx and reLyX integration of noweb files. added Import->Noweb and key bindings to menus"),
1267 contributer(u
"Reuben Thomas",
1268 "rrt () sc3d ! org",
1270 "Re: The LyX licence",
1271 "m=110911018202083",
1273 u
"encts document class lots of useful bug reports"),
1275 contributer(u
"Dekel Tsur",
1276 "dtsur () cs ! ucsd ! edu",
1278 "Fwd: Re: The LyX licence",
1279 "m=110910437519054",
1281 u
"Hebrew support, general file converter, many many bug fixes"),
1283 contributer(u
"Matthias Urlichs",
1284 "smurf () smurf ! noris ! de",
1286 "Re: The LyX licence",
1287 "m=110912859312991",
1289 u
"bug reports and small fixes"),
1291 contributer(u
"H. Turgut Uyar",
1292 "uyar () ce ! itu ! edu ! tr",
1294 "Re: The LyX licence",
1295 "m=110917146423892",
1299 contributer(u
"Mostafa Vahedi",
1300 "vahedi58 () yahoo ! com",
1302 "Re: improving Arabic-like language support",
1303 "m=117769964731842",
1305 u
"Farsi support and translations"),
1307 contributer(u
"Marko Vendelin",
1308 "markov () ioc ! ee",
1310 "Re: The LyX licence",
1311 "m=110909439912594",
1315 contributer(u
"Joost Verburg",
1316 "joostverburg () users ! sourceforge ! net",
1318 "Re: New Windows Installer",
1319 "m=114957884100403",
1321 u
"A new and improved Windows installer"),
1323 contributer(u
"Martin Vermeer",
1324 "martin.vermeer () hut ! fi",
1326 "Re: The LyX licence",
1327 "m=110907543900367",
1329 u
"support for optional argument in sections/captions svjour/svjog, egs and llncs document classes. Lot of bug hunting (and fixing!)"),
1331 contributer(u
"Jürgen Vigna",
1334 "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1335 "m=110899839906262",
1337 u
"complete rewrite of the tabular, text inset; fax and plain text export support; iletter and dinbrief support"),
1339 contributer(u
"Pauli Virtanen",
1340 "pauli.virtanen () hut ! fi",
1342 "Re: The LyX licence",
1343 "m=110918662408397",
1345 u
"Finnish localization of the interface"),
1347 contributer(u
"Herbert Voß",
1348 "herbert.voss () alumni ! tu-berlin ! de",
1350 "Fwd: Re: The LyX licence",
1351 "m=110910439013234",
1353 u
"The one who answers all questions on lyx-users mailing list and maintains www.lyx.org/help/ Big insetgraphics and bibliography cleanups"),
1355 contributer(u
"Andreas Vox",
1356 "avox () arcor ! de",
1358 "Re: The LyX licence",
1359 "m=110907443424620",
1361 u
"Bug fixes, feedback on LyX behaviour on the Mac, and improvements to DocBook export"),
1363 contributer(u
"John P. Weiss",
1364 "jpweiss () frontiernet ! net",
1366 "Re: The LyX licence",
1367 "m=110913490414280",
1369 u
"Bugreports and suggestions, slides class support, editor of the documentationproject, 6/96-9/97. Tutorial chapter 1"),
1371 contributer(u
"Edmar Wienskoski",
1372 "edmar () freescale ! com",
1374 "Re: The LyX licence",
1375 "m=111280236425781",
1377 u
"literate programming support; various bug fixes"),
1379 contributer(u
"Mate Wierdl",
1380 "mw () wierdlmpc ! msci ! memphis ! edu",
1385 u
"Maintainer of the @lists.lyx.org mailing-lists"),
1387 contributer(u
"Serge Winitzki",
1388 "winitzki () erebus ! phys ! cwru ! edu",
1393 u
"updates to the Scientific Word bindings"),
1395 contributer(u
"Stephan Witt",
1396 "stephan.witt () beusen ! de",
1398 "Re: The LyX licence",
1399 "m=110909031824764",
1401 u
"support for page selection for printing support for number of copies"),
1403 contributer(u
"Huang Ying",
1404 "huangy () sh ! necas ! nec ! com ! cn",
1406 "Re: The LyX licence",
1407 "m=110956742604611",
1411 contributer(u
"Koji Yokota",
1412 "yokota () res ! otaru-uc ! ac ! jp",
1414 "Re: [PATCH] po/ja.po: Japanese message file for 1.5.0 (merged from",
1415 "m=118033214223720",
1417 u
"Japanese translation"),
1419 contributer(u
"Abdelrazak Younes",
1420 "younes.a () free ! fr",
1422 "Re: [Patch] RFQ: ParagraphList Rewrite",
1423 "m=113993670602439",
1425 u
"Qt4 frontend, editing optimisations"),
1427 contributer(u
"Henner Zeller",
1428 "henner.zeller () freiheit ! com",
1430 "Re: The LyX licence",
1431 "m=110911591218107",
1433 u
"rotation of wysiwyg figures"),
1435 contributer(u
"Horst Schirmeier",
1436 "horst () schirmeier ! com",
1438 "Re: [patch] reordering capabilities for GuiBibtex",
1439 "m=120009631506298",
1443 contributer(u
"Xiaokun Zhu",
1444 "xiaokun () aero ! gla ! ac ! uk",
1449 u
"bug reports and small fixes") ]
1452 if __name__
== "__main__":
1453 main(sys
.argv
, contributers
)