RE: lyx for redhat linux?

1999-07-07 Thread Alexander Wollmann


On 06-Jul-99 Dai wrote:
 
 
 Hello, all,
 
 As in the subject, is there a version of lyx for redhat linux?
 Where can I get it?
 
 Thanks a lot,
 
 Yi Dai

Have a look at
http://www.mail-archive.com/lyx-users@lists.lyx.org/msg00932.html 

Greets,
Alex.


---
Alexander Wollmann
Universität Freiburg,
Abteilung Elementar-Mathematik und Didaktik der Mathematik

E-Mail: Alexander Wollmann [EMAIL PROTECTED]
Date: 07-Jul-99
Time: 08:46:43

This message was sent by XFMail
---



Re: BibTex citations hanging lyx

1999-07-07 Thread Jean-Marc Lasgouttes

 "Benjamin" == Benjamin Korvemaker [EMAIL PROTECTED] writes:

Benjamin groan what a pain ...

That's the joy of debugging...

Benjamin In my home directory, there's a directory called "um99".
Benjamin LyX doesn't expect the file read to fail, hence it hangs.

The appended patch should fix the problem (it does for me, and does
not seem to create other problems). Basically, it fixes the
IsFileReadable() function to check that what we are looking at is
actually a file.

Benjamin anyways... hope this helps...

Sure. I would never have thought of that, and it affects all the
places in LyX where we search for files %-|

Many thanks for finding this one.

JMarc

Index: filetools.C
===
RCS file: /usr/local/lyxsrc/cvsroot/lyx-1_0_x/src/filetools.C,v
retrieving revision 1.4
diff -u -r1.4 filetools.C
--- filetools.C 1999/05/12 12:51:41 1.4
+++ filetools.C 1999/07/07 09:44:52
@@ -138,7 +138,7 @@
 bool IsFileReadable (LString const  path)
 {
FileInfo file(path);
-   if (file.isOK()  file.readable())
+   if (file.isOK()  file.isRegular()  file.readable())
return true;
else
return false;



RE: lyx for redhat linux?

1999-07-07 Thread Alexander Wollmann


On 06-Jul-99 Dai wrote:
 
 
 Hello, all,
 
 As in the subject, is there a version of lyx for redhat linux?
 Where can I get it?
 
 Thanks a lot,
 
 Yi Dai

Have a look at
http://www.mail-archive.com/lyx-users@lists.lyx.org/msg00932.html 

Greets,
Alex.


---
Alexander Wollmann
Universität Freiburg,
Abteilung Elementar-Mathematik und Didaktik der Mathematik

E-Mail: Alexander Wollmann [EMAIL PROTECTED]
Date: 07-Jul-99
Time: 08:46:43

This message was sent by XFMail
---



Re: BibTex citations hanging lyx

1999-07-07 Thread Jean-Marc Lasgouttes

 "Benjamin" == Benjamin Korvemaker [EMAIL PROTECTED] writes:

Benjamin groan what a pain ...

That's the joy of debugging...

Benjamin In my home directory, there's a directory called "um99".
Benjamin LyX doesn't expect the file read to fail, hence it hangs.

The appended patch should fix the problem (it does for me, and does
not seem to create other problems). Basically, it fixes the
IsFileReadable() function to check that what we are looking at is
actually a file.

Benjamin anyways... hope this helps...

Sure. I would never have thought of that, and it affects all the
places in LyX where we search for files %-|

Many thanks for finding this one.

JMarc

Index: filetools.C
===
RCS file: /usr/local/lyxsrc/cvsroot/lyx-1_0_x/src/filetools.C,v
retrieving revision 1.4
diff -u -r1.4 filetools.C
--- filetools.C 1999/05/12 12:51:41 1.4
+++ filetools.C 1999/07/07 09:44:52
@@ -138,7 +138,7 @@
 bool IsFileReadable (LString const  path)
 {
FileInfo file(path);
-   if (file.isOK()  file.readable())
+   if (file.isOK()  file.isRegular()  file.readable())
return true;
else
return false;



RE: lyx for redhat linux?

1999-07-07 Thread Alexander Wollmann


On 06-Jul-99 Dai wrote:
> 
> 
> Hello, all,
> 
> As in the subject, is there a version of lyx for redhat linux?
> Where can I get it?
> 
> Thanks a lot,
> 
> Yi Dai

Have a look at
http://www.mail-archive.com/lyx-users@lists.lyx.org/msg00932.html 

Greets,
Alex.


---
Alexander Wollmann
Universität Freiburg,
Abteilung Elementar-Mathematik und Didaktik der Mathematik

E-Mail: Alexander Wollmann <[EMAIL PROTECTED]>
Date: 07-Jul-99
Time: 08:46:43

This message was sent by XFMail
---



Re: BibTex citations hanging lyx

1999-07-07 Thread Jean-Marc Lasgouttes

> "Benjamin" == Benjamin Korvemaker <[EMAIL PROTECTED]> writes:

Benjamin>  what a pain ...

That's the joy of debugging...

Benjamin> In my home directory, there's a directory called "um99".
Benjamin> LyX doesn't expect the file read to fail, hence it hangs.

The appended patch should fix the problem (it does for me, and does
not seem to create other problems). Basically, it fixes the
IsFileReadable() function to check that what we are looking at is
actually a file.

Benjamin> anyways... hope this helps...

Sure. I would never have thought of that, and it affects all the
places in LyX where we search for files %-|

Many thanks for finding this one.

JMarc

Index: filetools.C
===
RCS file: /usr/local/lyxsrc/cvsroot/lyx-1_0_x/src/filetools.C,v
retrieving revision 1.4
diff -u -r1.4 filetools.C
--- filetools.C 1999/05/12 12:51:41 1.4
+++ filetools.C 1999/07/07 09:44:52
@@ -138,7 +138,7 @@
 bool IsFileReadable (LString const & path)
 {
FileInfo file(path);
-   if (file.isOK() && file.readable())
+   if (file.isOK() && file.isRegular() && file.readable())
return true;
else
return false;