Re: error using relyx

2003-07-21 Thread Juergen Spitzmueller
Nirmal Govind wrote: > Thanks Angus.. I compiled it as you directed and it worked... > actually the original file was a Word doc which I converted to rtf > and then got SciWord to convert the rtf to Latex. So after this > conversion and the one by tex2lyx, the final LyX document doesn't match > the

Re: Add row broken still

2003-07-21 Thread Garst R. Reese
Andre Poenitz wrote: > It's my fault... I guessed that from the ChangeLogs :) Do you have an ETA for a fix? anyway, KUTGW Garst text not available! no text in cache! InsetTabular::updateLocal: 0 create: first_id orig: 5 create: last_id orig:5 create: first_id: 5 create: last_id:

Re: error using relyx

2003-07-21 Thread Nirmal Govind
> Given that nobody is keen to take up 88maintenance of reLyX and given > that an alternative, tex2lyx, exists, at least in current cvs, I'd > suggest you try this latter program. Thanks Angus.. I compiled it as you directed and it worked... actually the original file was a Word doc which I conver

Re: [PATCH] metrics fix

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 08:39:49PM +0100, John Levon wrote: > OK, a better version. This has two obvious remaining problems: o minipage - we need to add another width meaning "total width" for the benefit of the 50% page width calculation etc. o inlined ERT - tougher. We need to know the actual

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Lars Gullik Bjønnes
Martin Vermeer <[EMAIL PROTECTED]> writes: | > | + Branch br; | > | > this too? | | Yes. Move them into the loop then. | > | + for (;;) { | > | > A bit too C-like to me. I prefere while (true), matter of taste I | > guess. | | I had a while there earlier... a wrong one tho :-) w

[13x patch]: xforms linking

2003-07-21 Thread Angus Leeming
This patch seems to have been forgotten. It allows linking against all supported versions of the xforms library, both before and after the xforms migration to GNU autotools. It has been in the 14x tree for sometime. I tested it very thoroughly before I dissappeared at the end of June. It works

Re: [sample patch]: FileName class

2003-07-21 Thread Angus Leeming
Lars Gullik Bjønnes wrote: > John Levon <[EMAIL PROTECTED]> writes: > > | On Mon, Jul 21, 2003 at 06:21:17PM +0200, Lars Gullik Bj?nnes wrote: > | > | > boost::filesystem. > | > | You were against replacing our stuff with that last time I asked about > | it. > | > | Besides, that's an absolute

Re: [sample patch]: FileName class

2003-07-21 Thread Lars Gullik Bjønnes
John Levon <[EMAIL PROTECTED]> writes: | On Mon, Jul 21, 2003 at 06:21:17PM +0200, Lars Gullik Bj?nnes wrote: | | > boost::filesystem. | | You were against replacing our stuff with that last time I asked about | it. | | Besides, that's an absolutely massive patch (and I am strongly against | on

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Martin Vermeer
On Mon, Jul 21, 2003 at 09:58:28PM +0200, Juergen Spitzmueller spake thusly: > > Juergen Spitzmueller wrote: > > > Someone not me should try this out. > > > > I'll have a go during the next days. > > ControlBranch.[Ch] is missing in the patch. Can you send me those files > separately please? >

Re: [PATCH] metrics fix

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 08:39:49PM +0100, John Levon wrote: > Another patch, taking inspiration from where Andre was heading I > believe. Compiling it now, probably won't work, but the idea is clear - Sigh. Broke insetminipage (understandable why, fix is to pass *two* widths in metrics info), but

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Juergen Spitzmueller
Juergen Spitzmueller wrote: > > Someone not me should try this out. > > I'll have a go during the next days. ControlBranch.[Ch] is missing in the patch. Can you send me those files separately please? Thanks, Juergen.

Re: [PATCH] metrics fix

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 07:54:30PM +0100, John Levon wrote: > The actual red frame drawing itself is a bit tougher. I'm looking into > it. Another patch, taking inspiration from where Andre was heading I believe. Compiling it now, probably won't work, but the idea is clear - dump the horrendous w

Table slowness ?

2003-07-21 Thread John Levon
Andre, what is the source of the table slowness at the moment ? Just trying to catch up john

[PATCH] metrics fix

2003-07-21 Thread John Levon
This moves the inset metrics update from the (very frequent) singleWidth() function into rowBreakPoint(). This has two advantages : o no metrics recalculation for something that should be const-like o we can work out the remaining width in order to break inset contents properly Please test it.

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Juergen Spitzmueller
Martin Vermeer wrote: > Someone not me should try this out. I'll have a go during the next days. Juergen

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Martin Vermeer
On Mon, Jul 21, 2003 at 06:19:12PM +0200, Lars Gullik Bjønnes spake thusly: > > Angus Leeming <[EMAIL PROTECTED]> writes: > > | This is going to bomb unless you add a return statement > | +void BranchList::setColor(string const & s, string const & val) > | +{ > | + List::iterator it = list.

Re: [sample patch]: FileName class

2003-07-21 Thread Angus Leeming
Lars Gullik Bjønnes wrote: > | Do people think this is a clean solution? Should I move the class into > | its own files rather than putting it in support/filetools.[Ch]? > > Well... I think the boost::path stuff would do this... > > | Comments please. > > boost::filesystem. My proposal:

Re: [sample patch]: FileName class

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 06:21:17PM +0200, Lars Gullik Bj?nnes wrote: > boost::filesystem. You were against replacing our stuff with that last time I asked about it. Besides, that's an absolutely massive patch (and I am strongly against only using bits of boost::filesystem and bits of our support

Re: [sample patch]: FileName class

2003-07-21 Thread Lars Gullik Bjønnes
Angus Leeming <[EMAIL PROTECTED]> writes: | I remember having a rant sometime ago about the need for something better | than our current handling of file names. My proposal was to have a helper | class that would enable us to 'do the right thing' when reading/writing the | buffer to file: | |

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Lars Gullik Bjønnes
Angus Leeming <[EMAIL PROTECTED]> writes: | This is going to bomb unless you add a return statement | +void BranchList::setColor(string const & s, string const & val) | +{ | + List::iterator it = list.begin(); | + List::iterator end = list.end(); | + for (; it != end; it++) { Us

Re: Warning messages about failed inlines in 1.3.x

2003-07-21 Thread Jean-Marc Lasgouttes
> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes: >> I hoped it to be usable, but with excessive reporting it is not... >> so -Winline should just be removed. Angus> Here is the patch for 1.3.x at least. Feel free to apply it. JMarc

Re: lyxrc.auto_number

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 05:42:44PM +0200, Andre Poenitz wrote: > What is it good for? Entering numbers in RTL text : ?KO, 3.141 si iP Not that I understand exactly what it's doing. see computeBidiTables() john

lyxrc.auto_number

2003-07-21 Thread Andre Poenitz
What is it good for? Andre' -- Those who desire to give up Freedom in order to gain Security, will not have, nor do they deserve, either one. (T. Jefferson or B. Franklin or both...)

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Martin Vermeer
On Mon, Jul 21, 2003 at 03:45:47PM +, Angus Leeming spake thusly: ... > There's a long lead time in getting new stuff into the source tree isn't > there? The code is looking pretty good though... The problem is my 'intermittent' internet access, being at the cottage for a week or so and on

Re: undo

2003-07-21 Thread Andre Poenitz
On Mon, Jul 21, 2003 at 05:05:52PM +0200, Juergen Spitzmueller wrote: > Andre Poenitz wrote: > > Do you find a crash where the undo operation does not involve the very > > first paragraph of some "ParagraphList" (i.e. the first par of the main > > text or the first par of a text inset as minipages,

Re: empty insettexts

2003-07-21 Thread Andre Poenitz
On Mon, Jul 21, 2003 at 03:56:39PM +0100, John Levon wrote: > On Mon, Jul 21, 2003 at 04:44:48PM +0200, Andre Poenitz wrote: > > > But there are also place where the first paragraph is 'manually' added > > (e.g. void ControlDocument::saveAsDefault()) so I have this strange > > feeling that the cur

Re: undo

2003-07-21 Thread Juergen Spitzmueller
Andre Poenitz wrote: > Do you find a crash where the undo operation does not involve the very > first paragraph of some "ParagraphList" (i.e. the first par of the main > text or the first par of a text inset as minipages, tabular cells etc.? Not at the moment. It seems that the crashes I described

Re: empty insettexts

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 04:44:48PM +0200, Andre Poenitz wrote: > But there are also place where the first paragraph is 'manually' added > (e.g. void ControlDocument::saveAsDefault()) so I have this strange > feeling that the current solution is not good. I think your feeling is probably correct b

Re: [sample patch]: FileName class

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 03:40:15PM +, Angus Leeming wrote: > Shrug. No, but this is a sample, encoding only the graphics inset with a > FileName member. I can't see what can go wrong with write given that > FileName stores the absolute path to the file and a flag save_abs_path_ > saying how

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Angus Leeming
Martin Vermeer wrote: > No, I don't agree with you here. No Assert, no npos problem. I really > want to traverse all branches and set/clear only those in s. Good. I was just askin'. >> Here you should move the (j == string::npos) test to immediately after >> the j = s.find_first_of line, else th

Re: empty insettexts

2003-07-21 Thread Andre Poenitz
On Mon, Jul 21, 2003 at 03:38:04PM +0100, John Levon wrote: > On Mon, Jul 21, 2003 at 04:28:40PM +0200, Andre Poenitz wrote: > > > I am currently having a bit trouble with the fact that there is no > > "empty" InsetText. > > Hit it myself a number of times. Obviously ;-) > > Question therefore

Re: [sample patch]: FileName class

2003-07-21 Thread Angus Leeming
John Levon wrote: > On Mon, Jul 21, 2003 at 12:28:29PM +, Angus Leeming wrote: > >> Might help if you had the patch... > > Have you tested this with things like "Save As" ? > > regards > john Shrug. No, but this is a sample, encoding only the graphics inset with a FileName member. I can't

Re: empty insettexts

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 04:28:40PM +0200, Andre Poenitz wrote: > I am currently having a bit trouble with the fact that there is no > "empty" InsetText. Hit it myself a number of times. > Question therefore: Can anybody think of a reason other than "historical > evidence" that an InsetText reall

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Martin Vermeer
On Mon, Jul 21, 2003 at 02:48:47PM +, Angus Leeming spake thusly: > Martin Vermeer wrote: > > > On Mon, Jul 21, 2003 at 12:03:13PM +, Angus Leeming spake thusly: ... > This is going to bomb unless you add a return statement > +void BranchList::setColor(string const & s, string const &

Re: [Patch] Insert->URL using html.sty

2003-07-21 Thread Zach Garner
> You might also want to search the lyx-devel archives. There have been several > attempts to implement this. You might get some ideas and also some more > reasons of why this task has to be handled carefully. And please don't > hesitate to ask this list for help. Thanks for the support. I'm ju

Re: [Patch] Insert->URL using html.sty

2003-07-21 Thread Juergen Spitzmueller
Zach Garner wrote: > My goal is to have properly formatted links in HTML, and visible, but > nicely formatted links in PDF. Using \htmladdnormallink will simply > ignore all of the URLs, only printing out the Name. The last thing I > want to do is lose the URLs in any output format that I use. I a

empty insettexts

2003-07-21 Thread Andre Poenitz
I am currently having a bit trouble with the fact that there is no "empty" InsetText. An InsetText always contains at least one paragraph which needs layout and changetracking information, and therefore we "need" to pass this information to the InsetText constructor. This makes things a bit mor

Re: [PATCH] fix bug 1156

2003-07-21 Thread Juergen Spitzmueller
Jean-Marc Lasgouttes wrote: > Michael> Can it also be applied to 1.3.3cvs? > > Juergen, feel free to apply it to 1.3.3cvs too. done, thanks. Juergen.

Re: [PATCH] 1.3: fix odd natbib behaviour

2003-07-21 Thread Juergen Spitzmueller
Jean-Marc Lasgouttes wrote: > Juergen> Please consider applying. Thanks, Juergen. > > Feel free to apply it. Thanks, done. Juergen.

Re: "Idx" label

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 08:00:34AM +0200, Christian Ridderstr?m wrote: > I'd prefer keeping 'Idx' because it's shorter... or changing to > something even shorter such as 'I' (it gets cluttered when you have lots > of indices). If it really gets cluttered I'd rather have a "Hide whatever" entry

Re: [sample patch]: FileName class

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 12:28:29PM +, Angus Leeming wrote: > Might help if you had the patch... Have you tested this with things like "Save As" ? regards john

Re: undo

2003-07-21 Thread Andre Poenitz
On Fri, Jul 18, 2003 at 08:44:08PM +0200, Juergen Spitzmueller wrote: > is that enough as a first impression? Second thought: No ;-) Do you find a crash where the undo operation does not involve the very first paragraph of some "ParagraphList" (i.e. the first par of the main text or the first par

Re: [Patch] Insert->URL using html.sty

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 07:25:32AM -0500, Zach Garner wrote: > + if (isRequired("html")) > + packages << "\\usepackage{html}\n"; You should just be able to add this to simplefeatures array instead of this code. regards john

Re: what is that purple line

2003-07-21 Thread John Levon
On Mon, Jul 21, 2003 at 08:56:07AM +, Angus Leeming wrote: > I note that the real cursor must be at the start of the document. Almost all > my docs have math-macros defined at the start. Dunno if that helps. Can you send me a testcase john

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Angus Leeming
Martin Vermeer wrote: > On Mon, Jul 21, 2003 at 12:03:13PM +, Angus Leeming spake thusly: > > ... > >> > > If not you should have a 'break' in >> > > there. Your Assert isn't doing much at the moment ;-) >> > >> > It should catch the 'branch not existing' condition and return an >> > empty s

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Alfredo Braunstein
Martin Vermeer wrote: +void BranchList::setColor(string const & s, string const & val) +{ + List::iterator it = list.begin(); + List::iterator end = list.end(); + for (; it != end; it++) { + if (s.find(it->getBranch(), 0) != string::npos) { + i

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Martin Vermeer
On Mon, Jul 21, 2003 at 12:03:13PM +, Angus Leeming spake thusly: ... > > > If not you should have a 'break' in > > > there. Your Assert isn't doing much at the moment ;-) > > > > It should catch the 'branch not existing' condition and return an > > empty string. I believe Assert(false) will

Re: [Patch] Insert->URL using html.sty

2003-07-21 Thread Zach Garner
> A few remarks: > 1. Why do you use \htmladdnormallinkfoot and not \htmladdnormallink? I think > that we do not want to modify the output of dvi/ps/pdf. This should be \url My goal is to have properly formatted links in HTML, and visible, but nicely formatted links in PDF. Using \htmladdnormallin

Re: [Patch] Insert->URL using html.sty

2003-07-21 Thread Juergen Spitzmueller
Zach Garner wrote: > + > + os << "\\htmladdnormallinkfoot"; > + if (getOptions().empty()) > + os << '{' << getContents() << '}'; > + else > + os << '{' << getOptions() << '}'; > + os << '{' << getContents() << '}'; > + A few remarks: 1. Why do yo

[Patch] Insert->URL using html.sty

2003-07-21 Thread Zach Garner
Hi, I haven't been able to determine if this has been fixed. I need LyX to allow latex2html to generate real HTML links when I do an "Insert|URL", as discussed in on the user mailing list (http://www.mail-archive.com/[EMAIL PROTECTED]/msg20257.html) One post in that thread says a similar patch will

Re: [sample patch]: FileName class

2003-07-21 Thread Angus Leeming
On Monday 21 July 2003 11:39 am, Andre Poenitz wrote: > + void absFilename(string const abs_filename); > string const &? Umm. Yes. Thanks. > @@ -144,7 +144,10 @@ void InsetGraphicsParams::Write(ostream > // Do not write the default values > > if (!filename.empty()) { > -

Re: [sample patch]: FileName class

2003-07-21 Thread Angus Leeming
Angus Leeming wrote: > Comments please. Might help if you had the patch... -- AngusIndex: src/support/filetools.h === RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/support/filetools.h,v retrieving revision 1.47 diff -u -p -r1.47 fil

Re: [sample patch]: FileName class

2003-07-21 Thread Andre Poenitz
On Mon, Jul 21, 2003 at 12:24:02PM +, Angus Leeming wrote: > Comments please. Patch please. Andre' -- Those who desire to give up Freedom in order to gain Security, will not have, nor do they deserve, either one. (T. Jefferson or B. Franklin or both...)

[sample patch]: FileName class

2003-07-21 Thread Angus Leeming
I remember having a rant sometime ago about the need for something better than our current handling of file names. My proposal was to have a helper class that would enable us to 'do the right thing' when reading/writing the buffer to file: class FileName { public: FileName(); /*

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Alfredo Braunstein
Angus Leeming wrote: > If 's' can't belong to multiple branches, then once you > s.find(it->getBranch(), 0) != string::npos > and set the color, there's no need to continue the loop. So, break. As you probably want to avoid the Assert, use return instead of break... > Well and good. Nonetheless,

Re: [PATCH] Updated de.po

2003-07-21 Thread Michael Schmitt
Lars Gullik Bjønnes wrote: | enclosed please find an updated de.po for LyX 1.4.0cvs. | Could some kind soul please apply it? I am really not sure if this should be done now. What's the harm? (ignorance on my part) I don't see a problem, too. In worst case, my updates are a complete wast

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Angus Leeming
On Monday 21 July 2003 11:14 am, Martin Vermeer wrote: > > Can 's' belong to multiple branches? > > No. > > > If not you should have a 'break' in > > there. Your Assert isn't doing much at the moment ;-) > > It should catch the 'branch not existing' condition and return an > empty string. I believe

Re: [PATCH] Updated de.po

2003-07-21 Thread Lars Gullik Bjønnes
Angus Leeming <[EMAIL PROTECTED]> writes: | Lars Gullik Bjønnes wrote: | > | enclosed please find an updated de.po for LyX 1.4.0cvs. | > | Could some kind soul please apply it? | > I am really not sure if this should be done now. | | What's the harm? (ignorance on my part) 1.3.x and 1.4.x po fi

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Martin Vermeer
On Mon, Jul 21, 2003 at 10:42:53AM +, Angus Leeming spake thusly: > > Martin Vermeer wrote: > > Does this look ready to go in? ... > You mean 'Assert(false)' here I think. Yes... assert always. > +string BranchList::getColor(string const & s) const > ... > + Assert(true); > +

[patch] various (mostly) tabular related "small stuff"

2003-07-21 Thread Andre Poenitz
Mostly pointer -> ref () -> tabular_funcs.[Ch] -> tabular.C bool foo(...) { return true; } -> void foo(...) {} 787 lines touched, 261 removed... Andre' -- Those who desire to give up Freedom in order to gain Security, will not have, nor do they deserve, either one. (T. Jeff

Re: Definition of DefSkip, MedSkip etc?

2003-07-21 Thread Christian Ridderström
On Sat, 19 Jul 2003, John Levon wrote: > On Fri, Jul 18, 2003 at 03:45:13PM +0200, Christian Ridderstr?m wrote: > > > I just tried DefSkip with Layout->Document->Separation=Indent and to my > > surprise the exported Latex still had the default separation value, but > > you can't change the value

Re: How to refer to dialogs when there are several UI's?

2003-07-21 Thread Jean-Marc Lasgouttes
> "Asger" == Asger Kunuk Alstrup <[EMAIL PROTECTED]> writes: Asger> On Fri, 18 Jul 2003, Angus Leeming wrote: [Inset to display key Asger> binding dynamically based on command name] >> I even coded it up (2/3 years ago?), but for reasons I didn't quite >> understand it was dropped. (I was you

Re: How to refer to dialogs when there are several UI's?

2003-07-21 Thread Jean-Marc Lasgouttes
> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes: Angus> If you'd like to persue this further, perhaps we should Angus> ascertain why the original proposal was dropped. I forget. Angus> Jean-Marc or Lars will know perhaps. I think that Lars did not like it, because the doc would print di

Re: New note inset

2003-07-21 Thread Jean-Marc Lasgouttes
> "Jose'" == Jose' Matos <[EMAIL PROTECTED]> writes: Jose'> On Thursday 17 July 2003 13:28, Juergen Spitzmueller wrote: >> BTW: José, can you make lyx2lyx convert a comment environment to a >> comment inset with standard paragraph? That is: Jose'> I am looking into it now. Should I collaps

Re: [PATCH] Updated de.po

2003-07-21 Thread Angus Leeming
Lars Gullik Bjønnes wrote: > | enclosed please find an updated de.po for LyX 1.4.0cvs. > | Could some kind soul please apply it? > I am really not sure if this should be done now. What's the harm? (ignorance on my part) -- Angus

Re: [PATCH] 1.3: fix odd natbib behaviour

2003-07-21 Thread Jean-Marc Lasgouttes
> "Juergen" == Juergen Spitzmueller <[EMAIL PROTECTED]> writes: Juergen> A small but very annoying bug with natbib/qt: every time a Juergen> new entry is added to the "selected" browser, the style Juergen> choice is reset to the first combo item. The fix is to store Juergen> the position. This

Re: [PATCH] fix bug 1156

2003-07-21 Thread Jean-Marc Lasgouttes
> "Michael" == Michael Schmitt <[EMAIL PROTECTED]> writes: >> On Tue, Jul 15, 2003 at 04:01:58PM +0200, Juergen Spitzmueller >> wrote: (qtabular width input) http://bugzilla.lyx.org/show_bug.cgi?id=1156 OK to apply? >>> >> Looks good to me >> Michael> Can it also be applied to 1.3

Re: [PATCH] Updated de.po

2003-07-21 Thread Lars Gullik Bjønnes
Michael Schmitt <[EMAIL PROTECTED]> writes: | Hello again, | | enclosed please find an updated de.po for LyX 1.4.0cvs. | | Could some kind soul please apply it? I am really not sure if this should be done now. -- Lgb

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Angus Leeming
Martin Vermeer wrote: > Does this look ready to go in? Don't use +/* This file is part of + * == + * + * LyX, The Document Processor + * + * Copyright 1995 Matthias Ettrich + * Copyright 1995-2001 The LyX Team. + *

Re: [PATCH] improved Note patch for OK

2003-07-21 Thread Andre Poenitz
On Mon, Jul 21, 2003 at 11:35:49AM +0300, Martin Vermeer wrote: > BTW in which directories should a changelog entry be added? All that > have a changed file? Yes. Andre' -- Those who desire to give up Freedom in order to gain Security, will not have, nor do they deserve, either one. (T. Jef

Re: error using relyx

2003-07-21 Thread Andre Poenitz
On Sun, Jul 20, 2003 at 04:31:15PM -0400, Nirmal Govind wrote: > Hi.. I was trying to import a latex file using the Import -> Latex > option but it gave me an error and stopped. Here's the error: The file would be more interesting... Andre' -- Those who desire to give up Freedom in order to gai

Re: Add row broken still

2003-07-21 Thread Andre Poenitz
On Sat, Jul 19, 2003 at 12:15:35AM -0300, Garst R. Reese wrote: > Just a reminder that adding a row to a table crashes 1.4CVS > As reported earlier, CPU usage goes toward 100% then crash. > Breakeage happened sometime after June 30. It's my fault... Andre' -- Those who desire to give up Freedom

Re: Add row broken still

2003-07-21 Thread Andre Poenitz
On Sat, Jul 19, 2003 at 12:15:35AM -0300, Garst R. Reese wrote: > Just a reminder that adding a row to a table crashes 1.4CVS > As reported earlier, CPU usage goes toward 100% then crash. > Breakeage happened sometime after June 30. It's my fault... Andre' -- Those who desire to give up Freedom

Re: Patch [Re: BranchList class for comment]

2003-07-21 Thread Martin Vermeer
On Wed, Jul 16, 2003 at 02:04:11AM +0200, Lars Gullik Bjønnes spake thusly: > > Martin Vermeer <[EMAIL PROTECTED]> writes: > > | As I will be off to the country again tomorrow, someone else may check > | this in if it can go like this. Otherwise until next week :-) > > I'd like next week then.

Re: error using relyx

2003-07-21 Thread Angus Leeming
Nirmal Govind wrote: > Hi.. I was trying to import a latex file using the Import -> Latex > option but it gave me an error and stopped. Here's the error: > > Reading LaTeX command syntax > (SLIM-O_report00.tex: Splitting Preamble > Creating LyX preamble > Reading layout file > Cleaning... Expecti

Re: undo

2003-07-21 Thread Andre Poenitz
On Fri, Jul 18, 2003 at 08:44:08PM +0200, Juergen Spitzmueller wrote: > Andre Poenitz wrote: > > Does anybody know of a reliable way to crash undo (current CVS)? > [...] > is that enough as a first impression? Yes. Thanks. Andre' -- Those who desire to give up Freedom in order to gain Security,

Re: [PATCH] improved Note patch for OK

2003-07-21 Thread Angus Leeming
On Monday 21 July 2003 9:00 am, Martin Vermeer wrote: > On Mon, Jul 21, 2003 at 09:25:29AM +, Angus Leeming spake thusly: > > Martin Vermeer wrote: > > > BTW in which directories should a changelog entry be added? All that > > > have a changed file? Or only the top one? (Irrelevant here.) > > >

Re: [PATCH] Updated de.po

2003-07-21 Thread Angus Leeming
Michael Schmitt wrote: > Hello again, > > enclosed please find an updated de.po for LyX 1.4.0cvs. > > Could some kind soul please apply it? > > Thanks in advance, Michael Done. -- Angus

Re: [PATCH] improved Note patch for OK

2003-07-21 Thread Martin Vermeer
On Mon, Jul 21, 2003 at 09:25:29AM +, Angus Leeming spake thusly: > > Martin Vermeer wrote: > > BTW in which directories should a changelog entry be added? All that > > have a changed file? Or only the top one? (Irrelevant here.) > > In the directory containing the file changed, unless that d

Re: [PATCH] improved Note patch for OK

2003-07-21 Thread Angus Leeming
Martin Vermeer wrote: > BTW in which directories should a changelog entry be added? All that > have a changed file? Or only the top one? (Irrelevant here.) In the directory containing the file changed, unless that directory does not have a ChangeLog (eg lib/subdir) in which case the nearest paren

Re: [PATCH]: Extract language names for translation

2003-07-21 Thread Angus Leeming
Michael Schmitt wrote: > Good morning, > > the extraction of the language names from ./lib/languages is broken > because some names include spaces. The attached patch fixes the problem > (must be applied in directory ./po). > > Please apply. Thanks. > > Michael Done. -- Angus

[PATCH] Updated de.po

2003-07-21 Thread Michael Schmitt
Hello again, enclosed please find an updated de.po for LyX 1.4.0cvs. Could some kind soul please apply it? Thanks in advance, Michael patch-de.po.gz Description: GNU Zip compressed data

[PATCH] improved Note patch for OK

2003-07-21 Thread Martin Vermeer
On Tue, Jul 15, 2003 at 09:10:38AM +0200, Andre Poenitz spake thusly: > > On Mon, Jul 14, 2003 at 09:52:12PM +0300, Martin Vermeer wrote: > > int i = 0; > > if (pt == "Comment") os << "%\n\\begin{comment}\n"; // remember to validate > > - if (pt == "Greyedout") os << "%\n\\textcolor[gray

[PATCH]: Extract language names for translation

2003-07-21 Thread Michael Schmitt
Good morning, the extraction of the language names from ./lib/languages is broken because some names include spaces. The attached patch fixes the problem (must be applied in directory ./po). Please apply. Thanks. Michael Index: Makefile.in.in ===

Re: what is that purple line

2003-07-21 Thread Angus Leeming
John Levon wrote: > On Fri, Jul 18, 2003 at 01:46:52PM +, Angus Leeming wrote: > >> A log time ago. Almost from the start >> of the Qt thing. It's easy to reproduce (I can do so on all three, very >> different machines on which I run LyX). Open up a doc and