Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Tue, May 31, 2005 at 10:38:35PM +0200, Lars Gullik Bjønnes wrote: Martin Vermeer [EMAIL PROTECTED] writes: | On Tue, 2005-05-31 at 09:55, Lars Gullik Bjønnes wrote: Martin Vermeer [EMAIL PROTECTED] writes: So it seems to fix most problems we have and feels uniformly better that

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Lars Gullik Bjønnes
Martin Vermeer [EMAIL PROTECTED] writes: Ok. I did my tests. I must admit that I now find it unusable. No feedback on screen when using cursor keys for movement (on auto-repeat) Same with PageDown/PageUp. (except from the scrollbar) | Which I think is good enough. | I don't want to pay

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Tue, May 31, 2005 at 10:38:35PM +0200, Lars Gullik Bjønnes wrote: Martin Vermeer [EMAIL PROTECTED] writes: | On Tue, 2005-05-31 at 09:55, Lars Gullik Bjønnes wrote: Martin Vermeer [EMAIL PROTECTED] writes: So it seems to fix most problems we have and feels uniformly better that

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Wed, 2005-06-01 at 11:05, Lars Gullik Bjnnes wrote: Martin Vermeer [EMAIL PROTECTED] writes: Ok. I did my tests. I must admit that I now find it unusable. No feedback on screen when using cursor keys for movement (on auto-repeat) Same with PageDown/PageUp. (except from the

Re: Windows installer

2005-06-01 Thread Asger Alstrup
Angus Leeming wrote: Asger Alstrup wrote: Another bug: When you uninstall, it does not unregister the .lyx file association. I don't see this. It turned out that the Windows icon cache was playing tricks with me. A reboot changed the icon from the LyX create on a paper back to the Notepad

Re: Script alternative - Ch (Was: Windows installer)

2005-06-01 Thread Asger Alstrup
[EMAIL PROTECTED] wrote: The language called Ch might be an alternative, I guess it's advantage is that it's a superset of normal C, which everybody here already knows. Having said that, I've never actually done more with it than checked that I could actually write C statements on its shell

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Wed, 2005-06-01 at 11:55, Lars Gullik Bjnnes wrote: Martin Vermeer [EMAIL PROTECTED] writes: | On Wed, 2005-06-01 at 11:05, Lars Gullik Bjnnes wrote: Martin Vermeer [EMAIL PROTECTED] writes: Ok. I did my tests. I must admit that I now find it unusable. No feedback on screen

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Jean-Marc Lasgouttes
Martin + if (s == Up || s == Down || s == Left || s == Right) Martin + screen().showCursor(*bv_); Of course testing directly keys is not acceptable, but we could imagine to have a LyXAction flag that tells whether an action requires a screen update... JMarc

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Lars Gullik Bjønnes
Martin Vermeer [EMAIL PROTECTED] writes: how do you know when you get there? | 1) You go to almost the right place using key repeat and the scrollbar. | 2) You tap the PgDn key so it doesn't repeat, until you are there. | The same as aiming a telescope: release fine motion, swing to the |

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Wed, Jun 01, 2005 at 10:55:24AM +0200, Lars Gullik Bjønnes wrote: Martin Vermeer [EMAIL PROTECTED] writes: ... What the event queue accomplishes is to say that: We do not allow auto-repeat events to queue up faster than we are able to handle them. How does your event queue affect the

[PATCH] fix shortcut for plain text format

2005-06-01 Thread Jean-Marc Lasgouttes
Trivial. Committing. JMarc Index: lib/ChangeLog === RCS file: /usr/local/lyx/cvsroot/lyx-devel/lib/ChangeLog,v retrieving revision 1.704 diff -u -p -r1.704 ChangeLog --- lib/ChangeLog 25 May 2005 13:00:17 - 1.704 +++

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Wed, Jun 01, 2005 at 01:31:55PM +0200, Lars Gullik Bjønnes wrote: Martin Vermeer [EMAIL PROTECTED] writes: | On Wed, Jun 01, 2005 at 10:55:24AM +0200, Lars Gullik Bjønnes wrote: Martin Vermeer [EMAIL PROTECTED] writes: | ... | What the event queue accomplishes is to say that: We

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Jean-Marc Lasgouttes
Jean-Marc == Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: Jean-Marc The following (trivial) patch fixes bug 1890. Although it Jean-Marc is a satisfactory fix (insert the optarg inset as open Jean-Marc instead of collapsed, like for all other collapsable Jean-Marc insets), it hides a more

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Martin Vermeer
On Wed, 2005-06-01 at 15:44, Jean-Marc Lasgouttes wrote: Jean-Marc == Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: Jean-Marc The following (trivial) patch fixes bug 1890. Although it Jean-Marc is a satisfactory fix (insert the optarg inset as open Jean-Marc instead of collapsed, like for

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Jean-Marc Lasgouttes
Martin == Martin Vermeer [EMAIL PROTECTED] writes: Martin I would say there are two different real value pairs, as there Martin are two insets within each other. The collapsable inset uses Martin its own draw method, and the textinset inside it, its own. Martin The fact that InsetCollapsable

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Martin Vermeer
On Wed, 2005-06-01 at 16:08, Jean-Marc Lasgouttes wrote: Martin == Martin Vermeer [EMAIL PROTECTED] writes: Martin I would say there are two different real value pairs, as there Martin are two insets within each other. The collapsable inset uses Martin its own draw method, and the textinset

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Jean-Marc Lasgouttes
Martin == Martin Vermeer [EMAIL PROTECTED] writes: Martin Hmmm. This Martin 43 InsetCollapsable::InsetCollapsable Martin 44 (BufferParams const bp, CollapseStatus status) Martin 45 : InsetText(bp), label(Label), status_(status), openinlined_(false) Martin 46 { Martin

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Angus Leeming
Martin Vermeer wrote: Martin I would say there are two different real value pairs, as there Martin are two insets within each other. The collapsable inset uses Martin its own draw method, and the textinset inside it, its own. Martin The fact that InsetCollapsable derives from InsetText is a red

Re: gtk version feedback

2005-06-01 Thread Jean-Marc Lasgouttes
John == John Spray [EMAIL PROTECTED] writes: John On Fri, 2005-05-27 at 16:37 +0200, Jean-Marc Lasgouttes wrote: Another (somewhat unrelated) problem is that we should not build lyx-xforms unless explicitely requested. The following patch does that (build the frontend directory but not the

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Georg Baum
Jean-Marc Lasgouttes wrote: Jean-Marc == Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: Jean-Marc The following (trivial) patch fixes bug 1890. Although it Jean-Marc is a satisfactory fix (insert the optarg inset as open Jean-Marc instead of collapsed, like for all other collapsable

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Jean-Marc Lasgouttes
Georg == Georg Baum [EMAIL PROTECTED] writes: Georg Jean-Marc Lasgouttes wrote: Jean-Marc == Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: Jean-Marc The following (trivial) patch fixes bug 1890. Although it Jean-Marc is a satisfactory fix (insert the optarg inset as open Jean-Marc instead of

Re: tex2lyx and included files

2005-06-01 Thread Georg Baum
Jean-Pierre Chrétien wrote: I'd uploaded a sunos version on the wiki including these changes, without waiting for Georg to commit them if he founds appropriate, Thanks. I simplified the logic a bit and committed the attached patch. BTW, please use unified diffs (diff -u) the next time, it is

Re: tex2lyx + international characters = redundant braces in lyx (1.3)?

2005-06-01 Thread Georg Baum
Sven Schreiber wrote: Example: the latex input So{\ss}e should appear as Soße in the lyx file. (Hope the German es-zett is preserved in the mail.) What appears is: Soert{/ertßert}/erte. Tried to workaround with So\ss{}e, which gives Soßert{/ertert}/erte (still two different ert insets)

Re: tex2lyx and included files

2005-06-01 Thread Jean-Pierre Chrétien
Georg Baum [EMAIL PROTECTED] writes: Jean-Pierre Chrtien wrote: I'd uploaded a sunos version on the wiki including these changes, without waiting for Georg to commit them if he founds appropriate, Thanks. I simplified the logic a bit and committed the attached patch. BTW, please use

Re: tex2lyx and included files

2005-06-01 Thread Jean-Pierre Chrétien
Georg Baum [EMAIL PROTECTED] writes: This will hopefully not be necessary anymore with 1.3.6, because we plan to make it read newer files with automatic conversion. I see that in the new Wiki page http://wiki.lyx.org/LaTeX/Tex2LyxInvokedFromLyx there is no provision to deal with multipart

Re: tex2lyx + international characters = redundant braces in lyx (1.3)?

2005-06-01 Thread Jean-Pierre Chrétien
Georg Baum [EMAIL PROTECTED] writes: Sven Schreiber wrote: Example: the latex input So{\ss}e should appear as Soe in the lyx file. (Hope the German es-zett is preserved in the mail.) What appears is: Soert{/ertert}/erte. Tried to workaround with So\ss{}e, which gives

Re: tex2lyx and included files

2005-06-01 Thread Angus Leeming
Jean-Pierre Chrétien wrote: I see that in the new Wiki page http://wiki.lyx.org/LaTeX/Tex2LyxInvokedFromLyx there is no provision to deal with multipart (La)TeX docs. When is 1.3.6 planned ? If it's coming very soon, it's not worth doing scripting for backconversion. I'd say that it was coming

Re: Script alternative - Ch (Was: Windows installer)

2005-06-01 Thread cmkleffner
I'm not a lyx developer, however I'm willing to help in the windows lyx / python task. It is not a big task to develop a customized tiny ( 2M) python distro with cx_freeze or similar tools which can be delivered with a windows lyx installer and does not infere with a possibly installed python

Re: tex2lyx and included files

2005-06-01 Thread Georg Baum
Jean-Pierre Chrétien wrote: If you think that Not overwriting existing file /tmp/tex2lyx_depend/chapters/intro.lyx is enough, remove what I added, but as I was misleaded by the message (I thought that an user might want to keep a previous satisfactory conversion result), others may be

Re: tex2lyx + international characters = redundant braces in lyx (1.3)?

2005-06-01 Thread Georg Baum
Jean-Pierre Chrétien wrote: The same happens with French ligatures OE and oe. In lyx I have a shortcut to type in \oe{}, as c\oe{}ur, and a round trip retrieves cert\oe/ertert{/ertert}/ertur. Does LyX support \oe and \OE natively? If yes, we should convert \oe to the native format (an

Re: Script alternative - Ch (Was: Windows installer)

2005-06-01 Thread Angus Leeming
[EMAIL PROTECTED] wrote: I'm not a lyx developer, however I'm willing to help in the windows lyx / python task. It is not a big task to develop a customized tiny ( 2M) python distro with cx_freeze or similar tools which can be delivered with a windows lyx installer and does not infere with a

[PATCH] de.po update

2005-06-01 Thread Michael Schmitt
Hello, I have made some changes to de.po. Please apply the patch (hopefully for the last time, because Lars, the mighty, promised to give me write access to the repository :-) ). Thanks in advance, Michael patch-de.po.diff.bz2 Description: Binary data

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Tue, May 31, 2005 at 10:38:35PM +0200, Lars Gullik Bjønnes wrote: > Martin Vermeer <[EMAIL PROTECTED]> writes: > > | On Tue, 2005-05-31 at 09:55, Lars Gullik Bjønnes wrote: > >> Martin Vermeer <[EMAIL PROTECTED]> writes: > >> > >> >> So it seems to fix most problems we have and feels

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Lars Gullik Bjønnes
Martin Vermeer <[EMAIL PROTECTED]> writes: >> Ok. I did my tests. >> >> I must admit that I now find it unusable. No feedback on screen when >> using cursor keys for movement (on auto-repeat) >> >> Same with PageDown/PageUp. (except from the scrollbar) > | Which I think is good enough. | I

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Tue, May 31, 2005 at 10:38:35PM +0200, Lars Gullik Bjønnes wrote: > Martin Vermeer <[EMAIL PROTECTED]> writes: > > | On Tue, 2005-05-31 at 09:55, Lars Gullik Bjønnes wrote: > >> Martin Vermeer <[EMAIL PROTECTED]> writes: > >> > >> >> So it seems to fix most problems we have and feels

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Wed, 2005-06-01 at 11:05, Lars Gullik Bjønnes wrote: > Martin Vermeer <[EMAIL PROTECTED]> writes: > > >> Ok. I did my tests. > >> > >> I must admit that I now find it unusable. No feedback on screen when > >> using cursor keys for movement (on auto-repeat) > >> > >> Same with

Re: Windows installer

2005-06-01 Thread Asger Alstrup
Angus Leeming wrote: Asger Alstrup wrote: Another bug: When you uninstall, it does not unregister the .lyx file association. I don't see this. It turned out that the Windows icon cache was playing tricks with me. A reboot changed the icon from the LyX create on a paper back to the Notepad

Re: Script alternative - Ch (Was: Windows installer)

2005-06-01 Thread Asger Alstrup
[EMAIL PROTECTED] wrote: The language called "Ch" might be an alternative, I guess it's advantage is that it's a superset of normal C, which everybody here already knows. Having said that, I've never actually done more with it than checked that I could actually write C statements on its shell

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Wed, 2005-06-01 at 11:55, Lars Gullik Bjønnes wrote: > Martin Vermeer <[EMAIL PROTECTED]> writes: > > | On Wed, 2005-06-01 at 11:05, Lars Gullik Bjønnes wrote: > >> Martin Vermeer <[EMAIL PROTECTED]> writes: > >> > >> >> Ok. I did my tests. > >> >> > >> >> I must admit that I now find it

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Jean-Marc Lasgouttes
Martin> + if (s == "Up" || s == "Down" || s == "Left" || s == "Right") Martin> + screen().showCursor(*bv_); Of course testing directly keys is not acceptable, but we could imagine to have a LyXAction flag that tells whether an action requires a screen update... JMarc

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Lars Gullik Bjønnes
Martin Vermeer <[EMAIL PROTECTED]> writes: >> how do you know when you get there? > | 1) You go to almost the right place using key repeat and the scrollbar. > | 2) You tap the PgDn key so it doesn't repeat, until you are there. > | The same as aiming a telescope: release fine motion, swing to

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Wed, Jun 01, 2005 at 10:55:24AM +0200, Lars Gullik Bjønnes wrote: > Martin Vermeer <[EMAIL PROTECTED]> writes: ... > What the event queue accomplishes is to say that: "We do not allow > auto-repeat events to queue up faster than we are able to handle > them." How does your event queue

[PATCH] fix shortcut for plain text format

2005-06-01 Thread Jean-Marc Lasgouttes
Trivial. Committing. JMarc Index: lib/ChangeLog === RCS file: /usr/local/lyx/cvsroot/lyx-devel/lib/ChangeLog,v retrieving revision 1.704 diff -u -p -r1.704 ChangeLog --- lib/ChangeLog 25 May 2005 13:00:17 - 1.704 +++

Re: [Patch] Re: [patch] key event queue

2005-06-01 Thread Martin Vermeer
On Wed, Jun 01, 2005 at 01:31:55PM +0200, Lars Gullik Bjønnes wrote: > Martin Vermeer <[EMAIL PROTECTED]> writes: > > | On Wed, Jun 01, 2005 at 10:55:24AM +0200, Lars Gullik Bjønnes wrote: > >> Martin Vermeer <[EMAIL PROTECTED]> writes: > > > | ... > | > >> What the event queue accomplishes is

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Jean-Marc Lasgouttes
> "Jean-Marc" == Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: Jean-Marc> The following (trivial) patch fixes bug 1890. Although it Jean-Marc> is a satisfactory fix (insert the optarg inset as open Jean-Marc> instead of collapsed, like for all other collapsable Jean-Marc> insets), it hides

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Martin Vermeer
On Wed, 2005-06-01 at 15:44, Jean-Marc Lasgouttes wrote: > > "Jean-Marc" == Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: > > Jean-Marc> The following (trivial) patch fixes bug 1890. Although it > Jean-Marc> is a satisfactory fix (insert the optarg inset as open > Jean-Marc> instead of

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Jean-Marc Lasgouttes
> "Martin" == Martin Vermeer <[EMAIL PROTECTED]> writes: Martin> I would say there are two different real value pairs, as there Martin> are two insets within each other. The collapsable inset uses Martin> its own draw method, and the textinset inside it, its own. Martin> The fact that

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Martin Vermeer
On Wed, 2005-06-01 at 16:08, Jean-Marc Lasgouttes wrote: > > "Martin" == Martin Vermeer <[EMAIL PROTECTED]> writes: > > Martin> I would say there are two different real value pairs, as there > Martin> are two insets within each other. The collapsable inset uses > Martin> its own draw method,

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Jean-Marc Lasgouttes
> "Martin" == Martin Vermeer <[EMAIL PROTECTED]> writes: Martin> Hmmm. This Martin> 43 InsetCollapsable::InsetCollapsable Martin> 44 (BufferParams const & bp, CollapseStatus status) Martin> 45 : InsetText(bp), label("Label"), status_(status), openinlined_(false)

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Angus Leeming
Martin Vermeer wrote: Martin> I would say there are two different real value pairs, as there Martin> are two insets within each other. The collapsable inset uses Martin> its own draw method, and the textinset inside it, its own. Martin> The fact that InsetCollapsable derives from InsetText is a

Re: gtk version feedback

2005-06-01 Thread Jean-Marc Lasgouttes
> "John" == John Spray <[EMAIL PROTECTED]> writes: John> On Fri, 2005-05-27 at 16:37 +0200, Jean-Marc Lasgouttes wrote: >> Another (somewhat unrelated) problem is that we should not build >> lyx-xforms unless explicitely requested. The following patch does >> that (build the frontend

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Georg Baum
Jean-Marc Lasgouttes wrote: >> "Jean-Marc" == Jean-Marc Lasgouttes >> <[EMAIL PROTECTED]> writes: > > Jean-Marc> The following (trivial) patch fixes bug 1890. Although it > Jean-Marc> is a satisfactory fix (insert the optarg inset as open > Jean-Marc> instead of collapsed, like for all

Re: [PATCH] bug 1890: insetoptarg triggers assertion

2005-06-01 Thread Jean-Marc Lasgouttes
> "Georg" == Georg Baum <[EMAIL PROTECTED]> writes: Georg> Jean-Marc Lasgouttes wrote: >>> "Jean-Marc" == Jean-Marc Lasgouttes >>> <[EMAIL PROTECTED]> writes: >> Jean-Marc> The following (trivial) patch fixes bug 1890. Although it Jean-Marc> is a satisfactory fix (insert the optarg

Re: tex2lyx and included files

2005-06-01 Thread Georg Baum
Jean-Pierre Chrétien wrote: > I'd uploaded a sunos version on the wiki including these changes, > without waiting for Georg to commit them if he founds appropriate, Thanks. I simplified the logic a bit and committed the attached patch. BTW, please use unified diffs (diff -u) the next time, it is

Re: tex2lyx + international characters = redundant braces in lyx (1.3)?

2005-06-01 Thread Georg Baum
Sven Schreiber wrote: > Example: the latex input So{\ss}e should appear as Soße in the lyx file. > (Hope the German es-zett is preserved in the mail.) What appears is: > So{ß}e. > > Tried to workaround with So\ss{}e, which gives > Soß{}e (still two different ert insets) Thanks for the report,

Re: tex2lyx and included files

2005-06-01 Thread Jean-Pierre Chrétien
Georg Baum <[EMAIL PROTECTED]> writes: > > Jean-Pierre Chrétien wrote: > > > I'd uploaded a sunos version on the wiki including these changes, > > without waiting for Georg to commit them if he founds appropriate, > > Thanks. I simplified the logic a bit and committed the attached patch. BTW,

Re: tex2lyx and included files

2005-06-01 Thread Jean-Pierre Chrétien
Georg Baum <[EMAIL PROTECTED]> writes: > This will hopefully not be necessary anymore with 1.3.6, because we plan to > make it read newer files with automatic conversion. I see that in the new Wiki page http://wiki.lyx.org/LaTeX/Tex2LyxInvokedFromLyx there is no provision to deal with

Re: tex2lyx + international characters = redundant braces in lyx (1.3)?

2005-06-01 Thread Jean-Pierre Chrétien
Georg Baum <[EMAIL PROTECTED]> writes: > > Sven Schreiber wrote: > > > Example: the latex input So{\ss}e should appear as Soße in the lyx file. > > (Hope the German es-zett is preserved in the mail.) What appears is: > > So{ß}e. > > > > Tried to workaround with So\ss{}e, which gives > > Soß{}e

Re: tex2lyx and included files

2005-06-01 Thread Angus Leeming
Jean-Pierre Chrétien wrote: I see that in the new Wiki page http://wiki.lyx.org/LaTeX/Tex2LyxInvokedFromLyx there is no provision to deal with multipart (La)TeX docs. When is 1.3.6 planned ? If it's coming very soon, it's not worth doing scripting for backconversion. I'd say that it was coming

Re: Script alternative - Ch (Was: Windows installer)

2005-06-01 Thread cmkleffner
I'm not a lyx developer, however I'm willing to help in the windows lyx / python task. It is not a big task to develop a customized tiny (< 2M) python distro with cx_freeze or similar tools which can be delivered with a windows lyx installer and does not infere with a possibly installed

Re: tex2lyx and included files

2005-06-01 Thread Georg Baum
Jean-Pierre Chrétien wrote: > If you think that > Not overwriting existing file /tmp/tex2lyx_depend/chapters/intro.lyx > is enough, remove what I added, but as I was misleaded by the message > (I thought that an user might want to keep a previous > satisfactory conversion result), others may be

Re: tex2lyx + international characters = redundant braces in lyx (1.3)?

2005-06-01 Thread Georg Baum
Jean-Pierre Chrétien wrote: > The same happens with French ligatures OE and oe. > In lyx I have a shortcut to type in \oe{}, as c\oe{}ur, > and a round trip retrieves c\oe{}ur. Does LyX support \oe and \OE natively? If yes, we should convert \oe to the native format (an inset?), if not we

Re: Script alternative - Ch (Was: Windows installer)

2005-06-01 Thread Angus Leeming
[EMAIL PROTECTED] wrote: I'm not a lyx developer, however I'm willing to help in the windows lyx / python task. It is not a big task to develop a customized tiny (< 2M) python distro with cx_freeze or similar tools which can be delivered with a windows lyx installer and does not infere with

[PATCH] de.po update

2005-06-01 Thread Michael Schmitt
Hello, I have made some changes to de.po. Please apply the patch (hopefully for the last time, because Lars, the mighty, promised to give me write access to the repository :-) ). Thanks in advance, Michael patch-de.po.diff.bz2 Description: Binary data