Re: No Mouse scrolling in LyX 2.0 - Mac?

2010-08-02 Thread Jürgen Spitzmüller
Jean-Marc LASGOUTTES wrote: > > Jean-Marc LASGOUTTES wrote: > >> > Really cool! It works with one small correction: the convert() > >> > function cannot handle the double value. I changed the patch > >> > accordingly and attach it again. > >> > >> > >> > >> Very good. I applied it. Am I right that

Re: No Mouse scrolling in LyX 2.0 - Mac?

2010-08-02 Thread Jean-Marc LASGOUTTES
Jürgen Spitzmüller writes: > Jean-Marc LASGOUTTES wrote: >> > Really cool! It works with one small correction: the convert() function >> > cannot handle the double value. I changed the patch accordingly and >> > attach it again. >> >> Very good. I applied it. Am I right that this is needed in 1.

Re: No Mouse scrolling in LyX 2.0 - Mac?

2010-08-02 Thread Jean-Marc LASGOUTTES
Jürgen Spitzmüller writes: > The message I referred to turned out to be a misunderstanding (the user used > trunk and thought it was branch). Doh! Indeed. > Nevertheless, the commit seems appropriate. I hope so. It _looks_ safe, but one never knows... JMarc

Re: No Mouse scrolling in LyX 2.0 - Mac?

2010-08-02 Thread Jürgen Spitzmüller
Jean-Marc LASGOUTTES wrote: > > Nevertheless, the commit seems appropriate. > > I hope so. It looks safe, but one never knows... So everybody please test mouse scrolling in branch. (it still works here) Jürgen

Re: confusion of tongues

2010-08-02 Thread Michal
> FYI these installers are now online. > > Jürgen I'm using the alternate installer and I've also found, that the UI language option is ignored. This installer has not been updated yet. However, I've found that the following batch file (inside 'bin' directory) gives me an English UI: set LANG

platex as the default latex command?

2010-08-02 Thread Manuel Pégourié-Gonnard
Hi, First of all, I'd like to mention I'm no Lyx user (just never got to test it), but a maintainer of TeX Live. Recently, we got an report [1] from a Lyx user that some of his documents stopped working after upgrading from TeX Live 2009 to 2010-pretest. [1] http://tug.org/pipermail/tex-live/2010

Re: platex as the default latex command?

2010-08-02 Thread Jürgen Spitzmüller
Manuel Pégourié-Gonnard wrote: > First of all, I'd like to mention I'm no Lyx user (just never got to test > it), but a maintainer of TeX Live. Recently, we got an report [1] from a > Lyx user that some of his documents stopped working after upgrading from > TeX Live 2009 to 2010-pretest. > > [1]

Re: platex as the default latex command?

2010-08-02 Thread Jürgen Spitzmüller
Jürgen Spitzmüller wrote: > > First of all, I'd like to mention I'm no Lyx user (just never got to test > > it), but a maintainer of TeX Live. Recently, we got an report [1] from a > > Lyx user that some of his documents stopped working after upgrading from > > TeX Live 2009 to 2010-pretest. > > >

Re: platex as the default latex command?

2010-08-02 Thread Jean-Marc LASGOUTTES
Jürgen Spitzmüller writes: > Jürgen Spitzmüller wrote: >> > First of all, I'd like to mention I'm no Lyx user (just never got to test >> > it), but a maintainer of TeX Live. Recently, we got an report [1] from a >> > Lyx user that some of his documents stopped working after upgrading from >> > Te

Re: Improvements to Lyx user interface

2010-08-02 Thread Helge Hafting
On 29. juli 2010 20:58, Alberto Malagoli wrote: Hi all, I'd like to share with you some ideas about Lyx user interface, and how can be improved... I made a presentation with the explanation of my thoughts, you can find it here: https://docs.google.com/present/view?id=dckbsjn9_41f57jwcdh I a

Re: platex as the default latex command?

2010-08-02 Thread Jürgen Spitzmüller
Jean-Marc LASGOUTTES wrote: > > The attached patch strikes me like the correct fix. > > -path, LATEX = checkProg('a Latex2e program', ['latex $$i', 'platex > > $$i', 'latex2e $$i']) +path, LATEX = checkProg('a Latex2e program', > > ['latex $$i', 'latex2e $$i']) > > Does this mean that 'lat

Re: r35040 - lyx-devel/trunk/src/frontends/qt4

2010-08-02 Thread Jürgen Spitzmüller
spitz wrote: > Author: spitz > Date: Mon Aug 2 18:38:41 2010 > New Revision: 35040 > URL: http://www.lyx.org/trac/changeset/35040 > > Log: > * GuiLog.cpp: refine warning detection: > - detect "LaTeX Font Warning" > - detect "Class X Warning" > - package warnings can contai

Re: r35040 - lyx-devel/trunk/src/frontends/qt4

2010-08-02 Thread Jean-Marc Lasgouttes
Log: * GuiLog.cpp: refine warning detection: - detect "LaTeX Font Warning" - detect "Class X Warning" - package warnings can contain dots ("Package pdftex.def Warning") -QRegExp exprWarning("^(LaTeX Warning|Package \\w+ Warning).*$"); +QRegExp exprWarning("^(LaTeX Warning|

Re: platex as the default latex command?

2010-08-02 Thread Jean-Marc Lasgouttes
Le 2 août 10 à 17:58, Jürgen Spitzmüller a écrit : No. "latex" is found and ascribed to the LATEX variable. But later (line 215), is is replaced by "platex" (given that platex was found): if cmdOutput(PLATEX + ' chklatex.ltx').find('pLaTeX2e') != -1: # We have the Japanese

Re: r35040 - lyx-devel/trunk/src/frontends/qt4

2010-08-02 Thread Jürgen Spitzmüller
Jean-Marc Lasgouttes wrote: > > -QRegExp exprWarning("^(LaTeX Warning|Package \\w+ Warning).*$"); > > +QRegExp exprWarning("^(LaTeX Warning|LaTeX Font Warning|Package [\\w > > \\.]+ Warning|Class \\w+ Warning).*$"); > > Why not factor " Warning" out of the parenthesis? You mean QRegExp exprWarni

Re: Beta plans (again)

2010-08-02 Thread Stephan Witt
Am 02.08.2010 um 01:55 schrieb Jean-Marc Lasgouttes: > Le 26 juil. 10 à 14:30, Stephan Witt a écrit : >> My next target (for beta phase?) would be to check the installation issues >> on mac to make the application working out-of-the-box. > > What about removing the complicated mac-specific code

Re: r35040 - lyx-devel/trunk/src/frontends/qt4

2010-08-02 Thread Jean-Marc Lasgouttes
Le 2 août 10 à 19:29, Jürgen Spitzmüller a écrit : Why not factor " Warning" out of the parenthesis? You mean QRegExp exprWarning("^(LaTeX|LaTeX Font|Package [\\w\\.]+|Class \\w+) Warning.*$"); ? (sorry, I'm not so good at regexing). Yes, but if you find the first solution more readable, you

Re: Beta plans (again)

2010-08-02 Thread Jean-Marc Lasgouttes
Le 2 août 10 à 20:57, Stephan Witt a écrit : I'm a little bit sorrowful that the native spell checker is not fast enough for continuously checking when doing it word-wise. So we are not ready to switch off aspell :( Currently I have no time to improve the situation. I think I hqve some. I'll

Re: [patch] revtex 4.1 support

2010-08-02 Thread Julien Rioux
On 01/08/2010 3:54 AM, Jürgen Spitzmüller wrote: Julien Rioux wrote: Here is a patch against latest trunk for a REVTeX 4.1 layout and template file. Could you briefly decribe the changes wrt ReVTeX 4, or are there too many? Jürgen The changes to the latex class are described here: [1]. On

Re: [patch] revtex 4.1 support

2010-08-02 Thread Julien Rioux
When I said "edit a LyX file" I meant with an external plain text editor. It confuses the LyX GUI a bit but compiles fine with the expected result. -- Julien

Re: No Mouse scrolling in LyX 2.0 - Mac?

2010-08-02 Thread Stephan Witt
Am 02.08.2010 um 12:41 schrieb Jürgen Spitzmüller: > Jean-Marc LASGOUTTES wrote: >>> Nevertheless, the commit seems appropriate. >> >> I hope so. It looks safe, but one never knows... > > So everybody please test mouse scrolling in branch. > (it still works here) Works for me with scroll pad o

Re: [patch] layout dependencies

2010-08-02 Thread Guenter Milde
On 2010-07-30, Julien Rioux wrote: > This is a multi-part message in MIME format. > --030503040800070104030405 > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > Content-Transfer-Encoding: 7bit > Hi LyX developers, > LyX 2.0 now has a new mechanism for relaying layout dep

Re: Beta plans (again)

2010-08-02 Thread Jean-Marc Lasgouttes
Le 2 août 10 à 20:57, Stephan Witt a écrit : I'm a little bit sorrowful that the native spell checker is not fast enough for continuously checking when doing it word-wise. So we are not ready to switch off aspell :( Currently I have no time to improve the situation. I do not manage to get th

Re: Beta plans (again)

2010-08-02 Thread Stephan Witt
Am 03.08.2010 um 00:35 schrieb Jean-Marc Lasgouttes: > Le 2 août 10 à 20:57, Stephan Witt a écrit : >> I'm a little bit sorrowful that the native spell checker is not fast enough >> for continuously checking when doing it word-wise. >> So we are not ready to switch off aspell :( >> >> Currently

Re: [patch] revtex 4.1 support

2010-08-02 Thread Jürgen Spitzmüller
Julien Rioux wrote: > The changes to the latex class are described here: [1]. My question boils down to: does it make sense to ship layouts for RevTeX, RevTeX 4 and RevTeX 4.1 in parallel with LyX? Jürgen