Still problem with umlaut in math mode

1999-11-15 Thread Michael Meskes

The attached file was written with LC_ALL=de_DE and contains a german umlaut
inside math mode. It works nicely. However, once I chnage my locale to us_US
the unlaut disappeares. Not only is it left out on the screen but also when
I save the document. 

Note this behaviour was added in one of the 1.0.4pre releases. Prior to
these releases it was even more broken.

Michael

P.S.: Please CC me on replies.
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Installation problems with lyx-1.1.2

1999-11-15 Thread Michael Meskes

This probably is not really new to you, but I wanted to report it just in
case. So please take my apologies if this is old stuff.

I'm been experiencing problems with 1.1.2 in that it does not find its
system_lyxdir. The binary is installed under /usr/X11R6/bin and the
system_lyxdir should be /usr/X11R6/share/lyx. However, since the shell
addresses the binary as /usr/bin/X11/lyx this directory is not found.

I tracked this problem down the code in LyX::init /arounf line 240 in
lyx_main.C) where the fullbinpath is checked for a link. However, lyx itself
is not a link, so the test does nothing. I tried using binpath instead but
that won't work on my glibc-2.1.2 Linux machine since the path ends with '/'
and thus the real directory is checked via stat().

After removing the last '/' it should work. But this looks too much like a
hack since I don't know the remaining code enough. I decided to hard code
the system_lyxdir for the moment and let you guys fix the problem
correctly.

Michael

P.S.: Please CC me on replies.
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Bug in X not LyX

1999-11-15 Thread Michael Meskes

A while ago I forwarded the following Debian bug report to this list:

 First the french keymap is installed (cf the French-HOWTO).

 Then on a french keyboard :

  if LC_ALL=fr_FR then pressing the key 2é~ in UPPERCASE mode has no
  effect in LyX.

  if LC_ALL=fr then pressing the key 2é~ in UPPERCASE mode produce
  the correct result : an uppercase E with accent grave.

I tracked this bug down to the call to XLookupString. In both cases the
parameters to XLookupString are the same (except for some serial and the
display) but the result is complete different. So I guess this is an X bug. 

Michael

-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



And another question

1999-11-15 Thread Michael Meskes

I just saw the compile time define HAVE_XOPENIM. It seems there is no
way to activate it. But the way I read the source (lyxlookup.C) it should be
activated for all X11 releases starting with R5. Since I use R6 I activated
it by hand just to learn the source doesn't even compile. 

So what is that code snippet all about?

Michael

P.S.: Please CC me on replies.
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: And another question

1999-11-16 Thread Michael Meskes

On Tue, Nov 16, 1999 at 11:39:11AM +0100, Jean-Marc Lasgouttes wrote:
> Huh? Could you give some details? HAVE_XOPENIM is defined at configure

Sure. What do you need?

> time if configure manage to compile a simple program using XOpenIM().

I see. But I did a grep HAVE_XOPENIM over the complete source tree and
didn't find anything except in lyxlookup.C. 

Ah, should have thought about this earlier. I just greped for only XOpenIM
and founf it in configure. And config.cache correctly lists

ac_cv_func_XOpenIM=${ac_cv_func_XOpenIM=yes}

However, there is no other appearance on the complete source tree. That
means HAVE_XOPENIM is not defined in any of the Makefiles.

> What version of X do you have? On which system?

X11R6 version 3.3.5 on a fairly up-to-date Debian Gnu/Linux system running
glibc-2.1.2.

Hope this helps.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Bug in X not LyX

1999-11-17 Thread Michael Meskes

On Wed, Nov 17, 1999 at 04:39:56PM +0100, Jean-Marc Lasgouttes wrote:
> Maybe can you find some XopenIM() guru somewhere on the debian lists
> to help...

I try.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Installation problems with lyx-1.1.2

1999-11-17 Thread Michael Meskes

On Wed, Nov 17, 1999 at 06:08:09PM +0100, Jean-Marc Lasgouttes wrote:
> I just noticed that the default hardcoded path was not set correctly
> in the makefile. I just fixed it. Sorry for the inconvenience.

No problem. Thanks for fixing it.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: And another question

1999-11-17 Thread Michael Meskes

On Wed, Nov 17, 1999 at 04:35:01PM +0100, Jean-Marc Lasgouttes wrote:
> Michael> I see. But I did a grep HAVE_XOPENIM over the complete source
> Michael> tree and didn't find anything except in lyxlookup.C.
> 
> And src/config.h, where it is defined. Otherwise, there is something

No and that's the problem:

michael@tanja:~/lyx-1.1.2$ grep -i openim config.cache src/config.h
config.cache:ac_cv_func_XOpenIM=${ac_cv_func_XOpenIM=yes}

> This should be good enough... But as far as I know, XOpenIM() is
> actually used in your case...

At least it is available and the test correctly find it.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Mailing list problem

1999-01-16 Thread Michael Meskes

I've been unable to subscribe to this list on an address not equal to the
one I did sent my mail from. I do have some mailboxes around the internet
and my system correctly sets the From: address. But apparently the mailing
list software does not look at that.

Any ideas?

I'd like to be subscribed with [EMAIL PROTECTED]

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



ABORT in LyX 1.12

1999-01-16 Thread Michael Meskes

Just try 'View DVI' on the attached small lyx file and the program is
aborted.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!


#This file was created by  Wed Nov 17 21:40:46 1999
#LyX 1.0 (C) 1995-1999 Matthias Ettrich and the LyX Team
\lyxformat 2.15
\textclass article
\language default
\inputencoding latin1
\fontscheme default
\graphics default
\paperfontsize default
\spacing single 
\papersize Default
\paperpackage a4
\use_geometry 0
\use_amsmath 0
\paperorientation portrait
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language english
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle default

\layout Subparagraph*

Zusammenhang zwischen Wahrscheinlichkeitsdichte und Wahrscheinlichkeitsverteilu
n
g:
\layout Standard


\begin_inset Formula \( F_{x}(x_{2})-F_{x}(x_{1})=P(\{\eta \mid x_{1}\leq x(\et
a )\leq x_{2}\})=\int ^{x_{2}}_{x_{1}}f_{x}(x)dx \)
\end_inset 

 
\the_end




Re: ABORT in LyX 1.12

1999-01-16 Thread Michael Meskes

On Thu, Nov 18, 1999 at 01:23:14PM +, Ben Cazzolato wrote:
> I've had a look at you file.  I think there was a small problem with the \et a
> rather that \eta.  I fixed it and sure enough it crashes.

Oops. My fault. I used lynx to download the file and it broke the line
between the 'et' and the 'a'. I thought I added the fixed version. Sorry.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: ABORT in LyX 1.12

1999-01-16 Thread Michael Meskes

On Thu, Nov 18, 1999 at 03:26:30PM +0100, Jean-Marc Lasgouttes wrote:
> I just tried it and it seems to work correctly... Could you provide a
> backtrace?

Oops, hit the send button to fast. Of course I can provide a backtrace.
However, I do not have the source available just now. If you still need it
I can send it on Monday I think. Sorry, but I won't find the time prior.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: And another question

1999-01-16 Thread Michael Meskes

On Thu, Nov 18, 1999 at 03:23:10PM +0100, Jean-Marc Lasgouttes wrote:
> So the bug is fixed now. As far as you are concerned, just add a 

Thanks. Will there be another stable release in the next time?

> #define HAVE_XOPENIM
> at the beginning of lyxlookup.C and recompile.

I will. Thanks.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: ABORT in LyX 1.12

1999-01-16 Thread Michael Meskes

On Thu, Nov 18, 1999 at 03:26:30PM +0100, Jean-Marc Lasgouttes wrote:
> I just tried it and it seems to work correctly... Could you provide a
> backtrace?

Jean-Marc, it does not segfault if the \eta command is incorrect. Then it
just says 'There was an error.'

I reattach the correct version.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!


#This file was created by  Thu Nov 18 17:55:21 1999
#LyX 1.0 (C) 1995-1999 Matthias Ettrich and the LyX Team
\lyxformat 2.15
\textclass article
\language default
\inputencoding latin1
\fontscheme default
\graphics default
\paperfontsize default
\spacing single 
\papersize Default
\paperpackage a4
\use_geometry 0
\use_amsmath 0
\paperorientation portrait
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language english
\quotes_times 2
\papercolumns 1
\papersides 1
\paperpagestyle default

\layout Subparagraph*

Zusammenhang zwischen Wahrscheinlichkeitsdichte und Wahrscheinlichkeitsverteilun
g:
\layout Standard


\begin_inset Formula \( F_{x}(x_{2})-F_{x}(x_{1})=P(\{\eta \mid x_{1}\leq x(\eta )\leq 
x_{2}\})=\int ^{x_{2}}_{x_{1}}f_{x}(x)dx \)
\end_inset 

 
\the_end



Re: ABORT in LyX 1.12

1999-01-17 Thread Michael Meskes

On Thu, Nov 18, 1999 at 06:17:10PM +0100, Jean-Marc Lasgouttes wrote:
> This one does not crash either for me. What I did is:
> 
> - load the file
> 
> - run File->View DVI
> 
> Is this correct?

Yes. Do you get the DVI file displayed? What locale setting do you have?

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: And another question

1999-01-17 Thread Michael Meskes

On Thu, Nov 18, 1999 at 06:10:20PM +0100, Jean-Marc Lasgouttes wrote:
> Not in the very near future. There have been a lot of changes recently
> and they need to stabilize a bit.

Okay. Thanks. That means I have to create a bug fix release for Debian.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: ABORT in LyX 1.12

1999-01-17 Thread Michael Meskes

On Thu, Nov 18, 1999 at 06:14:51PM +0100, Jean-Marc Lasgouttes wrote:
> >> I just tried it and it seems to work correctly... Could you provide
> >> a backtrace?

Okay, I found some time. Here it is:

(gdb) run
Starting program: /home/michael/todo/lyx-1.1.2/src/lyx
Program received signal SIGABRT, Aborted.
0x402445d1 in kill () from /lib/libc.so.6
(gdb) where
#0  0x402445d1 in kill () from /lib/libc.so.6
#1  0x402442b8 in raise () from /lib/libc.so.6
#2  0x40245911 in abort () from /lib/libc.so.6
#3  0x8118654 in lyxstring::substr (this=0xb558, i=14, n=4294967295)
at LAssert.h:14
#4  0x8113d2f in OnlyFilename (fname=@0xb558) at filetools.C:597
#5  0x8056d71 in LaTeX::deplog (this=0xb624, head=@0xb5d0)
at LaTeX.C:658
#6  0x80558ee in LaTeX::run (this=0xb624, terr=@0xb640,
minib=0x81bbec8) at LaTeX.C:417
#7  0x806c0c5 in Buffer::runLaTeX (this=0x8204488) at buffer.C:3154
#8  0x808bf51 in MenuRunLaTeX (buffer=0x8204488) at lyx_cb.C:459
#9  0x808ca04 in MakeDVIOutput (buffer=0x8204488) at lyx_cb.C:554
#10 0x808ca8c in RunScript (buffer=0x8204488, wait=false, command=@0xb7e8,
orgname=@0xb7dc, need_shell=true) at lyx_cb.C:573
#11 0x808d7b6 in MenuPreview (buffer=0x8204488) at lyx_cb.C:826
#12 0x80a8714 in LyXFunc::Dispatch (this=0x81bc830, ac=12,
do_not_use_this_arg=0x0) at lyxfunc.C:630
#13 0x80bb914 in Menus::ShowFileMenu (ob=0x81b4f30) at menus.C:664
#14 0x80b8c24 in C_Menus_ShowFileMenu (ob=0x81b4f30, data=0) at menus.C:71
#15 0x40040a34 in fl_object_qread () from /usr/X11R6/lib/libforms.so.0.89
#16 0x40050a3e in fl_check_forms () from /usr/X11R6/lib/libforms.so.0.89
#17 0x809bc09 in LyXGUI::runTime (this=0x8188c20) at lyx_gui.C:634
#18 0x809cf19 in LyX::LyX (this=0xbb30, argc=0xbbd4, argv=0xbc34)
at ../src/lyx_main.C:123
#19 0x80b8bea in main (argc=1, argv=0xbc34) at ../src/main.C:43

The path given to Only Filename is "\\OML/cmm/m/it/10". BTW it always is
that path.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Bug report: LyX Strange: this should actually never happen anymore, this it should be handled by the Absolute check.

1999-11-22 Thread Michael Meskes

On Mon, Nov 22, 1999 at 04:23:04PM +0100, Lars Gullik Bjønnes wrote:
> I think this is fixed in cvs.

Could anyone please tell me if there is a patch for this. I'd like to
backport the neccessary changes to 1.1.2 so teh Debian package is free of
this bug.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Bug report: LyX Strange: this should actually never happen anymore, this it should be handled by the Absolute check.

1999-11-23 Thread Michael Meskes

On Tue, Nov 23, 1999 at 11:01:07AM +0100, Lars Gullik Bjønnes wrote:
> You can try out the string.patch at
> ftp://ftp.devel.lyx.org/pub/lyx/string.patch it contains all the
> changes made to lyxstring since the release of 1.1.2.

Thanks. This patch fixes it.

Michael

-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



patch to lyxlookup

1999-11-23 Thread Michael Meskes

Here's a small patch I needed to get lyxlookup.C to compile after enybling
HAVE_XOPENIM.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!


--- lyx-1.1.2.orig/src/lyxlookup.C  Thu Oct  7 20:44:14 1999
+++ lyx-1.1.2/src/lyxlookup.C   Tue Nov 23 17:04:15 1999
@@ -35,12 +35,12 @@
// This part could be done before opening display
setlocale(LC_CTYPE,"");
if (!XSupportsLocale()) {
-   lyxerr.debug("InitLyXLookup: X does not support this locale.");
+   lyxerr.debug() << "InitLyXLookup: X does not support this locale." << 
+endl;
return;
} 
if (!XSetLocaleModifiers("")) {
-   lyxerr.debug("InitLyXLookup: Could not set modifiers "
-"for this locale.");
+   lyxerr.debug() << "InitLyXLookup: Could not set modifiers "
+"for this locale." <type != KeyPress)
-   lyxerr <<"LyXLookupString: wrong event type" 
- +string(event->type));
+   lyxerr << "LyXLookupString: wrong event type" << event->type;
+
Status status_return;

result =  XmbLookupString(xic, &event->xkey, buffer_return,
@@ -189,7 +189,7 @@
 void CloseLyXLookup() 
 {
if (xic) {
-   lyxerr.debug("CloseLyXLookup: destroying input context");
+   lyxerr.debug() << "CloseLyXLookup: destroying input context" << endl;
XDestroyIC(xic);
XCloseIM(xim);
}



That french key problem

1999-11-23 Thread Michael Meskes

I just compiled lyx with XopenIM enabled and was able to reproduce this
problem. To me it looks like this is really a french locale problem.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: patch to lyxlookup

1999-11-23 Thread Michael Meskes

On Tue, Nov 23, 1999 at 05:15:46PM +0100, Lars Gullik Bjønnes wrote:
> You know you can do a 
> 
> cvs rdiff -r lyx-1_1_2 -r HEAD lyx-devel

No, I didn't know that. Thanks. So I take it this command gives me all the
changes. Does it give me a patch file?

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: patch to lyxlookup

1999-11-23 Thread Michael Meskes

On Tue, Nov 23, 1999 at 05:13:19PM +0100, Jean-Marc Lasgouttes wrote:
> Thanks. It is in fact already done in cvs.

Thanks.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: That french key problem

1999-11-25 Thread Michael Meskes

On Wed, Nov 24, 1999 at 04:02:51PM +0100, Jean-Marc Lasgouttes wrote:
> Could you try to approach some people involved with these XFree
> locales and see whether they can do something? If I remember

I gave the bug report to our X11 people but got no reply so far.

> correctly, these keys work in other applications (emacs?).

I have no idea. And since I don't even have emacs installed I cannot check.

Michael

-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: patch to lyxlookup

1999-11-25 Thread Michael Meskes

On Wed, Nov 24, 1999 at 08:18:15PM +0100, Lars Gullik Bjønnes wrote:
> Note that the use of the whole of this diff in a debian update should
> not be done... only the parts that fix specific bugs in 1.1.2. There

Of course not. Then it would be easier to use the pre-release tar ball. :-)

> are other things in that diff that are likely to introduce other bugs.

That's why I go with the stable version. But I try to fix as many bugs as
possible.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: lyx bugs

1999-11-26 Thread Michael Meskes

On Fri, Nov 26, 1999 at 06:23:48PM +0200, Tuukka Toivonen wrote:
> 2. File->View postscript
> For some documents, this command seems to crash lyx. I have still
> investigate this further, but some example files are at
> http://www.ee.oulu.fi/~tuukkat/lyxcrash.zip.
> (I think the crash happens when LyX converts the document to TeX)
> 
> It's lyx 1.1.2 I have. Compiled from source with egcs, on linux 2.2.13.

I guess this is the same problem I had with View DVI. If so it is fixed in
CVS and in the latest Debian release.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: That french key problem

1999-11-30 Thread Michael Meskes

On Fri, Nov 26, 1999 at 09:57:08AM +0100, Jean-Marc Lasgouttes wrote:
> Could you try in any Xaw application or whatever if this works? I do
> not have XFree myself.

No problem. However, I do not have any idea why you ask for athena widgets.
I don't think they are the problem. Anyway, here's what I tested:

cooledit- bug present (uses Cool widget library)
xpaint  - bug not present (is not localized at all, i.e. I get
english menues etc.)
gedit   - bug not present (does not call setlocale either, but is
partly localized using GNOME functionality)
xfig- bug not present (menues are still in english but does call
setlocale)

Also I tracked down the problem inside LyX and found that the event
structure in both cases (with bugyy fr_FR setting and with working fr
setting) contains the same date except for some serials. So the problem has
to be somewhere inside the locale or inside XFree.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Release of LyX 1.1.3.

1999-11-30 Thread Michael Meskes

On Wed, Dec 01, 1999 at 01:25:05AM +0100, Lars Gullik Bjønnes wrote:
> ftp://ftp.lyx.org/pub/lyx/devel/lyx-1.1.3.tar.tgz
> (will be moved to stable if few/no serious bugs are reported)

There were some (not so serious maybe) bugs reported so far. Does that mean
the release is still called stable? If the bugs are too serious will there
be a new fixed 1.1.3 or will the fixed one be called 1.1.4?

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Diffs for modification to allow Fraktur and Blackboard Bold fonts

1999-12-03 Thread Michael Meskes

On Fri, Dec 03, 1999 at 12:33:16AM +0100, Paul Seelig wrote:
> You must have completely lost your marbles sending out a 3.4MB file to a
> mailing list. Learn some basic netiquette please and upload such a file to
> the LyX FTP site next time.

Seems it's not usual.  Please remember that some of us pay for a slow modem
line before sending out such a huge patch again.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Diffs for modification to allow Fraktur and Blackboard Bold fonts

1999-12-03 Thread Michael Meskes

On Thu, Dec 02, 1999 at 01:27:25PM -0500, Justin Smith wrote:
> Here they are. They were taken from the Dec 1 version of the  1.1.4cvs source:
> ...

Is it normal for this list to carry such huge patches? If so I'm going to
unsubscribe.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: [Fwd: LyX on Debian]

2000-02-02 Thread Michael Meskes

On Wed, Feb 02, 2000 at 09:49:27AM +0100, Asger Alstrup Nielsen wrote:
> I used LyX on RedHat without problems, but on Debian it works as well, but
> can't use Latex.  It says while compiling that latex was found (it is
> there) but it is not usable.

Do you use a self compiled lyx? Or do you use the pre-compiled package?

This certainly looks like a problem in your latex setup.

> Do you know that as common problem ?

I never heard about this from the Debian community.

> Every thing is installed fine regarding my Debian system.

Sorry, but I doubt this. Please try exporting a lyx-file to latex,
compile it by just hitting latex  and tell us what happened.

Michael

-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: [Fwd: LyX on Debian]

2000-02-02 Thread Michael Meskes

On Wed, Feb 02, 2000 at 01:20:25PM +0100, Paul Seelig wrote:
> ii  lyx 1.1.4-0pre1 High Level Word Processor

BTW when can we expect 1.1.4? Does it make sense to update to pre2 or shall
I wait? I did put the pre version in because
a) our 1.1.2 release was more a 1.1.3 because of bug fixes I backported
(well in fact just cvsed and applied).
b) we are in freeze now, i.e. I have no problem updating a package (that is
same upstream version) but can no longer insert a new version

> I guess you need to give some more concrete information before we can
> give you any advice.  Why didn't you BTW write the Debian maintainer
> for LyX about you problem?

Yup. I read it here first.

michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: [Fwd: LyX on Debian]

2000-02-03 Thread Michael Meskes

On Thu, Feb 03, 2000 at 04:05:02PM +0100, Lars Gullik Bjønnes wrote:
> Unless something really strange happens I will release 1.1.4 in a
>  couple of hours.

Great!

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: new command: date-insert

2000-02-03 Thread Michael Meskes

On Thu, Feb 03, 2000 at 03:58:02PM +0100, Lars Gullik Bjønnes wrote:
> | +   for (int i = 0; i < datetmp_len; i++) {
> 
> In C++ it is adviced to use preincrement instead of postincrement:

Could anyone please enlighten me and tell me why preincrement is preferred
over postincrement?

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Bug in 1.1.4

2000-02-12 Thread Michael Meskes

I have a file that has an umlaut in its name. When I try to view DVI it
doesn't find the dvi-file because it no longer has that umlaut but a '|' in
its name. Interestingly when viewing PS the command line has the correct
name with .PS ending but the incorrect one with .dvi ending.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Bug in 1.1.4

2000-02-17 Thread Michael Meskes

On Wed, Feb 16, 2000 at 05:26:21PM +0100, Jean-Marc Lasgouttes wrote:
> I just announced my 1.1.4fix1 patch, which is just a collection of
> small fixes like this one. I think you can apply it to your package,
> since I took care to put in it only short and safe bits.

Thanks. Got it.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Bug in 1.1.4

2000-02-16 Thread Michael Meskes

On Wed, Feb 16, 2000 at 02:03:29PM +0100, Jean-Marc Lasgouttes wrote:
> Thanks for finding it. I fixed the problem. What happens is that latex
> does not like accented characters in file names, so we apply some
> magic to the file name. Since ghostscript does not have this problem,
> we use the right name here.

I see. Is it possible you send me a small pazch just for this problem? I
don't want to include any new features in the Debian package now that we are
in freeze mode.

Thanks.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Lyx-1.1.4 Internationalization

2000-02-10 Thread Michael Meskes

On Thu, Feb 10, 2000 at 07:48:06PM +0100, Ulrich Guenther wrote:
> setenv LANG de
> The menus remain English!
> However the key bindings default to de_menus
> (what a pain).  
> 
> Any ideas how to fix this?

How about setenv LC_ALL de_DE?

Works for me.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: About LyX 1.1.4pre2

2000-03-03 Thread Michael Meskes

On Thu, Mar 02, 2000 at 04:49:32PM +0100, Jean-Marc Lasgouttes wrote:
> I have accumulated a good number of fixes over 1.1.4pre1 and I think
> it may be time to release fix2. I append to this message the

Where do I find this? It doesn't seem to be on the ftp site.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: About LyX 1.1.4pre2

2000-03-03 Thread Michael Meskes

On Fri, Mar 03, 2000 at 02:42:02PM +0100, Jean-Marc Lasgouttes wrote:
> No it's not :) I do not want to have many versions of this around, so I do
> not make this collection of fixes available before release. All these
> fixes are just picked from cvs however.

As I see. It seems I misunderstood you. I thought you had already released
it.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Linuxcare word processors page

2000-03-16 Thread Michael Meskes

On Tue, Mar 14, 2000 at 09:57:49AM +0200, Martin Vermeer wrote:
> http://www.linuxcare.com/products/prodmore.epl?PRODUCT_GROUP=Word+Processors
> 
> Should we be on it?

AFAIK it is on now. And it's rated first place along with Word Perfect right
now.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



[motyl@stan.chemie.unibas.ch: Bug#65081: lyx: problems with importing multipart latex with include command]

2000-06-02 Thread Michael Meskes

FYI

Michael

P.S.: Please CC me on replies.

- Forwarded message from Tomasz Motylewski <[EMAIL PROTECTED]> -

Subject: Bug#65081: lyx: problems with importing multipart latex with include command
Date: Fri, 2 Jun 2000 02:09:00 +0200 (CEST)
From: Tomasz Motylewski <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED]


Package: lyx
Version: 1.1.4-7
Severity: normal

This mail contains recipe to reproduce certain bugs in Lyx, 
both in 1.1.4fix3 and 1.1.5pre3. Text in "" is lyx messages, <>
user input.

First, get all 3 files from: ftp://crds.chemie.unibas.ch/pub/lyxbug/
The only important part is (d0.tex):
\begin{document}
\maketitle
 \include{d2}
\clearpage
 \include{d3}
\end{document}

Start lyx, Import d0.tex


"reLyX, the LaTeX to LyX translator. Revision date 2000/03/29"

"Reading LaTeX command syntax 
(d0.tex: Splitting Preamble
Creating LyX preamble
Reading layout file 
Cleaning... Translating... Writing... )
(d2.tex: Cleaning... Translating... Writing... )
(d3.tex: Cleaning... Translating... Writing... )
Deleting temp files
Finished successfully!"

BUG1:
"Document is already open ~/dok/patrick/d1.lyx
Do you want to reload the document?"



"Changes in document ~/dok/patrick/d0.lyx Save document?"
USER STUPIDITY1:


BUG2:
Result: No document open.

Click in menu File: d0.lyx

"Do you want to reload?"


The opened document looks empty.

ALTERNATIVE (NEXT TRY, delete d?.lyx, restart LYX):

Import d0.tex

"reLyX, the LaTeX to LyX translator []"

BUG1:
"Document is already open ~/dok/patrick/d0.lyx
Do you want to reload the document?"



"Changes in document ~/dok/patrick/d0.lyx Save document?"


BUG2:
Result: No document open.

Choose menu File: d0.lyx

"Document is already open ~/dok/patrick/d0.lyx
Do you want to reload the document?"


This time it looks OK, contains two Include: d2 and Include: d3 boxes.

Doubleclick on Include: d2 box.

Include window opens with "use input" marked (BUG3 - should be probably "Use include").
BUG4:
"File name: d2" (should be d2.lyx)

click on   

"Cannot open specified file ~/dok/patrick/d2. Create new document with this name?" 
BUG4: the name shown in the Include window should have .lyx extension. It looks like 
reLyX bug.
Generated Lyx code is:
\begin_inset Include \include{d2}
it should be:
\begin_inset Include \include{d2.lyx}

I enter d2.lyx in "Include" window "File name:" and press 
I see d2 contents (chapter 1 etc...)

I choose menu File: d0.lyx to return to prev. document.
"Document is already open ~/dok/patrick/d0.lyx
Do you want to reload the document?"  


BUG5:
lyx: SIGSEGV signal caught
Sorry, you have found a bug in LyX. If possible, please read 'Known bugs'
under the Help menu and then send us a full bug report. Thanks!
lyx: Attempting to save document /home/motyl/dok/patrick/d0.lyx as...
  1) /home/motyl/dok/patrick/d0.lyx.emergency
  Save seems successful. Phew.
Bye.
Aborted

Please mail me if you have some questions.

-- System Information
Debian Release: 2.2
Kernel Version: Linux crds.chemie.unibas.ch 2.2.16pre3 #3 SMP Sun May 21 19:42:12 CEST 
2000 i586 unknown

Versions of the packages lyx depends on:
ii  libc6  2.1.3-10   GNU C Library: Shared libraries and Timezone
ii  libforms0.89   0.89-6 The XForms graphical interface widget librar
ii  libstdc++2.10  2.95.2-12  The GNU stdc++ library
ii  xlib6g 3.3.6-6    shared libraries required by X clients
ii  xpm4g  3.4k-5 the X PixMap library
^^^ (Provides virtual package libxpm4)



- End forwarded message -

-- 
Michael Meskes
[EMAIL PROTECTED]
Go SF 49ers! Go Rhein Fire!
Use Debian GNU/Linux! Use PostgreSQL!



bugs

1999-02-19 Thread Michael Meskes

I found some spare time today and decided to dig through the Debian bug
archive and check which bugs reported on LyX are still present in version
1.0.0. I hope you don't mind me sending reports resp. patches for what I
find.

So far I found two:
1) Lyx has wrong char in french keyboard layout, should use `a instead of 'a

--- /usr/X11R6/lib/X11/lyx/kbd/french.kmap.origMon Oct 12 11:50:441998
+++ /usr/X11R6/lib/X11/lyx/kbd/french.kmap  Mon Oct 12 11:52:18 1998
@@ -27,7 +27,7 @@
 \kmap * 8
 \kmap 9 "\\c{c}"
 \kmap ( 9
-\kmap 0 "\\'{a}"
+\kmap 0 "\\`{a}"
 \kmap ) 0
 \kmap - )
 \kmap _ "\\b{}"# degree sign?

2) 'I just mis-typed "lynx" and instead started lyx on a telnet terminal
without an associated X display.  While it's fine that lyx tells the
user that it can't open the display, it should not generate a
segmentation fault and dump core afterwards.'

--- src/lyx_gui.C.orig  Thu Feb 18 17:27:15 1999
+++ src/lyx_gui.C   Thu Feb 18 17:28:52 1999
@@ -177,7 +177,8 @@
setDefaults();

static const int num_res = sizeof(res)/sizeof(FL_resource);
-   printf("%d\n", fl_initialize(argc, argv, "LyX", cmdopt, num_res));
+   if (fl_initialize(argc, argv, "LyX", cmdopt, num_res) == 0)
+   exit(1);
fl_get_app_resources(res, num_res);
fcntl(ConnectionNumber(fl_get_display()), F_SETFD, FD_CLOEXEC);
// X Error handler install goes here

Michael

P.S.: Please CC me on responses since I'm not subscribed on this list.

-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



Re: bugs

1999-02-19 Thread Michael Meskes

On Fri, Feb 19, 1999 at 02:53:21PM +0100, Jean-Marc Lasgouttes wrote:
> You're welcome to send to us all the patches you want :)

:-)

> Thanks, I applied this one.

Thanks.

> Michael> 2) 'I just mis-typed "lynx" and instead started lyx on a
> Michael> telnet terminal without an associated X display.  While it's
> Michael> fine that lyx tells the user that it can't open the display,
> Michael> it should not generate a segmentation fault and dump core
> Michael> afterwards.'
> 
> This has already been fixed.

Hmm, but not in my 1.0.0 source. What's the actual version?

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



Another small typo

1999-02-19 Thread Michael Meskes

--- lib/bind/xemacs.bind.orig   Fri Feb 19 09:55:30 1999
+++ lib/bind/xemacs.bindFri Feb 19 09:55:38 1999
@@ -18,7 +18,7 @@
 # DO NOT CHANGE THIS DEFAULT BINDING FILE! It will be replaced
 # with every new install of LyX and your changes will be lost. 
 # Instead, customize a copy of this file placed in 
-# ~/.lyx/bind/emacs.bind
+# ~/.lyx/bind/xemacs.bind
 #
 # Happy tuning!

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



[owner@bugs.debian.org: Debian bugs information: logs for bug#21316]

1999-03-01 Thread Michael Meskes

- Forwarded message from Debian Bug Tracking System <[EMAIL PROTECTED]> -

I modified the ~/.lyx/bind/xemacs.bind file adding the following
lines:

 #Additions to the select group
 \bind "S-C-e"  "line-end-select"
 \bind "S-C-a"  "line-begin-select"
 \bind "S-C-f"  "forward-select"
 \bind "S-C-b"  "backward-select"

and then checked this with "lyx -dbg 4" giving the following result:

RC_BIND: Sequence S-C-e' Command line-end-select' Action 58'
RC_BIND: Sequence S-C-a' Command line-begin-select' Action 57'
RC_BIND: Sequence S-C-f' Command forward-select' Action 51'
RC_BIND: Sequence S-C-b' Command backward-select' Action 52'

This indicates that my additions were parsed and understood.
However, in lyx these key combinations produce no action ...

- End forwarded message -

I tried reproducing this with 1.0.0 and it seems the keys have no action
there either. Any idea?

Michael

P.S.: Please CC me on your answer.
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



[owner@bugs.debian.org: Debian bugs information: logs for bug#23373]

1999-03-01 Thread Michael Meskes

- Forwarded message from Debian Bug Tracking System <[EMAIL PROTECTED]> -
Package: lyx
Version: 0.12.0.final-0.1

I have a window manager that sends resize events as the mouse moves
when resizing, not one single at the end. If I resize lyx a bit, I get
the error

 X Error of failed request:  BadDrawable (invalid Pixmap or Window parameter)
  Major opcode of failed request:  14 (X_GetGeometry)
  Resource id in failed request:  0x2a0
  Serial number of failed request:  17562
  Current serial number in output stream:  17562

and it is killed.

The reason is likely that lyx only gets the first resize event if some
have queued, and tries to draw a pixmap into the already invalid
window size. It should probably look at all events in the queue before
redrawing anything.

- End forwarded message -

Does this problem tell anyone of you something? I cannot reproduce it with
1.0.0, but then my window manager probably is not sending that many resize
message. ASAIK he was using qvwm.

Michael

P.S.: Please CC me on your answer.
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



Re: [owner@bugs.debian.org: Debian bugs information: logs for bug#21316]

1999-03-01 Thread Michael Meskes

On Mon, Mar 01, 1999 at 12:53:31PM +0100, Jean-Marc Lasgouttes wrote:
> The letters in the bindings should be uppercase, as in
> \bind "S-C-E" "line-end-select" 

Thanks a lot. That did the job.

> I do not know whether this is a bug or a feature, but that's how it
> works, from my experiments.

Honestly I think this is the correct behaviour. After all you're also
pressing Shift.

One more question: Is it correct that the additional classes under lib/tex
(ejour2, hollywood, iletter, revtex) should be installed somewhere under
/usr/lib/texmf/tex/latex? I tried symlinking  
/usr/lib/texmf/tex/latex/lyx -> /usr/X11R6/share/lyx/tex and it appears to
do the job. Is this correct?

Michael

-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



1.0.1

1999-03-01 Thread Michael Meskes

Is there a timetable for when it will be released?

Michael

P.S.: Please CC me.
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



Re: [owner@bugs.debian.org: Debian bugs information: logs for bug#21316]

1999-03-02 Thread Michael Meskes

On Tue, Mar 02, 1999 at 12:16:23AM -0400, Garst R. Reese wrote:
> With teTeX-.9 you can add local and personal locations for tex into
> texmf.cnf
> I added $HOME/.lyx/tex and /usr/local/share/lyx/tex
> The initial build of LyX does not find anything (of course), but after
> you build LyX, you can run texhash as root and as user and it will do
> put an ls-R in both places, and LyX will find everything when you
> reconfigure. But be warned that teTeX-.9 is twice as large as .4

I see. But I think the Debian lyx package should provide the classes for
each user, so the /usr/lib/texmf solutions seems like the logical one to me.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



Re: [owner@bugs.debian.org: Debian bugs information: logs for bug#21316]

1999-03-02 Thread Michael Meskes

On Tue, Mar 02, 1999 at 01:50:39PM +1000, Allan Rae wrote:
> Yes that's one of doing it (and probably the best for system-wide
> application).  You probably also ran texhash or similar script to update
> the ls-R.

I did. Thanks a lot.

Michael

-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



Problem with old format

1999-03-18 Thread Michael Meskes

I just got this report:

>When loading documents with lyxformat 10, it has a lot of trouble,
>particularly with references.  COLD does not help.  Here is sample Lyx code.
>After the reference (which it fails to resolve), several *sentences* are
>omitted silently from the printout.

The testfile t.lyx is attached. Could anyone tell me what's happening here?
Is this a bug?

Michael

P.S.: Please CC me on replies.
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!


#This file was created by  Mon Jul 28 15:03:14 1997
#LyX 0.10 (C) 1995 1996 Matthias Ettrich and the LyX Team
\lyxformat 2.10
\textclass book
\language default
\inputencoding default
\fontscheme default
\epsfig dvips
\papersize usletter 
\paperfontsize 10 
\baselinestretch 1.00 
\secnumdepth 3 
\tocdepth 2 
\paragraph_separation skip 
\quotes_language english 
\quotes_times 2 
\paperorientation portrait 
\papercolumns 1 
\papersides 2 
\paperpagestyle headings 

\layout Subsection

Opening a work window
\layout Standard

\begin_float margin 
\layout Standard


\family sans 

\size small 
Hint: If you are not sure whether you are using Sun or Linux, type 
\series bold 
uname
\series medium 
 and press Enter.
 If you see Linux on your screen, you are using Linux.
 If you see SunOS or Solaris, you are using Sun.

\end_float 
If you are using Linux, see section 
\begin_inset LatexDel \ref{Linux: Opening Work Windows}

\end_inset 

; this section is for Sun machines only.

\layout Standard

I recommend that you open up a bigger window than the default small one.
 To do so, click on the Command Tool and type:
\layout Standard



Re: Problem with old format

1999-03-24 Thread Michael Meskes

On Wed, Mar 24, 1999 at 12:07:45PM +0100, Jose Abilio Oliveira Matos wrote:
>   Besides references do you have problems with any other elements?

I didn't find this bug. It was reported by John Goerzen
<[EMAIL PROTECTED]> via the Debian bug tracking system. Maybe you should
try to contact him directly.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



[schaumat@physique.ens-lyon.fr: Bug#38778: LyX fails in inserting upercase+accent if LANG=fr_FR AND french key map is in use]

1999-06-04 Thread Michael Meskes

This still happens under 1.0.3.

Michael

- Forwarded message from [EMAIL PROTECTED] -

Subject: Bug#38778: LyX fails in inserting upercase+accent if LANG=fr_FR AND french 
key  map is in use
From: [EMAIL PROTECTED]
Date: Wed, 2 Jun 1999 10:05:00 +0200 (CET)
To: [EMAIL PROTECTED]

Package: LyX
Version: 1.0.1 to 1.0.3pre4
Debian release : many slink (maybe with kernels 2.2.X)


 The following bug has been detected by several french users (cf the
 debian-french mailing list):


 First the french keymap is installed (cf the French-HOWTO).

 Then on a french keyboard :

  if LANG=fr_FR then pressing the key 2é~ in UPPERCASE mode has no
  effect in LyX.

  if LANG=fr then pressing the key 2é~ in UPPERCASE mode produce
  the correct result : an uppercase E with accent grave.

 A user reported that without the french keymap installed the bug is
 not present.

 Proposed partial "solution" : At LyX startup, if LANG=fr_FR then run
 LyX in a subshell with LANG=fr (I know it's ugly :-).



-- 
Sebastien Chaumat
Laboratoire de Physique
Ecole Normale Superieure de Lyon


- End forwarded message -

And later came a correction:

Sorry for the inconvenience but in my bug report there's an error:

 Please read that the problem occurs when LC_ALL=fr_FR instead of
 LANG=fr.

 Accordingly the problem is solved when LC_ALL=fr instead of LANG=fr.


-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



support for pdflatex

1999-07-16 Thread Michael Meskes

I just got this wishlist bug from a Debian user:

- Forwarded message from [EMAIL PROTECTED] -

It would be nice if LyX would support pdfLaTeX. What I would like to see is
an export as PDF option that will work this way:

1. For each EPS figure, check if there is corresponding a file in one of the
formats supported by pdfTeX: PDF, JPEG (*.jpg), PNG or MetaPost output
(*.mps). If none available, convert the EPS figure to PDF using the epstopdf
script from tetex distribution.

2. Export LaTeX file, with the extension of the figures changed from eps to
pdf (or mps/jpg/png if available in in step #1).

3. Run pdflatex to produce the PDF output.

I'm doing this manually right now and it works great. But it would be much
nicer to do all this automatically from withing LyX.

- End forwarded message -

Comments anyone?

Michael

P.S.: Please CC me since I'm not subscribed here.
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



Re: [schaumat@physique.ens-lyon.fr: Bug#38778: LyX fails in inserting upercase+accent if LANG=fr_FR AND french key map is in use]

1999-07-16 Thread Michael Meskes

On Tue, Jun 08, 1999 at 12:31:43PM +0200, Jean-Marc Lasgouttes wrote:
> I assume that the french keymap refers to the linux keymap system (or
> is it lyx' own keymap support?)/
> 
> Michael>  Then on a french keyboard :
> 
> Michael>   if LANG=fr_FR then pressing the key 2é~ in UPPERCASE mode
> Michael> has no effect in LyX.
> 
> Michael>   if LANG=fr then pressing the key 2é~ in UPPERCASE mode
> Michael> produce the correct result : an uppercase E with accent
> Michael> grave.
> 
> Do other applications issue an É correctly? I am surprised that this
> happens. 
> 
> I would be interested to see the output of 'lyx -dbg 5' when this key
> is pressed.

Did anyone find the reason for this problem in between?

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



Re: support for pdflatex

1999-07-19 Thread Michael Meskes

On Mon, Jul 19, 1999 at 11:10:54AM +0200, Jean-Marc Lasgouttes wrote:
> pdflatex support may be added in LyX 1.2 (meaning: there have been
> discussions about it, but it will probably happen when a developper
> needs it :).

That's the way free software works. :-)

Thanks again.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



Re: [schaumat@physique.ens-lyon.fr: Bug#38778: LyX fails in inserting upercase+accent if LANG=fr_FR AND french key map is in use]

1999-07-19 Thread Michael Meskes

On Mon, Jul 19, 1999 at 11:09:47AM +0200, Jean-Marc Lasgouttes wrote:
> >From what I understand, the problem comes from the fact that the
> initialization of the Input Methods is too minimalist. Unfortunately,
> since (a) I do not have any problem on Digital Unix and thus cannot
> test and (b) I really do not understand the X11R6 documentation, I
> cannot propose a fix for this. If some knowledgeable X programmer want
> to give a hand, he'll be welcome...

I see. Thanks for this info.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!



Seg fault when starting 1.0.3

1999-08-25 Thread Michael Meskes

I thought we already got rid of that bug, but apparently it is still there.
When starting LyX on the console or on an X server where you have no right
to connect or when no DISPLAY variable is set it just seg faults in
fl_initialize. Some time ago I patched LyX to check if DISPLAY is set prior
to calling fl_initialize but this patch doesn't seem to have made it into
the source code. Or do I miss something here?

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



Re: Seg fault when starting 1.0.3

1999-09-01 Thread Michael Meskes

On Tue, Aug 31, 1999 at 12:25:55PM +0200, Jean-Marc Lasgouttes wrote:
> As far I I know, the fix is there. It might be wrong however. Could
> you give us a backtrace or something?
> 
> Here is what I get here:
> 
> fantomas: DISPLAY=foo lyx
> lyx: Can't open display foo--No such file or directory
> LyX: unable to access X display, exiting
> 
> Something that may happen is that you use glibc2.1 but not the xforms
> compiled for it. Then xforms will crash when trying to display the
> first message.

Yup, that's it. I do use glibc2.1 and still have the very same xforms than I
had with 2.0. I will install a new version asap.

Thanks.

Michael
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!



[kevin.turner@oberlin.edu: Bug#46336: Does not gracefully handle inadequate font-path]

1999-10-01 Thread Michael Meskes

This still holds for 1.0.4.

Michael

- Forwarded message from Kevin Turner <[EMAIL PROTECTED]> -

Subject: Bug#46336: Does not gracefully handle inadequate font-path
From: Kevin Turner <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Date: Thu, 30 Sep 1999 15:35:55 -0400

Package: lyx
Version: 1.0.3-2
Severity: normal

When font path is set to something like: 
/usr/X11R6/lib/X11/fonts/misc/
which you can sometimes get away with, as it does contain the "fixed"
font,
LyX dies with 
lyx: SIGSEGV signal caught:
Sorry, you have found a bug in LyX. If possible, please read 'Known bugs'
under the Help menu and then send us a full bug report. Thanks!
Bye.

Backtrace:
#0  0x828049b in ?? ()
#1  0x400611f7 in XFreeFont () from /usr/X11R6/lib/libX11.so.6
#2  0x81b0128 in strdup ()
#3  0x80567a6 in XMapRaised ()
#4  0x804dd74 in XMapRaised ()
#5  0x804da98 in XMapRaised ()
#6  0x4015f78a in __libc_start_main (main=0x804d990 , argc=1, 
argv=0xb314,
init=0x804c5d4 <_init>, fini=0x81c722c <_fini>, rtld_fini=0x40009a00 <_dl_fini>,
stack_end=0xb30c) at ../sysdeps/generic/libc-start.c:90

-- System Information
Debian Release: potato
Architecture: i386
Kernel: Linux DHCPP8449.resnet.oberlin.edu 2.2.12 #1 Sun Sep 12 00:32:50 EDT 1999 i586

Versions of packages lyx depends on:
ii  libc6 2.1.2-5GNU C Library: Shared libraries an
ii  libstdc++2.9-glibc2.1 2.91.66-2  The GNU stdc++ library (EGCS versi
ii  xlib6g3.3.5-1shared libraries required by X cli
ii  xpm4g 3.4k-1 X Pixmap run-time libraries   

- End forwarded message -

-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]   | Use PostgreSQL!