2006-10-24 14:12:27 +00:00
#! /usr/bin/env python
2005-04-08 08:51:15 +00:00
# -*- coding: utf-8 -*-
'''
file generate_contributions . py
This file is part of LyX , the document processor .
Licence details can be found in the file COPYING .
author Angus Leeming
Full author contact details are available in file CREDITS
This script both stores and manipulates the raw data needed to
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 :
$ 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
where the arguments are the names of the generated files .
'''
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
class contributer :
def __init__ ( self ,
name ,
contact ,
licence ,
permission_title ,
archive_id ,
permission_date ,
credit ) :
self . name = name
self . contact = contact
self . licence = licence
self . permission_title = permission_title
self . archive_id = archive_id
self . permission_date = permission_date
self . credit = credit
def as_txt_credits ( self ) :
result = [ ' @b %s \n ' % self . name ]
if len ( self . contact ) != 0 :
if self . contact . find ( " http " ) != - 1 :
result . append ( ' @i %s \n ' % self . contact )
else :
2008-04-04 19:55:01 +00:00
result . append ( ' @iE-mail: %s \n ' % self . contact )
2005-06-10 08:18:21 +00:00
result . append ( ' %s \n ' % self . credit . replace ( ' \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 ) :
2005-04-08 08:51:15 +00:00
return '''
2008-04-03 17:29:27 +00:00
$ output = $ output . credits_contrib ( " %s " ,
2005-04-08 08:51:15 +00:00
" %s " ,
" %s " ) ;
''' % ( xml_escape(self.name),
xml_escape ( self . contact ) ,
2005-04-11 14:11:42 +00:00
" \n " . join ( wrapper . wrap ( xml_escape ( self . credit ) ) ) )
2005-04-08 08:51:15 +00:00
def as_php_blanket ( self ) :
return '''
2008-04-03 17:29:27 +00:00
$ output = $ output . blanket_contrib ( " %s " ,
2005-04-08 08:51:15 +00:00
" %s " ,
" %s " ,
" %s " ,
" %s " ) ;
''' % ( xml_escape(self.name),
xml_escape ( self . contact ) ,
xml_escape ( self . permission_title ) ,
xml_escape ( self . archive_id ) ,
xml_escape ( self . permission_date ) )
def error ( message ) :
if message :
sys . stderr . write ( message + ' \n ' )
sys . exit ( 1 )
def usage ( prog_name ) :
2008-08-15 21:30:18 +00:00
return " Usage: %s <CREDITS> <credits.inc> <blanket-permission.inc> " % prog_name
2005-04-08 08:51:15 +00:00
2005-04-08 10:32:36 +00:00
def collate_incomplete ( contributers ) :
missing_credit = [ ]
missing_licence = [ ]
for contributer in contributers :
if len ( contributer . credit ) == 0 :
missing_credit . append ( contributer . name )
if len ( contributer . licence ) == 0 :
missing_licence . append ( contributer . name )
return ''' WARNING!
2005-06-10 21:13:06 +00:00
The following contributers do not have a CREDITS entry :
2005-04-08 10:32:36 +00:00
% s
These ones have no explicit licence statement :
% s
''' % ( " , \n " .join(missing_credit), " , \n " .join(missing_licence))
def as_txt_credits ( contributers ) :
results = [ ]
for contributer in contributers :
if len ( contributer . credit ) != 0 :
results . append ( contributer . as_txt_credits ( ) )
results . append ( '''
If your name doesn ' t appear here although you ' ve done
something for LyX , or your entry is wrong or incomplete ,
just drop some e - mail to lyx @lyx.org. Thanks .
''' )
return " " . join ( results )
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 '''
'''
def as_php_credits ( contributers , file ) :
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 ) ;
2005-04-08 08:51:15 +00:00
if ( isset ( $ email ) & & $ email != " " )
2008-04-04 19:55:01 +00:00
$ output = $ output . " <dt><b>[[mailto:$ {email} | $ {name} ]]</b> " ;
else
$ output = $ output . " <dt><b>$ {name} </b> " ;
2005-04-08 08:51:15 +00:00
2005-04-11 14:11:42 +00:00
$ msg = ereg_replace ( " \\ n * " , " \\ n " , ltrim ( $ msg ) ) ;
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 >
$ { msg }
< / dd > " ;
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
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 = " " )
2005-04-08 08:51:15 +00:00
for contributer in contributers :
if len ( contributer . credit ) != 0 :
2005-04-11 14:11:42 +00:00
results . append ( contributer . 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 )
def as_php_blanket ( contributers , file ) :
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 ) ;
2008-04-03 17:29:27 +00:00
$ output = $ output . "
2005-04-08 08:51:15 +00:00
< dt >
2008-04-04 19:55:01 +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 " ) ;
2008-04-03 18:08:13 +00:00
$ output = $ output . " [[http://marc.info/?l=lyx-devel& " . $ { msg_ref } . " | " . $ { msg_title } . " ]] " ;
2005-04-08 08:51:15 +00:00
} else {
2008-04-03 17:29:27 +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 > " ;
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
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
2008-04-03 18:08:13 +00:00
[ [ http : / / www . opensource . org / licenses / gpl - license . php |
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
for contributer in contributers :
if contributer . licence == " GPL " :
results . append ( contributer . as_php_blanket ( ) )
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
2009-01-19 22:52:42 +00:00
[ [ http : / / www . opensource . org / licenses / artistic - license - 2.0 . php |
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
for contributer in contributers :
if contributer . licence == " Artistic " :
results . append ( contributer . as_php_blanket ( ) )
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 )
def main ( argv , contributers ) :
if len ( argv ) != 4 :
error ( usage ( argv [ 0 ] ) )
2006-11-04 12:46:00 +00:00
txt_credits_data = unicode ( as_txt_credits ( contributers ) ) . encode ( " utf-8 " )
2005-04-08 08:51:15 +00:00
txt_credits = open ( argv [ 1 ] , " w " )
txt_credits . write ( txt_credits_data )
php_credits_data = unicode ( as_php_credits ( contributers , argv [ 2 ] ) ) . encode ( " utf-8 " )
php_credits = open ( argv [ 2 ] , " w " )
php_credits . write ( php_credits_data )
2005-04-08 10:32:36 +00:00
php_blanket_data = unicode ( as_php_blanket ( contributers , argv [ 3 ] ) ) . encode ( " utf-8 " )
2005-04-08 08:51:15 +00:00
php_blanket = open ( argv [ 3 ] , " w " )
php_blanket . write ( php_blanket_data )
2005-04-08 10:32:36 +00:00
warning_data = unicode ( collate_incomplete ( contributers ) + ' \n ' ) . encode ( " utf-8 " )
sys . stderr . write ( warning_data )
2005-04-08 08:51:15 +00:00
# Store the raw data.
contributers = [
contributer ( u " 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 " ,
u " Dutch translation team member " ) ,
2008-07-28 22:01:04 +00:00
contributer ( u " 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 " ,
2008-07-28 22:01:04 +00:00
u " Arabic translation " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " General hacking of user interface stuff and those other bits and pieces " ) ,
contributer ( u " 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 " ,
u " External style definition files, linuxdoc sgml support and more ftp-site ftp.lyx.org " ) ,
2008-08-15 21:30:18 +00:00
contributer ( u " Liviu Andronic " ,
" landronimirc () gmail ! com " ,
" GPL " ,
" contributions GPLed " ,
" m=121869084720708 " ,
" 14 August 2008 " ,
2008-08-16 12:36:53 +00:00
u " Romanian localization " ) ,
2008-08-15 21:30:18 +00:00
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Added support for unix sockets and thence the ' inverse DVI ' feature " ) ,
2006-11-04 12:46:00 +00:00
contributer ( u " Ö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 " ,
2006-11-04 12:46:00 +00:00
u " New commandparams structure, Nomenclature inset " ) ,
2006-10-24 14:12:27 +00:00
2007-08-15 20:32:49 +00:00
contributer ( u " 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 " ,
u " Portuguese translation " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Bug fixes " ) ,
contributer ( u " 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 " ,
u " Fixes for dvi output original version of page selection for printing " ) ,
contributer ( u " 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 " ,
2007-04-10 11:01:44 +00:00
u " tex2lyx improvements, bug fixes, unicode work " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 ' ) ,
2009-01-04 19:15:47 +00:00
contributer ( u " Kornel Benko " ,
" Kornel.Benko () berlin ! de " ,
" GPL " ,
" The LyX licence " ,
" m=123100818303101 " ,
" 3 January 2009 " ,
2009-04-13 14:58:37 +00:00
u " small bugfixes, CMake build system, Slovak translation " ) ,
2009-01-04 19:15:47 +00:00
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Small bugfixes that were very hard to find " ) ,
contributer ( u " 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 " ,
2008-07-20 00:17:16 +00:00
u " Improvements to user interface (menus and keyhandling) including a configurable toolbar and a few other (not so) minor things, like rewriting most of the LyX kernel. Also previous source maintainer. " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " A (pseudo) threaded graphics loader queue, lots of fixes, etc. " ) ,
contributer ( u " Christian Buescher " ,
2008-04-04 20:23:48 +00:00
" christian.buescher () uni-bielefeld ! de " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " User-definable keys, lyxserver and more " ) ,
contributer ( u " 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 " ,
2005-04-11 14:11:42 +00:00
u " 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
contributer ( u " Francesc Burrull i Mestres " ,
2008-04-04 20:23:48 +00:00
" fburrull () mat ! upc ! es " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " Catalan translation " ) ,
2009-07-10 16:23:46 +00:00
contributer ( u " Sergiu Carpov " ,
" ssmiler () gmail ! com " ,
" GPL " ,
" Re: Bug #5522 " ,
" m=124721248310586 " ,
" 10 July 2009 " ,
u " Bug fixes " ) ,
2005-06-10 08:18:21 +00:00
contributer ( u " 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 " ,
u " Spanish translation of the Windows installer " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Improvements to the czech keymaps " ) ,
contributer ( u " 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 " ,
u " Bug fixes " ) ,
2005-06-10 21:12:01 +00:00
contributer ( u " 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 " ,
2008-07-28 22:01:04 +00:00
u " French translations " ) ,
2005-06-10 21:12:01 +00:00
2006-08-09 22:06:38 +00:00
contributer ( u " 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 " ,
u " Italian translation " ) ,
2008-07-23 12:34:25 +00:00
contributer ( u " Yuri Chornoivan " ,
" yurchor () ukr ! net " ,
" GPL " ,
" Permission grant " ,
" m=121681339315810 " ,
" 23 July 2008 " ,
2009-03-03 11:16:42 +00:00
u " Ukrainian translation " ) ,
2008-07-23 12:34:25 +00:00
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Qt2 port " ) ,
2009-05-16 23:53:32 +00:00
contributer ( u " Ewan Davies " ,
" ewan.davies () googlemail ! com " ,
" GPL " ,
" Re: Starting Development " ,
" m=124248720628359 " ,
" 17 May 2009 " ,
u " doxygen to LFUNs.lyx conversion " ) ,
2006-01-14 18:32:31 +00:00
contributer ( u " 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 " ,
u " Improvements to the Swedish translation of the Windows Installer " ) ,
2009-04-17 23:57:06 +00:00
contributer ( u " Martin Engbers " ,
" martin.engbers () gmx ! de " ,
" GPL " ,
" Re: [patch] Icon replacement " ,
" m=123877725311464 " ,
" Apr 3 2009 " ,
u " icon loading tweaks " ) ,
2006-01-14 18:32:31 +00:00
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Started the project, implemented the early versions, various improvements including undo/redo, tables, and much, much more " ) ,
contributer ( u " 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 " ,
u " New graphics handling scheme and more " ) ,
2007-05-31 22:42:00 +00:00
contributer ( u " 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 " ,
u " RTL/BiDi-related fixes " ) ,
2008-07-17 12:51:42 +00:00
contributer ( u " Michał Fita " ,
" michal ! fita () gmail ! com " ,
" GPL " ,
" Statement for Polish translation " ,
" m=121615623122376 " ,
" 15 July 2008 " ,
u " Polish translation " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Maintainer of the OS X port(s) " ) ,
2006-10-24 14:12:27 +00:00
contributer ( u " 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 " ,
u " Galician documentation and localization " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " John Michael Floyd " ,
2008-04-04 20:23:48 +00:00
" jmf () pwd ! nsw ! gov ! au " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " Bug fix to the spellchecker " ) ,
2008-05-03 18:43:22 +00:00
contributer ( u " Nicola Focci " ,
" nicola.focci () gmail ! com " ,
" GPL " ,
" Permission " ,
" m=120946605432341 " ,
" 29 April 2008 " ,
u " Italian translation of documentations " ) ,
2005-06-16 20:09:15 +00:00
contributer ( u " 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 " ,
2008-07-18 21:16:23 +00:00
u " Italian translations, many bug fixes and features " ) ,
2005-06-16 20:09:15 +00:00
contributer ( u " 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 " ,
2005-12-14 14:30:15 +00:00
u " BibTeX annotation support " ) ,
2005-06-16 20:09:15 +00:00
2007-08-03 10:12:46 +00:00
contributer ( u " 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 " ,
u " Improvements to mouse wheel scrolling; many bug reports " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Bug fixes " ) ,
2007-02-06 22:03:14 +00:00
contributer ( u " Ignacio García " ,
2008-04-04 20:23:48 +00:00
" ignacio.garcia () tele2 ! es " ,
2007-02-06 22:03:14 +00:00
" GPL " ,
" Re: es_EmbeddedObjects " ,
" m=117079592919653 " ,
" 06 February 2007 " ,
u " Spanish translation of documentations " ) ,
2005-10-03 16:19:32 +00:00
contributer ( u " 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 " ,
2006-10-24 14:12:27 +00:00
u " Change tracking, German localization, bug fixes " ) ,
2005-10-03 16:19:32 +00:00
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
2005-04-11 14:11:42 +00:00
u " Improvements to lyxserver " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Improvements to Koma-Script classes " ) ,
2009-04-17 23:57:06 +00:00
contributer ( u " Peter Gumm " ,
" gumm () mathematik ! uni-marburg ! de " ,
" GPL " ,
" Re: xy-pic manual " ,
" m=122469079629276 " ,
" 22 October 2008 " ,
u " XY-pic manual " ) ,
contributer ( u " İbrahim Güngör " ,
" h.ibrahim.gungor () gmail ! com " ,
" GPL " ,
" Update Turkish Translation " ,
" m=122583550732670 " ,
" 4 Nov 2008 " ,
u " Turkish translation " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " German translation of the documentation " ) ,
contributer ( u " 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 " ,
u " Norwegian documentation and localization " ) ,
2008-08-15 21:17:37 +00:00
2007-03-27 17:58:58 +00:00
contributer ( u " Richard Heck " ,
2008-08-15 21:17:37 +00:00
" rgheck () brown ! edu " ,
2007-03-27 17:58:58 +00:00
" GPL " ,
" GPL Statement " ,
" m=117501689204059 " ,
" 27 March 2007 " ,
2008-08-15 21:17:37 +00:00
u " Bug fixes, layout modules, BibTeX code " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Maintainer of the OSX ports, taking over from Ronald Florence " ) ,
2009-05-10 09:09:32 +00:00
contributer ( u " Kevin B. Hendricks " ,
" kevin.hendricks () sympatico ! ca " ,
" GPL " ,
" Fwd: Re: Integration of libmythes and hunspell " ,
" m=124190107613441 " ,
" 9 May 2009 " ,
u " Author of the MyThes thesaurus library " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " Claus Hentschel " ,
2008-04-04 20:23:48 +00:00
" claus.hentschel () mbau ! fh-hannover ! de " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " Win32 port of LyX 1.1.x " ) ,
contributer ( u " 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 " ,
u " Danish translation " ) ,
contributer ( u " 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 " ,
u " Fixes to literate programming support " ) ,
2006-09-27 13:54:43 +00:00
contributer ( u " 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 " ,
u " Romanian localization " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Some minor bug-fixes, FAQ, linuxdoc sgml support " ) ,
2007-04-01 15:26:11 +00:00
contributer ( u " 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 " ,
2007-04-01 15:26:11 +00:00
u " Development of CJK language support " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Fix to a very hard-to-find egcs bug that crashed LyX on alpha architecture " ) ,
2007-01-29 20:28:44 +00:00
contributer ( u " 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 " ,
u " Fix docbook generation of nested lists " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Public relations, feedback, documentation and support " ) ,
contributer ( u " 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 " ,
u " Various small things and code simplifying " ) ,
contributer ( u " 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 " ,
u " Tutorial, reLyX: the LaTeX to LyX translator " ) ,
contributer ( u " Carmen Kauffmann " ,
" " ,
" " ,
" " ,
" " ,
" " ,
u " Original name that is now two character shorter " ) ,
contributer ( u " KDE Artists " ,
" http://artist.kde.org/ " ,
" " ,
" " ,
" " ,
" " ,
u " Authors of several of the icons LyX uses " ) ,
contributer ( u " Andreas Klostermann " ,
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 " ,
2005-12-14 14:30:15 +00:00
u " Gtk reference insertion dialog " ) ,
2005-04-08 08:51:15 +00:00
2006-09-27 13:54:43 +00:00
contributer ( u " 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 " ,
u " Italian localization of the interface " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Gnome port " ) ,
contributer ( u " Peter Kremer " ,
2008-04-04 20:23:48 +00:00
" kremer () bme-tel ! ttt ! bme ! hu " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " Hungarian translation and bind file for menu shortcuts " ) ,
2009-11-25 01:11:50 +00:00
contributer ( u ' Valeriy Kruchko ' ,
" lerkru () gmail ! com " ,
" GPL " ,
" Re: translation in to russian about 68 % " ,
" m=125904983806681 " ,
" 24 November 2009 " ,
u " Russian translation of the user interface " ) ,
2006-06-07 14:14:38 +00:00
contributer ( u " 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 " ,
2006-11-03 11:22:50 +00:00
u " Qt4 coding, CMake build system, bug fixing, testing, clean ups, and profiling " ) ,
2006-06-07 14:14:38 +00:00
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Initial version of the koma-script textclasses " ) ,
contributer ( u " 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 " ,
u " Support for textclass g-brief2 " ) ,
contributer ( u " 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 " ,
u " Xforms dialogs and GUI related code " ) ,
contributer ( u " 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 " ,
2008-07-20 00:17:16 +00:00
u " configure and Makefile-stuff, many bugfixes and more. Previous stable branch maintainer. " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " Victor Lavrenko " ,
2008-04-04 20:23:48 +00:00
" lyx () lavrenko ! pp ! ru " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " Russian translation " ) ,
contributer ( u " 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 " ,
u " GUI-I-fication of insets and more " ) ,
contributer ( u " Edwin Leuven " ,
2008-04-04 20:23:48 +00:00
" e.leuven () uva ! nl " ,
2005-04-08 08:51:15 +00:00
" GPL " ,
" Re: Licensing of tex2lyx (and perhaps LyX itself?) " ,
" m=110899657530749 " ,
" 21 February 2005 " ,
2005-06-10 21:47:42 +00:00
u " Qt2 frontend GUI-I-fication of several popups. \n Dutch translation of the Windows installer " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Qt2 frontend, GUII work, bugfixes " ) ,
contributer ( u " 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 " ,
u " Added native support for \ makebox to mathed. Several bug fixes, both to the source code and to the llncs layout file " ) ,
2006-01-12 16:18:44 +00:00
contributer ( u " 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 " ,
u " Polish translation and mw* layouts files " ) ,
2007-07-01 15:17:11 +00:00
contributer ( u " 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 " ,
u " Bugfixes " ) ,
2008-08-19 06:53:18 +00:00
contributer ( u " Tetsuya Makimura " ,
" makimura () ims ! tsukuba.ac ! jp " ,
" GPL " ,
" Re: Support request for Japanese without CJK, again (Re: [Fwd: About Japanese edition ...) " ,
" m=121905769227884 " ,
" 18 August 2008 " ,
u " Improvements to the Japanese language support. " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
2008-07-20 00:17:16 +00:00
u " linuxdoc sgml support. Current release manager. " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Slovenian translation coordinator " ) ,
2009-06-15 20:20:26 +00:00
contributer ( u " John McCabe-Dansted " ,
" 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 " ,
2009-07-13 09:50:47 +00:00
u " Keys-test module, bug fixing " ) ,
2009-06-15 20:20:26 +00:00
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
2005-04-08 08:51:15 +00:00
u " Dutch translation coordinator " ) ,
2007-11-12 22:56:15 +00:00
contributer ( u " 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 " ,
u " French translations of the documentation " ) ,
2009-04-17 23:57:06 +00:00
contributer ( u " Günter Milde " ,
" milde () users ! berlios ! de " ,
" GPL " ,
" copyleft " ,
" m=122398147620761 " ,
" 14 October 2008 " ,
u " Unicode and layout file fixes " ) ,
2007-11-12 22:56:15 +00:00
2008-01-05 02:25:29 +00:00
contributer ( u " 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 " ,
u " Catalan translations of menus " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Basque documentation and localization " ) ,
contributer ( u " 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 " ,
2005-04-11 14:11:42 +00:00
u " Improvements to the find&replace dialog " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Math panel dialogs " ) ,
contributer ( u " Dirk Niggemann " ,
2008-04-04 20:23:48 +00:00
" dabn100 () cam ! ac ! uk " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " config. handling enhancements, bugfixes, printer enhancements path mingling " ) ,
2009-06-28 08:41:03 +00:00
contributer ( u " Rob Oakes " ,
" lyx-devel () oak-tree ! us> " ,
" GPL " ,
" Outline Contributions " ,
" m=124615188102843 " ,
" 27 June 2009 " ,
u " Improvements to the outliner. " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Support for two-column figure (figure*) and table (table*) environments. Fixed minibuffer entry of floats. " ) ,
contributer ( u ' 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 " ,
u " Support for kluwer and ijmpd document classes " ) ,
2008-01-05 02:25:29 +00:00
contributer ( u ' 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 " ,
u " Russian translation of the user interface " ) ,
2006-08-10 15:55:11 +00:00
contributer ( u ' Sanda Pavel ' ,
2008-04-04 20:23:48 +00:00
" ps () ucw ! cz " ,
2006-08-10 15:55:11 +00:00
" GPL " ,
" Re: czech translation " ,
" m=115522417204086 " ,
2008-01-05 02:25:29 +00:00
" 10 August 2006 " ,
2008-10-14 15:12:04 +00:00
u " Czech translation, support for the LaTeX package hyperref, fullscreen support, lfuns docs/review " ) ,
2006-08-10 15:55:11 +00:00
2005-09-15 21:24:47 +00:00
contributer ( u ' 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 " ,
2008-03-19 22:25:59 +00:00
u " 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
2005-04-08 08:51:15 +00:00
contributer ( u " Joacim Persson " ,
2008-04-04 20:23:48 +00:00
" sp2joap1 () ida ! his ! se " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " po-file for Swedish, a tool for picking shortcuts, bug reports and hacking atrandom " ) ,
contributer ( u " 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 " ,
u " Better support for serbian and serbocroatian " ) ,
contributer ( u " Geoffroy Piroux " ,
2008-04-04 20:23:48 +00:00
" piroux () fyma ! ucl ! ac ! be " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " Mathematica backend for mathed " ) ,
contributer ( u " 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 " ,
u " Keymap work " ) ,
contributer ( u " 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 " ,
u " mathed rewrite to use STL file io with streams --export and --import command line options " ) ,
contributer ( u " 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 " ,
2005-04-11 14:11:42 +00:00
u " heavy mathed testing; provided siamltex document class " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " Bernhard Psaier " ,
" " ,
" " ,
" " ,
" " ,
" " ,
u " Designer of the LyX-Banner " ) ,
contributer ( u " 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 " ,
u " initial configure script " ) ,
contributer ( u " 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 " ,
u " GUI-I architect, LyX PR head, LDN, bug reports/fixes, Itemize Bullet Selection, xforms-0.81 + gcc-2.6.3 compatibility " ) ,
2009-04-17 23:57:06 +00:00
2009-04-18 00:01:12 +00:00
contributer ( u " Manoj Rajagopalan " ,
" rmanoj () umich ! edu " ,
" GPL " ,
" Re: patch for case-insensitive reference sorting " ,
" m=123506398801004 " ,
" Feb 19 2009 " ,
u " reference dialog tweaks " ) ,
2009-04-17 23:57:06 +00:00
contributer ( u " Vincent van Ravesteijn " ,
" V.F.vanRavesteijn () tudelft ! nl " ,
" GPL " ,
" RE: crash lyx-1.6rc1 " ,
" m=121786603726114 " ,
" 4 August 2008 " ,
u " lots of fixes " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " French translation of the docs; latin 3, 4 and 9 support " ) ,
contributer ( u " 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 " ,
u " provided hollywood and broadway classes for writing screen scripts and plays " ) ,
2005-10-12 13:32:50 +00:00
contributer ( u " 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 " ,
u " Gtk frontend " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Creator of the native port of LyX to Windows " ) ,
contributer ( u " 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 " ,
2005-04-08 08:51:15 +00:00
u " Support for Koma-Script family of classes " ) ,
contributer ( u " 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 " ,
u " documentation maintainer, AASTeX support " ) ,
contributer ( u " 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 " ,
2005-06-10 08:18:21 +00:00
u " 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
2009-12-03 18:42:41 +00:00
contributer ( u " Julien Rioux " ,
" jrioux () physics ! utoronto ! ca " ,
" GPL " ,
" Re: #6361: configure.py ignores packages required by user-defined modules " ,
" m=125986505101722 " ,
" 3 December 2009 " ,
u " Bug fix " ) ,
2007-02-04 23:04:54 +00:00
contributer ( u " 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 " ,
2007-04-01 13:58:35 +00:00
u " Various bug fixes " ) ,
2007-02-04 23:04:54 +00:00
2007-09-25 14:15:15 +00:00
contributer ( u " 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 " ,
u " Major rework of the AMS classes " ) ,
2006-10-26 14:28:44 +00:00
contributer ( u " 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 " ,
u " Hebrew translation " ) ,
2005-12-14 14:30:15 +00:00
contributer ( u " 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 " ,
u " Hungarian translation " ) ,
2005-06-10 09:31:22 +00:00
contributer ( u " 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 " ,
u " Danish translation of the Windows installer " ) ,
2007-04-01 13:58:35 +00:00
contributer ( u " 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 " ,
u " font improvements, bug fixes " ) ,
2009-04-17 23:57:06 +00:00
contributer ( u " Horst Schirmeier " ,
" horst () schirmeier ! com " ,
" GPL " ,
" Re: [patch] reordering capabilities for GuiBibtex " ,
" m=120009631506298 " ,
" 12 January 2008 " ,
u " small fixes " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " Hubert Schreier " ,
2008-04-04 20:23:48 +00:00
" schreier () sc ! edu " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " spellchecker (ispell frontend); beautiful document-manager based on the simple table of contents (removed) " ) ,
contributer ( u " Ivan Schreter " ,
2008-04-04 20:23:48 +00:00
" schreter () kdk ! sk " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " international support and kbmaps for slovak, czech, german, ... wysiwyg figure " ) ,
2007-04-01 13:58:35 +00:00
contributer ( u " 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 " ,
u " contribution to the spanish internationalization " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " Miyata Shigeru " ,
2008-04-04 20:23:48 +00:00
" miyata () kusm ! kyoto-u ! ac ! jp " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " OS/2 port " ) ,
contributer ( u " 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 " ,
u " Fast parsing with lyxlex, pseudoactions, mathpanel, Math Editor, combox and more " ) ,
contributer ( u " 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 " ,
2009-04-17 23:57:06 +00:00
u " Tweaks to various XForms dialogs. Implemented the --userdir command line option, enabling LyX to run with multiple configurations for different users. Implemented the original code to make colours for different inset properties configurable. " ) ,
contributer ( u " Waluyo Adi Siswanto " ,
" was.uthm () gmail ! com " ,
" GPL " ,
" Licence contributions " ,
" m=123595530114385 " ,
" Mar 2 2009 " ,
u " Indonesian translation " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " vertical spaces " ) ,
contributer ( u " Jürgen Spitzmüller " ,
2008-04-04 20:23:48 +00:00
" juergen.sp () t-online ! de " ,
2005-04-08 08:51:15 +00:00
" GPL " ,
" Re: The LyX licence " ,
" m=110907530127164 " ,
" 22 February 2005 " ,
2008-07-20 00:17:16 +00:00
u " Qt frontend, bugfixes. Current stable branch maintainer. " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Gtk frontend " ) ,
contributer ( u " 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 " ,
u " fix bugs with error insets placement " ) ,
2005-06-09 16:36:10 +00:00
contributer ( u " 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 " ,
2008-07-28 22:01:04 +00:00
u " Current documentation maintainer, Windows installer, bug fixes " ) ,
2005-06-09 16:36:10 +00:00
2005-04-08 08:51:15 +00:00
contributer ( u " David Suárez de Lis " ,
2008-04-04 20:23:48 +00:00
" excalibor () iname ! com " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " maintaining es.po since v1.0.0 and other small i18n issues small fixes " ) ,
contributer ( u " 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 " ,
u " aapaper support, german documentation translation, bug reports " ) ,
contributer ( u " 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 " ,
u " noweb2lyx and reLyX integration of noweb files. added Import->Noweb and key bindings to menus " ) ,
2009-11-10 13:02:31 +00:00
contributer ( u " TaoWang (mgc) " ,
" mgcgogo () gmail ! com " ,
" GPL " ,
" Re: Chinese Version of Tutorial.lyx " ,
" m=125785021631705 " ,
" 10 November 2009 " ,
u " translation of documentation and user interface to Simplified Chinese " ) ,
2009-12-13 02:58:35 +00:00
contributer ( u ' Sergey Tereschenko ' ,
" serg.partizan () gmail ! com " ,
" GPL " ,
" my contributions " ,
" m=126065880524135 " ,
" 12 December 2009 " ,
u " Russian translation of the user interface " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " encts document class lots of useful bug reports " ) ,
contributer ( u " 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 " ,
u " Hebrew support, general file converter, many many bug fixes " ) ,
contributer ( u " 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 " ,
u " bug reports and small fixes " ) ,
contributer ( u " 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 " ,
u " turkish kbmaps " ) ,
2007-05-31 21:53:52 +00:00
contributer ( u " 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 " ,
u " Farsi support and translations " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Gnome frontend " ) ,
2006-06-06 08:05:05 +00:00
contributer ( u " 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 " ,
u " A new and improved Windows installer " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
2005-04-11 14:11:42 +00:00
u " 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
contributer ( u " 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 " ,
2007-01-16 22:33:44 +00:00
u " 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
contributer ( u " 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 " ,
u " Finnish localization of the interface " ) ,
contributer ( u " 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 " ,
u " The one who answers all questions on lyx-users mailing list and maintains www.lyx.org/help/ Big insetgraphics and bibliography cleanups " ) ,
contributer ( u " Andreas Vox " ,
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 " ,
u " Bug fixes, feedback on LyX behaviour on the Mac, and improvements to DocBook export " ) ,
2009-10-27 01:46:16 +00:00
contributer ( u " Jason Waskiewicz " ,
" jason.waskiewicz () sendit ! nodak ! edu " ,
" GPL " ,
" [Fwd: Re: tufte-book layout for LyX] " ,
" m=125659179116032 " ,
" 26 October 2009 " ,
u " Layouts for the Tufte document classes " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
2005-04-08 08:51:15 +00:00
u " Bugreports and suggestions, slides class support, editor of the documentationproject, 6/96-9/97. Tutorial chapter 1 " ) ,
contributer ( u " 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 " ,
u " literate programming support; various bug fixes " ) ,
contributer ( u " Mate Wierdl " ,
2008-04-04 20:23:48 +00:00
" mw () wierdlmpc ! msci ! memphis ! edu " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " Maintainer of the @lists.lyx.org mailing-lists " ) ,
contributer ( u " Serge Winitzki " ,
2008-04-04 20:23:48 +00:00
" winitzki () erebus ! phys ! cwru ! edu " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
u " updates to the Scientific Word bindings " ) ,
contributer ( u " 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 " ,
u " support for page selection for printing support for number of copies " ) ,
2009-01-04 19:15:47 +00:00
contributer ( u " Russ Woodroofe " ,
" paranoia () math ! cornell ! edu " ,
" GPL " ,
" Re: AMS math question environment " ,
" m=123091448326090 " ,
" 1 January 2009 " ,
u " question layout environment " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " Gtk frontend " ) ,
2007-05-29 19:53:27 +00:00
contributer ( u " 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 " ,
u " Japanese translation " ) ,
2006-06-06 08:05:05 +00:00
contributer ( u " 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 " ,
u " Qt4 frontend, editing optimisations " ) ,
2005-04-08 08:51:15 +00:00
contributer ( u " 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 " ,
u " rotation of wysiwyg figures " ) ,
contributer ( u " Xiaokun Zhu " ,
2008-04-04 20:23:48 +00:00
" xiaokun () aero ! gla ! ac ! uk " ,
2005-04-08 08:51:15 +00:00
" " ,
" " ,
" " ,
" " ,
2006-06-06 08:05:05 +00:00
u " bug reports and small fixes " ) ]
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__ " :
main ( sys . argv , contributers )
2008-04-04 19:55:01 +00:00