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;
>
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.
>
>
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
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) {
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
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.
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
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
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'
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
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
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'
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
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 ;-
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
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'
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
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
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) <<
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
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/
===
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
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
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
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),
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
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
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
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
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
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
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
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
> "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
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...
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
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
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
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.
> "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
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
> "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
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
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
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
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
> "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
> "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
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
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 ;-
> "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
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 ;-)
>
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)
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
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
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;
>
>
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
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
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
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
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
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
> "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
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/
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
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/
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
=
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
> "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
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
70 matches
Mail list logo