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