Eric Wilhelm | 1 Aug 2005 01:19
Picon
Favicon

Re: "lyx -e" under mod_perl or other non-interactive environments

# from Jean-Marc Lasgouttes
# on Sunday 31 July 2005 02:40 pm:

>Eric>   system(qw(lyx -e pdf foo.lyx));
>
>Is there any interesting outout on stderr? You may want to add "-dbg
>any" to see more info.

I don't know if it's "interesting", but here is what ends up happening 
last before it choked.

Fname: IEEEtran
Clname: IEEEtran
Desc: article (IEEEtran)
Avail: 0

If it does any good, the attached file is a concatenation of the output 
of every debug flag individually.  This environment is tricky to work 
in, so I just wrote a loop into my perl code to run it with each '-dbg' 
option and then had a "watch -n 10 ..." killing the subprocesses every 
ten seconds as the perl code looped through them.

I've found this debug output in ./src/lyxtextclasslist.C suspiciously 
inside a switch inside a while with what looks like another debug 
message following it.  I'm still not setup to compile and test anything 
though, and can't even say if the same behavior persists in CVS...

Thanks,
Eric
--

-- 
(Continue reading)

Eric May | 1 Aug 2005 06:05
Picon

LyX 1.3.6 Installation Error

Hi-

I get the following error upon completion of running the windows installer
for lyx.

Lyx wasn't able to find its layout descriptions!

Check that the file "textclass.lst" is installed correctly. Sorry has to
exit.

The file does not exist on my system, is there a place to get it?  Or any
other help would be great.  

Thanks

-Eric

-------------------------------------------

Eric May
Graduate Student
Chemical Engineering Department
University of Florida
Gainesville, FL 32611
Phone(h): 352-264-9748
Phone(o) : 352-392-3850
email: ericmay51@...

--------------------------------------------

(Continue reading)

Georg Baum | 1 Aug 2005 09:30
Picon
Picon

Re: "lyx -e" under mod_perl or other non-interactive environments

Eric Wilhelm wrote:

> Hi all,
> 
> Please forgive (and kindly correct) me if this is a bug that has been
> reported, known, or fixed.  I'm running 1.3.4 on debian sarge and am
> just gearing-up to dig into the CVS head.
> 
> I had the brilliant idea to automagically update articles on my website
> by installing a mason "dhandler" to check the md5sum of a lyx document
> against a known value and regenerate an exported format accordingly.
> Trouble is that this will not run (actually hangs at 100% CPU) under an
> apache1.3/mod_perl environment.
> 
>   system(qw(lyx -e pdf foo.lyx));

Please try 1.3.6. I vaguely remember that a bug was fixed related to the -e
switch somewhere around 1.3.4.

Georg

Jean-Marc Lasgouttes | 1 Aug 2005 10:54
Picon
Picon
Favicon

Re: [PATCH] no.po update for 1.4

>>>>> "Helge" == Helge Hafting <helge.hafting@...> writes:

Helge> no.po translation updated: 

Thanks Helge, this is now in.

Note that I take your comments and turn them into a ChangeLog entry.
Actually, it would be even easier for me if you provided the ChangeLog
entry as part of your patch :)

JMarc

Lars Gullik Bjønnes | 1 Aug 2005 12:07

Re: [PATCH] Re: Report on tex2lyx and lyx2lyx

Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@...> writes:

| Yes, it seems that the grave accent was forgotten altogether. 
>
| Lars, can I apply the attached patch?

Yes.

--

-- 
	Lgb

Lars Gullik Bjønnes | 1 Aug 2005 12:14

Re: [PATCH] bug 465: enumeration counter not reset between table cells

Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@...> writes:

| This is a fix for
| http://bugzilla.lyx.org/show_bug.cgi?id=465
>
| What this does is to basically rewrite the setCounter code to use
| proper ParIterator and fix nesting of enumerate and itemize when they
| are in nested insets. This is demonstrated by file bug465.lyx.
>
| It also fixes a nesting bug that was already present in 1.3.x (without
| any insets), as demonstrated by bug465.lyx.
>
| While I am rather confident that the code works better than what we
| have (at least now I understand it :), I'd appreciate testing.
>
| Of course I plan to remove the debug output once I am ready to commit.
>
| Lars, can I commit it? I do not have new ideas about things to test,
| so I guess real world testing is the best :)

The only think I am unsure about is opening up the dociterator
interface (protected -> public.) Perhaps this is a case where friend
could be used instead?

--

-- 
	Lgb

Lars Gullik Bjønnes | 1 Aug 2005 12:15

Re: [patch] bug 1254 (change tracking and blanks)

Juergen Spitzmueller <juergen.sp@...> writes:

| http://bugzilla.lyx.org/show_bug.cgi?id=1254
>
| This patch fixes the problem reported as bug 1254. Deleted blanks (in change 
| tracking mode) are handled as such by the code that forbids and the code that 
| deletes consecutive blanks.
>
| OK?

Ok

--

-- 
	Lgb

Jean-Marc Lasgouttes | 1 Aug 2005 12:34
Picon
Picon
Favicon

Re: [PATCH] bug 465: enumeration counter not reset between table cells

>>>>> "Lars" == Lars Gullik Bjønnes <larsbj@...> writes:

Lars> The only think I am unsure about is opening up the dociterator
Lars> interface (protected -> public.) 

Note that LCursor has push() and pop() that are just public wrappers
around push_bacl() and pop_back(). It looks a bit silly to make this
unavailable to the iterators... I can keep clean() protected if you
want.

Lars> Perhaps this is a case where friend could be used instead?

Who could be friend? This code is in free-standing functions...

JMarc

Lars Gullik Bjønnes | 1 Aug 2005 12:49

Re: [PATCH] bug 465: enumeration counter not reset between table cells

Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@...> writes:

>>>>>> "Lars" == Lars Gullik Bjønnes <larsbj@...> writes:
>
| Lars> The only think I am unsure about is opening up the dociterator
| Lars> interface (protected -> public.) 
>
| Note that LCursor has push() and pop() that are just public wrappers
| around push_bacl() and pop_back(). It looks a bit silly to make this
| unavailable to the iterators... I can keep clean() protected if you
| want.
>
| Lars> Perhaps this is a case where friend could be used instead?
>
| Who could be friend? This code is in free-standing functions...

The free-standing functions, but as said I am unsure aboutthis.

--

-- 
	Lgb

Jean-Marc Lasgouttes | 1 Aug 2005 13:09
Picon
Picon
Favicon

Re: [PATCH] bug 465: enumeration counter not reset between table cells

>>>>> "Lars" == Lars Gullik Bjønnes <larsbj@...> writes:

Lars> The free-standing functions, but as said I am unsure aboutthis.

Just tell me when you have made up your mind, then. I could not think
of another way to do what I wanted. I mean, it is of course possible,
but kind of ugly.

JMarc


Gmane