Re: Paste Recent - wrong

2003-06-30 Thread Alfredo Braunstein
Garst R. Reese wrote: What's wrong with: Paste C-v Paste... Tha answer I got to this: dithering. I didn't dare to ask more... I would put Pick Paste, but partially because it sounds funny. ;^) Regards, Alfredo

Re: [patch] introduce namespace lyx::support

2003-06-30 Thread Andre Poenitz
On Sat, Jun 28, 2003 at 05:30:27AM +0200, Lars Gullik Bjønnes wrote: I thought that we should make the namespace stuff a bit more finegrained than just lyx::, so I have put all the src/support files/classes/functions under lyx::support. (except lyxstring for now.) comments? If 'using

Re: lyxstring and HEAD, anybody using it?

2003-06-30 Thread Andre Poenitz
On Sun, Jun 29, 2003 at 03:56:44PM +0200, Lars Gullik Bjønnes wrote: I get errors from a lot of files, and tex2lyx is near to uncompilable with --with-included-string. On 'my' laptop when debugging. Has been a few weeks now, though... Andre' -- Those who desire to give up Freedom in order to

[patch] more bformat

2003-06-30 Thread Andre Poenitz
Some more #ifdef BOOST_FORMAT - bformat consolidation. 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...) Index: ColorHandler.C

[patch] --with-include-string

2003-06-30 Thread Andre Poenitz
Not much needed except this and two boost changes -- 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...) Index: Chktex.C === RCS

[patch] boost/string

2003-06-30 Thread Andre Poenitz
I'd consider the current boost code a bug. After all, it is templatized on Char/Traits, yet uses a value coming from a (possibly) different instantiation. Andre' -- Those who desire to give up Freedom in order to gain Security, will not have, nor do they deserve, either one. (T. Jefferson

Re: Paste Recent - wrong

2003-06-30 Thread Jean-Marc Lasgouttes
Lars == Lars Gullik Bjønnes [EMAIL PROTECTED] writes: Lars SO IMO Paste Recent is utterly misnamed. Unless I get strong Lars objections and well founded objections I am going to change this Lars to Select and Paste. Wait until John is back, so that has has an occasion to give strong and well

Re: Paste Recent - wrong

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 01:52:59PM +0200, Jean-Marc Lasgouttes wrote: Lars == Lars Gullik Bjønnes [EMAIL PROTECTED] writes: Lars SO IMO Paste Recent is utterly misnamed. Unless I get strong Lars objections and well founded objections I am going to change this Lars to Select and Paste.

Re: Paste Recent - wrong

2003-06-30 Thread Rob Lahaye
Andre Poenitz wrote: Why not just let Lars commit what he wants and John change it later if he wants etc. There won't be consensus anyway. And some more users on the devel front may comment, since it is then more visible what this discussion is actually all about ;). R.

wish list: cross-referencing

2003-06-30 Thread Dan Owen
Guys, Am recently a convert (though use the win32 port from Ruurd Reitsma) from word (to write my PhD thesis!!!) and have a wish... Why should I need to add labels to sections, subsections subsubsections (and even figures, tables, etc) before being able to cross reference them. Surely using

Re: wish list: cross-referencing

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 01:19:07PM +0100, Dan Owen wrote: Guys, Am recently a convert (though use the win32 port from Ruurd Reitsma) from word (to write my PhD thesis!!!) and have a wish... Why should I need to add labels to sections, subsections subsubsections (and even figures,

RE: wish list: cross-referencing

2003-06-30 Thread Dan Owen
OK, now your on the hook!... I use a lot of ERT inserts which manual label verbatim, for these I don't mind manually cross-referencing... But when I want to cross reference a section, I would prefer to have all sections, subsections subsubsections which are numbered (i.e. not subsection*) in

Re: wish list: cross-referencing

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 01:31:50PM +0100, Dan Owen wrote: OK, now your on the hook!... *shrug* I already found this annoying myself. I use a lot of ERT inserts which manual label verbatim, for these I don't mind manually cross-referencing... But when I want to cross reference a section, I

RE: wish list: cross-referencing

2003-06-30 Thread Dan Owen
available in Lyx 1.4Certainly not. Ace! Do you want everything labeled all the time? Suggestion. Referencing to the 'Cross reference' dialog box current in lyx 1.3.2... Below Document and above Available references in selected document have two radio options (one MUST be selected).

Re: [patch] more bformat

2003-06-30 Thread Lars Gullik Bjønnes
Andre Poenitz [EMAIL PROTECTED] writes: | Some more #ifdef BOOST_FORMAT - bformat consolidation. | | 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...) | | Index:

Re: [patch] boost/string

2003-06-30 Thread Lars Gullik Bjønnes
Andre Poenitz [EMAIL PROTECTED] writes: | I'd consider the current boost code a bug. agree. | After all, it is templatized on Char/Traits, yet uses a value coming | from a (possibly) different instantiation. I have the same changes in my code. -- Lgb

Re: [patch] introduce namespace lyx::support

2003-06-30 Thread Lars Gullik Bjønnes
Andre Poenitz [EMAIL PROTECTED] writes: | On Sat, Jun 28, 2003 at 05:30:27AM +0200, Lars Gullik Bjønnes wrote: | I thought that we should make the namespace stuff a bit more | finegrained than just lyx::, so I have put all the src/support | files/classes/functions under lyx::support. |

Re: lyxstring and HEAD, anybody using it?

2003-06-30 Thread Lars Gullik Bjønnes
Andre Poenitz [EMAIL PROTECTED] writes: | On Sun, Jun 29, 2003 at 03:56:44PM +0200, Lars Gullik Bjønnes wrote: | I get errors from a lot of files, and tex2lyx is near to uncompilable | with --with-included-string. | | On 'my' laptop when debugging. Has been a few weeks now, though... right...

Re: [patch] more bformat

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 04:26:12PM +0200, Lars Gullik Bjønnes wrote: | +namespace { | + | + string tostr(XColor const col) | + { | + return bformat((%1$s,%2$s,%3$s), | + ::tostr(col.red), ::tostr(col.green), | ::tostr(col.blue)); why is the :: usefull?

Re: [patch] boost/string

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 04:27:27PM +0200, Lars Gullik Bjønnes wrote: Andre Poenitz [EMAIL PROTECTED] writes: | I'd consider the current boost code a bug. agree. | After all, it is templatized on Char/Traits, yet uses a value coming | from a (possibly) different instantiation. I have

Re: [patch] introduce namespace lyx::support

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 04:29:51PM +0200, Lars Gullik Bjønnes wrote: Andre Poenitz [EMAIL PROTECTED] writes: | On Sat, Jun 28, 2003 at 05:30:27AM +0200, Lars Gullik Bjønnes wrote: | I thought that we should make the namespace stuff a bit more | finegrained than just lyx::, so I have put

[PATCH] Branch/Note, finally :-)

2003-06-30 Thread Martin Vermeer
Here it is... working and all -- for me at least. A screenshot at www.hut.fi/~mvermeer/branch.jpeg Please let me know if a changelog entry would be appreciated :-) Martin -- Martin Vermeer [EMAIL PROTECTED] Helsinki University of Technology Dept. of Surveying, Inst. of Geodesy P.O.

Re: hi! all! Anyone has interest in gtk frontend of gtk?

2003-06-30 Thread Huang Ying
I can provide a tar-ball from ftp://ftp.devel.lyx.org/ if that is ok. please remind me if you if you cannot find a snapshot there the next 24 hours. Sorry for my late, because I have gone out to be with my wife last weekend. I check the ftp://ftp.devel.lyx.org just now, but I can not find

Re: hi! all! Anyone has interest in gtk frontend of gtk?

2003-06-30 Thread Juergen Spitzmueller
Huang Ying wrote: Sorry for my late, because I have gone out to be with my wife last weekend. I check the ftp://ftp.devel.lyx.org just now, but I can not find the snapshot there. You can find (daily?) snapshot builds at ftp://ftp.sylvan.com/pub/lyx/devel Regards, Juergen.

Re: [patch] boost/string

2003-06-30 Thread Lars Gullik Bjønnes
Andre Poenitz [EMAIL PROTECTED] writes: | On Mon, Jun 30, 2003 at 04:27:27PM +0200, Lars Gullik Bjønnes wrote: | Andre Poenitz [EMAIL PROTECTED] writes: | | | I'd consider the current boost code a bug. | | agree. | | | After all, it is templatized on Char/Traits, yet uses a value

Re: hi! all! Anyone has interest in gtk frontend of gtk?

2003-06-30 Thread Lars Gullik Bjønnes
Huang Ying [EMAIL PROTECTED] writes: | I can provide a tar-ball from ftp://ftp.devel.lyx.org/ if that is ok. | | please remind me if you if you cannot find a snapshot there the next | 24 hours. | | Sorry for my late, because I have gone out to be with my wife last | weekend. I check the

Re: [PATCH] Re: Eureka! This is why Arabic support for lyx 1.3.2doesn't work in my Mandrake 9.1

2003-06-30 Thread Jean-Marc Lasgouttes
Munzir == Munzir Taha Obeid [EMAIL PROTECTED] writes: Munzir I don't know why the first patch to ChangeLog failed but I Munzir think I can ignore it safely, right? Right. The patch failed because there have been changes in the file since the 1.3.2 release. Munzir QError.lo make[5]: *** No rule

Re: Paste Recent - wrong

2003-06-30 Thread Alfredo Braunstein
Garst R. Reese wrote: > What's wrong with: > Paste C-v > Paste... > Tha answer I got to this: dithering. I didn't dare to ask more... I would put "Pick & Paste", but partially because it sounds funny. ;^) Regards, Alfredo

Re: [patch] introduce namespace lyx::support

2003-06-30 Thread Andre Poenitz
On Sat, Jun 28, 2003 at 05:30:27AM +0200, Lars Gullik Bjønnes wrote: > I thought that we should make the namespace stuff a bit more > finegrained than just lyx::, so I have put all the src/support > files/classes/functions under lyx::support. > (except lyxstring for now.) > > comments? If 'using

Re: lyxstring and HEAD, anybody using it?

2003-06-30 Thread Andre Poenitz
On Sun, Jun 29, 2003 at 03:56:44PM +0200, Lars Gullik Bjønnes wrote: > I get errors from a lot of files, and tex2lyx is near to uncompilable > with --with-included-string. On 'my' laptop when debugging. Has been a few weeks now, though... Andre' -- Those who desire to give up Freedom in order

[patch] more bformat

2003-06-30 Thread Andre Poenitz
Some more #ifdef BOOST_FORMAT -> bformat consolidation. 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...) Index: ColorHandler.C

[patch] --with-include-string

2003-06-30 Thread Andre Poenitz
Not much needed except this and two boost changes -- 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...) Index: Chktex.C === RCS

[patch] boost/string

2003-06-30 Thread Andre Poenitz
I'd consider the current boost code a bug. After all, it is templatized on Char/Traits, yet uses a value coming from a (possibly) different instantiation. Andre' -- Those who desire to give up Freedom in order to gain Security, will not have, nor do they deserve, either one. (T. Jefferson

Re: Paste Recent - wrong

2003-06-30 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> SO IMO "Paste Recent" is utterly misnamed. Unless I get strong Lars> objections and well founded objections I am going to change this Lars> to "Select and Paste". Wait until John is back, so that has has an occasion to give

Re: Paste Recent - wrong

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 01:52:59PM +0200, Jean-Marc Lasgouttes wrote: > > "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: > > Lars> SO IMO "Paste Recent" is utterly misnamed. Unless I get strong > Lars> objections and well founded objections I am going to change this > Lars> to

Re: Paste Recent - wrong

2003-06-30 Thread Rob Lahaye
Andre Poenitz wrote: > > Why not just let Lars commit what he wants and John change it later if he > wants etc. There won't be consensus anyway. And some more users on the devel front may comment, since it is then more visible what this discussion is actually all about ;). R.

wish list: cross-referencing

2003-06-30 Thread Dan Owen
Guys, Am recently a convert (though use the win32 port from Ruurd Reitsma) from word (to write my PhD thesis!!!) and have a wish... Why should I need to add labels to sections, subsections & subsubsections (and even figures, tables, etc) before being able to cross reference them. Surely using

Re: wish list: cross-referencing

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 01:19:07PM +0100, Dan Owen wrote: > Guys, > > Am recently a convert (though use the win32 port from Ruurd Reitsma) > from word (to write my PhD thesis!!!) and have a wish... > > Why should I need to add labels to sections, subsections & > subsubsections (and even

RE: wish list: cross-referencing

2003-06-30 Thread Dan Owen
OK, now your on the hook!... I use a lot of ERT inserts which manual label verbatim, for these I don't mind manually cross-referencing... But when I want to cross reference a section, I would prefer to have all sections, subsections & subsubsections which are numbered (i.e. not subsection*) in

Re: wish list: cross-referencing

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 01:31:50PM +0100, Dan Owen wrote: > OK, now your on the hook!... *shrug* I already found this annoying myself. > I use a lot of ERT inserts which manual label verbatim, for these I > don't mind manually cross-referencing... > > But when I want to cross reference a

RE: wish list: cross-referencing

2003-06-30 Thread Dan Owen
>available in Lyx 1.4Certainly not. Ace! >Do you want everything labeled all the time? Suggestion. Referencing to the 'Cross reference' dialog box current in lyx 1.3.2... Below "Document" and above "Available references in selected document" have two radio options (one MUST be selected).

Re: [patch] more bformat

2003-06-30 Thread Lars Gullik Bjønnes
Andre Poenitz <[EMAIL PROTECTED]> writes: | Some more #ifdef BOOST_FORMAT -> bformat consolidation. | | 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...) | | Index:

Re: [patch] boost/string

2003-06-30 Thread Lars Gullik Bjønnes
Andre Poenitz <[EMAIL PROTECTED]> writes: | I'd consider the current boost code a bug. agree. | After all, it is templatized on Char/Traits, yet uses a value coming | from a (possibly) different instantiation. I have the same changes in my code. -- Lgb

Re: [patch] introduce namespace lyx::support

2003-06-30 Thread Lars Gullik Bjønnes
Andre Poenitz <[EMAIL PROTECTED]> writes: | On Sat, Jun 28, 2003 at 05:30:27AM +0200, Lars Gullik Bjønnes wrote: | > I thought that we should make the namespace stuff a bit more | > finegrained than just lyx::, so I have put all the src/support | > files/classes/functions under lyx::support. | >

Re: lyxstring and HEAD, anybody using it?

2003-06-30 Thread Lars Gullik Bjønnes
Andre Poenitz <[EMAIL PROTECTED]> writes: | On Sun, Jun 29, 2003 at 03:56:44PM +0200, Lars Gullik Bjønnes wrote: | > I get errors from a lot of files, and tex2lyx is near to uncompilable | > with --with-included-string. | | On 'my' laptop when debugging. Has been a few weeks now, though...

Re: [patch] more bformat

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 04:26:12PM +0200, Lars Gullik Bjønnes wrote: > | +namespace { > | + > | + string tostr(XColor const & col) > | + { > | + return bformat("(%1$s,%2$s,%3$s)", > | + ::tostr(col.red), ::tostr(col.green), > | ::tostr(col.blue)); > > why is the ::

Re: [patch] boost/string

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 04:27:27PM +0200, Lars Gullik Bjønnes wrote: > Andre Poenitz <[EMAIL PROTECTED]> writes: > > | I'd consider the current boost code a bug. > > agree. > > | After all, it is templatized on Char/Traits, yet uses a value coming > | from a (possibly) different instantiation.

Re: [patch] introduce namespace lyx::support

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 04:29:51PM +0200, Lars Gullik Bjønnes wrote: > Andre Poenitz <[EMAIL PROTECTED]> writes: > > | On Sat, Jun 28, 2003 at 05:30:27AM +0200, Lars Gullik Bjønnes wrote: > | > I thought that we should make the namespace stuff a bit more > | > finegrained than just lyx::, so I

[PATCH] Branch/Note, finally :-)

2003-06-30 Thread Martin Vermeer
Here it is... working and all -- for me at least. A screenshot at www.hut.fi/~mvermeer/branch.jpeg Please let me know if a changelog entry would be appreciated :-) Martin -- Martin Vermeer [EMAIL PROTECTED] Helsinki University of Technology Dept. of Surveying, Inst. of Geodesy P.O.

Re: hi! all! Anyone has interest in gtk frontend of gtk?

2003-06-30 Thread Huang Ying
> I can provide a tar-ball from ftp://ftp.devel.lyx.org/ if that is ok. > > please remind me if you if you cannot find a snapshot there the next > 24 hours. > Sorry for my late, because I have gone out to be with my wife last weekend. I check the ftp://ftp.devel.lyx.org just now, but I can not

Re: hi! all! Anyone has interest in gtk frontend of gtk?

2003-06-30 Thread Juergen Spitzmueller
Huang Ying wrote: > Sorry for my late, because I have gone out to be with my wife last > weekend. I check the ftp://ftp.devel.lyx.org just now, but I can not > find the snapshot there. You can find (daily?) snapshot builds at ftp://ftp.sylvan.com/pub/lyx/devel Regards, Juergen.

Re: [patch] boost/string

2003-06-30 Thread Lars Gullik Bjønnes
Andre Poenitz <[EMAIL PROTECTED]> writes: | On Mon, Jun 30, 2003 at 04:27:27PM +0200, Lars Gullik Bjønnes wrote: | > Andre Poenitz <[EMAIL PROTECTED]> writes: | > | > | I'd consider the current boost code a bug. | > | > agree. | > | > | After all, it is templatized on Char/Traits, yet uses a

Re: hi! all! Anyone has interest in gtk frontend of gtk?

2003-06-30 Thread Lars Gullik Bjønnes
Huang Ying <[EMAIL PROTECTED]> writes: | > I can provide a tar-ball from ftp://ftp.devel.lyx.org/ if that is ok. | > | > please remind me if you if you cannot find a snapshot there the next | > 24 hours. | > | Sorry for my late, because I have gone out to be with my wife last | weekend. I

Re: [PATCH] Re: Eureka! This is why Arabic support for lyx 1.3.2doesn't work in my Mandrake 9.1

2003-06-30 Thread Jean-Marc Lasgouttes
> "Munzir" == Munzir Taha Obeid <[EMAIL PROTECTED]> writes: Munzir> I don't know why the first patch to ChangeLog failed but I Munzir> think I can ignore it safely, right? Right. The patch failed because there have been changes in the file since the 1.3.2 release. Munzir> QError.lo make[5]: