From adcd9fbe8a03edd68013f58abab82e1cdcfc6cb4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Mon, 10 Feb 2003 10:27:46 +0000 Subject: [PATCH] bare bones to convert 222 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6080 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/lyx2lyx/lyx2lyx | 2 +- lib/lyx2lyx/lyxconvert_221.py | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 lib/lyx2lyx/lyxconvert_221.py diff --git a/lib/lyx2lyx/lyx2lyx b/lib/lyx2lyx/lyx2lyx index aefa08ab8d..c69d1ca57d 100755 --- a/lib/lyx2lyx/lyx2lyx +++ b/lib/lyx2lyx/lyx2lyx @@ -37,7 +37,7 @@ opt.quiet = 0 format = re.compile(r"(\d)[\.,]?(\d\d)") fileformat = re.compile(r"\\lyxformat\s*(\S*)") -lst_ft = ["210", "215", "216", "217", "218", "220", "221"] +lst_ft = ["210", "215", "216", "217", "218", "220", "221", "222"] def usage(): print """Usage: lyx2lyx [options] file1 diff --git a/lib/lyx2lyx/lyxconvert_221.py b/lib/lyx2lyx/lyxconvert_221.py new file mode 100644 index 0000000000..510e696cdf --- /dev/null +++ b/lib/lyx2lyx/lyxconvert_221.py @@ -0,0 +1,24 @@ +# This file is part of lyx2lyx +# Copyright (C) 2002 Dekel Tsur +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + + +def convert(header, body): + pass + +if __name__ == "__main__": + pass -- 2.39.2