Re: Porting pop-ups in the rae branch

2000-03-09 Thread Allan Rae
On Wed, 8 Mar 2000, Angus Leeming wrote: I also modified a FEW lines of a few files in src/frontends/xforms/ and, of course, created two more, FormCredits.[Ch] which are closely modelled on FormCopyright.[Ch] The close similarity between FormCredits.[Ch] and FormCopyright.[Ch] (see

Paragraph/Buffer

2000-03-09 Thread Andre Poenitz
I just tried again to get 'guiless LyX' running (for batch things like --export latex etc). Currently the main obstacle is the relation between buffers and paragraphs. Usually when we are doing something big with buffers (like exporting to LaTeX) we do something on buffer level, hit the

Re: lyx-1.1.5cvs bug: All protected spaces export as ~

2000-03-09 Thread Jean-Marc Lasgouttes
"Lars" == Lars Gullik Bjønnes [EMAIL PROTECTED] writes: Lars Will more thatn the buffer parameters be needed then? We may need info at the buffer level, but also at the paragraph level (maybe the current layout is enough). JMarc

Re: cvs install nit

2000-03-09 Thread Jean-Marc Lasgouttes
"Lars" == Lars Gullik Bjønnes [EMAIL PROTECTED] writes: Lars "Garst R. Reese" [EMAIL PROTECTED] writes: | I installed cvs Lars 1.1.5cvs (this morning's) with --with-lyxname=lyxd | All of the Lars share directories etc went well, but the bin went into | Lars (overwrote) /usr/local/bin/lyx

Re: Porting pop-ups in the rae branch

2000-03-09 Thread Jean-Marc Lasgouttes
"Allan" == Allan Rae [EMAIL PROTECTED] writes: Allan 2. To avoid several people trying to port the same code ask me Allan if anyone is working on that dialog or at least post to this Allan list. I will add a table of dialogs with some comments to my Allan web pages so it'll be easier to see

Re: \show_banner

2000-03-09 Thread Jean-Marc Lasgouttes
"Lars" == Lars Gullik Bjønnes [EMAIL PROTECTED] writes: Lars I am not sure if anyone noticed, but I added a lyxrc variable Lars \show_banner that can be used to control whether to show the LyX Lars startup banner or not. Yes, I noticed. I guess it will be the main new feature in 1.1.5 for many

C++ question

2000-03-09 Thread Angus Leeming
Anyone with greater knowledge of C++ than me out there? I'm getting a linking error: /usr/bin/ld: Unresolved: FormCopyright::SigC::ObjectScoped virtual table FormCopyright virtual table collect2: ld returned 1 exit status make[2]: *** [lyx] Error 1 FormCopyright is derived from FormBase:

Need help!

2000-03-09 Thread Juergen Vigna
I just discovered a problem regarding the cursor and with it calculating if we hit an inset or not. The problem is that the x and y position of a cursor.pos (cursor.x and cursor.y) show the actual coordinates of the cursor but they can change when we are inside a text-inset so for example:

Paragraphs and Insets

2000-03-09 Thread Andre Poenitz
Guess what ;-) I am playing around with a Buffer * member in LyXParagraph and it works fairly smooth until it comes to insets that need buffer-level information like InsetQuotes (needs the languages). I know that there are plans to have paragraph level language support within the next couple

Code clean (linuxdoc import)

2000-03-09 Thread Jose Abilio Oliveira Matos
Hi, I'm looking at the linuxdoc import code as suggested several months ago by Jean-Marc. My plan is the following: Remove the code in BufferList::loadLyXFile(...) at bufferlist.C, that is the only instance where RunLinuxDoc(level, s) is called with level=-1.

BufferView::insertCorrectQuote

2000-03-09 Thread Andre Poenitz
Shouldn't this be a Buffer method? Andre' -- It'll take a long time to eat 63.000 peanuts. André Pönitz . [EMAIL PROTECTED]

Re: BufferView::insertCorrectQuote

2000-03-09 Thread Jean-Marc Lasgouttes
"Andre" == Andre Poenitz [EMAIL PROTECTED] writes: Andre Shouldn't this be a Buffer method? Andre' No, because it needs cursor position, which is at the BufferView level. JMarc

Re: C++ question

2000-03-09 Thread Angus Leeming
Problem solved. Forgot to create derived class destructor (Missing {}, see below). Angus #include "FormBase.h" class FormCredits : public FormBase { public: FormCredits(LyXFunc * c, Dialogs * d, Signal0void signal) : FormBase( c, d, signal ) {} ~FormCredits() {};

Re: Paragraph/Buffer

2000-03-09 Thread Jean-Marc Lasgouttes
"Andre" == Andre Poenitz [EMAIL PROTECTED] writes: Andre a) use current_view-buffer() to get the buffer. Problem: I Andre don't have a valid current_view now that I nuked some gui stuff Andre (read: put in 'if (lyxrc-no_gui) {...}') Bigger problem: Lars is currently trying to nuke

Re: Paragraphs and Insets

2000-03-09 Thread Jean-Marc Lasgouttes
"Andre" == Andre Poenitz [EMAIL PROTECTED] writes: Andre Guess what ;-) I am playing around with a Buffer * member in Andre LyXParagraph and it works fairly smooth until it comes to Andre insets that need buffer-level information like InsetQuotes Andre (needs the languages). Andre I know that

Re: Code clean (linuxdoc import)

2000-03-09 Thread Jean-Marc Lasgouttes
"Jose" == Jose Abilio Oliveira Matos [EMAIL PROTECTED] writes: Jose Remove the code in BufferList::loadLyXFile(...) at Jose bufferlist.C, that is the only instance where RunLinuxDoc(level, Jose s) is called with level=-1. Yes. Jose Should I remove IsSGMLFilename from

Re: BufferView::insertCorrectQuote

2000-03-09 Thread Andre Poenitz
No, because it needs cursor position No, it needs a single character from a certain paragraph. The cursor position is just a means to get that paragraph (and not a nice one I'd add..) which is at the BufferView level. The method is used just once (in trans_mgr.C). And there it is clear which

Re: problem with RPM

2000-03-09 Thread Jean-Marc Lasgouttes
"Kayvan" == Kayvan A Sylvan [EMAIL PROTECTED] writes: Kayvan --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Kayvan On Wed, Mar 08, 2000 at 06:02:37PM +0100, Kayvan [EMAIL PROTECTED] wrote: I have included the command in the spec file and it works too. I guess it would be a

Re: new lyx port does not link -- gettext (-lintl is missing)

2000-03-09 Thread Jean-Marc Lasgouttes
"Lars" == Lars Gullik Bjønnes [EMAIL PROTECTED] writes: Lars Mikhail Teterin [EMAIL PROTECTED] writes: | Stop. | [...] Lars | How-To-Repeat: | | | Fix: | A dirty fix is to add the -lintl Lars to the lyx_LDADD line | in src/Makefile after configure. A clean Lars fix is too | complicated I'm

Re: Problem with dead keys

2000-03-09 Thread Jean-Marc Lasgouttes
"Lars" == Lars Gullik Bjønnes [EMAIL PROTECTED] writes: Lars You, tell me. All this was added a lot later than my initial _X_ Lars dead_key support. In fact, it is you who added this code in lyxlookup.C. Lars Is this deadkey handling only wrong when a keymap is used? or Lars always? OK,

Re: Paragraph/Buffer

2000-03-09 Thread Andre Poenitz
Bigger problem: Lars is currently trying to nuke current_view. From what I've seen today this sounds very reasonable. The only problem I can see is that our changes clash. But I am used to this already ;-) Andre' PS: I don't get mails from Lars since our mailserver rejects plain 'ø' in mail

Re: Paragraphs and Insets

2000-03-09 Thread Andre Poenitz
This mean that there are many necessary updates when doing copy/paste. Ok. I just figured out that the mass of insets does not want to know about their whereabouts, so it's probably not wise to tell them. I think it would suffice to handle the quotes inset seperately. Andre' -- It'll take a

Re: Paragraph/Buffer

2000-03-09 Thread Jean-Marc Lasgouttes
"Andre" == Andre Poenitz [EMAIL PROTECTED] writes: Andre I can see is that our changes clash. But I am used to this Andre already ;-) Well, it's been about two years that Lars declared a crusade against current_view... It the reason why multiple views of a same buffer is not possible. JMarc

Re: BufferView::insertCorrectQuote

2000-03-09 Thread Jean-Marc Lasgouttes
"Andre" == Andre Poenitz [EMAIL PROTECTED] writes: No, because it needs cursor position Andre No, it needs a single character from a certain paragraph. The Andre cursor position is just a means to get that paragraph (and not Andre a nice one I'd add..) which is at the BufferView level.

Re: platypus (fwd)

2000-03-09 Thread mressler
On 9 Mar 2000, Lars Gullik Bjønnes wrote: [EMAIL PROTECTED] writes: | "!ht" means "Put the figure right here, darn it! and if you really can't, | then try the top of the next page. More like "I really, really want the figure right here". I you want "Put the figure here!" then you need

Re: Paragraphs and Insets

2000-03-09 Thread Kayvan A. Sylvan
On Thu, Mar 09, 2000 at 01:31:28PM +0100, Andre Poenitz wrote: Guess what ;-) I am playing around with a Buffer * member in LyXParagraph and it works fairly smooth until it comes to insets that need buffer-level information like InsetQuotes (needs the languages). I know that there are

Gui-less LyX

2000-03-09 Thread Andre Poenitz
It's possible. Have a look at http://mathematik.htwm.de/Software/LyX/nogui.html This page mentions some things that are broken. With one exception they don't affect 'ordinary' usage of LyX (at least I hope so). Andre' -- It'll take a long time to eat 63.000 peanuts. André Pönitz

FURF

2000-03-09 Thread Amir Karger
Now that I'm writing my thesis, I actually need to use LyX heavily. So I suspect I'm going to be learning a lot about it. The bad news (for you) is that I'll probably come up with a bunch of feature requests. For now, it's a pretty simple one. You know how LyX 1.0.4 and on puts citations from a

Re: Latest CVS does not compile

2000-03-09 Thread Lars Gullik Bjønnes
"Kayvan A. Sylvan" [EMAIL PROTECTED] writes: That is just plain wrong... what compiler are you using again? less ( atemplate) should be defined n algorithm. Lgb | On Wed, Mar 08, 2000 at 09:27:59PM -0800, Kayvan A. Sylvan wrote: | Here's the error: | | g++ -DHAVE_CONFIG_H -I. -I.

Portable Spell Checker Interface Library, rev 2

2000-03-09 Thread Kevin Atkinson
Here is the second revision to my "Portable Spell Checker Interface Library". Will someone still be willing to work on the ispell module like you said you will in the past http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg08808.html? Thanks? Portable Spell Checker

Re: Latest CVS does not compile

2000-03-09 Thread Kayvan A. Sylvan
On Thu, Mar 09, 2000 at 08:30:18PM +0100, Lars Gullik Bjønnes wrote: "Kayvan A. Sylvan" [EMAIL PROTECTED] writes: That is just plain wrong... what compiler are you using again? less ( atemplate) should be defined n algorithm. I'm using the stock egcs-1.1.2 on Redhat 6.0 and 6.1.

Re: Formatting source code

2000-03-09 Thread Kayvan A. Sylvan
On Thu, Mar 09, 2000 at 08:33:40PM +0100, Lars Gullik Bjønnes wrote: "Kayvan A. Sylvan" [EMAIL PROTECTED] writes: ??? Isn't listings.sty already in the rdhat dist of tetex? It is in mine. Yes. It is. It's not the latest and does not contain lstpatch.sty with the latest fixes.

Re: Arabic patch

2000-03-09 Thread Dekel Tsur
On Thu, Mar 09, 2000 at 02:55:47AM +0100, Lars Gullik Bjnnes wrote: Dekel Tsur [EMAIL PROTECTED] writes: I hope that you will we able to recreate the pach against current cvs. Now this was fun... patch.gz

Re: Porting pop-ups in the rae branch

2000-03-09 Thread Allan Rae
On 9 Mar 2000, Jean-Marc Lasgouttes wrote: "Allan" == Allan Rae [EMAIL PROTECTED] writes: Allan 2. To avoid several people trying to port the same code ask me Allan if anyone is working on that dialog or at least post to this Allan list. I will add a table of dialogs with some comments to

Re: Latest CVS does not compile

2000-03-09 Thread Lars Gullik Bjønnes
"Kayvan A. Sylvan" [EMAIL PROTECTED] writes: It was my mistake, uusing less wrong (and with the wrong header) Should be ok in cvs now. Lgb | On Thu, Mar 09, 2000 at 08:30:18PM +0100, Lars Gullik Bjønnes wrote: | "Kayvan A. Sylvan" [EMAIL PROTECTED] writes: | | | That is just

Re: Latest CVS does not compile

2000-03-09 Thread Kayvan A. Sylvan
On Fri, Mar 10, 2000 at 01:10:15AM +0100, Lars Gullik Bjønnes wrote: "Kayvan A. Sylvan" [EMAIL PROTECTED] writes: It was my mistake, uusing less wrong (and with the wrong header) Should be ok in cvs now. Cool. I'm now recompiling from fresh source. -- Kayvan A. Sylvan |

lyx-1.1.5cvs bug (pasting into footnote)

2000-03-09 Thread Kayvan A. Sylvan
I was working with my document (a Literate CGI perl script with all scripts and Makefiles included in the document) and got the following. Can anyone reproduce it? I'm using the latest CVS on purpose to help test and fix bugs while I also get paid work done. ;-)

Re: cvs install nit

2000-03-09 Thread Allan Rae
On 9 Mar 2000, Jean-Marc Lasgouttes wrote: "Lars" == Lars Gullik Bjønnes [EMAIL PROTECTED] writes: Lars "Garst R. Reese" [EMAIL PROTECTED] writes: | I installed cvs Lars 1.1.5cvs (this morning's) with --with-lyxname=lyxd | All of the Lars share directories etc went well, but the bin went

How do I put a literal TAB character in LyX?

2000-03-09 Thread Kayvan A. Sylvan
I need to put tab characters in for Makefiles. ---Kayvan -- Kayvan A. Sylvan | Proud husband of | Father to my kids: Sylvan Associates, Inc.| Laura Isabella Sylvan | Katherine Yelena http://www.successlinks.com/kayvan | Reach your goals

Re: cvs install nit

2000-03-09 Thread Garst R. Reese
Allan Rae wrote: My experience trying to use --program-prefix on gcc was that it didn't work. I ended up just using --program-transform-name instead. Does --program-transform-name='s,$,d,' do what you want Garst? Allan. (ARRae) I'll update soon, I hope, and give it a try. I presume

Re: Porting pop-ups in the rae branch

2000-03-09 Thread Lars Gullik Bjønnes
Allan Rae [EMAIL PROTECTED] writes: | On 9 Mar 2000, Jean-Marc Lasgouttes wrote: | | "Allan" == Allan Rae [EMAIL PROTECTED] writes: | | Allan 2. To avoid several people trying to port the same code ask me | Allan if anyone is working on that dialog or at least post to this | Allan list.

Re: How do I put a literal TAB character in LyX?

2000-03-09 Thread Lars Gullik Bjønnes
"Kayvan A. Sylvan" [EMAIL PROTECTED] writes: | I need to put tab characters in for Makefiles. See, Jurgen another use for the just a plain editor inset. Lgb

Re: How do I put a literal TAB character in LyX?

2000-03-09 Thread Kayvan A. Sylvan
On Fri, Mar 10, 2000 at 08:09:47AM +0100, Lars Gullik Bjønnes wrote: "Kayvan A. Sylvan" [EMAIL PROTECTED] writes: | I need to put tab characters in for Makefiles. See, Jurgen another use for the just a plain editor inset. I looked all over, and seeing that it's not currently possible I

Lots of crashes with lyx-1.1.5cvs

2000-03-09 Thread Kayvan A. Sylvan
I'm getting lots of crashes when deleting selected text or when just deleting text and spaces. Here's a typical crash... GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute

CVS ...

2000-03-09 Thread Andre Poenitz
I just run 'cvs update' but it seems something went wrong. The and marks that used to mark clashes are not balanced, so I can't tell what needs fixing. Furthermore some functions are broken (something like func1(...) { for (...) func2(...) { without closing braces. I think it should

Re: Porting pop-ups in the rae branch

2000-03-09 Thread Allan Rae
On Wed, 8 Mar 2000, Angus Leeming wrote: > I also modified a FEW lines of a few files in src/frontends/xforms/ > and, of course, created two more, FormCredits.[Ch] which are closely > modelled on FormCopyright.[Ch] > > The close similarity between FormCredits.[Ch] and FormCopyright.[Ch] > (see

Paragraph/Buffer

2000-03-09 Thread Andre Poenitz
I just tried again to get 'guiless LyX' running (for batch things like --export latex etc). Currently the main obstacle is the relation between buffers and paragraphs. Usually when we are doing something big with buffers (like exporting to LaTeX) we do something on buffer level, hit the

Re: lyx-1.1.5cvs bug: All protected spaces export as ~

2000-03-09 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> Will more thatn the buffer parameters be needed then? We may need info at the buffer level, but also at the paragraph level (maybe the current layout is enough). JMarc

Re: cvs install nit

2000-03-09 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> "Garst R. Reese" <[EMAIL PROTECTED]> writes: | I installed cvs Lars> 1.1.5cvs (this morning's) with --with-lyxname=lyxd | All of the Lars> share directories etc went well, but the bin went into | Lars> (overwrote)

Re: Porting pop-ups in the rae branch

2000-03-09 Thread Jean-Marc Lasgouttes
> "Allan" == Allan Rae <[EMAIL PROTECTED]> writes: Allan> 2. To avoid several people trying to port the same code ask me Allan> if anyone is working on that dialog or at least post to this Allan> list. I will add a table of dialogs with some comments to my Allan> web pages so it'll be easier

Re: \show_banner

2000-03-09 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> I am not sure if anyone noticed, but I added a lyxrc variable Lars> \show_banner that can be used to control whether to show the LyX Lars> startup banner or not. Yes, I noticed. I guess it will be the main new feature in

C++ question

2000-03-09 Thread Angus Leeming
Anyone with greater knowledge of C++ than me out there? I'm getting a linking error: /usr/bin/ld: Unresolved: FormCopyright::SigC::ObjectScoped virtual table FormCopyright virtual table collect2: ld returned 1 exit status make[2]: *** [lyx] Error 1 FormCopyright is derived from FormBase:

Need help!

2000-03-09 Thread Juergen Vigna
I just discovered a problem regarding the cursor and with it calculating if we hit an inset or not. The problem is that the x and y position of a cursor.pos (cursor.x and cursor.y) show the actual coordinates of the cursor but they can change when we are inside a text-inset so for example:

Paragraphs and Insets

2000-03-09 Thread Andre Poenitz
Guess what ;-) I am playing around with a Buffer * member in LyXParagraph and it works fairly smooth until it comes to insets that need buffer-level information like InsetQuotes (needs the languages). I know that there are plans to have paragraph level language support within the next couple

Code clean (linuxdoc import)

2000-03-09 Thread Jose Abilio Oliveira Matos
Hi, I'm looking at the linuxdoc import code as suggested several months ago by Jean-Marc. My plan is the following: Remove the code in BufferList::loadLyXFile(...) at bufferlist.C, that is the only instance where RunLinuxDoc(level, s) is called with level=-1.

BufferView::insertCorrectQuote

2000-03-09 Thread Andre Poenitz
Shouldn't this be a Buffer method? Andre' -- It'll take a long time to eat 63.000 peanuts. André Pönitz . [EMAIL PROTECTED]

Re: BufferView::insertCorrectQuote

2000-03-09 Thread Jean-Marc Lasgouttes
> "Andre" == Andre Poenitz <[EMAIL PROTECTED]> writes: Andre> Shouldn't this be a Buffer method? Andre' No, because it needs cursor position, which is at the BufferView level. JMarc

Re: C++ question

2000-03-09 Thread Angus Leeming
Problem solved. Forgot to create derived class destructor (Missing {}, see below). Angus #include "FormBase.h" class FormCredits : public FormBase { public: FormCredits(LyXFunc * c, Dialogs * d, Signal0 & signal) : FormBase( c, d, signal ) {} ~FormCredits() {};

Re: Paragraph/Buffer

2000-03-09 Thread Jean-Marc Lasgouttes
> "Andre" == Andre Poenitz <[EMAIL PROTECTED]> writes: Andre> a) use current_view->buffer() to get the buffer. Problem: I Andre> don't have a valid current_view now that I nuked some gui stuff Andre> (read: put in 'if (lyxrc->no_gui) {...}') Bigger problem: Lars is currently trying to nuke

Re: Paragraphs and Insets

2000-03-09 Thread Jean-Marc Lasgouttes
> "Andre" == Andre Poenitz <[EMAIL PROTECTED]> writes: Andre> Guess what ;-) I am playing around with a Buffer * member in Andre> LyXParagraph and it works fairly smooth until it comes to Andre> insets that need buffer-level information like InsetQuotes Andre> (needs the languages). Andre>

Re: Code clean (linuxdoc import)

2000-03-09 Thread Jean-Marc Lasgouttes
> "Jose" == Jose Abilio Oliveira Matos <[EMAIL PROTECTED]> writes: Jose> Remove the code in BufferList::loadLyXFile(...) at Jose> bufferlist.C, that is the only instance where RunLinuxDoc(level, Jose> s) is called with level=-1. Yes. Jose> Should I remove IsSGMLFilename from

Re: BufferView::insertCorrectQuote

2000-03-09 Thread Andre Poenitz
> No, because it needs cursor position No, it needs a single character from a certain paragraph. The cursor position is just a means to get that paragraph (and not a nice one I'd add..) > which is at the BufferView level. The method is used just once (in trans_mgr.C). And there it is clear

Re: problem with RPM

2000-03-09 Thread Jean-Marc Lasgouttes
> "Kayvan" == Kayvan A Sylvan <[EMAIL PROTECTED]> writes: Kayvan> --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Kayvan> On Wed, Mar 08, 2000 at 06:02:37PM +0100, Kayvan> [EMAIL PROTECTED] wrote: >> I have included the command in the spec file and it works too. I >> guess it

Re: new lyx port does not link -- gettext (-lintl is missing)

2000-03-09 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> Mikhail Teterin <[EMAIL PROTECTED]> writes: | Stop. | [...] Lars> | >How-To-Repeat: | | | >Fix: | A dirty fix is to add the -lintl Lars> to the lyx_LDADD line | in src/Makefile after configure. A clean Lars> fix is too |

Re: Problem with dead keys

2000-03-09 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> You, tell me. All this was added a lot later than my initial _X_ Lars> dead_key support. In fact, it is you who added this code in lyxlookup.C. Lars> Is this deadkey handling only wrong when a keymap is used? or Lars>

Re: Paragraph/Buffer

2000-03-09 Thread Andre Poenitz
> Bigger problem: Lars is currently trying to nuke current_view. >From what I've seen today this sounds very reasonable. The only problem I can see is that our changes clash. But I am used to this already ;-) Andre' PS: I don't get mails from Lars since our mailserver rejects plain 'ø' in mail

Re: Paragraphs and Insets

2000-03-09 Thread Andre Poenitz
> This mean that there are many necessary updates when doing copy/paste. Ok. I just figured out that the mass of insets does not want to know about their whereabouts, so it's probably not wise to tell them. I think it would suffice to handle the quotes inset seperately. Andre' -- It'll take

Re: Paragraph/Buffer

2000-03-09 Thread Jean-Marc Lasgouttes
> "Andre" == Andre Poenitz <[EMAIL PROTECTED]> writes: Andre> I can see is that our changes clash. But I am used to this Andre> already ;-) Well, it's been about two years that Lars declared a crusade against current_view... It the reason why multiple views of a same buffer is not possible.

Re: BufferView::insertCorrectQuote

2000-03-09 Thread Jean-Marc Lasgouttes
> "Andre" == Andre Poenitz <[EMAIL PROTECTED]> writes: >> No, because it needs cursor position Andre> No, it needs a single character from a certain paragraph. The Andre> cursor position is just a means to get that paragraph (and not Andre> a nice one I'd add..) >> which is at the

Re: platypus (fwd)

2000-03-09 Thread mressler
On 9 Mar 2000, Lars Gullik Bjønnes wrote: > <[EMAIL PROTECTED]> writes: > > | "!ht" means "Put the figure right here, darn it! and if you really can't, > | then try the top of the next page. > > More like "I really, really want the figure right here". I you want > "Put the figure here!" then

Re: Paragraphs and Insets

2000-03-09 Thread Kayvan A. Sylvan
On Thu, Mar 09, 2000 at 01:31:28PM +0100, Andre Poenitz wrote: > > Guess what ;-) > > I am playing around with a Buffer * member in LyXParagraph and it works > fairly smooth until it comes to insets that need buffer-level > information like InsetQuotes (needs the languages). > > I know that

Gui-less LyX

2000-03-09 Thread Andre Poenitz
It's possible. Have a look at http://mathematik.htwm.de/Software/LyX/nogui.html This page mentions some things that are broken. With one exception they don't affect 'ordinary' usage of LyX (at least I hope so). Andre' -- It'll take a long time to eat 63.000 peanuts. André Pönitz

FURF

2000-03-09 Thread Amir Karger
Now that I'm writing my thesis, I actually need to use LyX heavily. So I suspect I'm going to be learning a lot about it. The bad news (for you) is that I'll probably come up with a bunch of feature requests. For now, it's a pretty simple one. You know how LyX 1.0.4 and on puts citations from a

Re: Latest CVS does not compile

2000-03-09 Thread Lars Gullik Bjønnes
"Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: That is just plain wrong... what compiler are you using again? less<> ( atemplate) should be defined n algorithm. Lgb | On Wed, Mar 08, 2000 at 09:27:59PM -0800, Kayvan A. Sylvan wrote: | > Here's the error: | > | > g++ -DHAVE_CONFIG_H

Portable Spell Checker Interface Library, rev 2

2000-03-09 Thread Kevin Atkinson
Here is the second revision to my "Portable Spell Checker Interface Library". Will someone still be willing to work on the ispell module like you said you will in the past http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg08808.html? Thanks? Portable Spell Checker

Re: Latest CVS does not compile

2000-03-09 Thread Kayvan A. Sylvan
On Thu, Mar 09, 2000 at 08:30:18PM +0100, Lars Gullik Bjønnes wrote: > "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: > > > That is just plain wrong... what compiler are you using again? > > less<> ( atemplate) should be defined n algorithm. I'm using the stock egcs-1.1.2 on Redhat 6.0 and

Re: Formatting source code

2000-03-09 Thread Kayvan A. Sylvan
On Thu, Mar 09, 2000 at 08:33:40PM +0100, Lars Gullik Bjønnes wrote: > "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: > > > ??? Isn't listings.sty already in the rdhat dist of tetex? It is in > mine. Yes. It is. It's not the latest and does not contain lstpatch.sty with the latest fixes.

Re: Arabic patch

2000-03-09 Thread Dekel Tsur
On Thu, Mar 09, 2000 at 02:55:47AM +0100, Lars Gullik Bjnnes wrote: > Dekel Tsur <[EMAIL PROTECTED]> writes: > > > I hope that you will we able to recreate the pach against current cvs. Now this was fun... patch.gz

Re: Porting pop-ups in the rae branch

2000-03-09 Thread Allan Rae
On 9 Mar 2000, Jean-Marc Lasgouttes wrote: > > "Allan" == Allan Rae <[EMAIL PROTECTED]> writes: > > Allan> 2. To avoid several people trying to port the same code ask me > Allan> if anyone is working on that dialog or at least post to this > Allan> list. I will add a table of dialogs with

Re: Latest CVS does not compile

2000-03-09 Thread Lars Gullik Bjønnes
"Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: It was my mistake, uusing less wrong (and with the wrong header) Should be ok in cvs now. Lgb | On Thu, Mar 09, 2000 at 08:30:18PM +0100, Lars Gullik Bjønnes wrote: | > "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: | > | > | > That is

Re: Latest CVS does not compile

2000-03-09 Thread Kayvan A. Sylvan
On Fri, Mar 10, 2000 at 01:10:15AM +0100, Lars Gullik Bjønnes wrote: > "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: > > It was my mistake, uusing less wrong (and with the wrong header) > Should be ok in cvs now. Cool. I'm now recompiling from fresh source. -- Kayvan A. Sylvan

lyx-1.1.5cvs bug (pasting into footnote)

2000-03-09 Thread Kayvan A. Sylvan
I was working with my document (a Literate CGI perl script with all scripts and Makefiles included in the document) and got the following. Can anyone reproduce it? I'm using the latest CVS on purpose to help test and fix bugs while I also get paid work done. ;-)

Re: cvs install nit

2000-03-09 Thread Allan Rae
On 9 Mar 2000, Jean-Marc Lasgouttes wrote: > > "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: > > Lars> "Garst R. Reese" <[EMAIL PROTECTED]> writes: | I installed cvs > Lars> 1.1.5cvs (this morning's) with --with-lyxname=lyxd | All of the > Lars> share directories etc went well,

How do I put a literal TAB character in LyX?

2000-03-09 Thread Kayvan A. Sylvan
I need to put tab characters in for Makefiles. ---Kayvan -- Kayvan A. Sylvan | Proud husband of | Father to my kids: Sylvan Associates, Inc.| Laura Isabella Sylvan | Katherine Yelena http://www.successlinks.com/kayvan | Reach your goals

Re: cvs install nit

2000-03-09 Thread Garst R. Reese
Allan Rae wrote: > > My experience trying to use --program-prefix on gcc was that it didn't > work. I ended up just using --program-transform-name instead. Does > --program-transform-name='s,$,d,' do what you want Garst? > > Allan. (ARRae) I'll update soon, I hope, and give it a try. I

Re: Porting pop-ups in the rae branch

2000-03-09 Thread Lars Gullik Bjønnes
Allan Rae <[EMAIL PROTECTED]> writes: | On 9 Mar 2000, Jean-Marc Lasgouttes wrote: | | > > "Allan" == Allan Rae <[EMAIL PROTECTED]> writes: | > | > Allan> 2. To avoid several people trying to port the same code ask me | > Allan> if anyone is working on that dialog or at least post to this

Re: How do I put a literal TAB character in LyX?

2000-03-09 Thread Lars Gullik Bjønnes
"Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: | I need to put tab characters in for Makefiles. See, Jurgen another use for the just a plain editor inset. Lgb

Re: How do I put a literal TAB character in LyX?

2000-03-09 Thread Kayvan A. Sylvan
On Fri, Mar 10, 2000 at 08:09:47AM +0100, Lars Gullik Bjønnes wrote: > "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: > > | I need to put tab characters in for Makefiles. > > See, Jurgen another use for the just a plain editor inset. I looked all over, and seeing that it's not currently

Lots of crashes with lyx-1.1.5cvs

2000-03-09 Thread Kayvan A. Sylvan
I'm getting lots of crashes when deleting selected text or when just deleting text and spaces. Here's a typical crash... GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute

CVS ...

2000-03-09 Thread Andre Poenitz
I just run 'cvs update' but it seems something went wrong. The and marks that used to mark clashes are not balanced, so I can't tell what needs fixing. Furthermore some functions are broken (something like func1(...) { for (...) func2(...) { without closing braces. I think