lyx_mirror/lib/generate_contributions.py

1503 lines
50 KiB
Python
Raw Normal View History

#! /usr/bin/env python
# -*- coding: utf-8 -*-
'''
file generate_contributions.py
This file is part of LyX, the document processor.
Licence details can be found in the file COPYING.
author Angus Leeming
Full author contact details are available in file CREDITS
This script both stores and manipulates the raw data needed to
create CREDITS, credits.inc and blanket-permission.inc
Usage:
$ python generate_contributions.py \
CREDITS \
credits.inc \
blanket-permission.inc
where the arguments are the names of the generated files.
'''
import codecs, sys, textwrap
def xml_escape(s):
s = s.replace("&", "&")
s = s.replace("<", "&lt;")
s = s.replace(">", "&gt;")
s = s.replace('"', '&quot;')
return s
class contributer:
def __init__(self,
name,
contact,
licence,
permission_title,
archive_id,
permission_date,
credit):
self.name = name
self.contact = contact
self.licence = licence
self.permission_title = permission_title
self.archive_id = archive_id
self.permission_date = permission_date
self.credit = credit
def as_txt_credits(self):
result = [ '@b%s\n' % self.name ]
if len(self.contact) != 0:
if self.contact.find("http") != -1:
result.append('@i%s\n' % self.contact)
else:
result.append('@iE-mail: %s\n' % self.contact)
result.append(' %s\n' % self.credit.replace('\n', '\n '))
return "".join(result)
def as_php_credits(self, wrapper):
return '''
$output=$output.credits_contrib("%s",
"%s",
"%s");
''' % ( xml_escape(self.name),
xml_escape(self.contact),
"\n".join(wrapper.wrap(xml_escape(self.credit))) )
def as_php_blanket(self):
return '''
$output=$output.blanket_contrib("%s",
"%s",
"%s",
"%s",
"%s");
''' % ( xml_escape(self.name),
xml_escape(self.contact),
xml_escape(self.permission_title),
xml_escape(self.archive_id),
xml_escape(self.permission_date) )
def error(message):
if message:
sys.stderr.write(message + '\n')
sys.exit(1)
def usage(prog_name):
return "Usage: %s <CREDITS> <credits.inc> <blanket-permission.inc>" % prog_name
def collate_incomplete(contributers):
missing_credit = []
missing_licence = []
for contributer in contributers:
if len(contributer.credit) == 0:
missing_credit.append(contributer.name)
if len(contributer.licence) == 0:
missing_licence.append(contributer.name)
return '''WARNING!
The following contributers do not have a CREDITS entry:
%s
These ones have no explicit licence statement:
%s
''' % ( ",\n ".join(missing_credit), ",\n ".join(missing_licence))
def as_txt_credits(contributers):
results = []
for contributer in contributers:
if len(contributer.credit) != 0:
results.append(contributer.as_txt_credits())
results.append('''
If your name doesn't appear here although you've done
something for LyX, or your entry is wrong or incomplete,
just drop some e-mail to lyx@lyx.org. Thanks.
''')
return "".join(results)
def header():
return '''<?php
// WARNING! This file is autogenerated.
// Any changes to it will be lost.
// Please modify generate_contributions.py direct.
'''
def footer():
return '''
'''
def as_php_credits(contributers, file):
results = []
results.append(header())
results.append('''
function credits_contrib($name, $email, $msg) {
$email = str_replace(' () ', '@', $email);
$email = str_replace(' ! ', '.', $email);
if (isset($email) && $email != "")
$output=$output. "<dt><b>[[mailto:${email} | ${name}]]</b>";
else
$output=$output. "<dt><b>${name}</b>";
$msg = ereg_replace("\\n *", "\\n ", ltrim($msg));
$output=$output. "
</dt>
<dd>
${msg}
</dd>";
return $output;
}
function credits_output() {
$output=$output."<p>
If your name doesn't appear here although you've done
something for LyX, or your entry is wrong or incomplete,
just drop an e-mail to the
[[mailto:lyx-devel@lists.lyx.org | lyx-devel]]
mailing list. Thanks.
</p>
<dl>";
''')
wrapper = textwrap.TextWrapper(width=60, subsequent_indent=" ")
for contributer in contributers:
if len(contributer.credit) != 0:
results.append(contributer.as_php_credits(wrapper))
results.append('''
$output=$output."</dl>";
return $output;
}
''')
results.append(footer())
return "".join(results)
def as_php_blanket(contributers, file):
results = []
results.append(header())
results.append('''
function blanket_contrib($name, $email, $msg_title, $msg_ref, $date) {
$email = str_replace(' () ', '@', $email);
$email = str_replace(' ! ', '.', $email);
$output=$output. "
<dt>
<b>[[mailto:${email} | ${name}]]</b>
</dt>
<dd>
See the lyx-devel mailing list message
&quot;";
if (isset($msg_ref) && $msg_ref != "") {
$msg_ref = htmlspecialchars("$msg_ref");
$output=$output. "[[http://marc.info/?l=lyx-devel&amp;" . ${msg_ref} . "|" . ${msg_title} . "]]";
} else {
$output=$output. "${msg_title}";
}
$output=$output. "&quot;
of $date.
</dd>";
return $output;
}
function blanket_output() {
$output=$output."<p>
The following people hereby grant permission to license their
contributions to LyX under the
[[http://www.opensource.org/licenses/gpl-license.php |
Gnu General Public License]], version 2 or later.
</p>
<dl>";
''')
for contributer in contributers:
if contributer.licence == "GPL":
results.append(contributer.as_php_blanket())
results.append('''
$output=$output."</dl>";
$output=$output."
<p>
The following people hereby grant permission to license their
contributions to LyX under the
[[http://www.opensource.org/licenses/artistic-license.php |
Artistic License]].
</p>
<dl>";
''')
for contributer in contributers:
if contributer.licence == "Artistic":
results.append(contributer.as_php_blanket())
results.append('''
$output=$output."</dl>";
return $output;
}
''')
results.append(footer())
return "".join(results)
def main(argv, contributers):
if len(argv) != 4:
error(usage(argv[0]))
txt_credits_data = unicode(as_txt_credits(contributers)).encode("utf-8")
txt_credits = open(argv[1], "w")
txt_credits.write(txt_credits_data)
php_credits_data = unicode(as_php_credits(contributers, argv[2])).encode("utf-8")
php_credits = open(argv[2], "w")
php_credits.write(php_credits_data)
php_blanket_data = unicode(as_php_blanket(contributers, argv[3])).encode("utf-8")
php_blanket = open(argv[3], "w")
php_blanket.write(php_blanket_data)
warning_data = unicode(collate_incomplete(contributers) + '\n').encode("utf-8")
sys.stderr.write(warning_data)
# Store the raw data.
contributers = [
contributer(u"Maarten Afman",
"info () afman ! net",
"GPL",
"Fwd: Re: The LyX licence",
"m=110958096916679",
"27 February 2005",
u"Dutch translation team member"),
contributer(u"Hatim Alahmadi",
"dr.hatim () hotmail ! com",
"GPL",
"license issue",
"m=121727417724431",
"28 July 2008",
u"Arabic translation"),
contributer(u"Asger Alstrup",
"aalstrup () laerdal ! dk",
"GPL",
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
"m=110899716913300",
"21 February 2005",
u"General hacking of user interface stuff and those other bits and pieces"),
contributer(u"Pascal André",
"andre () via ! ecp ! fr",
"GPL",
"Re: The LyX licence --- a gentle nudge",
"m=111263406200012",
"1 April 2005",
u"External style definition files, linuxdoc sgml support and more ftp-site ftp.lyx.org"),
contributer(u"Liviu Andronic",
"landronimirc () gmail ! com",
"GPL",
"contributions GPLed",
"m=121869084720708",
"14 August 2008",
u"Romanian localization"),
contributer(u"João Luis Meloni Assirati",
"assirati () nonada ! if ! usp ! br",
"GPL",
"Re: The LyX licence",
"m=110918749022256",
"23 February 2005",
u"Added support for unix sockets and thence the 'inverse DVI' feature"),
contributer(u"Özgür Uğraş Baran",
"ugras.baran () gmail ! com",
"GPL",
"Re: [patch] new InsetCommandParams",
"m=116124030512963",
"19 October 2006",
u"New commandparams structure, Nomenclature inset"),
contributer(u"Susana Barbosa",
"susana.barbosa () fc ! up ! pt",
"GPL",
"License",
"m=118707828425316",
"14 August 2007",
u"Portuguese translation"),
contributer(u"Yves Bastide",
"yves.bastide () irisa ! fr",
"GPL",
"Re: The LyX licence",
"m=110959913631678",
"28 February 2005",
u"Bug fixes"),
contributer(u"Heinrich Bauer",
"heinrich.bauer () t-mobile ! de",
"GPL",
"Fwd: Re: The LyX licence",
"m=110910430117798",
"22 February 2005",
u"Fixes for dvi output original version of page selection for printing"),
contributer(u"Georg Baum",
"georg.baum () post ! rwth-aachen ! de",
"GPL",
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
"m=110899912526043",
"21 February 2005",
u"tex2lyx improvements, bug fixes, unicode work"),
contributer(u"Hans Bausewein",
"hans () comerwell ! xs4all ! nl",
"GPL",
"Re: The LyX licence --- a gentle nudge",
"m=111262999400394",
"2 April 2005",
'"case insensitive" and "complete word" search'),
contributer(u"Graham Biswell",
"graham () gbiswell ! com",
"GPL",
"Re: The LyX licence",
"m=111269177728853",
"5 April 2005",
u"Small bugfixes that were very hard to find"),
contributer(u"Lars Gullik Bjønnes",
"larsbj () gullik ! net",
"GPL",
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
"m=110907078027047",
"22 February 2005",
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."),
contributer(u"Alfredo Braunstein",
"abraunst () lyx ! org",
"GPL",
"Re: The LyX licence",
"m=110927069513172",
"24 February 2005",
u"A (pseudo) threaded graphics loader queue, lots of fixes, etc."),
contributer(u"Christian Buescher",
"christian.buescher () uni-bielefeld ! de",
"",
"",
"",
"",
u"User-definable keys, lyxserver and more"),
contributer(u"Johnathan Burchill",
"jkerrb () users ! sourceforge ! net",
"GPL",
"Re: The LyX licence",
"m=110908472818670",
"22 February 2005",
u"Ported John Levon's original 'change tracking' code to later versions of LyX. Numerous bug fixes thereof."),
contributer(u"Francesc Burrull i Mestres",
"fburrull () mat ! upc ! es",
"",
"",
"",
"",
u"Catalan translation"),
contributer(u"Humberto Nicolás Castejón",
"beconico () gmail ! com",
"GPL",
"Re: The LyX licence",
"m=111833854105023",
"9 June 2005",
u"Spanish translation of the Windows installer"),
contributer(u"Matěj Cepl",
"matej () ceplovi ! cz",
"GPL",
"Re: The LyX licence",
"m=110913090232039",
"22 February 2005",
u"Improvements to the czech keymaps"),
contributer(u"Albert Chin",
"lyx-devel () mlists ! thewrittenword ! com",
"GPL",
"Re: The LyX licence --- a gentle nudge",
"m=111220294831831",
"30 March 2005",
u"Bug fixes"),
contributer(u"Jean-Pierre Chrétien",
"chretien () cert ! fr",
"GPL",
"Re: The LyX licence",
"m=111842518713710",
"10 June 2005",
u"French translations"),
contributer(u"Claudio Coco",
"lacocio () libero ! it",
"GPL",
"Agreement to GNU General Public licence",
"m=113749629514591",
"17 January 2006",
u"Italian translation"),
contributer(u"Yuri Chornoivan",
"yurchor () ukr ! net",
"GPL",
"Permission grant",
"m=121681339315810",
"23 July 2008",
u"Ukranian translation"),
contributer(u"Matthias Kalle Dalheimer",
"kalle () kdab ! net",
"GPL",
"Re: The LyX licence",
"m=110908857130107",
"22 February 2005",
u"Qt2 port"),
contributer(u"Anders Ekberg",
"anek () chalmers ! se",
"GPL",
"License agreement",
"m=113725822602516",
"14 January 2006",
u"Improvements to the Swedish translation of the Windows Installer"),
contributer(u"Matthias Ettrich",
"ettrich () trolltech ! com",
"GPL",
"Fwd: Re: The LyX licence",
"m=110959638810040",
"28 February 2005",
u"Started the project, implemented the early versions, various improvements including undo/redo, tables, and much, much more"),
contributer(u"Baruch Even",
"baruch () ev-en ! org",
"GPL",
"Re: The LyX licence",
"m=110936007609786",
"25 February 2005",
u"New graphics handling scheme and more"),
contributer(u"Dov Feldstern",
"dfeldstern () fastimap ! com",
"GPL",
"Re: Farsi support re-submission plus a little more",
"m=118064913824836",
"31 May 2007",
u"RTL/BiDi-related fixes"),
contributer(u"Michał Fita",
"michal ! fita () gmail ! com",
"GPL",
"Statement for Polish translation",
"m=121615623122376",
"15 July 2008",
u"Polish translation"),
contributer(u"Ronald Florence",
"ron () 18james ! com",
"GPL",
"Re: The LyX licence --- a gentle nudge",
"m=111262821108510",
"31 March 2005",
u"Maintainer of the OS X port(s)"),
contributer(u"José Ramom Flores d'as Seixas",
"fa2ramon () usc ! es",
"GPL",
"Re: Galician translation",
"m=116136920230072",
"20 October 2006",
u"Galician documentation and localization"),
contributer(u"John Michael Floyd",
"jmf () pwd ! nsw ! gov ! au",
"",
"",
"",
"",
u"Bug fix to the spellchecker"),
contributer(u"Nicola Focci",
"nicola.focci () gmail ! com",
"GPL",
"Permission",
"m=120946605432341",
"29 April 2008",
u"Italian translation of documentations"),
contributer(u"Enrico Forestieri",
"forenr () tlc ! unipr ! it",
"GPL",
"Re: lyxpreview2ppm.py",
"m=111894292115287",
"16 June 2005",
u"Italian translations, many bug fixes and features"),
contributer(u"Eitan Frachtenberg",
"sky8an () gmail ! com",
"GPL",
"Re: [PATCH] BibTeX annotation support",
"m=111130799028250",
"20 March 2005",
u"BibTeX annotation support"),
contributer(u"Darren Freeman",
"dfreeman () ieee ! org",
"GPL",
"Licence",
"m=118612951707590",
"3 August 2007",
u"Improvements to mouse wheel scrolling; many bug reports"),
contributer(u"Edscott Wilson Garcia",
"edscott () xfce ! org",
"GPL",
"Re: The LyX licence --- a gentle nudge",
"m=111219295119021",
"30 March 2005",
u"Bug fixes"),
contributer(u"Ignacio García",
"ignacio.garcia () tele2 ! es",
"GPL",
"Re: es_EmbeddedObjects",
"m=117079592919653",
"06 February 2007",
u"Spanish translation of documentations"),
contributer(u"Michael Gerz",
"michael.gerz () teststep ! org",
"GPL",
"Re: The LyX licence",
"m=110909251110103",
"22 February 2005",
u"Change tracking, German localization, bug fixes"),
contributer(u"Stefano Ghirlanda",
"stefano.ghirlanda () unibo ! it",
"GPL",
"Re: The LyX licence",
"m=110959835300777",
"28 February 2005",
u"Improvements to lyxserver"),
contributer(u"Hartmut Goebel",
"h.goebel () crazy-compilers ! com",
"GPL",
"Re: The LyX licence --- a gentle nudge",
"m=111225910223564",
"30 March 2005",
u"Improvements to Koma-Script classes"),
contributer(u"Hartmut Haase",
"hha4491 () web ! de",
"GPL",
"Re: The LyX licence",
"m=110915427710167",
"23 February 2005",
u"German translation of the documentation"),
contributer(u"Helge Hafting",
"helgehaf () aitel ! hist ! no",
"GPL",
"Re: The LyX licence",
"m=110916171925288",
"23 February 2005",
u"Norwegian documentation and localization"),
contributer(u"Richard Heck",
"rgheck () brown ! edu",
"GPL",
"GPL Statement",
"m=117501689204059",
"27 March 2007",
u"Bug fixes, layout modules, BibTeX code"),
contributer(u"Bennett Helm",
"bennett.helm () fandm ! edu",
"GPL",
"Re: The LyX licence",
"m=110907988312372",
"22 February 2005",
u"Maintainer of the OSX ports, taking over from Ronald Florence"),
contributer(u"Claus Hentschel",
"claus.hentschel () mbau ! fh-hannover ! de",
"",
"",
"",
"",
u"Win32 port of LyX 1.1.x"),
contributer(u"Claus Hindsgaul",
"claus_h () image ! dk",
"GPL",
"Re: The LyX licence",
"m=110908607416324",
"22 February 2005",
u"Danish translation"),
contributer(u"Bernard Hurley",
"bernard () fong-hurley ! org ! uk",
"GPL",
"Re: The LyX licence --- a gentle nudge",
"m=111218682804142",
"30 March 2005",
u"Fixes to literate programming support"),
contributer(u"Marius Ionescu",
"felijohn () gmail ! com",
"GPL",
"permission to licence",
"m=115935958330941",
"27 September 2006",
u"Romanian localization"),
contributer(u"Bernhard Iselborn",
"bernhard.iselborn () sap ! com",
"GPL",
"RE: The LyX licence",
"m=111268306522212",
"5 April 2005",
u"Some minor bug-fixes, FAQ, linuxdoc sgml support"),
contributer(u"Masanori Iwami",
"masa.iwm () gmail ! com",
"GPL",
"Re: [patch] Addition of input method support",
"m=117541512517453",
"1 April 2007",
u"Development of CJK language support"),
contributer(u"Michal Jaegermann",
"michal () ellpspace ! math ! ualberta ! ca",
"GPL",
"Re: The LyX licence",
"m=110909853626643",
"22 February 2005",
u"Fix to a very hard-to-find egcs bug that crashed LyX on alpha architecture"),
contributer(u"Harshula Jayasuriya",
"harshula () gmail ! com",
"GPL",
"Re: Bug in export to DocBook",
"m=116884249725701",
"15 January 2007",
u"Fix docbook generation of nested lists"),
contributer(u"David L. Johnson",
"david.johnson () lehigh ! edu",
"GPL",
"GPL",
"m=110908492016593",
"22 February 2005",
u"Public relations, feedback, documentation and support"),
contributer(u"Robert van der Kamp",
"robnet () wxs ! nl",
"GPL",
"Re: The LyX licence",
"m=111268623330209",
"5 April 2005",
u"Various small things and code simplifying"),
contributer(u"Amir Karger",
"amirkarger () gmail ! com",
"GPL",
"Re: The LyX licence",
"m=110912688520245",
"23 February 2005",
u"Tutorial, reLyX: the LaTeX to LyX translator"),
contributer(u"Carmen Kauffmann",
"",
"",
"",
"",
"",
u"Original name that is now two character shorter"),
contributer(u"KDE Artists",
"http://artist.kde.org/",
"",
"",
"",
"",
u"Authors of several of the icons LyX uses"),
contributer(u"Andreas Klostermann",
"andreas_klostermann () web ! de",
"GPL",
"blanket-permission",
"m=111054675600338",
"11 March 2005",
u"Gtk reference insertion dialog"),
contributer(u"Kostantino",
"ciclope10 () alice ! it",
"GPL",
"Permission granted",
"m=115513400621782",
"9 August 2006",
u"Italian localization of the interface"),
contributer(u"Michael Koziarski",
"koziarski () gmail ! com",
"GPL",
"Re: The LyX licence",
"m=110909592017966",
"22 February 2005",
u"Gnome port"),
contributer(u"Peter Kremer",
"kremer () bme-tel ! ttt ! bme ! hu",
"",
"",
"",
"",
u"Hungarian translation and bind file for menu shortcuts"),
contributer(u"Peter Kümmel",
"syntheticpp () gmx ! net",
"GPL",
"License",
"m=114968828021007",
"7 June 2006",
u"Qt4 coding, CMake build system, bug fixing, testing, clean ups, and profiling"),
contributer(u"Bernd Kümmerlen",
"bkuemmer () gmx ! net",
"GPL",
"Re: The LyX licence",
"m=110934318821667",
"25 February 2005",
u"Initial version of the koma-script textclasses"),
contributer(u"Felix Kurth",
"felix () fkurth ! de",
"GPL",
"Re: The LyX licence",
"m=110908918916109",
"22 February 2005",
u"Support for textclass g-brief2"),
contributer(u"Rob Lahaye",
"lahaye () snu ! ac ! kr",
"GPL",
"Re: The LyX licence",
"m=110908714131711",
"22 February 2005",
u"Xforms dialogs and GUI related code"),
contributer(u"Jean-Marc Lasgouttes",
"lasgouttes () lyx ! org",
"GPL",
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
"m=110899928510452",
"21 February 2005",
u"configure and Makefile-stuff, many bugfixes and more. Previous stable branch maintainer."),
contributer(u"Victor Lavrenko",
"lyx () lavrenko ! pp ! ru",
"",
"",
"",
"",
u"Russian translation"),
contributer(u"Angus Leeming",
"leeming () lyx ! org",
"GPL",
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
"m=110899671520339",
"21 February 2005",
u"GUI-I-fication of insets and more"),
contributer(u"Edwin Leuven",
"e.leuven () uva ! nl",
"GPL",
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
"m=110899657530749",
"21 February 2005",
u"Qt2 frontend GUI-I-fication of several popups.\nDutch translation of the Windows installer"),
contributer(u"John Levon",
"levon () movementarian ! org",
"GPL",
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
"m=110899535600562",
"21 February 2005",
u"Qt2 frontend, GUII work, bugfixes"),
contributer(u"Ling Li",
"ling () caltech ! edu",
"GPL",
"Re: LyX 1.4cvs crash on Fedora Core 3",
"m=111204368700246",
"28 March 2005",
u"Added native support for \makebox to mathed. Several bug fixes, both to the source code and to the llncs layout file"),
contributer(u"Tomasz Łuczak",
"tlu () technodat ! com ! pl",
"GPL",
"Re: [Cvslog] lyx-devel po/: ChangeLog pl.po lib/: CREDITS",
"m=113580483406067",
"28 December 2005",
u"Polish translation and mw* layouts files"),
contributer(u"Hangzai Luo",
"memcache () gmail ! com",
"GPL",
"Re: [patch] tex2lyx crash when full path is given from commandline on Win32",
"m=118326161706627",
"1 July 2007",
u"Bugfixes"),
contributer(u"José Matos",
"jamatos () fc ! up ! pt",
"GPL",
"Re: The LyX licence",
"m=110907762926766",
"22 February 2005",
u"linuxdoc sgml support. Current release manager."),
contributer(u"Roman Maurer",
"roman.maurer () amis ! net",
"GPL",
"Re: The LyX licence",
"m=110952616722307",
"27 February 2005",
u"Slovenian translation coordinator"),
contributer(u"Tino Meinen",
"a.t.meinen () chello ! nl",
"GPL",
"Re: Licensing your contributions to LyX",
"m=113078277722316",
"31 October 2005",
u"Dutch translation coordinator"),
contributer(u"Siegfried Meunier-Guttin-Cluzel",
"meunier () coria ! fr",
"GPL",
"French translations",
"m=119485816312776",
"12 November 2007",
u"French translations of the documentation"),
contributer(u"Joan Montané",
"jmontane () gmail ! com",
"GPL",
"Re: LyX translation updates needed",
"m=118765575314017",
"21 August 2007",
u"Catalan translations of menus"),
contributer(u"Iñaki Larrañaga Murgoitio",
"dooteo () euskalgnu ! org",
"GPL",
"Re: The LyX licence",
"m=110908606525783",
"22 February 2005",
u"Basque documentation and localization"),
contributer(u"Daniel Naber",
"daniel.naber () t-online ! de",
"GPL",
"Re: The LyX licence",
"m=110911176213928",
"22 February 2005",
u"Improvements to the find&replace dialog"),
contributer(u"Pablo De Napoli",
"pdenapo () mate ! dm ! uba ! ar",
"GPL",
"Re: The LyX licence",
"m=110908904400120",
"22 February 2005",
u"Math panel dialogs"),
contributer(u"Dirk Niggemann",
"dabn100 () cam ! ac ! uk",
"",
"",
"",
"",
u"config. handling enhancements, bugfixes, printer enhancements path mingling"),
contributer(u"Carl Ollivier-Gooch",
"cfog () mech ! ubc ! ca",
"GPL",
"Re: The LyX licence --- a gentle nudge",
"m=111220662413921",
"30 March 2005",
u"Support for two-column figure (figure*) and table (table*) environments. Fixed minibuffer entry of floats."),
contributer(u'Panayotis "PAP" Papasotiriou',
"papasot () upatras ! gr",
"GPL",
"Re: The LyX licence",
"m=110933552929119",
"25 February 2005",
u"Support for kluwer and ijmpd document classes"),
contributer(u'Andrey V. Panov',
"panov () canopus ! iacp ! dvo ! ru",
"GPL",
"Re: Russian translation for LyX",
"m=119853644302866",
"24 December 2007",
u"Russian translation of the user interface"),
contributer(u'Sanda Pavel',
"ps () ucw ! cz",
"GPL",
"Re: czech translation",
"m=115522417204086",
"10 August 2006",
u"Czech translation, support for the LaTeX package hyperref"),
contributer(u'Bo Peng',
"ben.bob () gmail ! com",
"GPL",
"Re: Python version of configure script (preview version)",
"m=112681895510418",
"15 September 2005",
u"Conversion of all shell scripts to Python, shortcuts dialog, session, view-source, auto-view, embedding features and scons build system."),
contributer(u"Joacim Persson",
"sp2joap1 () ida ! his ! se",
"",
"",
"",
"",
u"po-file for Swedish, a tool for picking shortcuts, bug reports and hacking atrandom"),
contributer(u"Zvezdan Petkovic",
"zpetkovic () acm ! org",
"GPL",
"Re: The LyX licence",
"m=111276877900892",
"6 April 2005",
u"Better support for serbian and serbocroatian"),
contributer(u"Geoffroy Piroux",
"piroux () fyma ! ucl ! ac ! be",
"",
"",
"",
"",
u"Mathematica backend for mathed"),
contributer(u"Neoklis Polyzotis",
"alkis () soe ! ucsc ! edu",
"GPL",
"Fwd: Re: The LyX licence",
"m=111039215519777",
"9 March 2005",
u"Keymap work"),
contributer(u"André Pönitz",
"andre.poenitz () mathematik ! tu-chemnitz ! de",
"GPL",
"Re: The LyX licence",
"m=111143534724146",
"21 March 2005",
u"mathed rewrite to use STL file io with streams --export and --import command line options"),
contributer(u"Kornelia Pönitz",
"kornelia.poenitz () mathematik ! tu-chemnitz ! de",
"GPL",
"Re: The LyX licence",
"m=111121553103800",
"19 March 2005",
u"heavy mathed testing; provided siamltex document class"),
contributer(u"Bernhard Psaier",
"",
"",
"",
"",
"",
u"Designer of the LyX-Banner"),
contributer(u"Thomas Pundt",
"thomas () pundt ! de",
"GPL",
"Re: The LyX licence",
"m=111277917703326",
"6 April 2005",
u"initial configure script"),
contributer(u"Allan Rae",
"rae () itee ! uq ! edu ! au",
"GPL",
"lyx-1.3.6cvs configure.in patch",
"m=110905169512662",
"21 February 2005",
u"GUI-I architect, LyX PR head, LDN, bug reports/fixes, Itemize Bullet Selection, xforms-0.81 + gcc-2.6.3 compatibility"),
contributer(u"Adrien Rebollo",
"adrien.rebollo () gmx ! fr",
"GPL",
"Re: The LyX licence",
"m=110918633227093",
"23 February 2005",
u"French translation of the docs; latin 3, 4 and 9 support"),
contributer(u"Garst R. Reese",
"garstr () isn ! net",
"GPL",
"blanket-permission.txt:",
"m=110911480107491",
"22 February 2005",
u"provided hollywood and broadway classes for writing screen scripts and plays"),
contributer(u"Bernhard Reiter",
"ockham () gmx ! net",
"GPL",
"Re: RFC: GThesaurus.C et al.",
"m=112912017013984",
"12 October 2005",
u"Gtk frontend"),
contributer(u"Ruurd Reitsma",
"rareitsma () yahoo ! com",
"GPL",
"Fwd: Re: The LyX licence",
"m=110959179412819",
"28 February 2005",
u"Creator of the native port of LyX to Windows"),
contributer(u"Bernd Rellermeyer",
"bernd.rellermeyer () arcor ! de",
"GPL",
"Re: The LyX licence",
"m=111317142419908",
"10 April 2005",
u"Support for Koma-Script family of classes"),
contributer(u"Michael Ressler",
"mike.ressler () alum ! mit ! edu",
"GPL",
"Re: The LyX licence",
"m=110926603925431",
"24 February 2005",
u"documentation maintainer, AASTeX support"),
contributer(u"Christian Ridderström",
"christian.ridderstrom () home ! se",
"GPL",
"Re: The LyX licence",
"m=110910933124056",
"22 February 2005",
u"The driving force behind, and maintainer of, the LyX wiki wiki.\nSwedish translation of the Windows installer"),
contributer(u"Bernhard Roider",
"bernhard.roider () sonnenkinder ! org",
"GPL",
"Re: [PATCH] immediatly display saved filename in tab",
"m=117009852211669",
"29 January 2007",
u"Various bug fixes"),
contributer(u"Paul A. Rubin",
"rubin () msu ! edu",
"GPL",
"Re: [patch] reworked AMS classes (bugs 4087, 4223)",
"m=119072721929143",
"25 September 2007",
u"Major rework of the AMS classes"),
contributer(u"Ran Rutenberg",
"ran.rutenberg () gmail ! com",
"GPL",
"The New Hebrew Translation of the Introduction",
"m=116172457024967",
"24 October 2006",
u"Hebrew translation"),
contributer(u"Szõke Sándor",
"alex () lyx ! hu",
"GPL",
"Contribution to LyX",
"m=113449408830523",
"13 December 2005",
u"Hungarian translation"),
contributer(u"Janus Sandsgaard",
"janus () janus ! dk",
"GPL",
"Re: The LyX licence",
"m=111839355328045",
"10 June 2005",
u"Danish translation of the Windows installer"),
contributer(u"Stefan Schimanski",
"sts () 1stein ! org",
"GPL",
"GPL statement",
"m=117541472517274",
"1 April 2007",
u"font improvements, bug fixes"),
contributer(u"Hubert Schreier",
"schreier () sc ! edu",
"",
"",
"",
"",
u"spellchecker (ispell frontend); beautiful document-manager based on the simple table of contents (removed)"),
contributer(u"Ivan Schreter",
"schreter () kdk ! sk",
"",
"",
"",
"",
u"international support and kbmaps for slovak, czech, german, ... wysiwyg figure"),
contributer(u"Eulogio Serradilla Rodríguez",
"eulogio.sr () terra ! es",
"GPL",
"Re: The LyX licence",
"m=110915313018478",
"23 February 2005",
u"contribution to the spanish internationalization"),
contributer(u"Miyata Shigeru",
"miyata () kusm ! kyoto-u ! ac ! jp",
"",
"",
"",
"",
u"OS/2 port"),
contributer(u"Alejandro Aguilar Sierra",
"asierra () servidor ! unam ! mx",
"GPL",
"Fwd: Re: The LyX licence",
"m=110918647812358",
"23 February 2005",
u"Fast parsing with lyxlex, pseudoactions, mathpanel, Math Editor, combox and more"),
contributer(u"Lior Silberman",
"lior () princeton ! edu",
"GPL",
"Fwd: Re: The LyX licence",
"m=110910432427450",
"22 February 2005",
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."),
contributer(u"Andre Spiegel",
"spiegel () gnu ! org",
"GPL",
"Re: The LyX licence",
"m=110908534728505",
"22 February 2005",
u"vertical spaces"),
contributer(u"Jürgen Spitzmüller",
"juergen.sp () t-online ! de",
"GPL",
"Re: The LyX licence",
"m=110907530127164",
"22 February 2005",
u"Qt frontend, bugfixes. Current stable branch maintainer."),
contributer(u"John Spray",
"jcs116 () york ! ac ! uk",
"GPL",
"Re: The LyX licence",
"m=110909415400170",
"22 February 2005",
u"Gtk frontend"),
contributer(u"Ben Stanley",
"ben.stanley () exemail ! com ! au",
"GPL",
"Re: The LyX licence",
"m=110923981012056",
"24 February 2005",
u"fix bugs with error insets placement"),
contributer(u"Uwe Stöhr",
"uwestoehr () web ! de",
"GPL",
"Re: The LyX licence",
"m=111833345825278",
"9 June 2005",
u"Current documentation maintainer, Windows installer, bug fixes"),
contributer(u"David Suárez de Lis",
"excalibor () iname ! com",
"",
"",
"",
"",
u"maintaining es.po since v1.0.0 and other small i18n issues small fixes"),
contributer(u"Peter Sütterlin",
"p.suetterlin () astro ! uu ! nl",
"GPL",
"Re: The LyX licence",
"m=110915086404972",
"23 February 2005",
u"aapaper support, german documentation translation, bug reports"),
contributer(u"Kayvan Aghaiepour Sylvan",
"kayvan () sylvan ! com",
"GPL",
"Re: The LyX licence",
"m=110908748407087",
"22 February 2005",
u"noweb2lyx and reLyX integration of noweb files. added Import->Noweb and key bindings to menus"),
contributer(u"Reuben Thomas",
"rrt () sc3d ! org",
"GPL",
"Re: The LyX licence",
"m=110911018202083",
"22 February 2005",
u"encts document class lots of useful bug reports"),
contributer(u"Dekel Tsur",
"dtsur () cs ! ucsd ! edu",
"GPL",
"Fwd: Re: The LyX licence",
"m=110910437519054",
"22 February 2005",
u"Hebrew support, general file converter, many many bug fixes"),
contributer(u"Matthias Urlichs",
"smurf () smurf ! noris ! de",
"GPL",
"Re: The LyX licence",
"m=110912859312991",
"22 February 2005",
u"bug reports and small fixes"),
contributer(u"H. Turgut Uyar",
"uyar () ce ! itu ! edu ! tr",
"GPL",
"Re: The LyX licence",
"m=110917146423892",
"23 February 2005",
u"turkish kbmaps"),
contributer(u"Mostafa Vahedi",
"vahedi58 () yahoo ! com",
"GPL",
"Re: improving Arabic-like language support",
"m=117769964731842",
"27 April 2007",
u"Farsi support and translations"),
contributer(u"Marko Vendelin",
"markov () ioc ! ee",
"GPL",
"Re: The LyX licence",
"m=110909439912594",
"22 February 2005",
u"Gnome frontend"),
contributer(u"Joost Verburg",
"joostverburg () users ! sourceforge ! net",
"GPL",
"Re: New Windows Installer",
"m=114957884100403",
"6 June 2006",
u"A new and improved Windows installer"),
contributer(u"Martin Vermeer",
"martin.vermeer () hut ! fi",
"GPL",
"Re: The LyX licence",
"m=110907543900367",
"22 February 2005",
u"support for optional argument in sections/captions svjour/svjog, egs and llncs document classes. Lot of bug hunting (and fixing!)"),
contributer(u"Jürgen Vigna",
"jug () lyx ! org",
"GPL",
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
"m=110899839906262",
"21 February 2005",
u"complete rewrite of the tabular, text inset; fax and plain text export support; iletter and dinbrief support"),
contributer(u"Pauli Virtanen",
"pauli.virtanen () hut ! fi",
"GPL",
"Re: The LyX licence",
"m=110918662408397",
"23 February 2005",
u"Finnish localization of the interface"),
contributer(u"Herbert Voß",
"herbert.voss () alumni ! tu-berlin ! de",
"GPL",
"Fwd: Re: The LyX licence",
"m=110910439013234",
"22 February 2005",
u"The one who answers all questions on lyx-users mailing list and maintains www.lyx.org/help/ Big insetgraphics and bibliography cleanups"),
contributer(u"Andreas Vox",
"avox () arcor ! de",
"GPL",
"Re: The LyX licence",
"m=110907443424620",
"22 February 2005",
u"Bug fixes, feedback on LyX behaviour on the Mac, and improvements to DocBook export"),
contributer(u"John P. Weiss",
"jpweiss () frontiernet ! net",
"Artistic",
"Re: The LyX licence",
"m=110913490414280",
"23 February 2005",
u"Bugreports and suggestions, slides class support, editor of the documentationproject, 6/96-9/97. Tutorial chapter 1"),
contributer(u"Edmar Wienskoski",
"edmar () freescale ! com",
"GPL",
"Re: The LyX licence",
"m=111280236425781",
"6 April 2005",
u"literate programming support; various bug fixes"),
contributer(u"Mate Wierdl",
"mw () wierdlmpc ! msci ! memphis ! edu",
"",
"",
"",
"",
u"Maintainer of the @lists.lyx.org mailing-lists"),
contributer(u"Serge Winitzki",
"winitzki () erebus ! phys ! cwru ! edu",
"",
"",
"",
"",
u"updates to the Scientific Word bindings"),
contributer(u"Stephan Witt",
"stephan.witt () beusen ! de",
"GPL",
"Re: The LyX licence",
"m=110909031824764",
"22 February 2005",
u"support for page selection for printing support for number of copies"),
contributer(u"Huang Ying",
"huangy () sh ! necas ! nec ! com ! cn",
"GPL",
"Re: The LyX licence",
"m=110956742604611",
"28 February 2005",
u"Gtk frontend"),
contributer(u"Koji Yokota",
"yokota () res ! otaru-uc ! ac ! jp",
"GPL",
"Re: [PATCH] po/ja.po: Japanese message file for 1.5.0 (merged from",
"m=118033214223720",
"28 May 2007",
u"Japanese translation"),
contributer(u"Abdelrazak Younes",
"younes.a () free ! fr",
"GPL",
"Re: [Patch] RFQ: ParagraphList Rewrite",
"m=113993670602439",
"14 February 2006",
u"Qt4 frontend, editing optimisations"),
contributer(u"Henner Zeller",
"henner.zeller () freiheit ! com",
"GPL",
"Re: The LyX licence",
"m=110911591218107",
"22 February 2005",
u"rotation of wysiwyg figures"),
contributer(u"Horst Schirmeier",
"horst () schirmeier ! com",
"GPL",
"Re: [patch] reordering capabilities for GuiBibtex",
"m=120009631506298",
"12 January 2008",
u"small fixes"),
contributer(u"Vincent van Ravesteijn",
"V.F.vanRavesteijn () tudelft ! nl",
"GPL",
"RE: crash lyx-1.6rc1",
"m=121786603726114",
"4 August 2008",
u"small fixes"),
contributer(u"Xiaokun Zhu",
"xiaokun () aero ! gla ! ac ! uk",
"",
"",
"",
"",
u"bug reports and small fixes") ]
if __name__ == "__main__":
main(sys.argv, contributers)