Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Andre Poenitz
On Sat, Apr 07, 2007 at 12:16:22AM +0200, Abdelrazak Younes wrote: > Andre Poenitz wrote: > >On Fri, Apr 06, 2007 at 11:31:31AM +0200, Abdelrazak Younes wrote: > >>map MathSymbols; > >> > >>MathSymbols["\\lceil"] = 0x2308; > >>MathSymbols["\\rceil"] = 0x2309; > >>MathSymbols["\\lfloor"] = 0x230A; >

Re: No IRC presence?

2007-04-06 Thread killermike
On Thursday 05 April 2007 15:59, Timothy Reaves wrote: > I was a bit surprised when I joined the #LyX channel, and only three > people were on it (none of whom responded). As an open source developer > myself, I'd find it very difficult to manage without the channels I > otherwise use. > >

Re: [Cvslog] r17752 - /lyx-devel/trunk/src/frontends/qt4/QDelimiterDia...

2007-04-06 Thread Enrico Forestieri
On Sat, Apr 07, 2007 at 12:00:33AM -, [EMAIL PROTECTED] wrote: > Author: forenr > Date: Sat Apr 7 02:00:32 2007 > New Revision: 17752 > > URL: http://www.lyx.org/trac/changeset/17752 > Log: > Fix gui for the "|" big delimiter > > * src/frontends/qt4/QDelimiterDialog.C > (fix_nam

Re: Even more Hebrew / Bidi / Encoding Woes (2/2)

2007-04-06 Thread Abdelrazak Younes
Dov Feldstern wrote: Hi! Another issue with the changes recently made to the encodings. This one is actually not a bug, perhaps, rather an "over-fix". Maybe what you describe is related to this code in LyXText::setCurrentFont(LCursor & cur) in text2.C:720: if (pos > 0) {

Re: No IRC presence?

2007-04-06 Thread Timothy Reaves
Abdelrazak Younes wrote: Timothy Reaves wrote: I was a bit surprised when I joined the #LyX channel, and only three people were on it (none of whom responded). As an open source developer myself, I'd find it very difficult to manage without the channels I otherwise use. Interesting, wha

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Andre Poenitz wrote: On Fri, Apr 06, 2007 at 11:17:53AM +0200, Abdelrazak Younes wrote: There is no 'slash' or 'backslash' in there. Both are even in 7 bit ASCII. Year, I just replaced that with / and \, easier and more expressive as you say ;-) Abdel.

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Andre Poenitz wrote: On Fri, Apr 06, 2007 at 12:49:06PM +0200, Georg Baum wrote: We should not change the configuration files of a stable release. We did this with the new vector flag for the formats in 1.4.4, and the result is that the windows installer still ships a broken lyxrc.dist. But i

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Andre Poenitz wrote: On Fri, Apr 06, 2007 at 11:31:31AM +0200, Abdelrazak Younes wrote: map MathSymbols; MathSymbols["\\lceil"] = 0x2308; MathSymbols["\\rceil"] = 0x2309; MathSymbols["\\lfloor"] = 0x230A; ... What do you think? I don't like it. static int const lceil = 0x2308; At least as

Re: lyxerr etc

2007-04-06 Thread Andre Poenitz
On Fri, Apr 06, 2007 at 01:32:02PM -0400, Richard Heck wrote: > > What do I need to #include to get things like: > lyxerr[DEBUG::gui] << > to work? debug.h Note that the latest fashion is LYXERR(DEBUG::gui) Andre'

Re: lyxerr etc

2007-04-06 Thread Angus Leeming
Richard Heck <[EMAIL PROTECTED]> writes: > > > What do I need to #include to get things like: > lyxerr[DEBUG::gui] << > to work? You need debug.h and you should type LYXERR(DEBUG::gui) << LYXERR is a macro that expands to: if (!lyx::lyxerr.debugging(type)) { } else lyx::lyxerr

Re: toolbarbackend cleanup

2007-04-06 Thread Andre Poenitz
On Fri, Apr 06, 2007 at 02:54:12PM +0200, Abdelrazak Younes wrote: > Edwin Leuven wrote: > >Abdelrazak Younes wrote: > >>Edwin Leuven wrote: > >>>the attached patch refactors the current toolbarbackend into > >>>toolbaritems, toolbar(info) and backend > >>> > >>>comments? > >> > >>FYI, I've been t

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Andre Poenitz
On Fri, Apr 06, 2007 at 01:55:39PM +0200, Abdelrazak Younes wrote: > Anyway, I give up. Fine, so you may ignore my comments. Andre'

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Andre Poenitz
On Fri, Apr 06, 2007 at 12:49:06PM +0200, Georg Baum wrote: > We should not change the configuration files of a stable release. We did > this with the new vector flag for the formats in 1.4.4, and the result is > that the windows installer still ships a broken lyxrc.dist. > > > But it is clear t

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Andre Poenitz
On Fri, Apr 06, 2007 at 11:59:24AM +0200, Abdelrazak Younes wrote: > Georg Baum wrote: > >Am Freitag, 6. April 2007 11:44 schrieb Abdelrazak Younes: > > > >>How can I access the symbols defined in there (I know, I could read the > >>source but as I have your attention now it is quicker this way ;-

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Andre Poenitz
On Fri, Apr 06, 2007 at 11:31:31AM +0200, Abdelrazak Younes wrote: > Edwin Leuven wrote: > >Abdelrazak Younes wrote: > >>>One question George, I've found this page which nicely map TeX > >>>characters to their unicode counterparts: > >>There is no 'slash' or 'backslash' in there. > > > >more here

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Andre Poenitz
On Fri, Apr 06, 2007 at 11:17:53AM +0200, Abdelrazak Younes wrote: > There is no 'slash' or 'backslash' in there. Both are even in 7 bit ASCII. Andre'

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Andre Poenitz
On Fri, Apr 06, 2007 at 11:00:05AM +0200, Abdelrazak Younes wrote: > One question George, I've found this page which nicely map TeX > characters to their unicode counterparts: > > http://www.cl.cam.ac.uk/~mgk25/ucs/examples/TeX.txt > > Shall I put the unicode characters in the source file as-is

Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...

2007-04-06 Thread Andre Poenitz
On Fri, Apr 06, 2007 at 10:48:20AM +0200, Abdelrazak Younes wrote: > >Another point: As all the delimiters are unicode characters there are no > >pre-computed pixmaps needed at all. Would have the nice side effect that > >line thickness is consistent. > > Agreed, that was next on my plan. I would

Re: lyxerr etc

2007-04-06 Thread Edwin Leuven
Richard Heck wrote: What do I need to #include to get things like: lyxerr[DEBUG::gui] << to work? #include "debug.h" and i think that these days it is lyxerr(DEBUG::gui) <<

Re: LyX 1.5 beta 1 : crash on startup, can't create temp directory

2007-04-06 Thread Georg Baum
Am Freitag, 6. April 2007 19:08 schrieb Enrico Forestieri: > Yes, this works, too. However, I am facing another problem. > After View->DVI, latex hangs. I suspect that this a problem with the > Path thing as when I use the following script You were right. The compiler completely optimized away th

lyxerr etc

2007-04-06 Thread Richard Heck
What do I need to #include to get things like: lyxerr[DEBUG::gui] << to work? -- == Richard G Heck, Jr Professor of Philosophy Brown University http://frege.brown.edu/heck/ ===

Re: Even more Hebrew / Bidi / Encoding Woes (2/2)

2007-04-06 Thread Abdelrazak Younes
Dov Feldstern wrote: Hi! Another issue with the changes recently made to the encodings. This one is actually not a bug, perhaps, rather an "over-fix". I think it is a bug and it'd be solved by letting Qt do his bidi at character levels. The language information is _not_ necessary to order c

Re: LyX 1.5 beta 1 : crash on startup, can't create temp directory

2007-04-06 Thread Enrico Forestieri
On Fri, Apr 06, 2007 at 06:04:47PM +0200, Georg Baum wrote: > Am Freitag, 6. April 2007 16:02 schrieb Enrico Forestieri: > > > I don't think that your commit fixes 3410. I was working on the attached > > patch that fixes it. The only relevant bit is in tempname.C, all other > > changes are conseq

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Georg Baum wrote: Am Freitag, 6. April 2007 16:15 schrieb Abdelrazak Younes: So, I've hard-coded the needed math symbol in ControlMath.C (see attached). As soon as the lib/symbols file is cleaned up to associate the math symbols with unicode (as I understand, it can't now because mathed use t

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Georg Baum
Am Freitag, 6. April 2007 16:15 schrieb Abdelrazak Younes: > So, I've hard-coded the needed math symbol in ControlMath.C (see > attached). As soon as the lib/symbols file is cleaned up to associate > the math symbols with unicode (as I understand, it can't now because > mathed use these fonts),

Re: LyX 1.5 beta 1 : crash on startup, can't create temp directory

2007-04-06 Thread Georg Baum
Am Freitag, 6. April 2007 16:02 schrieb Enrico Forestieri: > I don't think that your commit fixes 3410. I was working on the attached > patch that fixes it. The only relevant bit is in tempname.C, all other > changes are consequential to that. I'll adapt this to your last commit. Oh, even more en

Even more Hebrew / Bidi / Encoding Woes (2/2)

2007-04-06 Thread Dov Feldstern
Hi! Another issue with the changes recently made to the encodings. This one is actually not a bug, perhaps, rather an "over-fix". * In order to neutralize the problem described in part 1, this file uses the "default" encoding. * The attached file (more_heb_problems.lyx) is a LyX 1.3 generat

More Hebrew / Bidi / Encoding Woes (1/2)

2007-04-06 Thread Dov Feldstern
Hi! There are still some encoding problems with Hebrew. Georg, I suspect that these may be related to the long patch for the encoding which you entered last month, and/or the fix of bug 3235; but I'm not sure. I'm attaching a file in which one of the problems occurs (latex file is generated, but

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Georg Baum wrote: Am Freitag, 6. April 2007 13:55 schrieb Abdelrazak Younes: Georg Baum wrote: Am Freitag, 6. April 2007 12:28 schrieb Abdelrazak Younes: We should not change the configuration files of a stable release. We did this with the new vector flag for the formats in 1.4.4, and the re

Re: LyX 1.5 beta 1 : crash on startup, can't create temp directory

2007-04-06 Thread Enrico Forestieri
On Fri, Apr 06, 2007 at 03:12:07PM +0200, Georg Baum wrote: > Am Donnerstag, 5. April 2007 11:41 schrieb François Amato: > > > LyX could not create the temporary directory 'C:/Documents and > > Settings/François Amato/Local Settings/Temp/lyx_tmpdir2500a03240' > > Error: Impossible de créer

Re: toolbarbackend cleanup

2007-04-06 Thread Edwin Leuven
Jean-Marc Lasgouttes wrote: "Edwin" == Edwin Leuven <[EMAIL PROTECTED]> writes: Edwin> i think that it might be quite straightforward to add popup Edwin> menu's and perhaps even iconpalettes to the toolbar, and to add Edwin> such non standard widgets it would help to have a proper Edwin> separa

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Georg Baum
Am Freitag, 6. April 2007 13:55 schrieb Abdelrazak Younes: > Georg Baum wrote: > > Am Freitag, 6. April 2007 12:28 schrieb Abdelrazak Younes: > > > We should not change the configuration files of a stable release. We did > > this with the new vector flag for the formats in 1.4.4, and the result

Re: LyX 1.5 beta 1 : crash on startup, can't create temp directory

2007-04-06 Thread Georg Baum
Am Donnerstag, 5. April 2007 11:41 schrieb François Amato: > LyX could not create the temporary directory 'C:/Documents and > Settings/François Amato/Local Settings/Temp/lyx_tmpdir2500a03240' > Error: Impossible de créer un répertoire temporaire > > Imp

Re: toolbarbackend cleanup

2007-04-06 Thread Jean-Marc Lasgouttes
> "Edwin" == Edwin Leuven <[EMAIL PROTECTED]> writes: Edwin> i think that it might be quite straightforward to add popup Edwin> menu's and perhaps even iconpalettes to the toolbar, and to add Edwin> such non standard widgets it would help to have a proper Edwin> separation of items, toolbar an

Re: toolbarbackend cleanup

2007-04-06 Thread Edwin Leuven
Abdelrazak Younes wrote: Agreed but I am not the one to convince ;-) sure. am off to the south of france tomorrow, so will be catching up in a week or so...

Re: toolbarbackend cleanup

2007-04-06 Thread Abdelrazak Younes
Edwin Leuven wrote: Abdelrazak Younes wrote: Edwin Leuven wrote: the attached patch refactors the current toolbarbackend into toolbaritems, toolbar(info) and backend comments? FYI, I've been testing this patch quite extensively and I haven't seen any problem. thanks (i haven't experience

Re: small bug with recent Graphics Dialog changes

2007-04-06 Thread Richard Heck
I posted the fix for this. Attached is a diff for the related documentation. Comments welcome. Uwe Stöhr wrote: > Hello Richard, > > there's a bug in you new code: > Open the graphics dialog and check the scale option and the label > "Scale Graphics %" gets red and the "100" that was previously

Re: toolbarbackend cleanup

2007-04-06 Thread Edwin Leuven
Abdelrazak Younes wrote: Edwin Leuven wrote: the attached patch refactors the current toolbarbackend into toolbaritems, toolbar(info) and backend comments? FYI, I've been testing this patch quite extensively and I haven't seen any problem. thanks (i haven't experienced any regressions eit

Re: toolbarbackend cleanup

2007-04-06 Thread Abdelrazak Younes
Edwin Leuven wrote: the attached patch refactors the current toolbarbackend into toolbaritems, toolbar(info) and backend comments? FYI, I've been testing this patch quite extensively and I haven't seen any problem. Abdel.

Re: Table of contents crashes

2007-04-06 Thread Jean-Marc Lasgouttes
> "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: Abdelrazak> The only thing to do is to debug step to step and verify Abdelrazak> that 'data' are passed correctly in initialiseParams(). Abdelrazak> You should start by putting a breakpoint at Abdelrazak> ControlToc::initialisePa

Re: toolbarbackend cleanup

2007-04-06 Thread Abdelrazak Younes
Stefan Schimanski wrote: Hi! Is there any chance to make toolbars customizable directly in LyX? That would be a nice thing to have yes but not now. But you can do that externally from LyX too. If you're interesting in doing something like this, you can borrow the code that parse the toolbar

Re: [patch] Addition of input method support

2007-04-06 Thread Jean-Marc Lasgouttes
> "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: Abdelrazak> One language no (Japanese can use Chinese characters for Abdelrazak> example) but CJK characters yes. The point was not to Abdelrazak> autodetect the language just the unicode range and that Abdelrazak> _is_ easy. AFAI

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Georg Baum wrote: Am Freitag, 6. April 2007 12:28 schrieb Abdelrazak Younes: We should not change the configuration files of a stable release. We did this with the new vector flag for the formats in 1.4.4, and the result is that the windows installer still ships a broken lyxrc.dist. Are you

Re: [patch] Addition of input method support

2007-04-06 Thread Abdelrazak Younes
Jean-Marc Lasgouttes wrote: "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: Another reason is that I fear that this autodetection would not be 100% correct. Abdelrazak> Well, I cannot imagine that testing for the CJK unicode Abdelrazak> subrange would fail. Successive character

Re: Unicode char in the C++ source file?

2007-04-06 Thread Abdelrazak Younes
Jean-Marc Lasgouttes wrote: "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: Abdelrazak> There is no pressing need indeed but what I am proposing Abdelrazak> will _not_ destabilize the tree at all. This is not a matter of destabilization, just a matter of releasing 1.5. OK, le

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Georg Baum
Am Freitag, 6. April 2007 12:28 schrieb Abdelrazak Younes: > Georg Baum wrote: > > This file contains different things. Those that are not real symbols, e.g. > > with inset == "decoration" or inset == "matrix" could be left alone. Only > > those that are drawn be InsetMathSymbol (where inset is

Re: [patch] Addition of input method support

2007-04-06 Thread Jean-Marc Lasgouttes
> "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: >> Another reason is that I fear that this autodetection would not be >> 100% correct. Abdelrazak> Well, I cannot imagine that testing for the CJK unicode Abdelrazak> subrange would fail. Successive characters just have to be Abd

Re: Unicode char in the C++ source file?

2007-04-06 Thread Jean-Marc Lasgouttes
> "Abdelrazak" == Abdelrazak Younes <[EMAIL PROTECTED]> writes: Abdelrazak> There is no pressing need indeed but what I am proposing Abdelrazak> will _not_ destabilize the tree at all. This is not a matter of destabilization, just a matter of releasing 1.5. JMarc

Re: Unicode char in the C++ source file?

2007-04-06 Thread Abdelrazak Younes
Jean-Marc Lasgouttes wrote: "Georg" == Georg Baum <[EMAIL PROTECTED]> writes: Georg> This would be a major change. Do you understand now why I am Georg> reluctant to do this now? +1 I do not see the pressing need. There is no pressing need indeed but what I am proposing will _not_ destabil

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Georg Baum wrote: Am Freitag, 6. April 2007 11:59 schrieb Abdelrazak Younes: Georg Baum wrote: Am Freitag, 6. April 2007 11:44 schrieb Abdelrazak Younes: How can I access the symbols defined in there (I know, I could read the source but as I have your attention now it is quicker this way ;-

Re: Unicode char in the C++ source file?

2007-04-06 Thread Jean-Marc Lasgouttes
> "Georg" == Georg Baum <[EMAIL PROTECTED]> writes: Georg> This would be a major change. Do you understand now why I am Georg> reluctant to do this now? +1 I do not see the pressing need. JMarc

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Georg Baum
Am Freitag, 6. April 2007 11:59 schrieb Abdelrazak Younes: > Georg Baum wrote: > > Am Freitag, 6. April 2007 11:44 schrieb Abdelrazak Younes: > > > >> How can I access the symbols defined in there (I know, I could read the > >> source but as I have your attention now it is quicker this way ;-) >

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Georg Baum wrote: Am Freitag, 6. April 2007 11:44 schrieb Abdelrazak Younes: How can I access the symbols defined in there (I know, I could read the source but as I have your attention now it is quicker this way ;-) in_word_set() from MathParser.h. I see. The problem (as you certainly know)

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Georg Baum
Am Freitag, 6. April 2007 11:44 schrieb Abdelrazak Younes: > How can I access the symbols defined in there (I know, I could read the > source but as I have your attention now it is quicker this way ;-) in_word_set() from MathParser.h. But note that the parsing of this file is rather crude. G

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Georg Baum wrote: Am Freitag, 6. April 2007 11:31 schrieb Abdelrazak Younes: I was beginning to hardcode the delimiters in QDelimiterDialog but then I asked myself if we shouldn't do that more globally for mathed. The idea is to define a globally accessible map of mathed commands: map MathSym

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Georg Baum
Am Freitag, 6. April 2007 11:31 schrieb Abdelrazak Younes: > I was beginning to hardcode the delimiters in QDelimiterDialog but then > I asked myself if we shouldn't do that more globally for mathed. The > idea is to define a globally accessible map of mathed commands: > > map MathSymbols; > >

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Georg Baum wrote: Am Freitag, 6. April 2007 11:17 schrieb Abdelrazak Younes: Abdelrazak Younes wrote: One question George, I've found this page which nicely map TeX characters to their unicode counterparts: http://www.cl.cam.ac.uk/~mgk25/ucs/examples/TeX.txt Shall I put the unicode character

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Edwin Leuven wrote: Abdelrazak Younes wrote: One question George, I've found this page which nicely map TeX characters to their unicode counterparts: There is no 'slash' or 'backslash' in there. more here i think: http://www.stixfonts.org/charactertable.html Thanks. I was beginning to har

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Georg Baum
Am Freitag, 6. April 2007 11:17 schrieb Abdelrazak Younes: > Abdelrazak Younes wrote: > > One question George, I've found this page which nicely map TeX > > characters to their unicode counterparts: > > > > http://www.cl.cam.ac.uk/~mgk25/ucs/examples/TeX.txt > > > > Shall I put the unicode chara

Re: [PATCH] new Provide directive for layout files

2007-04-06 Thread José Matos
On Friday 06 April 2007 10:03:48 am Jean-Marc Lasgouttes wrote: > > I did that. I'll update the doc now. Thanks Jean-Marc. > JMarc -- José Abílio

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Edwin Leuven
Abdelrazak Younes wrote: One question George, I've found this page which nicely map TeX characters to their unicode counterparts: There is no 'slash' or 'backslash' in there. more here i think: http://www.stixfonts.org/charactertable.html

Re: Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Abdelrazak Younes wrote: Andre Poenitz wrote: On Fri, Apr 06, 2007 at 07:08:39AM +0200, Andre Poenitz wrote: On Thu, Apr 05, 2007 at 10:18:08PM +0200, Abdelrazak Younes wrote: Georg Baum wrote: Am Donnerstag, 5. April 2007 14:12 schrieb [EMAIL PROTECTED]: http://www.lyx.org/trac/file/lyx-deve

Re: [PATCH] new Provide directive for layout files

2007-04-06 Thread Jean-Marc Lasgouttes
> "José" == José Matos <[EMAIL PROTECTED]> writes: José> On Tuesday 03 April 2007 12:15:22 pm Georg Baum wrote: >> I would say commit it. José> +1 I did that. I'll update the doc now. JMarc

Unicode char in the C++ source file? (was Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...)

2007-04-06 Thread Abdelrazak Younes
Andre Poenitz wrote: On Fri, Apr 06, 2007 at 07:08:39AM +0200, Andre Poenitz wrote: On Thu, Apr 05, 2007 at 10:18:08PM +0200, Abdelrazak Younes wrote: Georg Baum wrote: Am Donnerstag, 5. April 2007 14:12 schrieb [EMAIL PROTECTED]: http://www.lyx.org/trac/file/lyx-devel/trunk/src/frontends/qt4/

Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...

2007-04-06 Thread Abdelrazak Younes
Georg Baum wrote: Am Donnerstag, 5. April 2007 22:18 schrieb Abdelrazak Younes: I reckon that we should unify everything to my standard ;-). I also reckon this is not very important. Yes, it is only minor. Nevertheless we should stay consistent (at least at file level): If you change this, t

Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...

2007-04-06 Thread Abdelrazak Younes
Andre Poenitz wrote: On Fri, Apr 06, 2007 at 07:08:39AM +0200, Andre Poenitz wrote: On Thu, Apr 05, 2007 at 10:18:08PM +0200, Abdelrazak Younes wrote: Georg Baum wrote: Am Donnerstag, 5. April 2007 14:12 schrieb [EMAIL PROTECTED]: http://www.lyx.org/trac/file/lyx-devel/trunk/src/frontends/qt4/

[patch] fix math ref inset

2007-04-06 Thread Georg Baum
This patch works along the same lines of Richards fix for the citation stuff. This should have been done with the InsetCommandParams changhes, but I was not aware that there was other code fiddling mailer strings. This is tested and goes in now. Georg Index: src/mathed/InsetMathCommand.C =

Re: [Cvslog] r17731 - in /lyx-devel/trunk/src/frontends/qt4: QDelimite...

2007-04-06 Thread Georg Baum
Am Donnerstag, 5. April 2007 22:18 schrieb Abdelrazak Younes: > I reckon that we should unify everything to my standard ;-). I also > reckon this is not very important. Yes, it is only minor. Nevertheless we should stay consistent (at least at file level): If you change this, then please change

Re: 3416 fix for 1.4.svn

2007-04-06 Thread Jean-Marc Lasgouttes
> "Uwe" == Uwe Stöhr <[EMAIL PROTECTED]> writes: >> Can someone test this for me? It's the same as the 1.5.svn fix Uwe> I tested this and it fixes the bug for LyX 1.4.5svn. JMarc? It is committed already. Thanks for testing. JMarc

Re: Using cmake to build a Xcode project

2007-04-06 Thread Peter Kümmel
Stefan Schimanski wrote: > Yes, the merge option works fine also in Xcode on Mac. The only drawback > is that the file list is a bit confusing then. Somehow some .C files are > missing, maybe those which are included in the _all* files. Haven't look > into it more yet. > > Schimmi Nice to hear th