mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
Add authors.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7588 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7ec7270dae
commit
d9ffbf1412
@ -1,10 +1,5 @@
|
||||
2003-08-22 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* ui/classic.ui:
|
||||
* ui/default.ui:
|
||||
* ui/stdmenus.ui:
|
||||
* ui/stdtoolbars.ui:
|
||||
|
||||
* bind/broadway.bind:
|
||||
* bind/cyrkeys.bind:
|
||||
* bind/greekkeys.bind:
|
||||
@ -13,6 +8,15 @@
|
||||
* bind/math.bind:
|
||||
* bind/sciword.bind: tell the world who wrote 'em.
|
||||
|
||||
* scripts/TeXFiles.sh:
|
||||
* scripts/convertDefault.sh:
|
||||
* scripts/listerrors: ditto
|
||||
|
||||
* ui/classic.ui:
|
||||
* ui/default.ui:
|
||||
* ui/stdmenus.ui:
|
||||
* ui/stdtoolbars.ui: ditto
|
||||
|
||||
2003-08-22 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* bind/cua.bind:
|
||||
|
@ -1,5 +1,15 @@
|
||||
#!/bin/sh
|
||||
# file: ~/bin/TeXFiles.sh
|
||||
|
||||
# file TeXFiles.sh
|
||||
# This file is part of LyX, the document processor.
|
||||
# Licence details can be found in the file COPYING.
|
||||
|
||||
# author Herbert Voß
|
||||
# author Jean-Marc Lasgouttes
|
||||
# author Jürgen Spitzmüller
|
||||
|
||||
# Full author contact details are available in file CREDITS.
|
||||
|
||||
# all files -> without option
|
||||
# TeX class files -> option cls
|
||||
# TeX style files -> option sty
|
||||
|
@ -1,10 +1,19 @@
|
||||
#! /bin/sh
|
||||
|
||||
# file convertDefault.sh
|
||||
# This file is part of LyX, the document processor.
|
||||
# Licence details can be found in the file COPYING.
|
||||
|
||||
# author Herbert Voß
|
||||
|
||||
# Full author contact details are available in file CREDITS.
|
||||
|
||||
# The default converter if no other has been defined by the user from the
|
||||
# Conversion->Converter tab of the Preferences dialog.
|
||||
#
|
||||
|
||||
# The user can also redefine this default converter, placing their
|
||||
# replacement in ~/.lyx/scripts
|
||||
#
|
||||
|
||||
# converts an image from $1 to $2 format
|
||||
convert -depth 8 $1 $2
|
||||
if [ $? -ne 0 ]; then
|
||||
|
@ -1,17 +1,26 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
# file listerrors
|
||||
# This file is part of LyX, the document processor.
|
||||
# Licence details can be found in the file COPYING.
|
||||
|
||||
# author Kayvan A. Sylvan
|
||||
|
||||
# Full author contact details are available in file CREDITS.
|
||||
|
||||
"""reformat noweb and compiler errors for LyX.
|
||||
|
||||
Expects to read from stdin and output to stdout.
|
||||
"""
|
||||
|
||||
__author__ = "Kayvan A. Sylvan <kayvan@sylvan.com>"
|
||||
__date__ = "$Date: 2002/03/25 23:29:30 $"
|
||||
__version__ = "$Revision: 1.2 $"
|
||||
__date__ = "$Date: 2003/08/22 10:50:02 $"
|
||||
__version__ = "$Revision: 1.3 $"
|
||||
__credits__ = """Edmar Wienskoski Jr. <edmar-w-jr@technologist.com>
|
||||
original Literate support for LyX.
|
||||
Bernard Michael Hurley <berhardh@westherts.ac.uk>
|
||||
modifications to original listerrors."""
|
||||
__copyright__ = "Copyright 2002 - The LyX team."
|
||||
__copyright__ = "Copyright 2002 - Kayvan A. Sylvan."
|
||||
|
||||
import sys, string
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user