Re: Alles im Griff auf dem sinkenden Schiff...

2004-07-17 Thread Andre Poenitz
On Tue, Jul 13, 2004 at 12:42:26PM +0200, Jean-Marc Lasgouttes wrote: > > "Juergen" == Juergen Vigna <[EMAIL PROTECTED]> writes: > > Juergen> Hello boys, I still follow *very quiet* the lyx-devel list ;) Well, there are a few more people pretty quiet nowadays... > Juergen> I would *really* a

Re: tex2lyx shortcoming

2004-07-17 Thread Andre Poenitz
On Fri, Jul 16, 2004 at 06:23:57PM +0200, Georg Baum wrote: > Jose' Matos wrote: > > > Something that I have also noticed is that tex2lyx doesn't convert the > > accent \`{a} to the corresponding lyx accent, it converts it to ERT. This > > is a minor issue, but something that I would like to rep

Re: change-tracking status?

2004-07-17 Thread Andre Poenitz
On Fri, Jul 16, 2004 at 09:51:12PM +, Vaclav Smidl wrote: > First, it seems a little bit broken. It crashes on inserting maths, on any > action from the "Accept change menu", etc. I was about to start filling bug > reports when I realized from the existing ones that it used to work much > be

Re: [patch] Some old work

2004-07-17 Thread Angus Leeming
Lars Gullik Bjønnes wrote: > Which parts of this patch do you absolutely not want? Shrug. Does it squash any bugs? My guess is no. However, since no one is actively doing anything at all to lyx at the moment, I don't think that your "this is a feature freeze/bug fixes only please" is happening.

Re: tex2lyx shortcoming

2004-07-17 Thread Georg Baum
Juergen Spitzmueller wrote: > It's reversed because natbib uses a reversed order. Normally, LaTeX > commands are as \command[firstOpt][secondOpt]{Arg}. We honor this in the > the command inset, which is used for citation, too. In citation, "before" > is the second optional argument, i.e. it can on

Re: tex2lyx shortcoming

2004-07-17 Thread Angus Leeming
Georg Baum wrote: > Therefore I still prefer to put the complicated logic into insetcite and > not into tex2lyx. What do you think? Agreed. Makes even more sense if you consider an eventual lyx xml format. -- Angus

Re: [patch] Some old work

2004-07-17 Thread Lars Gullik Bjønnes
Angus Leeming <[EMAIL PROTECTED]> writes: | Lars Gullik Bjønnes wrote: > >> Which parts of this patch do you absolutely not want? > | Shrug. Does it squash any bugs? My guess is no. > | However, since no one is actively doing anything at all to lyx at the | moment, I don't think that your "this is

Re: [patch] Some old work

2004-07-17 Thread Angus Leeming
Lars Gullik Bjønnes wrote: > | About the patch: > | If you're going to store a shared_ptr in InsetTable, then you might as > | well use it properly: >> > | Index: src/output_latex.C > | -InsetBase * ins = it->inset; > | +InsetBase * ins = it->inset.get(); >> > | Stor

Re: tex2lyx shortcoming

2004-07-17 Thread Juergen Spitzmueller
Georg Baum wrote: > Why doesnt it behave sensible, i. e. > > \citeyearpar[before][after]{article-full} > \citeyearpar[before]{article-full} > \citeyearpar[][after]{article-full} because the standard citation is \cite[after]{article-full} (which natbib reads as \citet[after]{article-full}) The "co

Computer algebra in LyX

2004-07-17 Thread Jan Peters
Hi there! I am still switching forth and back between scientific workplace (running on virtual PC with WindowsNT 4 on my Mac :(, and under Crossover Office on my Linux box) and LyX. Obviously, that is a very undesirable state, but I am still missing many things in LyX which my daily life as a Ph.D

Re: [patch] Some old work

2004-07-17 Thread Lars Gullik Bjønnes
Angus Leeming <[EMAIL PROTECTED]> writes: | I don't have the energy to argue one way or the other. Too much exercise is | as bad as too litle. And you just leave me flumoxed(?). -- Lgb

Re: tex2lyx shortcoming

2004-07-17 Thread Jean-Marc Lasgouttes
> "Andre" == Andre Poenitz <[EMAIL PROTECTED]> writes: >> Does \`{a} in tex always mean the accent, or only for specific >> languages and/or packages? If yes, adding support for it is >> trivial. Andre> It should be a pretty safe assumption that this is an accent... Except in a tabbing envir

{bug] InsetIterator and DocIterator unusable with std::algorithms

2004-07-17 Thread Lars Gullik Bjønnes
Changes should be made so that the regular stl::algorithms can be used with InsetIterator and DocIterator. -- Lgb

Re: {bug] InsetIterator and DocIterator unusable with std::algorithms

2004-07-17 Thread Lars Gullik Bjønnes
[EMAIL PROTECTED] (Lars Gullik Bjønnes) writes: | Changes should be made so that the regular stl::algorithms can be used | with InsetIterator and DocIterator. Hmm it seems that the DocIterator and StableDocIterator are not really iterators at all, but containers of CursorSlices. Confusing. --

inverse dvi search and source specials

2004-07-17 Thread Lars Gullik Bjønnes
How are the source specials generated for the dvi generated from LyX? I cannot find any -src-specials arg to dvi that we use? (I am asking since I wan to get rid of TexRow, but I don't want to kill the dvi inverse search feature.) -- Lgb

[patch] LyXSocket cleanup

2004-07-17 Thread Lars Gullik Bjønnes
At least I find it a bit nicer. Comments/Objections? I have not fixed up qt and gtk to use the same scheme yet. (And I you wonder what I am doing: I am combing my way through the code and looking close at stuff that went in when I was not paying close attention. And trying to understand all the

Re: [patch] LyXSocket cleanup

2004-07-17 Thread Lars Gullik Bjønnes
[EMAIL PROTECTED] (Lars Gullik Bjønnes) writes: | At least I find it a bit nicer. Comments/Objections? > | I have not fixed up qt and gtk to use the same scheme yet. This patch supposedly fixes up qt and gtk as well. (I am not even compiled it...) Index: lyxsocket.h =