Re: [PATCH] TextClassPtr

2008-02-25 Thread Abdelrazak Younes
rgheck wrote: Andre Poenitz wrote: On Mon, Feb 25, 2008 at 04:50:42PM -0500, rgheck wrote: In my last commit regarding boost::shared_ptr, I left TextClassPtr as a silly typedef: typedef TextClass * TextClassPtr; ... Comments welcome. I personally don't like this TextClassPtr class. '

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Abdelrazak Younes
Pavel Sanda wrote: The math completion works but not the text, is that normal? Well, depends on what you call working. First I disabled the automatic completion for text because it might be annoying for many people.\ What is the purpose of the "Automatically show in text mode" then? So you ha

Re: LyX/Mac 1.6 -- Window issues

2008-02-25 Thread Abdelrazak Younes
Pavel Sanda wrote: MS Word always creates a new document when you launch it maybe we should do this also when there is no sessions file? Yes -- that is standard behavior for almost all programs on Mac Pavel, are you taking that item? (I am just passing the hot potato :-)) this i call intuitio

Re: LyX/Mac 1.6 -- Window issues

2008-02-25 Thread Abdelrazak Younes
Bennett Helm wrote: On Feb 25, 2008, at 3:18 PM, Abdelrazak Younes wrote: Concerning arranging tabs: can't this be done instead by dragging and dropping the tabs -- both to change the order within a window and to move a tab from one window to a different window? Sure, every thing's possible

Re: [ANNOUNCE]: LyX 1.5.4 is released

2008-02-25 Thread Enrico Forestieri
On Sun, Feb 24, 2008 at 02:20:44PM +0100, Jürgen Spitzmüller wrote: > Public release of LyX version 1.5.4 > Congrats! I have placed a cygwin binary here: http://www.lyx.org/~forenr/lyx-1.5.4-cygwin.tar.gz -- Enrico

Re: [PATCH] TextClassPtr

2008-02-25 Thread rgheck
Andre Poenitz wrote: On Mon, Feb 25, 2008 at 04:50:42PM -0500, rgheck wrote: In my last commit regarding boost::shared_ptr, I left TextClassPtr as a silly typedef: typedef TextClass * TextClassPtr; The attached would turn it into something akin to a "strong typedef", where TextClassPtr r

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Enrico Forestieri
On Mon, Feb 25, 2008 at 03:43:51PM +0100, Abdelrazak Younes wrote: > Stefan Schimanski wrote: > >> > >> No, Windoze... > > > > Visual C or gcc? > > Visual C++ 9.0 (aka 2008 express edition). Only Enrico uses gcc for > cygwin purpose I think. For test purpose, I also build a native version with

Re: Unknown color name

2008-02-25 Thread rgheck
Pavel Sanda wrote: hi, with the current trunk i get this warning: QColor::setNamedColor: Unknown color name 'grey70' Me, too...though we need to fix the color stuff still, anyway. rh

Re: [Cvslog] r23235 - in /lyx-devel/trunk/src/insets: InsetBibitem.cpp...

2008-02-25 Thread rgheck
Andre Poenitz wrote: On Mon, Feb 25, 2008 at 10:13:46PM -, [EMAIL PROTECTED] wrote: +bool ParamInfo::ParamData::isOptional() const +{ + return type_ == ParamInfo::LATEX_OPTIONAL || + type_ == ParamInfo::LATEX_KV_OPTIONAL; Hmdahm.. IIRC Abdel mentioned putting the

Re: [Cvslog] r23235 - in /lyx-devel/trunk/src/insets: InsetBibitem.cpp...

2008-02-25 Thread rgheck
Andre Poenitz wrote: On Mon, Feb 25, 2008 at 10:13:46PM -, [EMAIL PROTECTED] wrote: +bool ParamInfo::ParamData::isOptional() const +{ + return type_ == ParamInfo::LATEX_OPTIONAL || + type_ == ParamInfo::LATEX_KV_OPTIONAL; Hmdahm.. IIRC Abdel mentioned putting the

Re: LyX/Mac 1.6 -- Window issues

2008-02-25 Thread Bennett Helm
On Feb 25, 2008, at 3:18 PM, Abdelrazak Younes wrote: Bennett Helm wrote: On Feb 25, 2008, at 2:32 AM, Abdelrazak Younes wrote: Bennett Helm wrote: Perhaps the biggest UI problem on Mac concerns the recent addition of a button on the left of the tab bar to hide a document within that wind

Re: LyX/Mac 1.6 -- Window issues

2008-02-25 Thread Bennett Helm
On Feb 25, 2008, at 3:22 PM, Abdelrazak Younes wrote: Bennett Helm wrote: On Feb 25, 2008, at 2:32 AM, Abdelrazak Younes wrote: 4. Using a keybinding to close a buffer and then the window that contained it (command-sequence buffer-close ; window-close) results in a crash. Curiously, doing t

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Stefan Schimanski
I did a first implementation of a global word list for the text mode which is automatically filled during document parsing. Moreover it keeps in sync with the paragraphs, i.e. if you type new words they are put into the word list. If delete a paragraph the words are taken out from the word

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Stefan Schimanski
Am 26.02.2008 um 01:13 schrieb Pavel Sanda: The math completion works but not the text, is that normal? Well, depends on what you call working. First I disabled the automatic completion for text because it might be annoying for many people.\ What is the purpose of the "Automatically show i

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Pavel Sanda
>>> The math completion works but not the text, is that normal? >> Well, depends on what you call working. First I disabled the automatic >> completion for text because it might be annoying for many people.\ > > What is the purpose of the "Automatically show in text mode" then? > >> So you have to

Unknown color name

2008-02-25 Thread Pavel Sanda
hi, with the current trunk i get this warning: QColor::setNamedColor: Unknown color name 'grey70' pavel

Re: [Cvslog] r23235 - in /lyx-devel/trunk/src/insets: InsetBibitem.cpp...

2008-02-25 Thread Andre Poenitz
On Mon, Feb 25, 2008 at 10:13:46PM -, [EMAIL PROTECTED] wrote: > +bool ParamInfo::ParamData::isOptional() const > +{ > + return type_ == ParamInfo::LATEX_OPTIONAL || > +type_ == ParamInfo::LATEX_KV_OPTIONAL; Hmdahm.. IIRC Abdel mentioned putting the operator on the new line. A

Re: [PATCH] TextClassPtr

2008-02-25 Thread Andre Poenitz
On Mon, Feb 25, 2008 at 04:50:42PM -0500, rgheck wrote: > > In my last commit regarding boost::shared_ptr, I left TextClassPtr as a > silly typedef: >typedef TextClass * TextClassPtr; > The attached would turn it into something akin to a "strong typedef", where > TextClassPtr really just wrap

Re: r23223 - in /lyx-devel/trunk/src/frontends/qt4: GuiComple...

2008-02-25 Thread Pavel Sanda
>> Never did anything about this. Is there a way to fix git to do that >> automatically? > > Maybe. I've read about this new autocrlf stuff in git. But I don't know if > git-svn is already making use of it. the last question about setting svn properties via git-svn remained unanswered on git lis

Re: LyX/Mac 1.6 -- Window issues

2008-02-25 Thread Pavel Sanda
>>> MS Word always creates a new document when you launch it maybe we should >>> do this also when there is no sessions file? >> Yes -- that is standard behavior for almost all programs on Mac > > Pavel, are you taking that item? (I am just passing the hot potato :-)) this i call intuition. i rea

Re: r23233 - in /lyx-devel/trunk/src: Buffer.cpp Buffer.h Par...

2008-02-25 Thread Stefan Schimanski
Sorry, that was not planned. Just wanted one small patch. Will revert in a minute. Stefan Am 25.02.2008 um 22:53 schrieb [EMAIL PROTECTED]: Author: sts Date: Mon Feb 25 22:53:16 2008 New Revision: 23233 URL: http://www.lyx.org/trac/changeset/23233 Log: * compile fix Modified: lyx-devel/

[PATCH] TextClassPtr

2008-02-25 Thread rgheck
In my last commit regarding boost::shared_ptr, I left TextClassPtr as a silly typedef: typedef TextClass * TextClassPtr; The attached would turn it into something akin to a "strong typedef", where TextClassPtr really just wraps a TextClass*. The point of this is to enforce the distinction

Re: InsetCommandParams Rewrite, Continued

2008-02-25 Thread rgheck
Pavel Sanda wrote: After a hiatus, I'm returning to the rewrite of InsetCommandParams, the purpose of all of this being to make things more flexible, with the ultimate goal being biblatex support and a kind of InsetCommandFlex that will allow user-definable such things. The next step, really, i

Re: InsetCommandParams Rewrite, Continued

2008-02-25 Thread Pavel Sanda
> After a hiatus, I'm returning to the rewrite of InsetCommandParams, the > purpose of all of this being to make things more flexible, with the > ultimate goal being biblatex support and a kind of InsetCommandFlex that > will allow user-definable such things. The next step, really, is to fix up

Re: LyX/Mac 1.6 -- Window issues

2008-02-25 Thread Abdelrazak Younes
Bennett Helm wrote: On Feb 25, 2008, at 2:32 AM, Abdelrazak Younes wrote: 4. Using a keybinding to close a buffer and then the window that contained it (command-sequence buffer-close ; window-close) results in a crash. Curiously, doing this via the command buffer works fine. Here's the backtr

Re: LyX/Mac 1.6 -- Window issues

2008-02-25 Thread Abdelrazak Younes
Bennett Helm wrote: On Feb 25, 2008, at 2:32 AM, Abdelrazak Younes wrote: Bennett Helm wrote: Perhaps the biggest UI problem on Mac concerns the recent addition of a button on the left of the tab bar to hide a document within that window. I don't know how it is on other platforms, but on Mac

Re: Fwd: Thanks for LyX

2008-02-25 Thread Abdelrazak Younes
Andre Poenitz wrote: Matthias Groh is OK with putting this up on the webpage as well. Do we have a 'praise received by others' page? http://wiki.lyx.org/LyX/Praise Abdel.

Re: weird buffer in inset problem

2008-02-25 Thread Stefan Schimanski
Am 25.02.2008 um 20:10 schrieb Jürgen Spitzmüller: - Insert a minipage - Inside this, insert another minipage - In the innermost minipage, insert an image - Now move the cursor outside the innermost, to the "parent" minipage - Insert a different image there => instead of a second image being i

Re: LyX/Mac 1.6 -- Window issues

2008-02-25 Thread Bennett Helm
On Feb 25, 2008, at 2:32 AM, Abdelrazak Younes wrote: 4. Using a keybinding to close a buffer and then the window that contained it (command-sequence buffer-close ; window-close) results in a crash. Curiously, doing this via the command buffer works fine. Here's the backtrace: Should be f

weird buffer in inset problem

2008-02-25 Thread Jürgen Spitzmüller
- Insert a minipage - Inside this, insert another minipage - In the innermost minipage, insert an image - Now move the cursor outside the innermost, to the "parent" minipage - Insert a different image there => instead of a second image being inserted at cursor location, the first image is being r

Re: Killing boost::shared_ptr

2008-02-25 Thread rgheck
Abdelrazak Younes wrote: rgheck wrote: The attached patch does as advertised, replacing the shared pointer with a global cache of sorts of the TextClass's used by Buffers---or, more strictly, constructed by BufferParams::makeTextClass(). The action is in TextClass.{h,cpp}. I've left the ty

View Source Bug

2008-02-25 Thread rgheck
Bennett Helm wrote: The bug is that clicking "Update" [in the View Source window] does nothing [when Automatic Update is off]. Well, that definitely is a bug, yes. rh

Re: Killing boost::shared_ptr

2008-02-25 Thread rgheck
Abdelrazak Younes wrote: I need to check whether the textClass_ member of InsetCollapsable is needed now. I think not. Now that the Buffer is accessible following Andre' recent change, I think not indeed. This actually had to do with something else. It got added, I think, by Bo to fix a c

Re: textclasslist

2008-02-25 Thread rgheck
Abdelrazak Younes wrote: rgheck wrote: After working on some other things, I'm given to ask this question: Would it be better if global objects such as baseclasslist (the old textclasslist) were replaced by singletons? Yes. OK, well, having just done one, it'll be easy enough to do anothe

Re: textclasslist

2008-02-25 Thread Andre Poenitz
On Sun, Feb 24, 2008 at 11:29:17PM -0500, rgheck wrote: > After working on some other things, I'm given to ask this question: Would > it be better if global objects such as baseclasslist (the old > textclasslist) were replaced by singletons? *shrug* Singletons are good if you need to control in

Re: [Cvslog] r23204 - /lyx-devel/trunk/src/CutAndPaste.cpp

2008-02-25 Thread rgheck
Andre Poenitz wrote: On Sun, Feb 24, 2008 at 11:21:41PM -, [EMAIL PROTECTED] wrote: Author: rgheck Date: Mon Feb 25 00:21:39 2008 New Revision: 23204 URL: http://www.lyx.org/trac/changeset/23204 Log: Cosmetic. Modified: lyx-devel/trunk/src/CutAndPaste.cpp Modified: lyx-devel/trunk/

Fwd: Thanks for LyX

2008-02-25 Thread Andre Poenitz
Received via dark channnels: -- Forwarded Message -- Subject: Thanks for LyX Date: Friday 22 February 2008 From: Matthias Groh To: [EMAIL PROTECTED] Dear Mr Ettrich, I just wanted to thank you and the LyX Team (can't write to everybody so I selected you randomly...) for th

Re: compilation error

2008-02-25 Thread Jürgen Spitzmüller
Jürgen Spitzmüller wrote: > Now I get linking errors fixed. Jürgen

Re: [Cvslog] r23214 - /lyx-devel/trunk/src/insets/InsetText.h

2008-02-25 Thread Andre Poenitz
On Mon, Feb 25, 2008 at 01:57:38AM -, [EMAIL PROTECTED] wrote: > Author: sts > Date: Mon Feb 25 02:57:38 2008 > New Revision: 23214 > > URL: http://www.lyx.org/trac/changeset/23214 > Log: > * set is not needed anymore here > > Modified: > lyx-devel/trunk/src/insets/InsetText.h > > Modifi

Re: [Cvslog] r23210 - in /lyx-devel/trunk/src: Buffer.cpp frontends/qt...

2008-02-25 Thread Andre Poenitz
On Mon, Feb 25, 2008 at 01:55:51AM -, [EMAIL PROTECTED] wrote: > + bool sorted() const > + { > + if (list_) > + return list_->sorted(); > + else > + return false; > + } 'return list_ && list_->sorted();' is s

Re: [Cvslog] r23204 - /lyx-devel/trunk/src/CutAndPaste.cpp

2008-02-25 Thread Andre Poenitz
On Sun, Feb 24, 2008 at 11:21:41PM -, [EMAIL PROTECTED] wrote: > Author: rgheck > Date: Mon Feb 25 00:21:39 2008 > New Revision: 23204 > > URL: http://www.lyx.org/trac/changeset/23204 > Log: > Cosmetic. > > Modified: > lyx-devel/trunk/src/CutAndPaste.cpp > > Modified: lyx-devel/trunk/src

Re: weighted_btree.h

2008-02-25 Thread Andre Poenitz
On Mon, Feb 25, 2008 at 08:04:11AM +0100, Jürgen Spitzmüller wrote: > Stefan Schimanski wrote: > > I added Timo Bingmann's B+ Tree template class to trunk. As > > templates   can cause problems with bad/old compilers, please report > > if they do so   for you. > > Just a question: Can we include L

Re: compilation error

2008-02-25 Thread Jürgen Spitzmüller
Abdelrazak Younes wrote: > Oups, sorry. I see you fixed it, thanks. Now I get linking errors: ASpell.o: In function `lyx::ASpell::addSpeller(std::basic_string, std::allocator > const&)': /home/juergen/lyx/lyx-devel/src/ASpell.cpp:69: undefined reference to `lyx::lyxrc' ISpell.o: In function `lyx

Re: LyX/Mac 1.6 -- Window issues

2008-02-25 Thread Bennett Helm
On Feb 25, 2008, at 2:32 AM, Abdelrazak Younes wrote: Bennett Helm wrote: Perhaps the biggest UI problem on Mac concerns the recent addition of a button on the left of the tab bar to hide a document within that window. I don't know how it is on other platforms, but on Mac clicking that bu

Re: r23223 - in /lyx-devel/trunk/src/frontends/qt4: GuiComple...

2008-02-25 Thread Abdelrazak Younes
Stefan Schimanski wrote: Author: younes Date: Mon Feb 25 10:29:56 2008 New Revision: 23223 URL: http://www.lyx.org/trac/changeset/23223 Log: please don't forget about eol-style Stefan. Modified: lyx-devel/trunk/src/frontends/qt4/GuiCompleter.cpp (props changed) lyx-devel/trunk/src/front

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Abdelrazak Younes
Stefan Schimanski wrote: No, Windoze... Visual C or gcc? Visual C++ 9.0 (aka 2008 express edition). Only Enrico uses gcc for cygwin purpose I think. Abdel.

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Stefan Schimanski
No, Windoze... Visual C or gcc? Second the data collection is very poor because I wanted to get the backend, WordList, working first in a proper way. So it only adds words when closing them with a space. I.e. type lalalala and the word is added to the WordList. The next step is to fill

Re: compilation error

2008-02-25 Thread Abdelrazak Younes
Stefan Schimanski wrote: Am 25.02.2008 um 15:21 schrieb Jürgen Spitzmüller: mathed/InsetMathNest.cpp:1808: error: prototype for 'lyx::docstring lyx::MathCompletionList::data(size_t) const' does not match any in class 'lyx::MathCompletionList' mathed/InsetMathNest.h:31: error: candidate is: virt

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Abdelrazak Younes
Stefan Schimanski wrote: Am 25.02.2008 um 15:10 schrieb Abdelrazak Younes: Stefan Schimanski wrote: Am 25.02.2008 um 14:45 schrieb Abdelrazak Younes: The math completion works but not the text, is that normal? Well, depends on what you call working. First I disabled the automatic completi

Re: r23223 - in /lyx-devel/trunk/src/frontends/qt4: GuiComple...

2008-02-25 Thread Stefan Schimanski
Author: younes Date: Mon Feb 25 10:29:56 2008 New Revision: 23223 URL: http://www.lyx.org/trac/changeset/23223 Log: please don't forget about eol-style Stefan. Modified: lyx-devel/trunk/src/frontends/qt4/GuiCompleter.cpp (props changed) lyx-devel/trunk/src/frontends/qt4/GuiCompleter.h

Re: compilation error

2008-02-25 Thread Stefan Schimanski
Am 25.02.2008 um 15:21 schrieb Jürgen Spitzmüller: mathed/InsetMathNest.cpp:1808: error: prototype for 'lyx::docstring lyx::MathCompletionList::data(size_t) const' does not match any in class 'lyx::MathCompletionList' mathed/InsetMathNest.h:31: error: candidate is: virtual const lyx::docstring

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Stefan Schimanski
Am 25.02.2008 um 15:10 schrieb Abdelrazak Younes: Stefan Schimanski wrote: Am 25.02.2008 um 14:45 schrieb Abdelrazak Younes: The math completion works but not the text, is that normal? Well, depends on what you call working. First I disabled the automatic completion for text because it mi

compilation error

2008-02-25 Thread Jürgen Spitzmüller
mathed/InsetMathNest.cpp:1808: error: prototype for 'lyx::docstring lyx::MathCompletionList::data(size_t) const' does not match any in class 'lyx::MathCompletionList' mathed/InsetMathNest.h:31: error: candidate is: virtual const lyx::docstring& lyx::MathCompletionList::data(size_t) const mathed/

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Abdelrazak Younes
Stefan Schimanski wrote: Am 25.02.2008 um 14:45 schrieb Abdelrazak Younes: The math completion works but not the text, is that normal? Well, depends on what you call working. First I disabled the automatic completion for text because it might be annoying for many people.\ What is the pur

.mo files portability

2008-02-25 Thread Jean-Pierre Chrétien
Hello, I've detected a remaining shortcut conflict in fr.po. I've updated lyx-1.5.4.mo on my server, but is this .mo file portable on any platform ? If it is, I can publish it on the lyx-fr website. Where are located the .mo files ? Here on Solaris, they are in /usr/local/share/locale/fr/LC_MESSA

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Stefan Schimanski
Am 25.02.2008 um 14:49 schrieb Stefan Schimanski: Am 25.02.2008 um 14:45 schrieb Abdelrazak Younes: Abdelrazak Younes wrote: Stefan Schimanski wrote: = = = = --- lyx-devel/trunk/src/mathed/InsetMathNest.h (original) +++ lyx-d

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Stefan Schimanski
Am 25.02.2008 um 14:45 schrieb Abdelrazak Younes: Abdelrazak Younes wrote: Stefan Schimanski wrote: = = = = --- lyx-devel/trunk/src/mathed/InsetMathNest.h (original) +++ lyx-devel/trunk/src/mathed/InsetMathNest.h Mon Feb 25 14:

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Abdelrazak Younes
Abdelrazak Younes wrote: Stefan Schimanski wrote: --- lyx-devel/trunk/src/mathed/InsetMathNest.h (original) +++ lyx-devel/trunk/src/mathed/InsetMathNest.h Mon Feb 25 14:11:09 2008 @@ -28,7 +28,7 @@ /// virtual size_t si

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Abdelrazak Younes
Stefan Schimanski wrote: Am 25.02.2008 um 14:16 schrieb Abdelrazak Younes: Stefan Schimanski wrote: Modified: lyx-devel/trunk/src/mathed/InsetMathNest.h URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/mathed/InsetMathNest.h?rev=23226 = = = = = = = = = = =

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Stefan Schimanski
I have the hope that this change will fix my crash... Can you check whether the string coming from the btree is valid? That's the only possibility I see that the construction of the docstring there can fail. Stefan

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Stefan Schimanski
Am 25.02.2008 um 14:16 schrieb Abdelrazak Younes: Stefan Schimanski wrote: Modified: lyx-devel/trunk/src/mathed/InsetMathNest.h URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/mathed/InsetMathNest.h?rev=23226 = = = = = = = = = = ==

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Abdelrazak Younes
Stefan Schimanski wrote: Modified: lyx-devel/trunk/src/mathed/InsetMathNest.h URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/mathed/InsetMathNest.h?rev=23226 = = = = = = = = == --- lyx-devel/trunk/src/mathed/InsetMathN

Re: r23226 - in /lyx-devel/trunk/src: frontends/qt4/GuiComple...

2008-02-25 Thread Stefan Schimanski
Modified: lyx-devel/trunk/src/mathed/InsetMathNest.h URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/mathed/InsetMathNest.h?rev=23226 = = = = = = = = == --- lyx-devel/trunk/src/mathed/InsetMathNest.h (original) +++ lyx-deve

Re: [patch] fix unicode reversion remainder (bug 3313)

2008-02-25 Thread José Matos
On Monday 25 February 2008 10:36:13 Jürgen Spitzmüller wrote: > Could some Pythonist (José?) please review the patch before I commit? It seems to do what it says, I have no objection to this code. > Thanks, > Jürgen -- José Abílio

Re: Crash in trunk with Completion framework

2008-02-25 Thread Stefan Schimanski
Am 25.02.2008 um 11:25 schrieb Abdelrazak Younes: Stefan Schimanski wrote: What did you do to make this happen? 1) new document 2) type "lalalala l" 3) type "a" Works fine here. Even using stdlib-debug. Stefan

Re: svn-compiling problem

2008-02-25 Thread Abdelrazak Younes
sebastian guttenberg wrote: Hi all! After the last svn update (haven't updated for a while), I have problems with compiling. Some headers seem to be missing. I get the following messages: ... make[5]: Leaving directory `/home/basti/lyx-devel' /usr/bin/moc-qt4 -o GuiIdListModel_moc.cpp GuiIdListM

[patch] fix unicode reversion remainder (bug 3313)

2008-02-25 Thread Jürgen Spitzmüller
http://bugzilla.lyx.org/show_bug.cgi?id=3313 The attached patch finally implements the wrapper idea outlined here http://bugzilla.lyx.org/show_bug.cgi?id=3313#c40 and draws a line under this bug. Could some Pythonist (José?) please review the patch before I commit? Thanks, Jürgen Index: lib/lyx

svn-compiling problem

2008-02-25 Thread sebastian guttenberg
Hi all! After the last svn update (haven't updated for a while), I have problems with compiling. Some headers seem to be missing. I get the following messages: ... make[5]: Leaving directory `/home/basti/lyx-devel' /usr/bin/moc-qt4 -o GuiIdListModel_moc.cpp GuiIdListModel.h GuiIdListModel.h:0: War

Re: Crash in trunk with Completion framework

2008-02-25 Thread Abdelrazak Younes
Stefan Schimanski wrote: What did you do to make this happen? 1) new document 2) type "lalalala l" 3) type "a" Abdel.

Re: Crash in trunk with Completion framework

2008-02-25 Thread Stefan Schimanski
lyx.exe!std::char_traits::assign(unsigned long & _Left=3452816845, const unsigned long & _Right=) Line 173 + 0x6 bytes C++ lyx.exe!std::char_traits::_Copy_s(unsigned long * _First1=0x10560040, unsigned int _Dest_size=28716311, const unsigned long * _First2=0x01b81000, unsigned int _Count

Re: Google trend on LyX

2008-02-25 Thread Abdelrazak Younes
Martin Vermeer wrote: On Mon, 25 Feb 2008 09:40:10 +0100 Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Mildly interesting: http://www.google.com/trends?q=LyX&ctab=0&geo=all&date=all&sort=0 Abdel. and mildly false: "lyx" is "luxury" in Swedish :-) Year I was wondering how such a tiny c

Re: Google trend on LyX

2008-02-25 Thread Martin Vermeer
On Mon, 25 Feb 2008 09:40:10 +0100 Abdelrazak Younes <[EMAIL PROTECTED]> wrote: > Mildly interesting: > > http://www.google.com/trends?q=LyX&ctab=0&geo=all&date=all&sort=0 > > Abdel. and mildly false: "lyx" is "luxury" in Swedish :-) - Martin

Crash in trunk with Completion framework

2008-02-25 Thread Abdelrazak Younes
lyx.exe!std::char_traits::assign(unsigned long & _Left=3452816845, const unsigned long & _Right=) Line 173 + 0x6 bytes C++ lyx.exe!std::char_traits::_Copy_s(unsigned long * _First1=0x10560040, unsigned int _Dest_size=28716311, const unsigned long * _First2=0x01b81000, unsigned int _Count=28

Re: [ANNOUNCE]: LyX 1.5.4 is released

2008-02-25 Thread Jürgen Spitzmüller
Bennett Helm wrote: > I've put a universal binary of LyX/Mac-1.5.4 here: > > > > Could someone move it to the appropriate server? I'd like to, but I cannot reach the server ATM. I keep on retrying. Jürgen

[patch] pdf -> (e)ps converters

2008-02-25 Thread Jürgen Spitzmüller
The attached patch adds some converters that are needed when you try to view a document with pdf image as ps (bug 3968). I'll commit to branch and trunk if no one shouts. Jürgen Index: lib/configure.py === --- lib/configure.py (Revi

Google trend on LyX

2008-02-25 Thread Abdelrazak Younes
Mildly interesting: http://www.google.com/trends?q=LyX&ctab=0&geo=all&date=all&sort=0 Abdel.

Re: How LyX handles cross-references

2008-02-25 Thread Abdelrazak Younes
Dominik Böhm wrote: On Mon, Feb 25, 2008 at 8:36 AM, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: I hope some of you like this idea :-) Sure but I am sorry to tell you that you are not the first to come up wit this idea :-) Okay, but maybe my message triggers some new discussion about this