Fixing bugs 1844,1845

2005-03-26 Thread Martin Vermeer
I think I know how to do this... expect a patch soon. The options problem is in bufferparams.C: 623 // the options 624 if (!options.empty()) { 625 os \\options options '\n'; 626 } here also the empty string must be handled; I propose

Re: shown alnumsec

2005-03-26 Thread Michael-E. Voges
Hi JMarc, Am Freitag, 25. März 2005 16:55 schrieb Jean-Marc Lasgouttes: Michael-E I changed @startsection to embed sectioning. Is there a way Michael-E to show that embedded sectioning of - for example - Michael-E subsection in the text I write in LyX as embedded? What do you mean by

scrollbar whoes

2005-03-26 Thread Alfredo Braunstein
As a consequence of the fact that we currently never rebreak the full document, we ignore its vertical size in pixels. To implement a working scrollbar this is a bit of nuissance. One possibility (the most reasonable IMO) is to measure the size of the document in paragraphs (and fractions of a

Re: Fixing bugs 1844,1845

2005-03-26 Thread Juergen Spitzmueller
Martin Vermeer wrote: The options problem is in bufferparams.C:     623         // the options     624         if (!options.empty()) {     625                 os \\options options '\n';     626         } here also the empty string must be handled; I propose by \options none. What if

Re: Fixing bugs 1844,1845

2005-03-26 Thread Martin Vermeer
On Sat, Mar 26, 2005 at 03:03:02PM +0100, Juergen Spitzmueller wrote: Martin Vermeer wrote: The options problem is in bufferparams.C:     623         // the options     624         if (!options.empty()) {     625                 os \\options options '\n';     626         }

[Patch] Re: Fixing bugs 1844,1845

2005-03-26 Thread Martin Vermeer
On Sat, Mar 26, 2005 at 03:03:02PM +0100, Juergen Spitzmueller wrote: Martin Vermeer wrote: The options problem is in bufferparams.C:     623         // the options     624         if (!options.empty()) {     625                 os \\options options '\n';     626         }

Re: Patch for 1.3.X: vc-backend file quoting+CVS::checkOut

2005-03-26 Thread Lars Gullik Bjnnes
Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: | Here are the patch I propose to apply. We could have gone a bit | further and use QuoteName on log messages too, instead of the explicit | quoting. | Lars, still OK? yes -- Lgb

Re: [Patch] fix bug 1843

2005-03-26 Thread Lars Gullik Bjnnes
Martin Vermeer [EMAIL PROTECTED] writes: | See attached. | It fixes bug 1843 (\begin_header is missing pop-up when defining new | branch and applying), and looks also otherwise plausible (as in: just | forgetting something trivial). | OK to apply? Yes, this looks ok. -- Lgb

Re: [Patch] Re: Fixing bugs 1844,1845

2005-03-26 Thread Lars Gullik Bjnnes
Martin Vermeer [EMAIL PROTECTED] writes: | @@ -394,6 +395,10 @@ | int unknown_tokens = 0; | int line = -1; | int begin_header_line = -1; | + | + // Initialize parameters that may be/go lacking in header: | + params().branchlist().clear(); | + params().options =

Re: Cannot compile lyx-1.4cvs

2005-03-26 Thread Cengiz Gunay
On Thu, 24 Mar 2005, Georg Baum wrote: Cengiz Gunay wrote: However, now I have another error compiling the qt2/ui directory. Below first results of ``configure'' and then ``make'' follow. ... Strange. Are you sure that you have the correct devel package installed and it doesn't use

LyX 1.4cvs crash on Fedora Core 3

2005-03-26 Thread Ling Li
Hi, It has been a while that the latest 1.4cvs crashes on Fedora Core 3. It compiles OK (though the GTK frontend fails at a very late stage complaining about some class. sorry I don't write the error down.), but crashes without giving out any windows. Since everything is OK on Fedora Core 2, I

Fixing bugs 1844,1845

2005-03-26 Thread Martin Vermeer
I think I know how to do this... expect a patch soon. The options problem is in bufferparams.C: 623 // the options 624 if (!options.empty()) { 625 os << "\\options " << options << '\n'; 626 } here also the empty string must be handled; I

Re: shown alnumsec

2005-03-26 Thread Michael-E. Voges
Hi JMarc, Am Freitag, 25. März 2005 16:55 schrieb Jean-Marc Lasgouttes: > Michael-E> I changed @startsection to embed sectioning. Is there a way > Michael-E> to show that embedded sectioning of - for example - > Michael-E> subsection in the text I write in LyX as embedded? > What do you mean by

scrollbar whoes

2005-03-26 Thread Alfredo Braunstein
As a consequence of the fact that we currently never rebreak the full document, we ignore its vertical size in pixels. To implement a working scrollbar this is a bit of nuissance. One possibility (the most reasonable IMO) is to measure the size of the document in paragraphs (and fractions of a

Re: Fixing bugs 1844,1845

2005-03-26 Thread Juergen Spitzmueller
Martin Vermeer wrote: > The options problem is in bufferparams.C: > >     623         // the options >     624         if (!options.empty()) { >     625                 os << "\\options " << options << '\n'; >     626         } > > here also the empty string must be handled; I propose by >

Re: Fixing bugs 1844,1845

2005-03-26 Thread Martin Vermeer
On Sat, Mar 26, 2005 at 03:03:02PM +0100, Juergen Spitzmueller wrote: > Martin Vermeer wrote: > > The options problem is in bufferparams.C: > > > >     623         // the options > >     624         if (!options.empty()) { > >     625                 os << "\\options " << options << '\n'; > >    

[Patch] Re: Fixing bugs 1844,1845

2005-03-26 Thread Martin Vermeer
On Sat, Mar 26, 2005 at 03:03:02PM +0100, Juergen Spitzmueller wrote: > Martin Vermeer wrote: > > The options problem is in bufferparams.C: > > > >     623         // the options > >     624         if (!options.empty()) { > >     625                 os << "\\options " << options << '\n'; > >    

Re: Patch for 1.3.X: vc-backend file quoting+CVS::checkOut

2005-03-26 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | Here are the patch I propose to apply. We could have gone a bit | further and use QuoteName on log messages too, instead of the explicit | "quoting". > | Lars, still OK? yes -- Lgb

Re: [Patch] fix bug 1843

2005-03-26 Thread Lars Gullik Bjønnes
Martin Vermeer <[EMAIL PROTECTED]> writes: | See attached. > | It fixes bug 1843 ("\begin_header is missing" pop-up when defining new | branch and applying"), and looks also otherwise plausible (as in: just | forgetting something trivial). > | OK to apply? Yes, this looks ok. -- Lgb

Re: [Patch] Re: Fixing bugs 1844,1845

2005-03-26 Thread Lars Gullik Bjønnes
Martin Vermeer <[EMAIL PROTECTED]> writes: | @@ -394,6 +395,10 @@ | int unknown_tokens = 0; | int line = -1; | int begin_header_line = -1; | + | + // Initialize parameters that may be/go lacking in header: | + params().branchlist().clear(); | + params().options =

Re: Cannot compile lyx-1.4cvs

2005-03-26 Thread Cengiz Gunay
On Thu, 24 Mar 2005, Georg Baum wrote: > Cengiz Gunay wrote: > > > However, now I have another error compiling the qt2/ui directory. Below > > first results of ``configure'' and then ``make'' follow. > > ... > Strange. Are you sure that you have the correct devel package installed and > it

LyX 1.4cvs crash on Fedora Core 3

2005-03-26 Thread Ling Li
Hi, It has been a while that the latest 1.4cvs crashes on Fedora Core 3. It compiles OK (though the GTK frontend fails at a very late stage complaining about some class. sorry I don't write the error down.), but crashes without giving out any windows. Since everything is OK on Fedora Core 2, I