Re: lib/Makefile.am

2004-05-28 Thread Lars Gullik Bjønnes
Georg Baum <[EMAIL PROTECTED]> writes: | Lars, > | lib/Makefile.am contains some compiled python files: > | lyx2lyx_DATA = \ | lyx2lyx/error.pyc \ | lyx2lyx/lyx2lyx \ | lyx2lyx/parser_tools.pyc \ | lyx2lyx/lyx_1_4.pyc \ | lyx2lyx/parser_tools.py \ |

lib/Makefile.am

2004-05-28 Thread Georg Baum
Lars, lib/Makefile.am contains some compiled python files: lyx2lyx_DATA = \ lyx2lyx/error.pyc \ lyx2lyx/lyx2lyx \ lyx2lyx/parser_tools.pyc \ lyx2lyx/lyx_1_4.pyc \ lyx2lyx/parser_tools.py \ lyx2lyx/lyxconvert_221.pyc \ lyx2lyx/lyxconvert_223.

Re: one for Lars

2004-05-28 Thread Georg Baum
Lars Gullik Bjønnes wrote: > Angus Leeming <[EMAIL PROTECTED]> writes: > > | This is presumably related to Lars recent changes. All was fine last > | time I tried: I remember having the same problem some months ago. I could not get it to work and have now a shell script instead of the symlink.

Re: one for Lars

2004-05-28 Thread Lars Gullik Bjønnes
Angus Leeming <[EMAIL PROTECTED]> writes: | This is presumably related to Lars recent changes. All was fine last | time I tried: I have not changed any lyx code recently. I am no idea how any of my build changes can affect this. When was the last time you tried? | lyxrc.defaults

Re: Xforms toolbars are always shown

2004-05-28 Thread Angus Leeming
Angus Leeming wrote: > Brief testing suggests that all is Ok after the change, but I'm > about to disappear off for a long w/e so don't have time to test > properly. You might set "table" "table,bottom" in default.ui and > have a play with the User Guide. Do we get any extra flickering of > the scr

Indic LyX on Blog

2004-05-28 Thread Amitabh Trehaan
Hi, We have started work on developing an Indic version for the LyX WYSIWYM tool for LaTeX. a blog has been created at http://blog.sarai.net/community/indic_lyx/ . Though work started on 15 may, all entries have been put up today, so endure the clutter please. please have a look and comment. A

one for Lars

2004-05-28 Thread Angus Leeming
This is presumably related to Lars recent changes. All was fine last time I tried: I have a symlink ~/bin/xlyxcvs -> ~/lyx/devel/build/src/lyx-xforms If I invoke lyx-xforms directly, then it fires up Ok. If I invoke it through the symlink, then I get a little window Error while reading

Re: Xforms toolbars are always shown

2004-05-28 Thread Angus Leeming
Jean-Marc Lasgouttes wrote: > > This one is probably for Angus. > > When I launch lyx-xforms (with default toolbars configuration), I > find that all toolbars are always shown, whereas the math and table > toolbars are not shown in Qt. Yes, I see it too. > I tried to follow the logic of the co

Re: Xforms toolbars are always shown

2004-05-28 Thread Angus Leeming
Jean-Marc Lasgouttes wrote: > > This one is probably for Angus. > > When I launch lyx-xforms (with default toolbars configuration), I > find that all toolbars are always shown, whereas the math and table > toolbars are not shown in Qt. Yes, I see it too. > I tried to follow the logic of the co

Xforms toolbars are always shown

2004-05-28 Thread Jean-Marc Lasgouttes
This one is probably for Angus. When I launch lyx-xforms (with default toolbars configuration), I find that all toolbars are always shown, whereas the math and table toolbars are not shown in Qt. I tried to follow the logic of the code, but got stuck. Angus, do you think you can help? JMarc

Re: fdesign -convert is buggy

2004-05-28 Thread Angus Leeming
Angus Leeming wrote: >> String manipulation in C is so nice ;-) > > Isn't it just. Thanks for this, Georg. Actually, once you've got your head around the fact that nobody is there to hold your hand, it isn't too bad. The attached trial program has been tested and is always safe. I'm going to comm

Re: fdesign -convert is buggy

2004-05-28 Thread Angus Leeming
Georg Baum wrote: >> Test code attached. I'm pretty sure that this is safe, but would >> value second opinions... > > IMHO you should use strncat and strncpy instead of strcat and > strcpy. I am not sure if strncat requires it, but strncpy does not > terminate the string correctly if it was too lo

Re: doc in lyx-devel or out or in ...

2004-05-28 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> So what you are saying is: "Sure why not put docs in lyx-devel, Lars> won't make much of a difference anyway."? Yes, I think that it would be much simpler. Lars> I do not think I will do any cvs magic to copy the files over, L

Re: fdesign -convert is buggy

2004-05-28 Thread Georg Baum
Angus Leeming wrote: > I believe that we achieve what you're looking for with > -} else > - strcpy(fname, filename); > +} else { > + size_t const buffer_size = 512; > + char buffer[buffer_size]; > + char * cwd = getcwd(buffer, buffer_size); > + if (cwd) { > +