Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Jean-Marc Lasgouttes
Uwe == Uwe Stöhr [EMAIL PROTECTED] writes: I can not compile doc/TOC.lyx. I guess this is caused by line \usepackage[utf-8]{inputenc}. Uwe Because the correct line would be Uwe \usepackage[utf8]{inputenc} Why the need to set inputencoding to utf8? What about using language's default

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Enrico Forestieri
On Fri, Jun 29, 2007 at 09:31:57AM +0200, Jean-Marc Lasgouttes wrote: Uwe == Uwe Stöhr [EMAIL PROTECTED] writes: I can not compile doc/TOC.lyx. I guess this is caused by line \usepackage[utf-8]{inputenc}. Uwe Because the correct line would be Uwe \usepackage[utf8]{inputenc} Why

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Uwe Stöhr
Jean-Marc Lasgouttes schrieb: Uwe Because the correct line would be Uwe \usepackage[utf8]{inputenc} Why the need to set inputencoding to utf8? What about using language's default encoding. That's better but I don't know how to do this in the doc_toc.py file. regards Uwe

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Jean-Marc Lasgouttes
Enrico == Enrico Forestieri [EMAIL PROTECTED] writes: Enrico On Fri, Jun 29, 2007 at 09:31:57AM +0200, Jean-Marc Lasgouttes wrote: Uwe == Uwe Stöhr [EMAIL PROTECTED] writes: I can not compile doc/TOC.lyx. I guess this is caused by line \usepackage[utf-8]{inputenc}. Uwe Because the

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Georg Baum
Enrico Forestieri wrote: On Fri, Jun 29, 2007 at 09:31:57AM +0200, Jean-Marc Lasgouttes wrote: Why the need to set inputencoding to utf8? Because it's easier to do without worrying for finding a better solution. Wrong. The very same patch with s/utf8/auto/ would be the better solution.

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread José Matos
On Friday 29 June 2007 11:26:54 Uwe Stöhr wrote: That's better but I don't know how to do this in the doc_toc.py file. Instead of utf-8 or utf8 use auto as the inputencoding. regards Uwe -- José Abílio

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Michael Gerz
Uwe Stöhr schrieb: I can not compile doc/TOC.lyx. I guess this is caused by line \usepackage[utf-8]{inputenc}. Because the correct line would be \usepackage[utf8]{inputenc} The attached trivial patch fixes this and sets the Python file encoding to utf-8 as we once agred that all our

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Uwe Stöhr
Instead of utf-8 or utf8 use auto as the inputencoding. Done: http://www.lyx.org/trac/changeset/18943 regards Uwe

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Jean-Marc Lasgouttes
> "Uwe" == Uwe Stöhr <[EMAIL PROTECTED]> writes: >> I can not compile doc/TOC.lyx. I guess this is caused by line >> \usepackage[utf-8]{inputenc}. Uwe> Because the correct line would be Uwe> \usepackage[utf8]{inputenc} Why the need to set inputencoding to utf8? What about using language's

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Enrico Forestieri
On Fri, Jun 29, 2007 at 09:31:57AM +0200, Jean-Marc Lasgouttes wrote: > > "Uwe" == Uwe Stöhr <[EMAIL PROTECTED]> writes: > > >> I can not compile doc/TOC.lyx. I guess this is caused by line > >> \usepackage[utf-8]{inputenc}. > > Uwe> Because the correct line would be > > Uwe>

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Uwe Stöhr
Jean-Marc Lasgouttes schrieb: Uwe> Because the correct line would be Uwe> \usepackage[utf8]{inputenc} Why the need to set inputencoding to utf8? What about using language's default encoding. That's better but I don't know how to do this in the doc_toc.py file. regards Uwe

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Jean-Marc Lasgouttes
> "Enrico" == Enrico Forestieri <[EMAIL PROTECTED]> writes: Enrico> On Fri, Jun 29, 2007 at 09:31:57AM +0200, Jean-Marc Lasgouttes wrote: >> > "Uwe" == Uwe Stöhr <[EMAIL PROTECTED]> writes: >> >> >> I can not compile doc/TOC.lyx. I guess this is caused by line >> >>

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Georg Baum
Enrico Forestieri wrote: > On Fri, Jun 29, 2007 at 09:31:57AM +0200, Jean-Marc Lasgouttes wrote: >> Why the need to set inputencoding to utf8? > > Because it's easier to do without worrying for finding a better solution. Wrong. The very same patch with s/utf8/auto/ would be the better

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread José Matos
On Friday 29 June 2007 11:26:54 Uwe Stöhr wrote: > That's better but I don't know how to do this in the doc_toc.py file. Instead of utf-8 or utf8 use auto as the inputencoding. > regards Uwe -- José Abílio

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Michael Gerz
Uwe Stöhr schrieb: > I can not compile doc/TOC.lyx. I guess this is caused by line > \usepackage[utf-8]{inputenc}. Because the correct line would be \usepackage[utf8]{inputenc} The attached trivial patch fixes this and sets the Python file encoding to utf-8 as we once agred that all our

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-29 Thread Uwe Stöhr
> Instead of utf-8 or utf8 use auto as the inputencoding. Done: http://www.lyx.org/trac/changeset/18943 regards Uwe

doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-28 Thread Bo Peng
I can not compile doc/TOC.lyx. I guess this is caused by line \usepackage[utf-8]{inputenc}. Bo

Re: doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-28 Thread José Matos
On Thursday 28 June 2007 22:57:47 Bo Peng wrote: I can not compile doc/TOC.lyx. I guess this is caused by line \usepackage[utf-8]{inputenc}. Bo What latex version? -- José Abílio

[patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-28 Thread Uwe Stöhr
I can not compile doc/TOC.lyx. I guess this is caused by line \usepackage[utf-8]{inputenc}. Because the correct line would be \usepackage[utf8]{inputenc} The attached trivial patch fixes this and sets the Python file encoding to utf-8 as we once agred that all our scripts for LyX 1.5 should

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-28 Thread Bo Peng
OK to apply the patch? +1 Bo

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-28 Thread Jürgen Spitzmüller
Uwe Stöhr wrote: OK to apply the patch? OK. Jürgen

doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-28 Thread Bo Peng
I can not compile doc/TOC.lyx. I guess this is caused by line \usepackage[utf-8]{inputenc}. Bo

Re: doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-28 Thread José Matos
On Thursday 28 June 2007 22:57:47 Bo Peng wrote: > I can not compile doc/TOC.lyx. I guess this is caused by line > \usepackage[utf-8]{inputenc}. > > Bo What latex version? -- José Abílio

[patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-28 Thread Uwe Stöhr
> I can not compile doc/TOC.lyx. I guess this is caused by line > \usepackage[utf-8]{inputenc}. Because the correct line would be \usepackage[utf8]{inputenc} The attached trivial patch fixes this and sets the Python file encoding to utf-8 as we once agred that all our scripts for LyX 1.5

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-28 Thread Bo Peng
OK to apply the patch? +1 Bo

Re: [patch] doc/TOC.lyx: \usepackage[utf-8]{inputenc} causes 'utf-8.def not found'

2007-06-28 Thread Jürgen Spitzmüller
Uwe Stöhr wrote: > OK to apply the patch? OK. Jürgen