Re: UTF8-UCS4 failure on FreeBSD 6.2-RELEASE

2007-05-19 Thread Koji Yokota
Peter Kümmel wrote: lyxerr LyX: Creating directory %1$s endl, lyxerr package().user_support().absFilename() endl; docstring s1 = _(LyX: Creating directory %1$s); docstring s2 = from_utf8(package().user_support().absFilename()); //docstring s3 = bformat(_(LyX

Re: [PATCH] Bug 3650

2007-05-19 Thread Jürgen Spitzmüller
Richard Heck wrote: The attached addresses http://bugzilla.lyx.org/show_bug.cgi?id=3650. The issues were two. (i) When the old inset was erased, the iterator became invalid, and the attempt to increment it caused an abort; (ii) after clearing that up, a different abort made it clear that the

Re: [PATCH-again] Bugs 643, 3047, and 3090

2007-05-19 Thread Jürgen Spitzmüller
Richard Heck wrote:   This area looks a mess and I have never quite understood it completely. :-) That is I why I am asking for Georg's help to decide on this. The same applies to Jürgen. I'll wait for them to look at it. It looks o.k. to me, but I'm not too deep into the converter

Re: [patch] Hebrew Splash doc

2007-05-19 Thread Ran Rutenberg
On 5/19/07, Uwe Stöhr [EMAIL PROTECTED] wrote: Can I commit it?: Of course - that's what I wished. Ran, one question: Is it necessary to use the same note behind the word LyX? Unfortunately, yes. There is a bug, which exists at least from 2003 (I know that by examining old Hebrew files)

Re: Qt4 binary

2007-05-19 Thread Martin Vermeer
On Fri, May 18, 2007 at 11:35:27PM +0200, Andreas Neustifter wrote: On 18.05.2007, at 18:38, Martin Vermeer wrote: On Fri, May 18, 2007 at 09:10:41AM -0600, Scott Lambert wrote: I downloaded and installed the binary version of Qt4 for the mac so I wouldn't have to compile it. Can

Re: Using listings package with beamer.

2007-05-19 Thread Jürgen Spitzmüller
Bo Peng wrote: How would I insert this [fragile] option in lyx? Citing beameruserguide, p. 48: You can pass options and an overlay specification to a frame by giving these in TEX-mode as the first thing in the frame title. (Some magic is performed to extract them in LYX-mode from there.)

Re: [patch] Hebrew Splash doc

2007-05-19 Thread Martin Vermeer
On Sat, May 19, 2007 at 06:27:12AM +, Ran Rutenberg wrote: On 5/19/07, Uwe Stöhr [EMAIL PROTECTED] wrote: Can I commit it?: Of course - that's what I wished. Ran, one question: Is it necessary to use the same note behind the word LyX? Unfortunately, yes. There is a bug, which

Re: UTF8-UCS4 failure on FreeBSD 6.2-RELEASE

2007-05-19 Thread Peter Kümmel
We still don't know which string is wrong so here the next code: docstring format = _(LyX directory, %1$s. \n); lyxerr format = to_utf8(format) endl; docstring path = from_utf8(/home/dir/); lyxerr path = to_utf8(path) endl; docstring s4=

Re: Using listings package with beamer.

2007-05-19 Thread Martin Vermeer
On Sat, May 19, 2007 at 12:18:20AM -0500, Bo Peng wrote: Dear all, I am trying to use listings with beamer, I learned that 1. beamer 3.07 is required. 2. listings can not be float (understandable) 3. the option fragile after \begin{frame} is necessary. How would I insert this

[pacth] bug 3653: content of listings inset is effected by document language changes

2007-05-19 Thread Jürgen Spitzmüller
The attached patch fixes this and an associated problem: if you copy content from a listings inset to the main view (or another inset), it has the invalid color foreground, and you get latex errors. Bo, you attempted to make the color black, but I guess we have to live with red for now. There

Re: UTF8-UCS4 failure on FreeBSD 6.2-RELEASE

2007-05-19 Thread Koji Yokota
Peter Kümmel wrote: We still don't know which string is wrong so here the next code: docstring format = _(LyX directory, %1$s. \n); lyxerr format = to_utf8(format) endl; docstring path = from_utf8(/home/dir/); lyxerr path = to_utf8(path) endl;

Re: Work plan for release candidate 1

2007-05-19 Thread Andre Poenitz
On Thu, May 17, 2007 at 09:15:52PM -0500, Bo Peng wrote: @@ -103,7 +105,7 @@ string language = fromqstr(languageCO-currentText()); bool float_ = floatCB-checkState() == Qt::Checked; - string placement = fromqstr(placementLE-text()); + string placement =

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Andre Poenitz
On Fri, May 18, 2007 at 08:12:33AM +0200, Peter Kümmel wrote: I also realized this while working on this bug. So I dropped my first patches and now use isAutoRepeated in the committed patch, by this a keystroke produced by a user will never get lost. All typed keystrokes are in the event queue

Re: Work plan for release candidate 1

2007-05-19 Thread Andre Poenitz
On Fri, May 18, 2007 at 08:36:03AM +0200, Abdelrazak Younes wrote: [...] The same comment applies to floatCB. In the long term I'd like to see this suffix changed. It's always 'CB?' - 'CallBack!' - 'no, combobox?' - 'or checkbox?' - 'or checkbutton?' Andre'

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Andre Poenitz
On Fri, May 18, 2007 at 08:43:12AM +0200, Peter Kümmel wrote: Andre Poenitz wrote: === --- src/frontends/qt4/GuiWorkArea.cpp (revision 18380) +++ src/frontends/qt4/GuiWorkArea.cpp (working copy) @@ -161,7 +161,7 @@

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Peter Kümmel
Andre Poenitz wrote: On Fri, May 18, 2007 at 08:12:33AM +0200, Peter Kümmel wrote: I also realized this while working on this bug. So I dropped my first patches and now use isAutoRepeated in the committed patch, by this a keystroke produced by a user will never get lost. All typed keystrokes

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Peter Kümmel
Andre Poenitz wrote: On Fri, May 18, 2007 at 08:43:12AM +0200, Peter Kümmel wrote: Andre Poenitz wrote: === --- src/frontends/qt4/GuiWorkArea.cpp (revision 18380) +++ src/frontends/qt4/GuiWorkArea.cpp (working copy) @@

Re: Restarting httpd?

2007-05-19 Thread Andre Poenitz
On Fri, May 18, 2007 at 01:05:32PM +0200, Jean-Marc Lasgouttes wrote: Aussie is very very slow currently. It is not clear why from a top listing. I'd like to restart httpd to see what happens. Is that always a safe thing to do? Pretty safe, yes. Is it just a sudo /etc/init.d/httpd restart

Re: Fwd: [patch] parbox with only width setting, automatic height gets height 0pt (lyx 1.5)

2007-05-19 Thread Jean-Marc Lasgouttes
Micha == Micha Feigin [EMAIL PROTECTED] writes: Micha A box of height 0pt is theoretically possible although I'm not Micha sure why anyone would want it (it's much less useful than an Micha automatic height box). It is a usual trick to put two strings one over the other. JMarc

Re: UTF8-UCS4 failure on FreeBSD 6.2-RELEASE

2007-05-19 Thread Peter Kümmel
Koji Yokota wrote: Peter Kümmel wrote: We still don't know which string is wrong so here the next code: docstring format = _(LyX directory, %1$s. \n); lyxerr format = to_utf8(format) endl; docstring path = from_utf8(/home/dir/); lyxerr path = to_utf8(path) endl;

Re: Restarting httpd?

2007-05-19 Thread Jean-Marc Lasgouttes
Andre == Andre Poenitz [EMAIL PROTECTED] writes: Andre On Fri, May 18, 2007 at 01:05:32PM +0200, Jean-Marc Lasgouttes Andre wrote: Aussie is very very slow currently. It is not clear why from a top listing. I'd like to restart httpd to see what happens. Is that always a safe thing to do?

Re: Work plan for release candidate 1

2007-05-19 Thread Andre Poenitz
On Fri, May 18, 2007 at 01:38:39PM +0100, José Matos wrote: On Friday 18 May 2007 10:18:17 am Peter Kümmel wrote: Nice to hear. Do you use the merge option to speed up compilation? I am considering it. This blog entry made me curious: C++ noodling, http://tromey.com/blog/?p=352 I early 1.6

Re: 2007 LyX Meeting (candidatures accepted)

2007-05-19 Thread Martin Vermeer
On Tue, May 15, 2007 at 11:27:12AM +0200, [EMAIL PROTECTED] wrote: On Mon, 14 May 2007, José Matos wrote: On Monday 14 May 2007 21:47:05 Jean-Marc Lasgouttes wrote: Andre' Martin JMarc José Chr July 21 4 0 001 July 28 4 2 000 Aug

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Peter Kümmel
Next try. To see how it works change the event_delay_ms variable in the constructor to 3000 and use -dbg 12. Please test if scrolling works when - moving the slider with the mouse - clicking in the scroll bar - pressing page up/down keys - arrow keys - arrow buttons on the scroll bar - using

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Peter Kümmel
+#include set not needed will remove it class QWidget; + /// + QTimer delayed_scrollbar_sync; + /// + QTimer delayed_key_event; + struct key_info { QKeySymbol* sym; Qt::KeyboardModifiers mod; }; + std::vectorkey_info delayed_keys; }; Andre, any tips how

Re: UTF8-UCS4 failure on FreeBSD 6.2-RELEASE

2007-05-19 Thread Koji Yokota
Peter Kümmel wrote: bformat is just a call to boost: boost::basic_formatchar_type(fmt) % arg1).str(); So it is a boost bug when checking the format string, or our string is somehow invalid. This does not help much. But we could disable boost format, so please try attached patch. Peter,

Re: Work plan for release candidate 1

2007-05-19 Thread Peter Kümmel
Andre Poenitz wrote: On Fri, May 18, 2007 at 01:38:39PM +0100, José Matos wrote: On Friday 18 May 2007 10:18:17 am Peter Kümmel wrote: Nice to hear. Do you use the merge option to speed up compilation? I am considering it. This blog entry made me curious: C++ noodling,

Re: UTF8-UCS4 failure on FreeBSD 6.2-RELEASE

2007-05-19 Thread Peter Kümmel
Koji Yokota wrote: Peter Kümmel wrote: bformat is just a call to boost: boost::basic_formatchar_type(fmt) % arg1).str(); So it is a boost bug when checking the format string, or our string is somehow invalid. This does not help much. But we could disable boost format, so please try

Re: [PATCH-again] Bugs 643, 3047, and 3090

2007-05-19 Thread Georg Baum
Am Freitag, 18. Mai 2007 21:14 schrieb José Matos: On Friday 18 May 2007 7:42:56 pm Richard Heck wrote: The attached patch addresses these bugs, all of which have to do with export, viewing, and the like---ultimately, with the conversion routines. The patch introduces a new conversion

Re: UTF8-UCS4 failure on FreeBSD 6.2-RELEASE

2007-05-19 Thread Koji Yokota
Peter Kümmel wrote: Have fun! Do you know that beta3 is out? Yes, now I'm going to try it. Hope you get not other problems because of iconv. I will report if there is any. Thanks, Koji

[patch] Probably fix bug 1973

2007-05-19 Thread Georg Baum
Jürgen asked me to post this patch: http://bugzilla.lyx.org/attachment.cgi?id=1688action=view It works for me, but I still understand the font business only partly, so please test carefully. José, please tell if/when this should go in. Georg

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Peter Kümmel
Peter Kümmel wrote: Next try. To see how it works change the event_delay_ms variable in the constructor to 3000 and use -dbg 12. Please test if scrolling works when - moving the slider with the mouse - clicking in the scroll bar - pressing page up/down keys - arrow keys - arrow

Re: Work plan for release candidate 1

2007-05-19 Thread Peter Kümmel
José Matos wrote: On Friday 18 May 2007 10:18:17 am Peter Kümmel wrote: Nice to hear. Do you use the merge option to speed up compilation? I am considering it. This blog entry made me curious: C++ noodling, http://tromey.com/blog/?p=352 Yes you could assume a speed up of 4-5 by switching

Re: [pacth] bug 3653: content of listings inset is effected by document language changes

2007-05-19 Thread Jürgen Spitzmüller
Jürgen Spitzmüller wrote: Please test. I'll commit if I get two OKs (Uwe, Bo?). Better patch attached. Jürgen Index: src/insets/InsetListings.cpp === --- src/insets/InsetListings.cpp (revision 18408) +++

Re: Beta 3 (final adjustments)

2007-05-19 Thread Peter Kümmel
José Matos wrote: On Friday 18 May 2007 10:22:40 am Peter Kümmel wrote: Do you use the open source C++ library QuantLib somewhere in your projects? http://quantlib.org/ I am considering it but usually I use python and R libraries. :-) There is a binding of quantlibs to R:

Re: LyX beta 2.0 on Mac

2007-05-19 Thread John Kane
--- Bennett Helm [EMAIL PROTECTED] wrote: On May 18, 2007, at 8:45 PM, John Kane wrote: --- Bennett Helm [EMAIL PROTECTED] wrote: On May 18, 2007, at 7:23 PM, John Kane wrote: --- A. Scottedward Hodel [EMAIL PROTECTED] wrote: I want to echo the praise for LyX given earlier.

Re: [PATCH] Bug 3650

2007-05-19 Thread Abdelrazak Younes
Richard Heck wrote: Index: Paragraph.h === --- Paragraph.h (revision 18413) +++ Paragraph.h (working copy) @@ -359,9 +359,11 @@ /// bool hfillExpansion(Row const row, pos_type pos) const; - /// Check if we are in

Re: Some ugliness with antialiasing

2007-05-19 Thread Stefan Schimanski
This simple patch got lost. Didn't get the mail back from the mailinglist, but the archive shows it... strange. So here it is again. Waiting for comments. Stefan Another thing I just noticed when making the screenshot: the markers overpaint some parts of the boxes. See in the screenshot.

Re: Some ugliness with antialiasing

2007-05-19 Thread Abdelrazak Younes
Stefan Schimanski wrote: This simple patch got lost. Didn't get the mail back from the mailinglist, but the archive shows it... strange. So here it is again. Waiting for comments. Looks good. Abdel.

Re: [pacth] bug 3653: content of listings inset is effected by document language changes

2007-05-19 Thread Jürgen Spitzmüller
Jürgen Spitzmüller wrote: Better patch attached. This is the final one. It sets the screen font of listings to foreground (i.e. black). Jürgen Index: src/insets/InsetListings.h === --- src/insets/InsetListings.h (revision 18408)

Re: Restarting httpd?

2007-05-19 Thread christian . ridderstrom
On Sat, 19 May 2007, Jean-Marc Lasgouttes wrote: Andre == Andre Poenitz [EMAIL PROTECTED] writes: Andre On Fri, May 18, 2007 at 01:05:32PM +0200, Jean-Marc Lasgouttes Andre wrote: Aussie is very very slow currently. It is not clear why from a top listing. I'd like to restart httpd to see

Re: Spammers in action (Was [Bug 993] MakeDisplayPath is a big fat liar (fwd))

2007-05-19 Thread christian . ridderstrom
On Mon, 14 May 2007, [EMAIL PROTECTED] wrote: On Sun, 13 May 2007, Pavel Sanda wrote: Someone (trama at ngs.ru) attached a spam attachment to http://bugzilla.lyx.org/show_bug.cgi?id=993 I don't know how to remove the attachment, does anyone else? afaik bugzilla has not such

Re: [Cvslog] r18419 - in /lyx-devel/trunk/src: frontends/qt4/QLPainter...

2007-05-19 Thread Andre Poenitz
On Sat, May 19, 2007 at 10:52:48AM -, [EMAIL PROTECTED] wrote: + // Must use new as np is not known at compile time. + boost::scoped_arrayQPoint points(new QPoint[np]); There are never more than five of them, are there? So you could as well use a static array and assert on np.

Re: 2007 LyX Meeting (candidatures accepted)

2007-05-19 Thread Andre Poenitz
On Sat, May 19, 2007 at 11:18:37AM +0300, Martin Vermeer wrote: On Tue, May 15, 2007 at 11:27:12AM +0200, [EMAIL PROTECTED] wrote: On Mon, 14 May 2007, José Matos wrote: On Monday 14 May 2007 21:47:05 Jean-Marc Lasgouttes wrote: Andre' Martin JMarc José Chr July 21

Re: [patch] Hebrew Splash doc

2007-05-19 Thread Uwe Stöhr
Ran Rutenberg schrieb: Can I commit it?: Of course - that's what I wished. But as we are in release freeze, I needed 2 OKs before. I interprete mine, Bo, and Martin as OK, so I put it in and also corrected the wrong he prefix: http://www.lyx.org/trac/changeset/18420

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Andre Poenitz
On Sat, May 19, 2007 at 10:53:39AM +0200, Peter Kümmel wrote: +#include set not needed will remove it class QWidget; + /// + QTimer delayed_scrollbar_sync; + /// + QTimer delayed_key_event; + struct key_info { QKeySymbol* sym; Qt::KeyboardModifiers mod; }; +

Re: [Cvslog] r18419 - in /lyx-devel/trunk/src: frontends/qt4/QLPainter...

2007-05-19 Thread Stefan Schimanski
Am 19.05.2007 um 14:48 schrieb Andre Poenitz: On Sat, May 19, 2007 at 10:52:48AM -, [EMAIL PROTECTED] wrote: + // Must use new as np is not known at compile time. + boost::scoped_arrayQPoint points(new QPoint[np]); There are never more than five of them, are there? So you

Re: [PATCH] BUG 3598. Was: wrong fix committed for bug 3598

2007-05-19 Thread Uwe Stöhr
Bo Peng schrieb: Please test the attached patch. I will wait for another OK to commit. This is OK now. thanks and regards Uwe

Re: r18371 - in /lyx-devel/branches/personal/sts/dynmacro/src...

2007-05-19 Thread Stefan Schimanski
So here is a working patch for 1.5svn. I also attached an example file. Try it out with the patch and without. It is a lot faster. Scrolling around in the macro without the patch is nearly impossible. Moreover I did some minor cleanup of the code, especially setting up the coordinate

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Abdelrazak Younes
Peter Kümmel wrote: Next try. To see how it works change the event_delay_ms variable in the constructor to 3000 and use -dbg 12. This looks way too complicated Peter. There must be a simpler solution. Abdel.

Re: r18371 - in /lyx-devel/branches/personal/sts/dynmacro/src...

2007-05-19 Thread Stefan Schimanski
Sorry, mixed the patch with the marker patch. Here it is again Stefan mathmacrospeedup.patch Description: Binary data So here is a working patch for 1.5svn. I also attached an example file. Try it out with the patch and without. It is a lot faster. Scrolling around in the macro without

Re: r18371 - in /lyx-devel/branches/personal/sts/dynmacro/src...

2007-05-19 Thread Abdelrazak Younes
Stefan Schimanski wrote: So here is a working patch for 1.5svn. I also attached an example file. Try it out with the patch and without. It is a lot faster. Scrolling around in the macro without the patch is nearly impossible. You'll have to disable instant preview to really see the

[PATCH] Text cosmetics

2007-05-19 Thread Michael Gerz
Hi, the attached patch further polishes the text class names and changes to warnings. OK? Michael Index: src/callback.cpp === --- src/callback.cpp (Revision 18421) +++ src/callback.cpp (Arbeitskopie) @@ -401,9 +401,9 @@ //

Re: [pacth] bug 3653: content of listings inset is effected by document language changes

2007-05-19 Thread Uwe Stöhr
This is the final one. It sets the screen font of listings to foreground (i.e. black). I'm imperssed about your speed in fixing bugs! The patch works here for all cases. There's only one bit now: The listings inset itself has a document language, so that it gets blue underlined when copying

Re: TOC without a TOC

2007-05-19 Thread Michael Gerz
Helge Hafting schrieb: Jean-Marc Lasgouttes wrote: You see this as natural from the programmer POV, but I am not sure it is so clear from the user point of view. What about renaming the entry as Outline or Show outline? Good idea. The current name might make the user think it is for

Re: r18371 - in /lyx-devel/branches/personal/sts/dynmacro/src...

2007-05-19 Thread Abdelrazak Younes
Abdelrazak Younes wrote: Stefan Schimanski wrote: So here is a working patch for 1.5svn. I also attached an example file. Try it out with the patch and without. It is a lot faster. Scrolling around in the macro without the patch is nearly impossible. You'll have to disable instant preview to

Re: 2007 LyX Meeting (candidatures accepted)

2007-05-19 Thread Michael Gerz
[EMAIL PROTECTED] schrieb: On Mon, 14 May 2007, José Matos wrote: On Monday 14 May 2007 21:47:05 Jean-Marc Lasgouttes wrote: Andre' Martin JMarc José Chr July 21 4 0 001 July 28 4 2 000 Aug 4 4 4 503 Aug 11

Re: r18371 - in /lyx-devel/branches/personal/sts/dynmacro/src...

2007-05-19 Thread Stefan Schimanski
Am 19.05.2007 um 15:41 schrieb Abdelrazak Younes: Abdelrazak Younes wrote: Stefan Schimanski wrote: So here is a working patch for 1.5svn. I also attached an example file. Try it out with the patch and without. It is a lot faster. Scrolling around in the macro without the patch is nearly

Re: [PATCH] CT output for pdflatex

2007-05-19 Thread Michael Gerz
[EMAIL PROTECTED] schrieb: On Sat, 12 May 2007, Michael Gerz wrote: this patch brings change tracking output to the PDF world. What's up with the long lines? What do you mean? Michael

Re: [PATCH] Text cosmetics

2007-05-19 Thread Uwe Stöhr
the attached patch further polishes the text class names and changes to warnings. OK? I added comments to every change. Some of your changes need to be slightly changed. Here they are: Index: src/callback.cpp === ---

Re: r18371 - in /lyx-devel/branches/personal/sts/dynmacro/src...

2007-05-19 Thread Stefan Schimanski
Am 19.05.2007 um 15:36 schrieb Abdelrazak Younes: Stefan Schimanski wrote: So here is a working patch for 1.5svn. I also attached an example file. Try it out with the patch and without. It is a lot faster. Scrolling around in the macro without the patch is nearly impossible. You'll have

Re: 2007 LyX Meeting (candidatures accepted)

2007-05-19 Thread Uwe Stöhr
Andre' Martin JMarc José Chr July 21 4 0 001 July 28 4 2 000 Aug 4 4 4 503 Aug 11 4 5 454 Aug 17 4 5 054 Aug 25

Re: [Cvslog] r18419 - in /lyx-devel/trunk/src: frontends/qt4/QLPainter...

2007-05-19 Thread Stefan Schimanski
Am 19.05.2007 um 14:48 schrieb Andre Poenitz: On Sat, May 19, 2007 at 10:52:48AM -, [EMAIL PROTECTED] wrote: + // Must use new as np is not known at compile time. + boost::scoped_arrayQPoint points(new QPoint[np]); There are never more than five of them, are there? So you

Re: [pacth] bug 3653: content of listings inset is effected by document language changes

2007-05-19 Thread Jürgen Spitzmüller
Uwe Stöhr wrote: There's only one bit now: The listings inset itself has a document language, so that it gets blue underlined when copying it to another document. This should not be the case because it is not needed as the listings content also don't have a defined document language, see my

Re: [PATCH] Text cosmetics

2007-05-19 Thread Jürgen Spitzmüller
Michael Gerz wrote: Hi, the attached patch further polishes the text class names and changes to warnings. OK? Fine with me, excpet for probably: (MW - Polish) - (MW, Polish) [consistency with DIN-Brief, German] (Springer - LNCS) - (Springer -- LNCS) or (Springer LNCS) Jürgen

Re: [PATCH] Bug 3650

2007-05-19 Thread Bernhard Roider
Abdelrazak Younes schrieb: Richard Heck wrote: Index: Paragraph.h === --- Paragraph.h(revision 18413) +++ Paragraph.h(working copy) @@ -359,9 +359,11 @@ /// bool hfillExpansion(Row const row, pos_type pos) const;

Qt4 mac

2007-05-19 Thread Scott Lambert
I am following the build instructions in Install.MacOSX and I keep getting qt 4 library not found error. Full output below. I am following Install.MacOSX exactly. -Scott Configuration Host type: i686-apple-darwin8.9.1 Special build flags:assertions pch

Re: Using listings package with beamer.

2007-05-19 Thread Bo Peng
You can pass options and an overlay specification to a frame by giving these in TEX-mode as the first thing in the frame title. (Some magic is performed to extract them in LYX-mode from there.) I tried [fragile] [fragile] fragile [fragile] Nothing works. See attached. Bo beamer-listings.lyx

Re: [PATCH] CT output for pdflatex

2007-05-19 Thread christian . ridderstrom
On Sat, 19 May 2007, Michael Gerz wrote: [EMAIL PROTECTED] schrieb: On Sat, 12 May 2007, Michael Gerz wrote: this patch brings change tracking output to the PDF world. What's up with the long lines? What do you mean? My memory might be wrong, but weren't some of the lines rather long?

Re: [PATCH] Bug 3650

2007-05-19 Thread Richard Heck
Bernhard Roider wrote: In general enums are more explicative: enum CursorMove { NoMove, MoveRight, MoveLeft } I did not take a closer look at the code, but shouldn't it be forward and backward instead of right and left? I don't think so. The `right' and `left' don't actually

Re: [PATCH] Bug 3650

2007-05-19 Thread Richard Heck
Abdelrazak Younes wrote: Richard Heck wrote: Index: Paragraph.h === --- Paragraph.h(revision 18413) +++ Paragraph.h(working copy) @@ -359,9 +359,11 @@ /// bool hfillExpansion(Row const row, pos_type pos)

Re: [PATCH] Bug 3650

2007-05-19 Thread Richard Heck
Jürgen Spitzmüller wrote: Richard Heck wrote: The attached addresses http://bugzilla.lyx.org/show_bug.cgi?id=3650. The issues were two. (i) When the old inset was erased, the iterator became invalid, and the attempt to increment it caused an abort; (ii) after clearing that up, a different

Re: [PATCH-again] Bugs 643, 3047, and 3090

2007-05-19 Thread Richard Heck
Thanks, Georg, for the comments. I'll take these into account and re-work the code a bit. If you can point me towards the resultfile flag in your playground, I'll have a look at that, too, though perhaps not immediately, as there are more pressing bugs to fix before 1.5.rc1. Richard Georg Baum

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Peter Kümmel
Abdelrazak Younes wrote: Peter Kümmel wrote: Next try. To see how it works change the event_delay_ms variable in the constructor to 3000 and use -dbg 12. This looks way too complicated Peter. There must be a simpler solution. Abdel. Is this your only comment? Anyway I don't think

[patch] bug 3645: make listings dialog translatable

2007-05-19 Thread Jürgen Spitzmüller
This patch does that. There's still hardcoded English in the messages of the Advanced widget. This needs some reworking of InsetListingsParams, and I leave this to Bo. OK for this one? Jürgen Index: src/frontends/qt4/QDocument.cpp

[PATCH-updated] Bug 3650

2007-05-19 Thread Richard Heck
Attached is a slightly updated version of this patch. OK to commit? A proper clean-up of this will have to wait a bit. Richard -- == Richard G Heck, Jr Professor of Philosophy Brown University http://frege.brown.edu/heck/

Re:Qt4 mac

2007-05-19 Thread Anders Ekberg
Scott Lambert Sat, 19 May 2007 07:36:42 -0700 I am following the build instructions in Install.MacOSX and I keep getting qt 4 library not found error. Full output below. I am following Install.MacOSX exactly. -Scott Configuration Host type: i686-apple-darwin8.9.1

Re: Qt4 mac

2007-05-19 Thread Bob Lounsbury
I've always received the error of 'Qt4 library not found' when trying to compile LyX with Qt4.3.0 until I issued the command: export PKG_CONFIG_PATH=/path/to/Qt4/lib/pkgconfig/ which was discussed on the list, but never added to the INSTALL.MacOSX. Bob Lounsbury On 5/19/07, Anders Ekberg

Re: [PATCH-again] Bugs 643, 3047, and 3090

2007-05-19 Thread Richard Heck
Georg Baum wrote: So, if you open /path/file.lyx and FileExportFormat, you will get a directory /path/file.format.conversion/ in which all the files generated by the converter will be found (e.g. the mess that htlatex generates ends up in/path/file.html.conversion/). A flag for the

Re: [Cvslog] r18419 - in /lyx-devel/trunk/src: frontends/qt4/QLPainter...

2007-05-19 Thread Stefan Schimanski
Here is the patch. Comments? Wonder if there is something like that in Boost, but didn't find it. Stefan semistaticpoints.patch Description: Binary data Am 19.05.2007 um 16:10 schrieb Stefan Schimanski: Am 19.05.2007 um 14:48 schrieb Andre Poenitz: On Sat, May 19, 2007 at 10:52:48AM

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Peter Kümmel
Abdelrazak Younes wrote: Peter Kümmel wrote: Next try. To see how it works change the event_delay_ms variable in the constructor to 3000 and use -dbg 12. This looks way too complicated Peter. There must be a simpler solution. Abdel. You could start with some like the attached patch

[PATCH-updated] Bug 3650

2007-05-19 Thread Uwe Stöhr
Attached is a slightly updated version of this patch. OK to commit? +1 Jürgen? regards Uwe

Re: [PATCH-updated] Bug 3650

2007-05-19 Thread Jürgen Spitzmüller
Uwe Stöhr wrote: Attached is a slightly updated version of this patch. OK to commit? +1 Jürgen? OK. Jürgen

Re: r18371 - in /lyx-devel/branches/personal/sts/dynmacro/src...

2007-05-19 Thread Stefan Schimanski
So, here is an updated patch that forces an updateExpansion on clone. But beware, this is another piece of the patchwork in the macro implementation. I played around with it and found several strange cases of the cursor navigation, unfolding and so on, e.g. when jumping into a macro with

Re: [Cvslog] r18419 - in /lyx-devel/trunk/src: frontends/qt4/QLPainter...

2007-05-19 Thread Andre Poenitz
On Sat, May 19, 2007 at 06:51:17PM +0200, Stefan Schimanski wrote: Here is the patch. Comments? Wonder if there is something like that in Boost, but didn't find it. Stefan Index: src/frontends/qt4/QLPainter.cpp === ---

Re: [PATCH-updated] Bug 3650

2007-05-19 Thread Richard Heck
Committed...thanks Uwe and Jurgen Richard Heck wrote: Attached is a slightly updated version of this patch. OK to commit? A proper clean-up of this will have to wait a bit. Richard Index: Paragraph.h

Re: [Cvslog] r18419 - in /lyx-devel/trunk/src: frontends/qt4/QLPainter...

2007-05-19 Thread Stefan Schimanski
STL's vector doesn't give access to the data required by Qt, but QVector does. So this slight variation of your proposed patch: // double the size if needed static QVectorQPoint points(32); if (np points.size()) points.resize(2 * np); Will commit if nobody

Re: Spammers in action (Was [Bug 993] MakeDisplayPath is a big fat liar (fwd))

2007-05-19 Thread Pavel Sanda
Now that I have permissions I've done something to about 20 attachments. The ones I found had the MIME type 'text/html', so I changed it to 'application/spam', and changed the note. When clicking on this particular MIME type, I'm asked to save it to disk so I'm hoping it's a workaround if

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Dov Feldstern
Peter Kümmel wrote: Dov Feldstern wrote: The truth is, I don't know that this is directly related to the machine on which it's running. My machine is quite powerful --- it's a Pentium IV 3.0 GHz; and I don't see any jump in the system load when I start scrolling, either: not when I start and

Re: [Cvslog] r18419 - in /lyx-devel/trunk/src: frontends/qt4/QLPainter...

2007-05-19 Thread Richard Heck
Looks sensible to me. Stefan Schimanski wrote: STL's vector doesn't give access to the data required by Qt, but QVector does. So this slight variation of your proposed patch: // double the size if needed static QVectorQPoint points(32); if (np points.size())

Re: crash tex2lyx

2007-05-19 Thread Stefan Schimanski
There is something really strange going on. I am trying to debug the problem for half an hour now as it also shows up on my machine. The layoutlist_ containter looks fine before the cit = begin() call in TextClass::read. But when I step into the begin() function suddenly the start value of

Re: CJK-testers needed

2007-05-19 Thread Koji Yokota
Koji Yokota wrote: Therefore, is it possible for you to provide another choice for Japanese *not to use* the CJK package? That is, another choice in the menu of Document Setting - Language which creates a code like: \batchmode \makeatletter [EMAIL PROTECTED]/home/hge//}} \makeatother

[PATCH] Bug 1474: Recursive Input

2007-05-19 Thread Richard Heck
The attached patch partially addresses this bug. Not completely, because it only checks if a file is including itself and not if a file includes a file that includes it (etc). The places where the more general check would need to be done are identified with FIXME RECURSIVE INPUT so that this can

Re: [patch] Hebrew Splash doc

2007-05-19 Thread Dov Feldstern
Martin Vermeer wrote: On Sat, May 19, 2007 at 06:27:12AM +, Ran Rutenberg wrote: On 5/19/07, Uwe Stöhr [EMAIL PROTECTED] wrote: Can I commit it?: Of course - that's what I wished. Ran, one question: Is it necessary to use the same note behind the word LyX? Unfortunately, yes. There is

Re: [patch] Hebrew Splash doc

2007-05-19 Thread Elazar Leibovich
BTW, I think we absolutely MUST someday (TM) to include an explicit paragraph direction setting. Having the user to read documentation and ignoring the current defacto standard is not an option. On 5/20/07, Dov Feldstern [EMAIL PROTECTED] wrote: Martin Vermeer wrote: On Sat, May 19, 2007 at

Re: Scrolling lag in 1.5svn again, more details.

2007-05-19 Thread Dov Feldstern
Peter Kümmel wrote: On slow/loaded systems the last patch floods the event queue with timer events instead of key/scroll events. I hope attached patch will now really fix the problem. Peter This works for me (timer_scroll_4.patch) --- at least for what I'm testing, namely, cursor movement

Re: [patch] Hebrew Splash doc

2007-05-19 Thread Dov Feldstern
Elazar Leibovich wrote: BTW, I think we absolutely MUST someday (TM) to include an explicit paragraph direction setting. Having the user to read documentation and ignoring the current defacto standard is not an option. I opened a bugzilla request, see

[Bug 3561] Comments

2007-05-19 Thread Richard Heck
I've been studying this bug a bit and think I know where the problem is, more or less. The attached file is as minimal as I can get it. The change of font is crucial. Without it, there is no crash. Font::writeLatexEndChanges we have this code: if (open_encoding_) { // We need to

Re: [PATCH] Bug 1474: Recursive Input

2007-05-19 Thread Richard Heck
This also addresses the new bug 3659. Richard Heck wrote: The attached patch partially addresses this bug. Not completely, because it only checks if a file is including itself and not if a file includes a file that includes it (etc). The places where the more general check would need to be

Re: CJK-testers needed

2007-05-19 Thread Koji Yokota
Uwe Stöhr wrote: CTAN is the official TeX/LaTeX file and package repository. OK, now I understand. Then, I need to ask the author of the japanese package if he can upload it to CTAN. The author of the Japanese package agreed to put his package on CTAN. So, I hope we can find it there soon. I

  1   2   3   >