Re: does my module require a package?

2009-05-27 Thread Guenter Milde
On 2009-05-26, rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: ... Hmm. Can you post your lyxmodules.lst file? Actually, what I want to see is just the line of that file

Re: does my module require a package?

2009-05-27 Thread rgheck
Stefano Franchi wrote: On Tuesday 26 May 2009 05:46:55 pm rgheck wrote: Stefano Franchi wrote: On Tuesday 26 May 2009 08:59:10 am rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me

Re: does my module require a package?

2009-05-27 Thread rgheck
Guenter Milde wrote: It is this: fancybreak fancybreak Define FancyBreak style for breaks or transitions between paragraphs. Separate pragraphs with some ornaments or simple vertical space. This is usually used for gaps in the narrative (also called a transition), e.g. love scenes left out in

Re: does my module require a package?

2009-05-27 Thread Guenter Milde
On 2009-05-27, rgheck wrote: Guenter Milde wrote: Problem: spurious module requires package popups for a home-made module. Reason: quotes in the description text are not escaped. The parser for this file just uses LyX's general-purpose lexer. Apparently, it does not know about

Re: does my module require a package?

2009-05-27 Thread Jean-Marc Lasgouttes
The parser for this file just uses LyX's general-purpose lexer. Apparently, it does not know about escaped quotes. Of course it does (when you ask nicely). Lexer::next(true) should do the trick. JMarc

Re: does my module require a package?

2009-05-27 Thread rgheck
Jean-Marc Lasgouttes wrote: The parser for this file just uses LyX's general-purpose lexer. Apparently, it does not know about escaped quotes. Of course it does (when you ask nicely). Lexer::next(true) should do the trick. OK, but how does this work on the first string you encounter? I.e.,

Re: does my module require a package?

2009-05-27 Thread Jean-Marc Lasgouttes
OK, but how does this work on the first string you encounter? I.e., we have something like: lex.setFile(...) while (lex.isOK()) { s = lex.getString(); lex.next(true); } but will this work the first time? It i strange that we do not need to start with a lex.next()... But Lexer is strange

Re: does my module require a package?

2009-05-27 Thread Guenter Milde
On 2009-05-26, rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: ... Hmm. Can you post your lyxmodules.lst file? Actually, what I want to see is just the line of that file

Re: does my module require a package?

2009-05-27 Thread rgheck
Stefano Franchi wrote: On Tuesday 26 May 2009 05:46:55 pm rgheck wrote: Stefano Franchi wrote: On Tuesday 26 May 2009 08:59:10 am rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me

Re: does my module require a package?

2009-05-27 Thread rgheck
Guenter Milde wrote: It is this: fancybreak fancybreak Define FancyBreak style for breaks or transitions between paragraphs. Separate pragraphs with some ornaments or simple vertical space. This is usually used for gaps in the narrative (also called a transition), e.g. love scenes left out in

Re: does my module require a package?

2009-05-27 Thread Guenter Milde
On 2009-05-27, rgheck wrote: Guenter Milde wrote: Problem: spurious module requires package popups for a home-made module. Reason: quotes in the description text are not escaped. The parser for this file just uses LyX's general-purpose lexer. Apparently, it does not know about

Re: does my module require a package?

2009-05-27 Thread Jean-Marc Lasgouttes
The parser for this file just uses LyX's general-purpose lexer. Apparently, it does not know about escaped quotes. Of course it does (when you ask nicely). Lexer::next(true) should do the trick. JMarc

Re: does my module require a package?

2009-05-27 Thread rgheck
Jean-Marc Lasgouttes wrote: The parser for this file just uses LyX's general-purpose lexer. Apparently, it does not know about escaped quotes. Of course it does (when you ask nicely). Lexer::next(true) should do the trick. OK, but how does this work on the first string you encounter? I.e.,

Re: does my module require a package?

2009-05-27 Thread Jean-Marc Lasgouttes
OK, but how does this work on the first string you encounter? I.e., we have something like: lex.setFile(...) while (lex.isOK()) { s = lex.getString(); lex.next(true); } but will this work the first time? It i strange that we do not need to start with a lex.next()... But Lexer is strange

Re: does my module require a package?

2009-05-27 Thread Guenter Milde
On 2009-05-26, rgheck wrote: > Guenter Milde wrote: >> Dear List, >> whenever I load a file that loads the following package, I get a >> popup-window warning me that I am missing a package: ... > Hmm. Can you post your lyxmodules.lst file? Actually, what I want to see > is just the line of

Re: does my module require a package?

2009-05-27 Thread rgheck
Stefano Franchi wrote: On Tuesday 26 May 2009 05:46:55 pm rgheck wrote: Stefano Franchi wrote: On Tuesday 26 May 2009 08:59:10 am rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me

Re: does my module require a package?

2009-05-27 Thread rgheck
Guenter Milde wrote: It is this: "fancybreak" "fancybreak" "Define FancyBreak style for "breaks" or "transitions" between paragraphs. Separate pragraphs with some ornaments or simple vertical space. This is usually used for gaps in the narrative (also called a "transition"), e.g. love scenes

Re: does my module require a package?

2009-05-27 Thread Guenter Milde
On 2009-05-27, rgheck wrote: > Guenter Milde wrote: Problem: spurious "module requires package" popups for a home-made module. Reason: >> quotes in the description text are not escaped. > The parser for this file just uses LyX's general-purpose lexer. > Apparently, it does not know

Re: does my module require a package?

2009-05-27 Thread Jean-Marc Lasgouttes
The parser for this file just uses LyX's general-purpose lexer. Apparently, it does not know about escaped quotes. Of course it does (when you ask nicely). Lexer::next(true) should do the trick. JMarc

Re: does my module require a package?

2009-05-27 Thread rgheck
Jean-Marc Lasgouttes wrote: The parser for this file just uses LyX's general-purpose lexer. Apparently, it does not know about escaped quotes. Of course it does (when you ask nicely). Lexer::next(true) should do the trick. OK, but how does this work on the first string you encounter? I.e.,

Re: does my module require a package?

2009-05-27 Thread Jean-Marc Lasgouttes
OK, but how does this work on the first string you encounter? I.e., we have something like: lex.setFile(...) while (lex.isOK()) { s = lex.getString(); lex.next(true); } but will this work the first time? It i strange that we do not need to start with a lex.next()... But Lexer is strange

does my module require a package?

2009-05-26 Thread Guenter Milde
Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das Modul fancybreak benötigt ein Paket, das in Ihrer LaTeX-Installation nicht enthalten ist. LaTeX wird wahrscheinlich keine Ausgabe erzeugen. Luckily, LaTeX

Re: does my module require a package?

2009-05-26 Thread rgheck
Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das Modul fancybreak benötigt ein Paket, das in Ihrer LaTeX-Installation nicht enthalten ist. LaTeX wird wahrscheinlich keine Ausgabe

Re: does my module require a package?

2009-05-26 Thread Stefano Franchi
On Tuesday 26 May 2009 08:59:10 am rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das Modul fancybreak benötigt ein Paket, das in Ihrer LaTeX-Installation nicht

Re: does my module require a package?

2009-05-26 Thread rgheck
Stefano Franchi wrote: On Tuesday 26 May 2009 08:59:10 am rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das Modul fancybreak benötigt ein Paket, das in Ihrer

Re: does my module require a package?

2009-05-26 Thread Stefano Franchi
On Tuesday 26 May 2009 05:46:55 pm rgheck wrote: Stefano Franchi wrote: On Tuesday 26 May 2009 08:59:10 am rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das

does my module require a package?

2009-05-26 Thread Guenter Milde
Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das Modul fancybreak benötigt ein Paket, das in Ihrer LaTeX-Installation nicht enthalten ist. LaTeX wird wahrscheinlich keine Ausgabe erzeugen. Luckily, LaTeX

Re: does my module require a package?

2009-05-26 Thread rgheck
Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das Modul fancybreak benötigt ein Paket, das in Ihrer LaTeX-Installation nicht enthalten ist. LaTeX wird wahrscheinlich keine Ausgabe

Re: does my module require a package?

2009-05-26 Thread Stefano Franchi
On Tuesday 26 May 2009 08:59:10 am rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das Modul fancybreak benötigt ein Paket, das in Ihrer LaTeX-Installation nicht

Re: does my module require a package?

2009-05-26 Thread rgheck
Stefano Franchi wrote: On Tuesday 26 May 2009 08:59:10 am rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das Modul fancybreak benötigt ein Paket, das in Ihrer

Re: does my module require a package?

2009-05-26 Thread Stefano Franchi
On Tuesday 26 May 2009 05:46:55 pm rgheck wrote: Stefano Franchi wrote: On Tuesday 26 May 2009 08:59:10 am rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das

does my module require a package?

2009-05-26 Thread Guenter Milde
Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das Modul fancybreak benötigt ein Paket, das in Ihrer LaTeX-Installation nicht enthalten ist. LaTeX wird wahrscheinlich keine Ausgabe erzeugen. Luckily, LaTeX

Re: does my module require a package?

2009-05-26 Thread rgheck
Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das Modul fancybreak benötigt ein Paket, das in Ihrer LaTeX-Installation nicht enthalten ist. LaTeX wird wahrscheinlich keine Ausgabe

Re: does my module require a package?

2009-05-26 Thread Stefano Franchi
On Tuesday 26 May 2009 08:59:10 am rgheck wrote: > Guenter Milde wrote: > > Dear List, > > > > whenever I load a file that loads the following package, I get a > > popup-window warning me that I am missing a package: > > > > Das Modul fancybreak benötigt ein Paket, das in > > Ihrer

Re: does my module require a package?

2009-05-26 Thread rgheck
Stefano Franchi wrote: On Tuesday 26 May 2009 08:59:10 am rgheck wrote: Guenter Milde wrote: Dear List, whenever I load a file that loads the following package, I get a popup-window warning me that I am missing a package: Das Modul fancybreak benötigt ein Paket, das in Ihrer

Re: does my module require a package?

2009-05-26 Thread Stefano Franchi
On Tuesday 26 May 2009 05:46:55 pm rgheck wrote: > Stefano Franchi wrote: > > On Tuesday 26 May 2009 08:59:10 am rgheck wrote: > >> Guenter Milde wrote: > >>> Dear List, > >>> > >>> whenever I load a file that loads the following package, I get a > >>> popup-window warning me that I am missing a