Re: Indexing

1999-10-19 Thread mv
[...] > Indexing is currently barely supported in LyX, we only support a > strait-through access to the latex \index command. I have some plans > on how to make real indexing support in LYX, but would like to have > opinions on how this should work and what the user interface should > be. > >

Re: help lyx

1999-10-19 Thread Lars Gullik Bjønnes
Michael Lim Shek Sia <[EMAIL PROTECTED]> writes: | Dear sir / madam, | | I have recently downloaded a version of lyx-1.0.4. and the | associated library and display files, Xforms 0.88 and libXpm. | | I have installed everything with no difficulties, however, when | I try to run it, lyx gives

help lyx

1999-10-19 Thread Michael Lim Shek Sia
Dear sir / madam, I have recently downloaded a version of lyx-1.0.4. and the associated library and display files, Xforms 0.88 and libXpm. I have installed everything with no difficulties, however, when I try to run it, lyx gives a segmentation fault, no other info is available and I have no

Re: Compiling lyxstring.C with cxx -std strict_ansi

1999-10-19 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | cxx: Warning: ../../../lyx-devel/src/support/lyxstring.h, line 101: type | qualifiers are meaningless in this declaration | typedef const reference const_reference; Ok, I try with typedef value_type const & const_reference ins

Re: http://www.lyx.org/internet/mailing.php3

1999-10-19 Thread Lars Gullik Bjønnes
[EMAIL PROTECTED] (Pablo De Napoli) writes: | As I've already told you in my previous e-mails , I would like to join the | developing of lyx. But I will need some help since I'm new to the gnu | developing standards and tools (automake/autoconf/cvs, etc.) Sure, we are always happy to get more de

http://www.lyx.org/internet/mailing.php3

1999-10-19 Thread Pablo De Napoli
Hello! As I've already told you in my previous e-mails , I would like to join the developing of lyx. But I will need some help since I'm new to the gnu developing standards and tools (automake/autoconf/cvs, etc.) I succeeded in getting the latest lyx resources from the cvs server, but I've some

Re: Paragraph Format buggy with latest lyx-devel?

1999-10-19 Thread Kayvan A. Sylvan
On Tue, Oct 19, 1999 at 05:34:08PM +0200, Lars Gullik Bjønnes wrote: > Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: > > | > "Kayvan" == Kayvan A Sylvan <[EMAIL PROTECTED]> writes: > | > | Kayvan> I could not set a paragraph to "Itemize" in the letter > | Kayvan> document format using the

Re: possible bug report

1999-10-19 Thread Jean-Marc Lasgouttes
> "Tom" == Tom Vogt <[EMAIL PROTECTED]> writes: Tom> lyx version: 1.0.1 (beta?) - as from suse 6.2 problem: the option Tom> two-sides in layout->document does nothing Tom> fix: it seems that the entry "twoside" into the geometry package Tom> options is not made, no matter what the sides opti

possible bug report

1999-10-19 Thread Tom Vogt
lyx version: 1.0.1 (beta?) - as from suse 6.2 problem: the option two-sides in layout->document does nothing fix: it seems that the entry "twoside" into the geometry package options is not made, no matter what the sides option is set two. exporting the document as tex and inserting the

Re: Should lyxstring.C be compiled when we use STL strings?

1999-10-19 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | > "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: | | Lars> Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | | Lars> Subjects says it all. | | Lars> No. But puting in ifdef guards is the wrong solution. | | OK, feel free to imp

Re: file->fax

1999-10-19 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | Lars> Juergen> if (s && *s) | | Juergen> I already did this so, ... ;) Lars> | | OK, it looks reasonable. Lars> No, it does not! I think we got the message :) JMarc

Re: Should lyxstring.C be compiled when we use STL strings?

1999-10-19 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | Lars> Subjects says it all. Lars> No. But puting in ifdef guards is the wrong solution. OK, feel free to implement the right solution :) I thought using ifdefs was what we di

Re: Paragraph Format buggy with latest lyx-devel?

1999-10-19 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | Lars> > "Kayvan" == Kayvan A Sylvan <[EMAIL PROTECTED]> writes: | Lars> | Kayvan> I could not set a paragraph to "Itemize" in the letter Lars> | Kayvan> document format usi

Re: file->fax

1999-10-19 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | Juergen> if (s && *s) | | Juergen> I already did this so, ... ;) | | OK, it looks reasonable. No, it does not! Lgb

Re: file->fax

1999-10-19 Thread Lars Gullik Bjønnes
Juergen Vigna <[EMAIL PROTECTED]> writes: | No I mean remove the Assert() and change | | if (*s) | | to | | if (s && *s) | | I already did this so, ... ;) Plain wrong. Lgb PS: I wonder if the mgs is getting through soon...

Re: file->fax

1999-10-19 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | Juergen> Assert(s); // we don't allow null pointers | | The assert is maybe not necessary. Lars? It is very necessary! Lgb

Re: file->fax

1999-10-19 Thread Lars Gullik Bjønnes
Juergen Vigna <[EMAIL PROTECTED]> writes: | Assert(s); // we don't allow null pointers Excatly what the standard says. | But then something like this is not possible: | | string str = ptr; // ptr could also be 0 yes, and this should fail. | but we always have to do something like: | | strin

Re: file->fax

1999-10-19 Thread Lars Gullik Bjønnes
Juergen Vigna <[EMAIL PROTECTED]> writes: | Really Lars we should fix this and the problem with xforms_0.89 and | release a 1.0.4.1! 1.0.4.1 will not happen. Lgb

Re: Should lyxstring.C be compiled when we use STL strings?

1999-10-19 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | Subjects says it all. No. But puting in ifdef guards is the wrong solution. Lgb

Re: Paragraph Format buggy with latest lyx-devel?

1999-10-19 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | > "Kayvan" == Kayvan A Sylvan <[EMAIL PROTECTED]> writes: | | Kayvan> I could not set a paragraph to "Itemize" in the letter | Kayvan> document format using the latest lyx-devel from CVS. | | OK, this is fixed now. It turns out that it was

Re: Indexing

1999-10-19 Thread Lars Gullik Bjønnes
"Garst R. Reese" <[EMAIL PROTECTED]> writes: | Always a PITA, but it seems to be an area which could be improved in | LyX. | In particular, a way of select a phrase, e.g. Chocolate Cookies to be | indexed under Cookies. You guessed it, Alice is writing a cookbook. From | the docs in Extended, I g

Re: a4 paper very small margin

1999-10-19 Thread Nicolas SABOURET
The margins aren't very small. They're normal margins, and on a4 paper, it looks terrible ! At least it's what it does on my computer. Anyway, I got an answer from a Lyx developper telling me it was normal because this option (a4 very small margins) was from a sty package, and I should not use it

Re: file->fax

1999-10-19 Thread Jean-Marc Lasgouttes
> "Juergen" == Juergen Vigna <[EMAIL PROTECTED]> writes: >> Juergen> I think this should be removed and there should be a check in Juergen> the constructor which just does not initialize if the pointer Juergen> is a 0 pointer! >> You mean initialize to empty? Juergen> No I mean remove the A

Re: a4 paper very small margin

1999-10-19 Thread Jean-Marc Lasgouttes
> "Nicolas" == Nicolas SABOURET <[EMAIL PROTECTED]> writes: Nicolas> In LyX 1.0.4 : In the "Layout/Paper" window, when I select Nicolas> "special/a4 very small margin", it doesn't work properly. I Nicolas> first have to select "Papersize/A4" and then "special/a4 very Nicolas> small margin". T

Re: file->fax

1999-10-19 Thread Juergen Vigna
> > Juergen> I think this should be removed and there should be a check in > Juergen> the constructor which just does not initialize if the pointer > Juergen> is a 0 pointer! > > You mean initialize to empty? No I mean remove the Assert() and change if (*s) to if (s && *s) I already did thi

Re: file->fax

1999-10-19 Thread Jean-Marc Lasgouttes
> "Juergen" == Juergen Vigna <[EMAIL PROTECTED]> writes: Juergen> Ok then at least we should now stop inserting new stuff, fix Juergen> the bugs and release the first 1.1.0 version :) Yes, that's the right way. 1.1.1 should be out as soon as possible. If we take too much time, there will be

Re: unicode how?

1999-10-19 Thread miyata
[EMAIL PROTECTED] (Lars Gullik Bjnes) wrote: > Does X have sopport for multiple locale? Rememver that the GUI and the > BufferView can have different locales. begin 666 testXOM.c.bz2 M0EIH.3%!6293641_V]@``6I?@&`P>W___[^_W\JN8`3?>JZNQZT>0].@ M`))*:&HPC)ZF1IHVC29#)A-#U&FFF0``-`)2(3]2;)3R3TGI'I

Re: [XFreeOS2] Cannot Run Some X_Apps

1999-10-19 Thread miyata
"Arnd Hanses" <[EMAIL PROTECTED]> wrote: > But this is not an imminent problem, though. On the _very_ long run, I > think, the process of building and configuring LyX should not be forked > into several different scripting languages. Best thing would be a > uniform and consistent method, which sh

Re: file->fax

1999-10-19 Thread Juergen Vigna
On 19-Oct-99 Jean-Marc Lasgouttes wrote: >> "Juergen" == Juergen Vigna <[EMAIL PROTECTED]> writes: > > Juergen> Thank's this is exactly what I looked for :). This IS a bug > Juergen> and it should be solved! Did someone already apply the patch > Juergen> for this '-'->'_' problem? Otherwise

Re: file->fax

1999-10-19 Thread Jean-Marc Lasgouttes
> "Juergen" == Juergen Vigna <[EMAIL PROTECTED]> writes: Juergen> Thank's this is exactly what I looked for :). This IS a bug Juergen> and it should be solved! Did someone already apply the patch Juergen> for this '-'->'_' problem? Otherwise I'll have a look. This has not been fixed yet. How

Re: file->fax

1999-10-19 Thread Juergen Vigna
On 19-Oct-99 Jan Ulrich Hasecke wrote: > CMD: faxspool '4' > '/tmp/lyx_tmp22397aaa/lyx_bufrtmp22397aaa/Flyer-1.ps_tmp' >>/tmp/lyx_tmp22397aaa/lyx_bufrtmp22397aaa/FAX22397aaa > 2>/tmp/lyx_tmp22397aaa/lyx_bufrtmp22397aaa/FAX22397aaa > > There is a file in this directory, but it is called: > Flye

Re: string::find_first_not_of

1999-10-19 Thread Juergen Vigna
On 19-Oct-99 Asger K. Alstrup Nielsen wrote: >> shouln't return the above function and also find_first_of(...) an index >> startin from 0 as all string functions do normally? I need a fast answer >> as someone (I guess I know how ;) missinterpreted some function calls >> in vspace.C and so they d

Re: Indexing

1999-10-19 Thread Jean-Marc Lasgouttes
> "Garst" == Garst R Reese <[EMAIL PROTECTED]> writes: Garst> Always a PITA, but it seems to be an area which could be Garst> improved in LyX. In particular, a way of select a phrase, e.g. Garst> Chocolate Cookies to be indexed under Cookies. You guessed it, Garst> Alice is writing a cookbook

Re: Paragraph Format buggy with latest lyx-devel?

1999-10-19 Thread Jean-Marc Lasgouttes
> "Kayvan" == Kayvan A Sylvan <[EMAIL PROTECTED]> writes: Kayvan> I could not set a paragraph to "Itemize" in the letter Kayvan> document format using the latest lyx-devel from CVS. OK, this is fixed now. It turns out that it was the common problem of adding an int to a string :( Can we find

Re: Paragraph Format buggy with latest lyx-devel?

1999-10-19 Thread Jean-Marc Lasgouttes
> "Kayvan" == Kayvan A Sylvan <[EMAIL PROTECTED]> writes: Kayvan> I could not set a paragraph to "Itemize" in the letter Kayvan> document format using the latest lyx-devel from CVS. Kayvan> Also, the paragraph format did not follow the cursor position Kayvan> correctly. e.g. I click on a "St

Re: Urgent:_Problem_compiling_Lyx

1999-10-19 Thread Jean-Marc Lasgouttes
> "Anibal" == Anibal J S Ferreira <[EMAIL PROTECTED]> writes: Anibal> Dear Sirs, I have tried to compile "Lyx" on my Iris Indigo Anibal> (R3000) running Irix 5.3. Based on the report below, could you Anibal> please help me or at least indicate how should I ask for help Anibal> ? Hello, Anib

Re: Some compilation problems with latest cvs

1999-10-19 Thread Asger K. Alstrup Nielsen
> If you'd ask me (And I'm pretty sure, you won't ;-| ): Make a single > stable release and start over from scratch. The *last* step would be to > add compatibility to the existent LyX. I always thought that's what was > intented with the old 1.1 branch? We tried that, but it didn't work. We do

Re: string::find_first_not_of

1999-10-19 Thread Asger K. Alstrup Nielsen
> shouln't return the above function and also find_first_of(...) an index > startin from 0 as all string functions do normally? I need a fast answer > as someone (I guess I know how ;) missinterpreted some function calls > in vspace.C and so they don't work anymore. Now I would like to know > if I

Should lyxstring.C be compiled when we use STL strings?

1999-10-19 Thread Jean-Marc Lasgouttes
Subjects says it all. JMarc

string::find_first_not_of

1999-10-19 Thread Juergen Vigna
Hi, shouln't return the above function and also find_first_of(...) an index startin from 0 as all string functions do normally? I need a fast answer as someone (I guess I know how ;) missinterpreted some function calls in vspace.C and so they don't work anymore. Now I would like to know if I shou

RE: Bug with table dialog in 1.0.4

1999-10-19 Thread Juergen Vigna
On 19-Oct-99 Nils Jeppe wrote: > > You're right, it is 0.89 - I am a little surprised, because I was very > certain that when I first compiled LyX, I grabbed whatever XForms library > it said to get in the LyX Installation docs. Did this change some time, > like was the recommendation "downgrade

RE: Bug with table dialog in 1.0.4

1999-10-19 Thread Nils Jeppe
On Tue, 19 Oct 1999, Juergen Vigna wrote: > I did tell that I won't answer any 0.89 problems anymore, but as you > didn't mention xforms 0.89 you probably don't know what library you use #:O) > Try to do a ldd lyx and see what xforms library you use (it's for sure 0.89 ;) > and then go and look i