mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
2359 lines
79 KiB
Python
Executable File
2359 lines
79 KiB
Python
Executable File
#! /usr/bin/python3
|
|
|
|
'''
|
|
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 pathnames of the generated files.
|
|
'''
|
|
|
|
import codecs, sys, textwrap
|
|
|
|
def xml_escape(s):
|
|
s = s.replace("&", "&")
|
|
s = s.replace("<", "<")
|
|
s = s.replace(">", ">")
|
|
s = s.replace('"', '"')
|
|
return s
|
|
|
|
|
|
class contributor:
|
|
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 = [ f'@b{self.name}\n' ]
|
|
if len(self.contact) != 0:
|
|
if self.contact.find("https") != -1:
|
|
result.append(f'@i{self.contact}\n')
|
|
else:
|
|
result.append(f'@iE-mail: {self.contact}\n')
|
|
result.append(f' {self.credit.replace("\n", "\n ")}\n')
|
|
return "".join(result)
|
|
|
|
|
|
def as_php_credits(self, wrapper):
|
|
return f'''
|
|
$output=$output.credits_contrib("{xml_escape(self.name)}",
|
|
"{xml_escape(self.contact)}",
|
|
"{"\n".join(wrapper.wrap(xml_escape(self.credit)))}");
|
|
'''
|
|
|
|
|
|
def as_php_blanket(self):
|
|
return f'''
|
|
$output=$output.blanket_contrib("{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:
|
|
|
|
$ python generate_contributions.py \\
|
|
CREDITS \\
|
|
credits.inc \\
|
|
blanket-permission.inc
|
|
|
|
where the arguments are the pathnames of the generated files.
|
|
'''
|
|
|
|
|
|
def collate_incomplete(contributors):
|
|
|
|
missing_credit = []
|
|
missing_licence = []
|
|
for contributor in contributors:
|
|
if len(contributor.credit) == 0:
|
|
missing_credit.append(contributor.name)
|
|
if len(contributor.licence) == 0:
|
|
missing_licence.append(contributor.name)
|
|
|
|
return f'''WARNING!
|
|
The following contributors do not have a CREDITS entry:
|
|
{",\n ".join(missing_credit)}
|
|
|
|
These ones have no explicit licence statement:
|
|
{",\n ".join(missing_licence)}
|
|
'''
|
|
|
|
|
|
def as_txt_credits(contributors):
|
|
results = []
|
|
|
|
for contributor in contributors:
|
|
if len(contributor.credit) != 0:
|
|
results.append(contributor.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(contributors, file):
|
|
results = []
|
|
|
|
results.append(header())
|
|
|
|
results.append('''
|
|
|
|
function credits_contrib($name, $email, $msg) {
|
|
|
|
$email = str_replace(' () ', '@', $email);
|
|
$email = str_replace(' ! ', '.', $email);
|
|
|
|
if(!isset($output)){ $output = ''; }
|
|
|
|
if (isset($email) && $email != "") {
|
|
if (strncasecmp($email,"https",4) == 0)
|
|
$output =$output. "<dt><b>[[{$email} | {$name}]]</b>";
|
|
else
|
|
$output=$output. "<dt><b>[[mailto:{$email} | {$name}]]</b>";
|
|
} else
|
|
$output=$output. "<dt><b>{$name}</b>";
|
|
|
|
$msg = preg_replace("/\\n */", "\\n ", ltrim($msg));
|
|
|
|
$output=$output. "
|
|
</dt>
|
|
<dd>
|
|
{$msg}
|
|
</dd>";
|
|
|
|
return $output;
|
|
}
|
|
|
|
function credits_output() {
|
|
|
|
if(!isset($output)){ $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 contributor in contributors:
|
|
if len(contributor.credit) != 0:
|
|
results.append(contributor.as_php_credits(wrapper))
|
|
|
|
results.append('''
|
|
$output=$output."</dl>";
|
|
|
|
return $output;
|
|
|
|
}
|
|
''')
|
|
results.append(footer())
|
|
return "".join(results)
|
|
|
|
|
|
def as_php_blanket(contributors, 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);
|
|
|
|
if(!isset($output)){ $output = ''; }
|
|
|
|
$output=$output. "
|
|
|
|
<dt>
|
|
<b>[[mailto:{$email} | {$name}]]</b>
|
|
</dt>
|
|
<dd>
|
|
See the lyx-devel mailing list message
|
|
"";
|
|
|
|
if (isset($msg_ref) && $msg_ref != "") {
|
|
$msg_ref = htmlspecialchars("$msg_ref");
|
|
if (substr($msg_ref, 0, 2) == "m=") {
|
|
$output=$output. "[[https://marc.info/?l=lyx-devel&" . $msg_ref . "|" . $msg_title . "]]";
|
|
} else {
|
|
$output=$output. "[[https://www.mail-archive.com/lyx-devel@lists.lyx.org/" . $msg_ref . ".html |" . $msg_title . "]]";
|
|
}
|
|
} else {
|
|
$output=$output. "{$msg_title}";
|
|
}
|
|
|
|
$output=$output. ""
|
|
of $date.
|
|
</dd>";
|
|
|
|
return $output;
|
|
}
|
|
|
|
function blanket_output() {
|
|
|
|
if(!isset($output)){ $output = ''; }
|
|
|
|
$output=$output."<p>
|
|
The following people hereby grant permission to license their
|
|
contributions to LyX under the
|
|
[[https://opensource.org/licenses/gpl-license |
|
|
Gnu General Public License]], version 2 or later.
|
|
</p>
|
|
|
|
<dl>";
|
|
''')
|
|
|
|
for contributor in contributors:
|
|
if contributor.licence == "GPL":
|
|
results.append(contributor.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
|
|
[[https://opensource.org/licenses/Artistic-2.0 |
|
|
Artistic License 2]].
|
|
</p>
|
|
|
|
<dl>";
|
|
''')
|
|
|
|
for contributor in contributors:
|
|
if contributor.licence == "Artistic":
|
|
results.append(contributor.as_php_blanket())
|
|
|
|
results.append('''
|
|
$output=$output."</dl>";
|
|
|
|
return $output;
|
|
|
|
}
|
|
''')
|
|
|
|
results.append(footer())
|
|
return "".join(results)
|
|
|
|
|
|
def main(argv, contributors):
|
|
if len(argv) != 4:
|
|
error(usage(argv[0]))
|
|
|
|
txt_credits_data = str(as_txt_credits(contributors)).encode("utf-8")
|
|
txt_credits = open(argv[1], "wb")
|
|
txt_credits.write(b"# Do not edit this file. It is created by the " \
|
|
b"script generate_contributions.py\n# and any direct change to " \
|
|
b"this file will be overwritten.\n")
|
|
txt_credits.write(txt_credits_data)
|
|
|
|
php_credits_data = str(as_php_credits(contributors, argv[2])).encode("utf-8")
|
|
php_credits = open(argv[2], "wb")
|
|
php_credits.write(php_credits_data)
|
|
|
|
php_blanket_data = str(as_php_blanket(contributors, argv[3])).encode("utf-8")
|
|
php_blanket = open(argv[3], "wb")
|
|
php_blanket.write(php_blanket_data)
|
|
|
|
warning_data = str(collate_incomplete(contributors) + '\n').encode("utf-8")
|
|
sys.stderr.write(warning_data.decode('utf-8'))
|
|
|
|
|
|
# Store the raw data.
|
|
#
|
|
# NOTE: syntax is
|
|
# contributor(u"Name",
|
|
# "Email [address () domain ! tld]",
|
|
# "GPL",
|
|
# "Message title",
|
|
# "Message ID",
|
|
# "Date of Message",
|
|
# u"Type of contribution"),
|
|
#
|
|
# Message ID can be either MARC [e.g., "m=1234567891011"]
|
|
# or mail-archive.com [e.g., "msg75510"]
|
|
# (note that MARC was used exclusively until 2019-10, when MARC stopped
|
|
# archieving lyx-devel)
|
|
contributors = [
|
|
|
|
contributor("Ronen Abravanel",
|
|
"ronena () gmail ! com",
|
|
"GPL",
|
|
"Re: Patch: Diagram inset",
|
|
"m=128486837824718",
|
|
"19 September 2010",
|
|
"Support for feyn diagrams"),
|
|
|
|
contributor("Maarten Afman",
|
|
"info () afman ! net",
|
|
"GPL",
|
|
"Fwd: Re: The LyX licence",
|
|
"m=110958096916679",
|
|
"27 February 2005",
|
|
"Dutch translation team member"),
|
|
|
|
contributor("Hatim Alahmadi",
|
|
"dr.hatim () hotmail ! com",
|
|
"GPL",
|
|
"license issue",
|
|
"m=121727417724431",
|
|
"28 July 2008",
|
|
"Arabic translation"),
|
|
|
|
contributor("Asger Alstrup",
|
|
"aalstrup () laerdal ! dk",
|
|
"GPL",
|
|
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
|
|
"m=110899716913300",
|
|
"21 February 2005",
|
|
"General hacking of user interface stuff and those other bits and pieces"),
|
|
|
|
contributor("Jesper Stemann Andersen",
|
|
"jesper () sait ! dk",
|
|
"GPL",
|
|
"Contributions GPLed",
|
|
"m=130336947315984",
|
|
"21 April 2011",
|
|
"Danish translation"),
|
|
|
|
contributor("Pascal André",
|
|
"andre () via ! ecp ! fr",
|
|
"GPL",
|
|
"Re: The LyX licence --- a gentle nudge",
|
|
"m=111263406200012",
|
|
"1 April 2005",
|
|
"External style definition files, linuxdoc sgml support and more ftp-site ftp.lyx.org"),
|
|
|
|
contributor("Liviu Andronic",
|
|
"landronimirc () gmail ! com",
|
|
"GPL",
|
|
"contributions GPLed",
|
|
"m=121869084720708",
|
|
"14 August 2008",
|
|
"Romanian localization and support for the frletter document class"),
|
|
|
|
contributor("Georger Araujo",
|
|
"georger_br () yahoo ! com ! br",
|
|
"GPL",
|
|
"pt_BR.po translation for LyX 2.1.3",
|
|
"m=143058265303480",
|
|
"2 May 2015",
|
|
"Brazilian Portuguese translation"),
|
|
|
|
contributor("João Luis Meloni Assirati",
|
|
"assirati () nonada ! if ! usp ! br",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110918749022256",
|
|
"23 February 2005",
|
|
"Added support for unix sockets and thence the 'inverse DVI' feature"),
|
|
|
|
contributor("Patrick Atamaniuk",
|
|
"atamaniuk () frobs ! net",
|
|
"GPL",
|
|
"License for my contributions",
|
|
"m=129594232112957",
|
|
"28 January 2011",
|
|
"fix-cm module"),
|
|
|
|
contributor("Gioele Barabucci",
|
|
"gioele () svario ! it",
|
|
"GPL",
|
|
"Contribution license",
|
|
"m=136933235620262",
|
|
"23 May 2013",
|
|
"ACM-SIGS layouts"),
|
|
|
|
contributor("Özgür Uğraş Baran",
|
|
"ugras.baran () gmail ! com",
|
|
"GPL",
|
|
"Re: [patch] new InsetCommandParams",
|
|
"m=116124030512963",
|
|
"19 October 2006",
|
|
"New commandparams structure, Nomenclature inset"),
|
|
|
|
contributor("Susana Barbosa",
|
|
"susana.barbosa () fc ! up ! pt",
|
|
"GPL",
|
|
"License",
|
|
"m=118707828425316",
|
|
"14 August 2007",
|
|
"Portuguese translation"),
|
|
|
|
contributor("Yves Bastide",
|
|
"yves.bastide () irisa ! fr",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110959913631678",
|
|
"28 February 2005",
|
|
"Bug fixes"),
|
|
|
|
contributor("Heinrich Bauer",
|
|
"heinrich.bauer () t-mobile ! de",
|
|
"GPL",
|
|
"Fwd: Re: The LyX licence",
|
|
"m=110910430117798",
|
|
"22 February 2005",
|
|
"Fixes for dvi output original version of page selection for printing"),
|
|
|
|
contributor("Georg Baum",
|
|
"georg.baum () post ! rwth-aachen ! de",
|
|
"GPL",
|
|
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
|
|
"m=110899912526043",
|
|
"21 February 2005",
|
|
"tex2lyx improvements, bug fixes, unicode work"),
|
|
|
|
contributor("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'),
|
|
|
|
contributor("Kornel Benko",
|
|
"Kornel.Benko () berlin ! de",
|
|
"GPL",
|
|
"The LyX licence",
|
|
"m=123100818303101",
|
|
"3 January 2009",
|
|
"CMake build system, Slovak translation, Advanced search with format"),
|
|
|
|
contributor("Lorenzo Bertini",
|
|
"lorenzobertini97 () gmail ! com",
|
|
"GPL",
|
|
"Contributions licensing",
|
|
"m=160829081615487",
|
|
"18 December 2020",
|
|
"Bug fixes"),
|
|
|
|
contributor("Jacob Bishop",
|
|
"bishop.jacob () gmail ! com",
|
|
"GPL",
|
|
"Contributions...APA 6 Layout",
|
|
"m=135654106502977",
|
|
"26 December 2012",
|
|
"APA 6 Layout"),
|
|
|
|
contributor("Punyashloka Biswal",
|
|
"punya.biswal () gmail ! com",
|
|
"GPL",
|
|
"Re: Patch for ticket #6848",
|
|
"m=128298296923913",
|
|
"28 August 2010",
|
|
"Bug fixes"),
|
|
|
|
contributor("Graham Biswell",
|
|
"graham () gbiswell ! com",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111269177728853",
|
|
"5 April 2005",
|
|
"Small bugfixes that were very hard to find"),
|
|
|
|
contributor("Lars Gullik Bjønnes",
|
|
"larsbj () gullik ! net",
|
|
"GPL",
|
|
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
|
|
"m=110907078027047",
|
|
"22 February 2005",
|
|
"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."),
|
|
|
|
contributor("Alfredo Braunstein",
|
|
"abraunst () lyx ! org",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110927069513172",
|
|
"24 February 2005",
|
|
"A (pseudo) threaded graphics loader queue, lots of fixes, etc."),
|
|
|
|
contributor("Martin A. Brown",
|
|
"martin () linux-ip ! net",
|
|
"GPL",
|
|
"Re: public identifier for DocBook XML export",
|
|
"m=148391461928571",
|
|
"8 January 2017",
|
|
"Docbook fixes"),
|
|
|
|
contributor("Christian Buescher",
|
|
"christian.buescher () uni-bielefeld ! de",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"User-definable keys, lyxserver and more"),
|
|
|
|
contributor("Johnathan Burchill",
|
|
"jkerrb () users ! sourceforge ! net",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110908472818670",
|
|
"22 February 2005",
|
|
"Ported John Levon's original 'change tracking' code to later versions of LyX. Numerous bug fixes thereof."),
|
|
|
|
contributor("Francesc Burrull i Mestres",
|
|
"fburrull () mat ! upc ! es",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Catalan translation"),
|
|
|
|
contributor("Sergiu Carpov",
|
|
"ssmiler () gmail ! com",
|
|
"GPL",
|
|
"Re: Bug #5522",
|
|
"m=124721248310586",
|
|
"10 July 2009",
|
|
"Bug fixes"),
|
|
|
|
contributor("Humberto Nicolás Castejón",
|
|
"beconico () gmail ! com",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111833854105023",
|
|
"9 June 2005",
|
|
"Spanish translation of the Windows installer"),
|
|
|
|
contributor("Matěj Cepl",
|
|
"matej () ceplovi ! cz",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110913090232039",
|
|
"22 February 2005",
|
|
"Improvements to the czech keymaps"),
|
|
|
|
contributor("Albert Chin",
|
|
"lyx-devel () mlists ! thewrittenword ! com",
|
|
"GPL",
|
|
"Re: The LyX licence --- a gentle nudge",
|
|
"m=111220294831831",
|
|
"30 March 2005",
|
|
"Bug fixes"),
|
|
|
|
contributor("Henry Chern",
|
|
"henrychern () yandex ! com",
|
|
"GPL",
|
|
"[no subject]",
|
|
"m=159048578028108",
|
|
"26 May 2020",
|
|
"Russian translation of documentation"),
|
|
|
|
contributor("Yuri Chornoivan",
|
|
"yurchor () ukr ! net",
|
|
"GPL",
|
|
"Permission grant",
|
|
"m=121681339315810",
|
|
"23 July 2008",
|
|
"Ukrainian translation"),
|
|
|
|
contributor("Eugene Chornyi",
|
|
"technikmagma () gmail ! com",
|
|
"GPL",
|
|
"Contribution license",
|
|
"m=157822065931930",
|
|
"5 January 2020",
|
|
"Windows installation improvements"),
|
|
|
|
contributor("Jean-Pierre Chrétien",
|
|
"jeanpierre.chretien () free ! fr",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111842518713710",
|
|
"10 June 2005",
|
|
"French translations"),
|
|
|
|
contributor("Claudio Coco",
|
|
"lacocio () libero ! it",
|
|
"GPL",
|
|
"Agreement to GNU General Public licence",
|
|
"m=113749629514591",
|
|
"17 January 2006",
|
|
"Italian translation"),
|
|
|
|
contributor("Sam Crawley",
|
|
"sam () crawley ! nz",
|
|
"GPL",
|
|
"Re: [Patch] Test suite for compare function",
|
|
"m=160506560831489",
|
|
"11 November 2020",
|
|
"Compare-feature fixes"),
|
|
|
|
contributor("Tommaso Cucinotta",
|
|
"cucinotta () sssup ! it",
|
|
"GPL",
|
|
"Re: View Menu proposal",
|
|
"m=119030065212621",
|
|
"20 Sep 2007",
|
|
"Advanced search feature"),
|
|
|
|
contributor("Thibaut Cuvelier",
|
|
"dourouc05 () gmail ! com",
|
|
"GPL",
|
|
"Re: Patches to improve compatibility with modern C++ standard",
|
|
"m=158862338815864",
|
|
"4 May 2020",
|
|
"Windows compatibility patches, DocBook backend"),
|
|
|
|
contributor("Matthias Kalle Dalheimer",
|
|
"kalle () kdab ! net",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110908857130107",
|
|
"22 February 2005",
|
|
"Qt2 port"),
|
|
|
|
contributor("Ulysse Danglis",
|
|
"o2d () freemail ! gr",
|
|
"GPL",
|
|
"License of el.po",
|
|
"m=126738357204586",
|
|
"28 February 2010",
|
|
"Greek translations"),
|
|
|
|
contributor("Ewan Davies",
|
|
"ewan.davies () googlemail ! com",
|
|
"GPL",
|
|
"Re: Starting Development",
|
|
"m=124248720628359",
|
|
"17 May 2009",
|
|
"doxygen to LFUNs.lyx conversion"),
|
|
|
|
contributor("Jack Dessert",
|
|
"jackdesert556 () gmail ! com",
|
|
"GPL",
|
|
"License",
|
|
"m=126994985831115",
|
|
"30 March 2010",
|
|
"Patches for configure.py"),
|
|
|
|
contributor("Min Ding",
|
|
"u5032331 () uds ! anu ! edu ! au",
|
|
"GPL",
|
|
"Accept GUN GPL",
|
|
"m=139864105011133",
|
|
"27 April 2014",
|
|
"Chinese (simplified) translations"),
|
|
|
|
contributor("Alexander Dunlap",
|
|
"alexander.dunlap () gmail ! com",
|
|
"GPL",
|
|
"licensing statement",
|
|
"m=151914230920804",
|
|
"20 February 2018",
|
|
"Improvement to recent files support"),
|
|
|
|
contributor("Anders Ekberg",
|
|
"anek () chalmers ! se",
|
|
"GPL",
|
|
"License agreement",
|
|
"m=113725822602516",
|
|
"14 January 2006",
|
|
"Improvements to the Swedish translation of the Windows Installer"),
|
|
|
|
contributor("Martin Engbers",
|
|
"martin.engbers () gmx ! de",
|
|
"GPL",
|
|
"Re: [patch] Icon replacement",
|
|
"m=123877725311464",
|
|
"Apr 3 2009",
|
|
"icon loading tweaks"),
|
|
|
|
contributor("Matthias Ettrich",
|
|
"ettrich () trolltech ! com",
|
|
"GPL",
|
|
"Fwd: Re: The LyX licence",
|
|
"m=110959638810040",
|
|
"28 February 2005",
|
|
"Started the project, implemented the early versions, various improvements including undo/redo, tables, and much, much more"),
|
|
|
|
contributor("Baruch Even",
|
|
"baruch () ev-en ! org",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110936007609786",
|
|
"25 February 2005",
|
|
"New graphics handling scheme and more"),
|
|
|
|
contributor("Dov Feldstern",
|
|
"dfeldstern () fastimap ! com",
|
|
"GPL",
|
|
"Re: Farsi support re-submission plus a little more",
|
|
"m=118064913824836",
|
|
"31 May 2007",
|
|
"RTL/BiDi-related fixes"),
|
|
|
|
contributor("Daniel Fernández",
|
|
"d3vf4n () tutanota ! com",
|
|
"GPL",
|
|
"Re: Contribution License",
|
|
"m=169260363732687",
|
|
"21 Aug 2023",
|
|
"es/ca translations"),
|
|
|
|
contributor("Udi Fogiel",
|
|
"udifoglle () gmail ! com",
|
|
"GPL",
|
|
"Re: spurious spaces around forceLTR insets",
|
|
"m=168113096516846",
|
|
"10 April 2023",
|
|
"RTL/BiDi-related fixes"),
|
|
|
|
contributor("Michał Fita",
|
|
"michal ! fita () gmail ! com",
|
|
"GPL",
|
|
"Statement for Polish translation",
|
|
"m=121615623122376",
|
|
"15 July 2008",
|
|
"Polish translation"),
|
|
|
|
contributor("Ronald Florence",
|
|
"ron () 18james ! com",
|
|
"GPL",
|
|
"Re: The LyX licence --- a gentle nudge",
|
|
"m=111262821108510",
|
|
"31 March 2005",
|
|
"Maintainer of the OS X port(s)"),
|
|
|
|
contributor("José Ramom Flores d'as Seixas",
|
|
"fa2ramon () usc ! es",
|
|
"GPL",
|
|
"Re: Galician translation",
|
|
"m=116136920230072",
|
|
"20 October 2006",
|
|
"Galician documentation and localization"),
|
|
|
|
contributor("John Michael Floyd",
|
|
"jmf () pwd ! nsw ! gov ! au",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Bug fix to the spellchecker"),
|
|
|
|
contributor("Nicola Focci",
|
|
"nicola.focci () gmail ! com",
|
|
"GPL",
|
|
"Permission",
|
|
"m=120946605432341",
|
|
"29 April 2008",
|
|
"Italian translation of documentations"),
|
|
|
|
contributor("Enrico Forestieri",
|
|
"forenr () tlc ! unipr ! it",
|
|
"GPL",
|
|
"Re: lyxpreview2ppm.py",
|
|
"m=111894292115287",
|
|
"16 June 2005",
|
|
"Italian translations, many bug fixes and features"),
|
|
|
|
contributor("Gilbert J. M. Forkel",
|
|
"gilbert () erlangen ! ccc ! de",
|
|
"GPL",
|
|
"GPL",
|
|
"m=153286983821872",
|
|
"29 July 2018",
|
|
"Bug fixes"),
|
|
|
|
contributor("Eitan Frachtenberg",
|
|
"sky8an () gmail ! com",
|
|
"GPL",
|
|
"Re: [PATCH] BibTeX annotation support",
|
|
"m=111130799028250",
|
|
"20 March 2005",
|
|
"BibTeX annotation support"),
|
|
|
|
contributor("Darren Freeman",
|
|
"dfreeman () ieee ! org",
|
|
"GPL",
|
|
"Licence",
|
|
"m=118612951707590",
|
|
"3 August 2007",
|
|
"Improvements to mouse wheel scrolling; many bug reports"),
|
|
|
|
contributor("Max Funk",
|
|
"maxkhfunk () gmx ! net",
|
|
"GPL",
|
|
"GPL",
|
|
"m=130659936521230",
|
|
"28 May 2011",
|
|
"Bug fixes"),
|
|
|
|
contributor("Edscott Wilson Garcia",
|
|
"edscott () xfce ! org",
|
|
"GPL",
|
|
"Re: The LyX licence --- a gentle nudge",
|
|
"m=111219295119021",
|
|
"30 March 2005",
|
|
"Bug fixes"),
|
|
|
|
contributor("Ignacio García",
|
|
"ignacio.gmorales () gmail ! com",
|
|
"GPL",
|
|
"Re: es_EmbeddedObjects",
|
|
"m=117079592919653",
|
|
"06 February 2007",
|
|
"Spanish translation of documentations"),
|
|
|
|
contributor("Michael Gerz",
|
|
"michael.gerz () teststep ! org",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110909251110103",
|
|
"22 February 2005",
|
|
"Change tracking, German localization, bug fixes"),
|
|
|
|
contributor("Stefano Ghirlanda",
|
|
"stefano.ghirlanda () unibo ! it",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110959835300777",
|
|
"28 February 2005",
|
|
"Improvements to lyxserver"),
|
|
|
|
contributor("Shankar Giri Venkita Giri",
|
|
"girivs () gmx ! com",
|
|
"GPL",
|
|
"Blanket permission",
|
|
"m=146162343015182",
|
|
"25 April 2016",
|
|
"Mingw-w64 build fixes"),
|
|
|
|
contributor("D. Gloger",
|
|
"2wochenurlaub () gloger ! biz",
|
|
"GPL",
|
|
"Re: external material template: SVG -> PDF/PS with LaTeX",
|
|
"m=151298047124676",
|
|
"11 December 2017",
|
|
"Inkscape External Template"),
|
|
|
|
contributor("Hartmut Goebel",
|
|
"h.goebel () crazy-compilers ! com",
|
|
"GPL",
|
|
"Re: The LyX licence --- a gentle nudge",
|
|
"m=111225910223564",
|
|
"30 March 2005",
|
|
"Improvements to Koma-Script classes"),
|
|
|
|
contributor("Riccardo Gori",
|
|
"goriccardo () gmail ! com",
|
|
"GPL",
|
|
"Re: r35561 - lyx-devel/trunk/src/insets",
|
|
"m=128626762015975",
|
|
"5 Oct 2010",
|
|
"Fixing tabular code"),
|
|
|
|
contributor("Peter Gumm",
|
|
"gumm () mathematik ! uni-marburg ! de",
|
|
"GPL",
|
|
"Re: xy-pic manual",
|
|
"m=122469079629276",
|
|
"22 October 2008",
|
|
"XY-pic manual"),
|
|
|
|
contributor("İbrahim Güngör",
|
|
"h.ibrahim.gungor () gmail ! com",
|
|
"GPL",
|
|
"Update Turkish Translation",
|
|
"m=122583550732670",
|
|
"4 Nov 2008",
|
|
"Turkish translation"),
|
|
|
|
contributor("Hartmut Haase",
|
|
"hha4491 () web ! de",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110915427710167",
|
|
"23 February 2005",
|
|
"German translation of the documentation"),
|
|
|
|
contributor("Helge Hafting",
|
|
"helgehaf () aitel ! hist ! no",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110916171925288",
|
|
"23 February 2005",
|
|
"Norwegian documentation and localization"),
|
|
|
|
contributor("Jessica Hamilton",
|
|
"jessica.l.hamilton () gmail ! com",
|
|
"GPL",
|
|
"Contributor License",
|
|
"m=143381137411598",
|
|
"9 June 2015",
|
|
"Haiku OS support"),
|
|
|
|
contributor("Jan Niklas Hasse",
|
|
"jhasse () bixense ! com",
|
|
"GPL",
|
|
"Re: Patch to make it possible to open empty files",
|
|
"m=148163124122780",
|
|
"23 December 2016",
|
|
"File opening enhancement"),
|
|
|
|
contributor("Richard Kimberly Heck",
|
|
"rikiheck () lyx ! org",
|
|
"GPL",
|
|
"GPL Statement",
|
|
"m=117501689204059",
|
|
"27 March 2007",
|
|
"Bug fixes, layout modules, BibTeX code, XHTML export. Current stable branch maintainer."),
|
|
|
|
contributor("Bennett Helm",
|
|
"bennett.helm () fandm ! edu",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110907988312372",
|
|
"22 February 2005",
|
|
"Maintainer of the OSX ports, taking over from Ronald Florence"),
|
|
|
|
contributor("Kevin B. Hendricks",
|
|
"kevin.hendricks () sympatico ! ca",
|
|
"GPL",
|
|
"Fwd: Re: Integration of libmythes and hunspell",
|
|
"m=124190107613441",
|
|
"9 May 2009",
|
|
"Author of the MyThes thesaurus library"),
|
|
|
|
contributor("Claus Hentschel",
|
|
"claus.hentschel () mbau ! fh-hannover ! de",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Win32 port of LyX 1.1.x"),
|
|
|
|
contributor("Josh Hieronymous",
|
|
"josh.p.hieronymus () gmail ! com",
|
|
"GPL",
|
|
"licensing my contributions to LyX",
|
|
"m=137426932127289",
|
|
"19 July 2013",
|
|
"XHTML and ePub Improvements (GSOC Student)"),
|
|
|
|
contributor("Christopher Hillenbrand",
|
|
"chillenb.lists () gmail ! com",
|
|
"GPL",
|
|
"Re: Limit text width in the editor window (non-fullscreen mode)",
|
|
"m=166714427827929",
|
|
"30 October 2022",
|
|
"User Interface Improvements"),
|
|
|
|
contributor("Claus Hindsgaul",
|
|
"claus_h () image ! dk",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110908607416324",
|
|
"22 February 2005",
|
|
"Danish translation"),
|
|
|
|
contributor("Martin Hoffmann",
|
|
"hoffimar () gmail ! com",
|
|
"GPL",
|
|
"Re: #8703: 'new shortcut' box closes if no shortcut",
|
|
"m=138105799411067",
|
|
"6 October 2013",
|
|
"Dialog usability fix"),
|
|
|
|
contributor("Winfred Huang",
|
|
"tone90999 () hotmail ! com",
|
|
"GPL",
|
|
"License for Chinese translation",
|
|
"m=153274007430136",
|
|
"28 July 2018",
|
|
"Simplified Chinese Localization"),
|
|
|
|
contributor("John Hudson",
|
|
"j.r.hudson () virginmedia ! com",
|
|
"GPL",
|
|
"Contributions",
|
|
"m=146722333213915",
|
|
"29 June 2016",
|
|
"Documentation updates"),
|
|
|
|
contributor("Bernard Hurley",
|
|
"bernard () fong-hurley ! org ! uk",
|
|
"GPL",
|
|
"Re: The LyX licence --- a gentle nudge",
|
|
"m=111218682804142",
|
|
"30 March 2005",
|
|
"Fixes to literate programming support"),
|
|
|
|
contributor("Marius Ionescu",
|
|
"felijohn () gmail ! com",
|
|
"GPL",
|
|
"permission to licence",
|
|
"m=115935958330941",
|
|
"27 September 2006",
|
|
"Romanian localization"),
|
|
|
|
contributor("Bernhard Iselborn",
|
|
"bernhard.iselborn () sap ! com",
|
|
"GPL",
|
|
"RE: The LyX licence",
|
|
"m=111268306522212",
|
|
"5 April 2005",
|
|
"Some minor bug-fixes, FAQ, linuxdoc sgml support"),
|
|
|
|
contributor("Masanori Iwami",
|
|
"masa.iwm () gmail ! com",
|
|
"GPL",
|
|
"Re: [patch] Addition of input method support",
|
|
"m=117541512517453",
|
|
"1 April 2007",
|
|
"Development of CJK language support"),
|
|
|
|
contributor("Michal Jaegermann",
|
|
"michal () ellpspace ! math ! ualberta ! ca",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110909853626643",
|
|
"22 February 2005",
|
|
"Fix to a very hard-to-find egcs bug that crashed LyX on alpha architecture"),
|
|
|
|
contributor("Harshula Jayasuriya",
|
|
"harshula () gmail ! com",
|
|
"GPL",
|
|
"Re: Bug in export to DocBook",
|
|
"m=116884249725701",
|
|
"15 January 2007",
|
|
"Fix docbook generation of nested lists"),
|
|
|
|
contributor("David L. Johnson",
|
|
"david.johnson () lehigh ! edu",
|
|
"GPL",
|
|
"GPL",
|
|
"m=110908492016593",
|
|
"22 February 2005",
|
|
"Public relations, feedback, documentation and support"),
|
|
|
|
contributor("Joice Joseph",
|
|
"joicey () yandex ! com",
|
|
"GPL",
|
|
"Re: patch: added document language malayalam",
|
|
"m=155214496414909",
|
|
"9 March 2019",
|
|
"Support for Malayalam"),
|
|
|
|
contributor("Robert van der Kamp",
|
|
"robnet () wxs ! nl",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111268623330209",
|
|
"5 April 2005",
|
|
"Various small things and code simplifying"),
|
|
|
|
contributor("Amir Karger",
|
|
"amirkarger () gmail ! com",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110912688520245",
|
|
"23 February 2005",
|
|
"Tutorial, reLyX: the LaTeX to LyX translator"),
|
|
|
|
contributor("Zahari Dmitrov Kassabov",
|
|
"zaharid () gmail ! com",
|
|
"GPL",
|
|
"GPL Statement",
|
|
"m=135540059615508",
|
|
"13 December 2012",
|
|
"Bug fixes"),
|
|
|
|
contributor("Carmen Kauffmann",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Original name that is now two characters shorter"),
|
|
|
|
contributor("KDE Artists",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Authors of several of the icons LyX uses"),
|
|
|
|
contributor("Andreas Klostermann",
|
|
"andreas_klostermann () web ! de",
|
|
"GPL",
|
|
"blanket-permission",
|
|
"m=111054675600338",
|
|
"11 March 2005",
|
|
"Gtk reference insertion dialog"),
|
|
|
|
contributor("Timo Kluck",
|
|
"tkluck () gmail ! com",
|
|
"GPL",
|
|
"license statement",
|
|
"m=132334049317495",
|
|
"8 December 2011",
|
|
"Dutch translation, icon fixes"),
|
|
|
|
contributor("Tomasz Kołodziejski",
|
|
"tkolodziejski () gmail ! com",
|
|
"Re: Updated polish translation",
|
|
"license statement",
|
|
"m=172280079927432",
|
|
"4 August 2024",
|
|
"Polish translation"),
|
|
|
|
contributor("Kostantino",
|
|
"ciclope10 () alice ! it",
|
|
"GPL",
|
|
"Permission granted",
|
|
"m=115513400621782",
|
|
"9 August 2006",
|
|
"Italian localization of the interface"),
|
|
|
|
contributor("Scott Kostyshak",
|
|
"skostysh () princeton ! edu",
|
|
"GPL",
|
|
"GPL Statement",
|
|
"m=133076234031944",
|
|
"3 March 2012",
|
|
"Small UI fixes"),
|
|
|
|
contributor("Michael Koziarski",
|
|
"koziarski () gmail ! com",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110909592017966",
|
|
"22 February 2005",
|
|
"Gnome port"),
|
|
|
|
contributor("Peter Kremer",
|
|
"kremer () bme-tel ! ttt ! bme ! hu",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Hungarian translation and bind file for menu shortcuts"),
|
|
|
|
contributor('Marcus Kriele',
|
|
"mkriele () me ! com",
|
|
"GPL",
|
|
"License permission",
|
|
"m=130384781027177",
|
|
"26 April 2011",
|
|
"Fixing various sv* layouts"),
|
|
|
|
contributor('Valeriy Kruchko',
|
|
"lerkru () gmail ! com",
|
|
"GPL",
|
|
"Re: translation in to russian about 68%",
|
|
"m=125904983806681",
|
|
"24 November 2009",
|
|
"Russian translation of the user interface"),
|
|
|
|
contributor("Peter Kümmel",
|
|
"syntheticpp () gmx ! net",
|
|
"GPL",
|
|
"License",
|
|
"m=114968828021007",
|
|
"7 June 2006",
|
|
"Qt4 coding, CMake build system, bug fixing, testing, clean ups, and profiling"),
|
|
|
|
contributor("Bernd Kümmerlen",
|
|
"bkuemmer () gmx ! net",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110934318821667",
|
|
"25 February 2005",
|
|
"Initial version of the koma-script textclasses"),
|
|
|
|
contributor("Joel Kulesza",
|
|
"jkulesza () gmail ! com",
|
|
"GPL",
|
|
"License to Publish Work",
|
|
"m=147735429207382",
|
|
"25 October 2016",
|
|
"User interface improvements"),
|
|
|
|
contributor("Felix Kurth",
|
|
"felix () fkurth ! de",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110908918916109",
|
|
"22 February 2005",
|
|
"Support for textclass g-brief2"),
|
|
|
|
contributor("Rob Lahaye",
|
|
"lahaye () snu ! ac ! kr",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110908714131711",
|
|
"22 February 2005",
|
|
"Xforms dialogs and GUI related code"),
|
|
|
|
contributor("Jean-Marc Lasgouttes",
|
|
"lasgouttes () lyx ! org",
|
|
"GPL",
|
|
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
|
|
"m=110899928510452",
|
|
"21 February 2005",
|
|
"configure and Makefile-stuff, many bugfixes and more. Previous stable branch maintainer."),
|
|
|
|
contributor("Victor Lavrenko",
|
|
"lyx () lavrenko ! pp ! ru",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Russian translation"),
|
|
|
|
contributor("Angus Leeming",
|
|
"leeming () lyx ! org",
|
|
"GPL",
|
|
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
|
|
"m=110899671520339",
|
|
"21 February 2005",
|
|
"GUI-I-fication of insets and more"),
|
|
|
|
contributor("Edwin Leuven",
|
|
"e.leuven () gmail ! com",
|
|
"GPL",
|
|
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
|
|
"m=110899657530749",
|
|
"21 February 2005",
|
|
"Tabular and misc UI stuff"),
|
|
|
|
contributor("John Levon",
|
|
"levon () movementarian ! org",
|
|
"GPL",
|
|
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
|
|
"m=110899535600562",
|
|
"21 February 2005",
|
|
"Qt2 frontend, GUII work, bugfixes"),
|
|
|
|
contributor("Ling Li",
|
|
"ling () caltech ! edu",
|
|
"GPL",
|
|
"Re: LyX 1.4cvs crash on Fedora Core 3",
|
|
"m=111204368700246",
|
|
"28 March 2005",
|
|
"Added native support for \\makebox to mathed. Several bug fixes, both to the source code and to the llncs layout file"),
|
|
|
|
contributor("LibreOffice Team",
|
|
"https://www.libreoffice.org/",
|
|
"LGPL",
|
|
"",
|
|
"",
|
|
"",
|
|
"Libreoffice Icon Theme"),
|
|
|
|
contributor("Tomasz Łuczak",
|
|
"tlu () technodat ! com ! pl",
|
|
"GPL",
|
|
"Re: [Cvslog] lyx-devel po/: ChangeLog pl.po lib/: CREDITS",
|
|
"m=113580483406067",
|
|
"28 December 2005",
|
|
"Polish translation and mw* layouts files"),
|
|
|
|
contributor("Hangzai Luo",
|
|
"memcache () gmail ! com",
|
|
"GPL",
|
|
"Re: [patch] tex2lyx crash when full path is given from commandline on Win32",
|
|
"m=118326161706627",
|
|
"1 July 2007",
|
|
"Bugfixes"),
|
|
|
|
contributor("Mohamed Magdy",
|
|
"physicist2010 () gmail ! com",
|
|
"GPL",
|
|
"A permission to use my Arabic-Translation for LyX?",
|
|
"m=126877445318267",
|
|
"16 March 2010",
|
|
"Arabic translation"),
|
|
|
|
contributor("Jari-Matti Mäkelä",
|
|
"jmjmak () utu ! fi",
|
|
"GPL",
|
|
"Re: lyx fi translation update",
|
|
"m=142987910907596",
|
|
"24 April 2015",
|
|
"Contribution to the Finnish Localization."),
|
|
|
|
contributor("Tetsuya Makimura",
|
|
"makimura () ims ! tsukuba.ac ! jp",
|
|
"GPL",
|
|
"Re: Support request for Japanese without CJK, again (Re: [Fwd: About Japanese edition ...)",
|
|
"m=121905769227884",
|
|
"18 August 2008",
|
|
"Improvements to the Japanese language support."),
|
|
|
|
contributor("José Matos",
|
|
"jamatos () fc ! up ! pt",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110907762926766",
|
|
"22 February 2005",
|
|
"linuxdoc sgml support. Previous release manager."),
|
|
|
|
contributor("Roman Maurer",
|
|
"roman.maurer () amis ! net",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110952616722307",
|
|
"27 February 2005",
|
|
"Slovenian translation coordinator"),
|
|
|
|
contributor("John McCabe-Dansted",
|
|
"gmatht () gmail ! com",
|
|
"GPL",
|
|
"Re: Randomly Generated Crash Reports Useful?",
|
|
"m=124515770509946",
|
|
"15 June 2009",
|
|
"Keys-test module, bug fixing"),
|
|
|
|
contributor("Caolán McNamara",
|
|
"caolanm () redhat ! com",
|
|
"GPL",
|
|
"Statement for enchant integration",
|
|
"m=126389593805123",
|
|
"19 January 2010",
|
|
"Support for the enchant spell checking library"),
|
|
|
|
contributor("Tino Meinen",
|
|
"a.t.meinen () chello ! nl",
|
|
"GPL",
|
|
"Re: Licensing your contributions to LyX",
|
|
"m=113078277722316",
|
|
"31 October 2005",
|
|
"Dutch translation coordinator"),
|
|
|
|
contributor("Siegfried Meunier-Guttin-Cluzel",
|
|
"meunier () coria ! fr",
|
|
"GPL",
|
|
"French translations",
|
|
"m=119485816312776",
|
|
"12 November 2007",
|
|
"French translations of the documentation"),
|
|
|
|
contributor("Günter Milde",
|
|
"milde () users ! berlios ! de",
|
|
"GPL",
|
|
"copyleft",
|
|
"m=122398147620761",
|
|
"14 October 2008",
|
|
"Unicode and layout file fixes"),
|
|
|
|
contributor("Dustin J. Mitchell",
|
|
"dustin () v ! igoro ! us",
|
|
"GPL",
|
|
"Fwd: Your patch for LyX",
|
|
"m=139255709609015",
|
|
"16 February 2014",
|
|
"Fix for csv2lyx"),
|
|
|
|
contributor("Joan Montané",
|
|
"jmontane () gmail ! com",
|
|
"GPL",
|
|
"Re: LyX translation updates needed",
|
|
"m=118765575314017",
|
|
"21 August 2007",
|
|
"Catalan translations of menus"),
|
|
|
|
contributor("Stéphane Mourey",
|
|
"stephane.mourey () impossible-exil ! info",
|
|
"GPL",
|
|
"Re: gpl",
|
|
"m=141381522413781",
|
|
"20 October 2014",
|
|
"New lfun server-get-statistics"),
|
|
|
|
contributor("Guillaume Munch",
|
|
"gm () lyx ! org",
|
|
"GPL",
|
|
"Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)",
|
|
"m=143890980923229",
|
|
"07 August 2015",
|
|
"Several bug fixes, mainly mathed"),
|
|
|
|
contributor("Iñaki Larrañaga Murgoitio",
|
|
"dooteo () euskalgnu ! org",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110908606525783",
|
|
"22 February 2005",
|
|
"Basque documentation and localization"),
|
|
|
|
contributor("Daniel Naber",
|
|
"daniel.naber () t-online ! de",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110911176213928",
|
|
"22 February 2005",
|
|
"Improvements to the find&replace dialog"),
|
|
|
|
contributor("Pablo De Napoli",
|
|
"pdenapo () mate ! dm ! uba ! ar",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110908904400120",
|
|
"22 February 2005",
|
|
"Math panel dialogs"),
|
|
|
|
contributor("Phillip Netro",
|
|
"hobbes () centurylink ! net",
|
|
"GPL",
|
|
"RE: GPL Statement",
|
|
"m=160532510203924",
|
|
"14 November 2020",
|
|
"Review of Manuals"),
|
|
|
|
contributor("Dirk Niggemann",
|
|
"dabn100 () cam ! ac ! uk",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"config. handling enhancements, bugfixes, printer enhancements path mingling"),
|
|
|
|
contributor("Jens Nöckel",
|
|
"noeckel () uoregon ! edu",
|
|
"GPL",
|
|
"GPL statement",
|
|
"m=128485749516885",
|
|
"19 September 2010",
|
|
"Mac OS X enhancements"),
|
|
|
|
contributor("Rob Oakes",
|
|
"lyx-devel () oak-tree ! us",
|
|
"GPL",
|
|
"Outline Contributions",
|
|
"m=124615188102843",
|
|
"27 June 2009",
|
|
"Improvements to the outliner."),
|
|
|
|
contributor("Oxygen Team",
|
|
"https://techbase.kde.org/Projects/Oxygen",
|
|
"LGPL",
|
|
"",
|
|
"",
|
|
"",
|
|
"Oxygen Icon Theme"),
|
|
|
|
contributor("Carl Ollivier-Gooch",
|
|
"cfog () mech ! ubc ! ca",
|
|
"GPL",
|
|
"Re: The LyX licence --- a gentle nudge",
|
|
"m=111220662413921",
|
|
"30 March 2005",
|
|
"Support for two-column figure (figure*) and table (table*) environments. Fixed minibuffer entry of floats."),
|
|
|
|
contributor("Isaac Oscar Gariano",
|
|
"IsaacOscar () live ! com ! au",
|
|
"GPL",
|
|
"Re: [PATCH] Make math autocorrrect work with more than 2 chars",
|
|
"m=155874284418501",
|
|
"25 May 2019",
|
|
"Improvements to math autocorrect"),
|
|
|
|
contributor("Gilad Orr",
|
|
"giladorr () gmail ! com",
|
|
"GPL",
|
|
"Internationalization-Hebrew",
|
|
"m=138314500901798",
|
|
"28 October 2013",
|
|
"Hebrew translation."),
|
|
|
|
contributor('Panayotis "PAP" Papasotiriou',
|
|
"papasot () upatras ! gr",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110933552929119",
|
|
"25 February 2005",
|
|
"Support for kluwer and ijmpd document classes"),
|
|
|
|
contributor('Andrey V. Panov',
|
|
"panov () canopus ! iacp ! dvo ! ru",
|
|
"GPL",
|
|
"Re: Russian translation for LyX",
|
|
"m=119853644302866",
|
|
"24 December 2007",
|
|
"Russian translation of the user interface"),
|
|
|
|
contributor('Dal Ho Park',
|
|
"airdalho () gmail ! com",
|
|
"GPL",
|
|
"splash.lyx translation (Korean)",
|
|
"m=139436383128181",
|
|
"9 March 2014",
|
|
"Korean translation"),
|
|
|
|
contributor('Andrew Parsloe',
|
|
"aparsloe () clear ! net ! nz",
|
|
"GPL",
|
|
"GPL declaration",
|
|
"m=147941540519608",
|
|
"17 November 2016",
|
|
"Module updates"),
|
|
|
|
contributor('Idan Pazi',
|
|
"idan.kp () gmail ! com",
|
|
"GPL",
|
|
"Re: windows preview bug fix",
|
|
"m=171024249203393",
|
|
"12 March 2024",
|
|
"Windows-specific fixes"),
|
|
|
|
contributor('Bo Peng',
|
|
"ben.bob () gmail ! com",
|
|
"GPL",
|
|
"Re: Python version of configure script (preview version)",
|
|
"m=112681895510418",
|
|
"15 September 2005",
|
|
"Conversion of all shell scripts to Python, shortcuts dialog, session, view-source, auto-view, embedding features and scons build system."),
|
|
|
|
contributor('John Perry',
|
|
"john.perry () usm ! edu",
|
|
"GPL",
|
|
"Contributions",
|
|
"m=128874016511551",
|
|
"2 November 2010",
|
|
"Named theorems module."),
|
|
|
|
contributor("Joacim Persson",
|
|
"sp2joap1 () ida ! his ! se",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"po-file for Swedish, a tool for picking shortcuts, bug reports and hacking atrandom"),
|
|
|
|
contributor("Zvezdan Petkovic",
|
|
"zpetkovic () acm ! org",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111276877900892",
|
|
"6 April 2005",
|
|
"Better support for serbian and serbocroatian"),
|
|
|
|
contributor("Prannoy Pilligundla",
|
|
"prannoy.bits () gmail ! com",
|
|
"GPL",
|
|
"Contribution license",
|
|
"m=139332446711707",
|
|
"25 February 2014",
|
|
"Full screen statusbar toggling"),
|
|
|
|
contributor("Geoffroy Piroux",
|
|
"piroux () fyma ! ucl ! ac ! be",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Mathematica backend for mathed"),
|
|
|
|
contributor("Benjamin Piwowarski",
|
|
"benjamin ! piwowarski () lip6 ! fr",
|
|
"GPL",
|
|
"GPL statement",
|
|
"m=133958334631163",
|
|
"13 June 2012",
|
|
"AppleScript, integration with bibliography managers"),
|
|
|
|
contributor("Neoklis Polyzotis",
|
|
"alkis () soe ! ucsc ! edu",
|
|
"GPL",
|
|
"Fwd: Re: The LyX licence",
|
|
"m=111039215519777",
|
|
"9 March 2005",
|
|
"Keymap work"),
|
|
|
|
contributor("André Pönitz",
|
|
"andre.poenitz () mathematik ! tu-chemnitz ! de",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111143534724146",
|
|
"21 March 2005",
|
|
"mathed rewrite to use STL file io with streams --export and --import command line options"),
|
|
|
|
contributor("Kornelia Pönitz",
|
|
"kornelia.poenitz () mathematik ! tu-chemnitz ! de",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111121553103800",
|
|
"19 March 2005",
|
|
"heavy mathed testing; provided siamltex document class"),
|
|
|
|
contributor("Bernhard Psaier",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Designer of the LyX-Banner"),
|
|
|
|
contributor("Thomas Pundt",
|
|
"thomas () pundt ! de",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111277917703326",
|
|
"6 April 2005",
|
|
"initial configure script"),
|
|
|
|
contributor("Zheru Qiu",
|
|
"qzr () mail ! ustc ! edu ! cn",
|
|
"GPL",
|
|
"Fwd: Permission of using my translation under GPL",
|
|
"m=148702600212546",
|
|
"5 February 2017",
|
|
"Chinese localisation"),
|
|
|
|
contributor("Allan Rae",
|
|
"rae () itee ! uq ! edu ! au",
|
|
"GPL",
|
|
"lyx-1.3.6cvs configure.in patch",
|
|
"m=110905169512662",
|
|
"21 February 2005",
|
|
"GUI-I architect, LyX PR head, LDN, bug reports/fixes, Itemize Bullet Selection, xforms-0.81 + gcc-2.6.3 compatibility"),
|
|
|
|
contributor("Manoj Rajagopalan",
|
|
"rmanoj () umich ! edu",
|
|
"GPL",
|
|
"Re: patch for case-insensitive reference sorting",
|
|
"m=123506398801004",
|
|
"Feb 19 2009",
|
|
"reference dialog tweaks"),
|
|
|
|
contributor("Daniel Ramöller",
|
|
"d.lyx () web ! de",
|
|
"GPL",
|
|
"Permission",
|
|
"m=147578627921242",
|
|
"Oct 6 2016",
|
|
"UI improvements"),
|
|
|
|
contributor("Vincent van Ravesteijn",
|
|
"V.F.vanRavesteijn () tudelft ! nl",
|
|
"GPL",
|
|
"RE: crash lyx-1.6rc1",
|
|
"m=121786603726114",
|
|
"4 August 2008",
|
|
"lots of fixes"),
|
|
|
|
contributor("Adrien Rebollo",
|
|
"adrien.rebollo () gmx ! fr",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110918633227093",
|
|
"23 February 2005",
|
|
"French translation of the docs; latin 3, 4 and 9 support"),
|
|
|
|
contributor("Garst R. Reese",
|
|
"garstr () isn ! net",
|
|
"GPL",
|
|
"blanket-permission.txt:",
|
|
"m=110911480107491",
|
|
"22 February 2005",
|
|
"provided hollywood and broadway classes for writing screen scripts and plays"),
|
|
|
|
contributor("Bernhard Reiter",
|
|
"ockham () gmx ! net",
|
|
"GPL",
|
|
"Re: RFC: GThesaurus.C et al.",
|
|
"m=112912017013984",
|
|
"12 October 2005",
|
|
"Gtk frontend"),
|
|
|
|
contributor("Ruurd Reitsma",
|
|
"rareitsma () yahoo ! com",
|
|
"GPL",
|
|
"Fwd: Re: The LyX licence",
|
|
"m=110959179412819",
|
|
"28 February 2005",
|
|
"Creator of the native port of LyX to Windows"),
|
|
|
|
contributor("Bernd Rellermeyer",
|
|
"bernd.rellermeyer () arcor ! de",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111317142419908",
|
|
"10 April 2005",
|
|
"Support for Koma-Script family of classes"),
|
|
|
|
contributor("renyhp (c/o J-M Lasgouttes)",
|
|
"renyhp () disroot ! org",
|
|
"GPL",
|
|
"LyX ticket #11804",
|
|
"m=169459313128600",
|
|
"13 September 2023",
|
|
"Support for hepnames/hepparticles"),
|
|
|
|
contributor("Michael Ressler",
|
|
"mike.ressler () alum ! mit ! edu",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110926603925431",
|
|
"24 February 2005",
|
|
"documentation maintainer, AASTeX support"),
|
|
|
|
contributor("Richman Reuven",
|
|
"richman.reuven () gmail ! com",
|
|
"GPL",
|
|
"gpl 2+ ok :)",
|
|
"m=130368087529359",
|
|
"24 April 2011",
|
|
"Hebrew localisation"),
|
|
|
|
contributor("Christian Ridderström",
|
|
"christian.ridderstrom () gmail ! com",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110910933124056",
|
|
"22 February 2005",
|
|
"The driving force behind, and maintainer of, the LyX wiki wiki.\nSwedish translation of the Windows installer"),
|
|
|
|
contributor("Julien Rioux",
|
|
"jrioux () lyx ! org",
|
|
"GPL",
|
|
"Re: #6361: configure.py ignores packages required by user-defined modules",
|
|
"m=125986505101722",
|
|
"3 December 2009",
|
|
"Bug fixes, lilypond and revtex support, citation modules."),
|
|
|
|
contributor("Bernhard Roider",
|
|
"bernhard.roider () sonnenkinder ! org",
|
|
"GPL",
|
|
"Re: [PATCH] immediatly display saved filename in tab",
|
|
"m=117009852211669",
|
|
"29 January 2007",
|
|
"Various bug fixes"),
|
|
|
|
contributor("Michael Roitzsch",
|
|
"reactorcontrol () icloud ! com",
|
|
"GPL",
|
|
"Re: TeXFiles.py compatibility with Nix on macOS",
|
|
"m=156146891826580",
|
|
"25 June 2019",
|
|
"Fixes for the Nix package manager"),
|
|
|
|
contributor("Jim Rotmalm",
|
|
"jim.rotmalm () gmail ! com",
|
|
"GPL",
|
|
"License for my contributions.",
|
|
"m=129582352017079",
|
|
"24 January 2011",
|
|
"Swedish translation"),
|
|
|
|
contributor("Paul A. Rubin",
|
|
"rubin () msu ! edu",
|
|
"GPL",
|
|
"Re: [patch] reworked AMS classes (bugs 4087, 4223)",
|
|
"m=119072721929143",
|
|
"25 September 2007",
|
|
"Major rework of the AMS classes"),
|
|
|
|
contributor("Dima Ruinskiy",
|
|
"dima.ruinskiy () outlook ! com",
|
|
"GPL",
|
|
"Joining LyX development team",
|
|
"m=146687842921797",
|
|
"24 June 2016",
|
|
"Reintroduction of Windows Vista support (bug 10186)"),
|
|
|
|
contributor("Guy Rutenberg",
|
|
"guyrutenberg () gmail ! com",
|
|
"GPL",
|
|
"Re: [PATCH] Strange Behaivor: xdg-open left as zombie",
|
|
"m=137365070116624",
|
|
"12 July 2013",
|
|
"System call fixes"),
|
|
|
|
contributor("Ran Rutenberg",
|
|
"ran.rutenberg () gmail ! com",
|
|
"GPL",
|
|
"The New Hebrew Translation of the Introduction",
|
|
"m=116172457024967",
|
|
"24 October 2006",
|
|
"Hebrew translation"),
|
|
|
|
contributor('Pavel Sanda',
|
|
"ps () ucw ! cz",
|
|
"GPL",
|
|
"Re: czech translation",
|
|
"m=115522417204086",
|
|
"10 August 2006",
|
|
"Czech translation, added various features, lfuns docs/review. Current release manager."),
|
|
|
|
contributor("Szõke Sándor",
|
|
"alex () lyx ! hu",
|
|
"GPL",
|
|
"Contribution to LyX",
|
|
"m=113449408830523",
|
|
"13 December 2005",
|
|
"Hungarian translation"),
|
|
|
|
contributor("Janus Sandsgaard",
|
|
"janus () janus ! dk",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111839355328045",
|
|
"10 June 2005",
|
|
"Danish translation of the Windows installer"),
|
|
|
|
contributor("Stefan Schimanski",
|
|
"sts () 1stein ! org",
|
|
"GPL",
|
|
"GPL statement",
|
|
"m=117541472517274",
|
|
"1 April 2007",
|
|
"font improvements, bug fixes"),
|
|
|
|
contributor("Horst Schirmeier",
|
|
"horst () schirmeier ! com",
|
|
"GPL",
|
|
"Re: [patch] reordering capabilities for GuiBibtex",
|
|
"m=120009631506298",
|
|
"12 January 2008",
|
|
"small fixes"),
|
|
|
|
contributor("Christoph Schmitz",
|
|
"chr.schmitz () web ! de",
|
|
"GPL",
|
|
"Re: German Translation of \"Additional Features\"",
|
|
"m=161899755219050",
|
|
"21 April 2021",
|
|
"Contribution to German manuals"),
|
|
|
|
contributor("Hubert Schreier",
|
|
"schreier () sc ! edu",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"spellchecker (ispell frontend); beautiful document-manager based on the simple table of contents (removed)"),
|
|
|
|
contributor("Ivan Schreter",
|
|
"schreter () kdk ! sk",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"international support and kbmaps for slovak, czech, german, ... wysiwyg figure"),
|
|
|
|
contributor("Eulogio Serradilla Rodríguez",
|
|
"eulogio.sr () terra ! es",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110915313018478",
|
|
"23 February 2005",
|
|
"contribution to the spanish internationalization"),
|
|
|
|
contributor("Nickolay Shashkin",
|
|
"mecareful () gmail ! com",
|
|
"GPL",
|
|
"GPL statement",
|
|
"m=134026564400578",
|
|
"21 June 2012",
|
|
"bugfixes"),
|
|
|
|
contributor("Omer Shechter",
|
|
"omer.shechter () mail ! huji ! ac ! il",
|
|
"GPL",
|
|
"Contributions licensing",
|
|
"m=170428353115475",
|
|
"03 January 2024",
|
|
"Hebrew Localization"),
|
|
|
|
contributor("Miyata Shigeru",
|
|
"miyata () kusm ! kyoto-u ! ac ! jp",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"OS/2 port"),
|
|
|
|
contributor("Alejandro Aguilar Sierra",
|
|
"asierra () servidor ! unam ! mx",
|
|
"GPL",
|
|
"Fwd: Re: The LyX licence",
|
|
"m=110918647812358",
|
|
"23 February 2005",
|
|
"Fast parsing with lyxlex, pseudoactions, mathpanel, Math Editor, combox and more"),
|
|
|
|
contributor("Lior Silberman",
|
|
"lior () princeton ! edu",
|
|
"GPL",
|
|
"Fwd: Re: The LyX licence",
|
|
"m=110910432427450",
|
|
"22 February 2005",
|
|
"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 different inset properties configurable."),
|
|
|
|
contributor("Waluyo Adi Siswanto",
|
|
"was.uthm () gmail ! com",
|
|
"GPL",
|
|
"Licence contributions",
|
|
"m=123595530114385",
|
|
"Mar 2 2009",
|
|
"Indonesian translation"),
|
|
|
|
contributor("Yuriy Skalko",
|
|
"yuriy.skalko () gmail ! com",
|
|
"GPL",
|
|
"Re: Updated Russian translation",
|
|
"m=151306079714476",
|
|
"12 December 2017",
|
|
"Russian localization and documentation, bug reports and fixes, updating of code"),
|
|
|
|
contributor("Hernán Gustavo Solari",
|
|
"hgsolari () gmail ! com",
|
|
"GPL",
|
|
"Re: Bug#1008257: lyx: bash-completion not working",
|
|
"m=164864464510820",
|
|
"30 March 2022",
|
|
"bash-completion fixes"),
|
|
|
|
contributor("Giovanni Sora",
|
|
"g.sora () tiscali ! it",
|
|
"GPL",
|
|
"License ia.po",
|
|
"m=129968786830788",
|
|
"9 March 2011",
|
|
"Interlingua translation"),
|
|
|
|
contributor("Andre Spiegel",
|
|
"spiegel () gnu ! org",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110908534728505",
|
|
"22 February 2005",
|
|
"vertical spaces"),
|
|
|
|
contributor("Jürgen Spitzmüller",
|
|
"spitz () lyx ! org",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110907530127164",
|
|
"22 February 2005",
|
|
"Many bugfixes and features. Former stable branch maintainer."),
|
|
|
|
contributor("John Spray",
|
|
"jcs116 () york ! ac ! uk",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110909415400170",
|
|
"22 February 2005",
|
|
"Gtk frontend"),
|
|
|
|
contributor("Ben Stanley",
|
|
"ben.stanley () exemail ! com ! au",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110923981012056",
|
|
"24 February 2005",
|
|
"fix bugs with error insets placement"),
|
|
|
|
contributor("Uwe Stöhr",
|
|
"uwestoehr () web ! de",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111833345825278",
|
|
"9 June 2005",
|
|
"Current documentation maintainer, Windows installer, bug fixes"),
|
|
|
|
contributor("Niko Strijbol",
|
|
"strijbol ! niko () gmail ! com",
|
|
"GPL",
|
|
"License agreement (cf. Dutch translations)",
|
|
"m=156107304318577",
|
|
"20 June 2019",
|
|
"Dutch translation of the user interface"),
|
|
|
|
contributor("David Suárez de Lis",
|
|
"excalibor () iname ! com",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"maintaining es.po since v1.0.0 and other small i18n issues small fixes"),
|
|
|
|
contributor("Peter Sütterlin",
|
|
"p.suetterlin () astro ! uu ! nl",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110915086404972",
|
|
"23 February 2005",
|
|
"aapaper support, german documentation translation, bug reports"),
|
|
|
|
contributor("Stefan Swerk",
|
|
"stefan_lyx () swerk ! priv ! at",
|
|
"GPL",
|
|
"Contribution license",
|
|
"m=142644092217864",
|
|
"15 March 2015",
|
|
"europasscv support"),
|
|
|
|
contributor("Kayvan Aghaiepour Sylvan",
|
|
"kayvan () sylvan ! com",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110908748407087",
|
|
"22 February 2005",
|
|
"noweb2lyx and reLyX integration of noweb files. added Import->Noweb and key bindings to menus"),
|
|
|
|
contributor("TaoWang (mgc)",
|
|
"mgcgogo () gmail ! com",
|
|
"GPL",
|
|
"Re: Chinese Version of Tutorial.lyx",
|
|
"m=125785021631705",
|
|
"10 November 2009",
|
|
"translation of documentation and user interface to Simplified Chinese"),
|
|
|
|
contributor('Sergey Tereschenko',
|
|
"serg.partizan () gmail ! com",
|
|
"GPL",
|
|
"my contributions",
|
|
"m=126065880524135",
|
|
"12 December 2009",
|
|
"Russian translation of the user interface"),
|
|
|
|
contributor("Reuben Thomas",
|
|
"rrt () sc3d ! org",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110911018202083",
|
|
"22 February 2005",
|
|
"ENTCS document class and lots of useful bug reports"),
|
|
|
|
contributor("Dekel Tsur",
|
|
"dtsur () cs ! ucsd ! edu",
|
|
"GPL",
|
|
"Fwd: Re: The LyX licence",
|
|
"m=110910437519054",
|
|
"22 February 2005",
|
|
"Hebrew support, general file converter, many many bug fixes"),
|
|
|
|
contributor("Matthias Urlichs",
|
|
"smurf () smurf ! noris ! de",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110912859312991",
|
|
"22 February 2005",
|
|
"bug reports and small fixes"),
|
|
|
|
contributor("H. Turgut Uyar",
|
|
"uyar () ce ! itu ! edu ! tr",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110917146423892",
|
|
"23 February 2005",
|
|
"turkish kbmaps"),
|
|
|
|
contributor("Mostafa Vahedi",
|
|
"vahedi58 () yahoo ! com",
|
|
"GPL",
|
|
"Re: improving Arabic-like language support",
|
|
"m=117769964731842",
|
|
"27 April 2007",
|
|
"Farsi support and translations"),
|
|
|
|
contributor("Marko Vendelin",
|
|
"markov () ioc ! ee",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110909439912594",
|
|
"22 February 2005",
|
|
"Gnome frontend"),
|
|
|
|
contributor("Joost Verburg",
|
|
"joostverburg () users ! sourceforge ! net",
|
|
"GPL",
|
|
"Re: New Windows Installer",
|
|
"m=114957884100403",
|
|
"6 June 2006",
|
|
"A new and improved Windows installer"),
|
|
|
|
contributor("Martin Vermeer",
|
|
"martin.vermeer () hut ! fi",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110907543900367",
|
|
"22 February 2005",
|
|
"support for optional argument in sections/captions svjour/svjog, egs and llncs document classes. Lot of bug hunting (and fixing!)"),
|
|
|
|
contributor("Veselin Jeliazkov",
|
|
"vveesskkoo () gmail ! com",
|
|
"GPL",
|
|
"Re: po/bg.po update",
|
|
"m=155531922001223",
|
|
"15 April 2019",
|
|
"Bulgarian localization"),
|
|
|
|
contributor("Jürgen Vigna",
|
|
"jug () lyx ! org",
|
|
"GPL",
|
|
"Re: Licensing of tex2lyx (and perhaps LyX itself?)",
|
|
"m=110899839906262",
|
|
"21 February 2005",
|
|
"complete rewrite of the tabular, text inset; fax and plain text export support; iletter and dinbrief support"),
|
|
|
|
contributor("Pauli Virtanen",
|
|
"pauli.virtanen () hut ! fi",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110918662408397",
|
|
"23 February 2005",
|
|
"Finnish localization of the interface"),
|
|
|
|
contributor("Ramanathan Vishnampet",
|
|
"rvishnampet () gmail ! com",
|
|
"GPL",
|
|
"Re: [Patch] -fobjc-exceptions for compiling linkback sources with g++ on Mac",
|
|
"m=139265874002562",
|
|
"17 February 2014",
|
|
"Support for g++ on 4.8 Mac"),
|
|
|
|
contributor("Patrick De Visschere",
|
|
"pdvisschere () edpnet ! be",
|
|
"GPL",
|
|
"Re: Blanket permission",
|
|
"m=157529692807608",
|
|
"2 December 2019",
|
|
"Improvements to the CMake build scripts"),
|
|
|
|
contributor("Herbert Voß",
|
|
"herbert.voss () alumni ! tu-berlin ! de",
|
|
"GPL",
|
|
"Fwd: Re: The LyX licence",
|
|
"m=110910439013234",
|
|
"22 February 2005",
|
|
"The one who answers all questions on lyx-users mailing list and maintains www.lyx.org/help/ Big insetgraphics and bibliography cleanups"),
|
|
|
|
contributor("Andreas Vox",
|
|
"avox () arcor ! de",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110907443424620",
|
|
"22 February 2005",
|
|
"Bug fixes, feedback on LyX behaviour on the Mac, and improvements to DocBook export"),
|
|
|
|
contributor("venom00 (c/o J-M Lasgouttes)",
|
|
"venom00 () arcadiaclub ! com",
|
|
"GPL",
|
|
"I love GPL, what about you?",
|
|
"m=129098897014967",
|
|
"29 November 2010",
|
|
"Bug fixing"),
|
|
|
|
contributor("Jason Waskiewicz",
|
|
"jason.waskiewicz () sendit ! nodak ! edu",
|
|
"GPL",
|
|
"[Fwd: Re: tufte-book layout for LyX]",
|
|
"m=125659179116032",
|
|
"26 October 2009",
|
|
"Layouts for the Tufte document classes"),
|
|
|
|
contributor("John P. Weiss",
|
|
"jpweiss () frontiernet ! net",
|
|
"Artistic",
|
|
"Re: Small problem with BlanketPermission on the new site.",
|
|
"m=123238170812776",
|
|
"18 January 2009",
|
|
"Bugreports and suggestions, slides class support, editor of the documentationproject, 6/96-9/97. Tutorial chapter 1"),
|
|
|
|
contributor("Edmar Wienskoski",
|
|
"edmar () freescale ! com",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=111280236425781",
|
|
"6 April 2005",
|
|
"literate programming support; various bug fixes"),
|
|
|
|
contributor("Mate Wierdl",
|
|
"mw () wierdlmpc ! msci ! memphis ! edu",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"Maintainer of the @lists.lyx.org mailing-lists"),
|
|
|
|
contributor("Sergei Winitzki",
|
|
"winitzki () gmail ! com",
|
|
"GPL",
|
|
"Re: patch to include latest supported programming languages in listings.tex",
|
|
"m=155530602429557",
|
|
"15 April 2019",
|
|
"updates to the Scientific Word bindings"),
|
|
|
|
contributor("Stephan Witt",
|
|
"stephan.witt () beusen ! de",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110909031824764",
|
|
"22 February 2005",
|
|
"support for CVS revision control, native spell checker interface for Mac OS"),
|
|
|
|
contributor("Jürgen Womser-Schütz",
|
|
"jws1954 () gmx ! de",
|
|
"GPL",
|
|
"Re: Bug #11484",
|
|
"m=154990590319314",
|
|
"11 February 2019",
|
|
"Improvements to the Include File dialog"),
|
|
|
|
contributor("Russ Woodroofe",
|
|
"paranoia () math ! cornell ! edu",
|
|
"GPL",
|
|
"Re: AMS math question environment",
|
|
"m=123091448326090",
|
|
"1 January 2009",
|
|
"question layout environment"),
|
|
|
|
contributor("Mingyi Wu",
|
|
"mingi.eo97g () g2 ! nctu ! edu ! tw",
|
|
"GPL",
|
|
"newcomer",
|
|
"m=139389779502232",
|
|
"3 March 2014",
|
|
"Chinese (traditional) translations"),
|
|
|
|
contributor("Roy Xia",
|
|
"royxia062 () gmail ! com",
|
|
"GPL",
|
|
"GPL Statement",
|
|
"m=139434481324689",
|
|
"9 March 2014",
|
|
"Bugfixing"),
|
|
|
|
contributor("Yihui Xie",
|
|
"xie () yihui ! name",
|
|
"GPL",
|
|
"GPL Statement",
|
|
"m=130523685427995",
|
|
"3 June 2011",
|
|
"Bugfixing, Chinese translation, Sweave support"),
|
|
|
|
contributor("Huang Ying",
|
|
"huangy () sh ! necas ! nec ! com ! cn",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110956742604611",
|
|
"28 February 2005",
|
|
"Gtk frontend"),
|
|
|
|
contributor("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",
|
|
"Japanese translation"),
|
|
|
|
contributor("Abdelrazak Younes",
|
|
"younes.a () free ! fr",
|
|
"GPL",
|
|
"Re: [Patch] RFQ: ParagraphList Rewrite",
|
|
"m=113993670602439",
|
|
"14 February 2006",
|
|
"Qt4 frontend, editing optimisations"),
|
|
|
|
contributor("Yitzhak Zangi",
|
|
"yitzc1 () gmail ! com",
|
|
"GPL",
|
|
"blanket pemission for translation etc.",
|
|
"m=170427463709581",
|
|
"03 January 2024",
|
|
"Hebrew Localization"),
|
|
|
|
contributor("Kees Zeelenberg",
|
|
"kzstatis () gmail ! com",
|
|
"GPL",
|
|
"LyX Contributions license",
|
|
"m=170453607422463",
|
|
"6 January 2024",
|
|
"Dutch localization"),
|
|
|
|
contributor("Henner Zeller",
|
|
"henner.zeller () freiheit ! com",
|
|
"GPL",
|
|
"Re: The LyX licence",
|
|
"m=110911591218107",
|
|
"22 February 2005",
|
|
"rotation of wysiwyg figures"),
|
|
|
|
contributor("Xiaokun Zhu",
|
|
"xiaokun () aero ! gla ! ac ! uk",
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
"bug reports and small fixes"),
|
|
|
|
contributor("Jiaxu Zi",
|
|
"3119932298 () qq ! com",
|
|
"GPL",
|
|
"Re: Update zh_CN Translation",
|
|
"m=171281941029208",
|
|
"10 April 2024",
|
|
"Chinese translation") ]
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main(sys.argv, contributors)
|