[solved] Re: tex2lyx uncompilable after r 40139

2011-11-06 Thread Uwe Stöhr
Am 06.11.2011 22:39, schrieb Peter Kümmel: Updating src_tex2lyx_copied_files in scons_manifest.py should fix it. here the cmake changes: http://www.lyx.org/trac/changeset/40139/lyx-devel/trunk/src/tex2lyx/CMakeLists.txt Georg did this already. For an unknown reason I had to delete all compile

Re: Canceling Background Export

2011-11-06 Thread Vincent van Ravesteijn
I did try the patch. I opened the user guide, previewed it as dvi, and cancelled. After that, I had to wait still a long time because the export just continued. Only the processes weren't started. Maybe this doesn't take that long in the release version, but still. Takes it so long to gener

Re: Canceling Background Export

2011-11-06 Thread Peter Kümmel
On 06.11.2011 23:02, Vincent van Ravesteijn wrote: Op 6-11-2011 22:42, Peter Kümmel schreef: On 06.11.2011 17:32, Peter Kümmel wrote: In the end, this all comes down to rewriting the export logic. I assume it isn't that complicated: kill all processes, and disable starting new ones until

Re: Canceling Background Export

2011-11-06 Thread Vincent van Ravesteijn
Op 6-11-2011 22:42, Peter Kümmel schreef: On 06.11.2011 17:32, Peter Kümmel wrote: In the end, this all comes down to rewriting the export logic. I assume it isn't that complicated: kill all processes, and disable starting new ones until the gui tells that the doExport is finished. See at

Re: Canceling Background Export

2011-11-06 Thread Peter Kümmel
On 06.11.2011 17:32, Peter Kümmel wrote: In the end, this all comes down to rewriting the export logic. I assume it isn't that complicated: kill all processes, and disable starting new ones until the gui tells that the doExport is finished. See attached patch. One problem is, all proces

Re: tex2lyx uncompilable after r 40139

2011-11-06 Thread Peter Kümmel
On 06.11.2011 21:29, Uwe Stöhr wrote: After r40139 I get 8 unresolved externals: Updating src_tex2lyx_copied_files in scons_manifest.py should fix it. here the cmake changes: http://www.lyx.org/trac/changeset/40139/lyx-devel/trunk/src/tex2lyx/CMakeLists.txt regards Uwe

tex2lyx uncompilable after r 40139

2011-11-06 Thread Uwe Stöhr
After r40139 I get 8 unresolved externals: preamble.obj : error LNK2019: unresolved external symbol "bool __cdecl lyx::oper ator==(class lyx::Author const &,class lyx::Author const &)" (??8lyx@@YA_NABVAut hor@0@0@Z) referenced in function "public: class lyx::Author const & __thiscall lyx::Preambl

Re: Canceling Background Export

2011-11-06 Thread Peter Kümmel
In the end, this all comes down to rewriting the export logic. I assume it isn't that complicated: kill all processes, and disable starting new ones until the gui tells that the doExport is finished. See attached patch. Peter I would guess it would look like this: 1. Get the conversion

SOLVED -- Re: Problems with LyX on (L)ubuntu oneiric

2011-11-06 Thread Micha H. Werner
>>> I tried to compile and run LyX 2.0.1 on (L)ubuntu Natty. It seemed to >>> compile properly, but when I run LyX from the terminal, I get the >>> strange messages you may find below. Also, LyX seems to crash more >>> often than under Ubuntu Lucid (where I compiled the same version and >>> where I

Re: Problems with LyX on (L)ubuntu oneiric

2011-11-06 Thread Micha H. Werner
2011/11/6 Vincent van Ravesteijn : > Op 6-11-2011 13:47, Micha H. Werner schreef: >> >> Dear all, >> I tried to compile and run LyX 2.0.1 on (L)ubuntu Natty. It seemed to >> compile properly, but when I run LyX from the terminal, I get the >> strange messages you may find below. Also, LyX seems to

Re: Problems with LyX on (L)ubuntu oneiric

2011-11-06 Thread Vincent van Ravesteijn
Op 6-11-2011 13:47, Micha H. Werner schreef: Dear all, I tried to compile and run LyX 2.0.1 on (L)ubuntu Natty. It seemed to compile properly, but when I run LyX from the terminal, I get the strange messages you may find below. Also, LyX seems to crash more often than under Ubuntu Lucid (where I

Correction: [PATCH 1/2] Converters: Add a queue of QueuedItems

2011-11-06 Thread Vincent van Ravesteijn
The first file wasn't part of the patch... From: Vincent van Ravesteijn --- src/Converter.cpp | 47 +++ src/Converter.h | 14 + 3 files changed, 701 insertions(+), 0 deletions(-) create mode 100644 development/coding/#newfile1.lyx# diff --git a/src/C

[PATCH 2/2] Queue the conversion of images and process later

2011-11-06 Thread vfr
From: Vincent van Ravesteijn --- src/Buffer.cpp |7 +++ src/insets/InsetGraphics.cpp | 16 +++- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 625c0ff..d2720a2 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.

[PATCH 1/2] Converters: Add a queue of QueuedItems

2011-11-06 Thread vfr
From: Vincent van Ravesteijn --- development/coding/#newfile1.lyx# | 640 + src/Converter.cpp | 47 +++ src/Converter.h | 14 + 3 files changed, 701 insertions(+), 0 deletions(-) create mode 100644 development/coding/#ne

[PATCH 0/2] Preparation for cancelling export jobs

2011-11-06 Thread vfr
From: Vincent van Ravesteijn The following two patches add a queue to Converter. In this way, all to-be-converted images are acquired and processed when the export of the LaTeX file is ready. In this way, we can process all conversions in a loop in Buffer::doExport, and we can check whether the

Re: Problems with LyX on (L)ubuntu oneiric

2011-11-06 Thread Micha H. Werner
2011/11/6 Vincent van Ravesteijn : > What is your Qt version ? 4.7.4

Re: Problems with LyX on (L)ubuntu oneiric

2011-11-06 Thread Vincent van Ravesteijn
Op 6-11-2011 13:47, Micha H. Werner schreef: Dear all, I tried to compile and run LyX 2.0.1 on (L)ubuntu Natty. It seemed to compile properly, but when I run LyX from the terminal, I get the strange messages you may find below. Also, LyX seems to crash more often than under Ubuntu Lucid (where I

Problems with LyX on (L)ubuntu oneiric

2011-11-06 Thread Micha H. Werner
Dear all, I tried to compile and run LyX 2.0.1 on (L)ubuntu Natty. It seemed to compile properly, but when I run LyX from the terminal, I get the strange messages you may find below. Also, LyX seems to crash more often than under Ubuntu Lucid (where I compiled the same version and where I don't get

Re: Canceling Background Export

2011-11-06 Thread Vincent van Ravesteijn
Op 5-11-2011 23:00, Abdelrazak Younes schreef: On 05/11/2011 18:25, Richard Heck wrote: On 11/05/2011 11:50 AM, Abdelrazak Younes wrote: On 05/11/2011 16:44, Richard Heck wrote: On 11/05/2011 03:12 AM, Vincent van Ravesteijn wrote: Op 4-11-2011 22:44, Richard Heck schreef: Hey, all, I've be

Re: LyX: Problems with sizes for different table

2011-11-06 Thread Jürgen Spitzmüller
watersnail wrote: > I am having problems setting up correct sizes of tables for lyx. > 1. Table 1 has 3 columns: set for 10%, 20%, and 70% (making a total of 100%) > 2. Table 2 has 4 columns: set for 10%, 20%, 30%, and 40%. > 3. Table 3 has 5 columns: set for 10%, 20%, 20%, 20%, and 30%. > > I nee