Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Christian Ridderström

On Sun, 27 Jul 2008, Jens Noeckel wrote:

I can't repeat this with Opera on Windows, do you still see this problem? 
(I was doing stuff with the web backend, so maybe it's just your browser 
that needs to reload it's cache or something)


Do others seem something strange when looking at the page:
 http://www.lyx.org/Download


Yes, I can reproduce it with Safari. When you follow a link from the 
homepage, the next page has a link to a non-existent stylesheet, 
http:/farm/pub/skins/lyx/lyx.css


Thanks, that'll greatly help me fix the bug!


The correct URI should be
http://www.lyx.org/farm/pub/skins/lyx/lyx.css

(so the base URI isn't added) That's what causes the missing formating. 
Firefox is better at guessing what you meant here, but it really is an 
error that appears on all the other pages except for the lyx home page.


Funny though, I thought you didn't have to give the domain in the URI when 
linking from a page. Anyway, if it doesn't work in Safari, I'll have to 
add the domain.


/Christian

--
Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Manveru
IVHMO it is Safari bug, that it does not add domain automatically when the
path starts from /.

M.

2008/7/28 Christian Ridderström [EMAIL PROTECTED]:

 On Sun, 27 Jul 2008, Jens Noeckel wrote:

  I can't repeat this with Opera on Windows, do you still see this problem?
 (I was doing stuff with the web backend, so maybe it's just your browser
 that needs to reload it's cache or something)

 Do others seem something strange when looking at the page:
  http://www.lyx.org/Download


 Yes, I can reproduce it with Safari. When you follow a link from the
 homepage, the next page has a link to a non-existent stylesheet,
 http:/farm/pub/skins/lyx/lyx.css


 Thanks, that'll greatly help me fix the bug!

  The correct URI should be
 http://www.lyx.org/farm/pub/skins/lyx/lyx.css

 (so the base URI isn't added) That's what causes the missing formating.
 Firefox is better at guessing what you meant here, but it really is an error
 that appears on all the other pages except for the lyx home page.


 Funny though, I thought you didn't have to give the domain in the URI when
 linking from a page. Anyway, if it doesn't work in Safari, I'll have to add
 the domain.


 /Christian

 --
 Christian Ridderström, +46-8-768 39 44
 http://www.md.kth.se/~chr http://www.md.kth.se/%7Echr




-- 
Manveru
jabber: [EMAIL PROTECTED]
gg: 1624001
http://www.manveru.pl


Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Jens Noeckel

Christian,

On Jul 28, 2008, at 12:12 AM, Christian Ridderström wrote:


On Sun, 27 Jul 2008, Jens Noeckel wrote:

I can't repeat this with Opera on Windows, do you still see this  
problem? (I was doing stuff with the web backend, so maybe it's  
just your browser that needs to reload it's cache or something)

Do others seem something strange when looking at the page:
 http://www.lyx.org/Download


Yes, I can reproduce it with Safari. When you follow a link from  
the homepage, the next page has a link to a non-existent  
stylesheet, http:/farm/pub/skins/lyx/lyx.css


Thanks, that'll greatly help me fix the bug!


The correct URI should be
http://www.lyx.org/farm/pub/skins/lyx/lyx.css

(so the base URI isn't added) That's what causes the missing  
formating. Firefox is better at guessing what you meant here, but  
it really is an error that appears on all the other pages except  
for the lyx home page.


Funny though, I thought you didn't have to give the domain in the  
URI when linking from a page. Anyway, if it doesn't work in Safari,  
I'll have to add the domain.



Christian,
I don't know how your server is set up, but relative addresses should  
always be fine, and even your intended approach should be doable:
Everything should work fine if you leave out the domain, provided you  
_also_ leave out the http:/ (this would have been incorrect syntax  
in any case because of the missing second backslash). Then either  
make the path relative to the current page, or start with /farm/...  
to specify an absolute address from the server root.


Jens



Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Christian Ridderström

On Mon, 28 Jul 2008, Jens Noeckel wrote:


 The correct URI should be
 http://www.lyx.org/farm/pub/skins/lyx/lyx.css


I don't know how your server is set up, but relative addresses should always 
be fine, and even your intended approach should be doable:
Everything should work fine if you leave out the domain, provided you _also_ 
leave out the http:/ (this would have been incorrect syntax in any case 
because of the missing second backslash). Then either make the path relative 
to the current page, or start with /farm/... to specify an absolute address 
from the server root.


Hi,

I've added a hack to the code, prepending the base domain. Please confirm 
that it now looks ok in Safari (The HTML seems fine to me).


Just out of curiosity, and in case I want to replace the hack with 
something that works better, is this how the relative URI should appear:


/farm/pub/skins/lyx/lyx.css

Best regards,
/Christian

--
Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Bob Lounsbury
On Mon, Jul 28, 2008 at 4:44 PM, Christian Ridderström
[EMAIL PROTECTED] wrote:
 On Mon, 28 Jul 2008, Jens Noeckel wrote:

  The correct URI should be
  http://www.lyx.org/farm/pub/skins/lyx/lyx.css

 I don't know how your server is set up, but relative addresses should
 always be fine, and even your intended approach should be doable:
 Everything should work fine if you leave out the domain, provided you
 _also_ leave out the http:/ (this would have been incorrect syntax in any
 case because of the missing second backslash). Then either make the path
 relative to the current page, or start with /farm/... to specify an
 absolute address from the server root.

 Hi,

 I've added a hack to the code, prepending the base domain. Please confirm
 that it now looks ok in Safari (The HTML seems fine to me).

 Just out of curiosity, and in case I want to replace the hack with something
 that works better, is this how the relative URI should appear:

/farm/pub/skins/lyx/lyx.css

 Best regards,
 /Christian

 --
 Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Confirmed here. Thanks.

/Bob


Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Christian Ridderström

On Sun, 27 Jul 2008, Jens Noeckel wrote:

I can't repeat this with Opera on Windows, do you still see this problem? 
(I was doing stuff with the web backend, so maybe it's just your browser 
that needs to reload it's cache or something)


Do others seem something strange when looking at the page:
 http://www.lyx.org/Download


Yes, I can reproduce it with Safari. When you follow a link from the 
homepage, the next page has a link to a non-existent stylesheet, 
http:/farm/pub/skins/lyx/lyx.css


Thanks, that'll greatly help me fix the bug!


The correct URI should be
http://www.lyx.org/farm/pub/skins/lyx/lyx.css

(so the base URI isn't added) That's what causes the missing formating. 
Firefox is better at guessing what you meant here, but it really is an 
error that appears on all the other pages except for the lyx home page.


Funny though, I thought you didn't have to give the domain in the URI when 
linking from a page. Anyway, if it doesn't work in Safari, I'll have to 
add the domain.


/Christian

--
Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Manveru
IVHMO it is Safari bug, that it does not add domain automatically when the
path starts from /.

M.

2008/7/28 Christian Ridderström [EMAIL PROTECTED]:

 On Sun, 27 Jul 2008, Jens Noeckel wrote:

  I can't repeat this with Opera on Windows, do you still see this problem?
 (I was doing stuff with the web backend, so maybe it's just your browser
 that needs to reload it's cache or something)

 Do others seem something strange when looking at the page:
  http://www.lyx.org/Download


 Yes, I can reproduce it with Safari. When you follow a link from the
 homepage, the next page has a link to a non-existent stylesheet,
 http:/farm/pub/skins/lyx/lyx.css


 Thanks, that'll greatly help me fix the bug!

  The correct URI should be
 http://www.lyx.org/farm/pub/skins/lyx/lyx.css

 (so the base URI isn't added) That's what causes the missing formating.
 Firefox is better at guessing what you meant here, but it really is an error
 that appears on all the other pages except for the lyx home page.


 Funny though, I thought you didn't have to give the domain in the URI when
 linking from a page. Anyway, if it doesn't work in Safari, I'll have to add
 the domain.


 /Christian

 --
 Christian Ridderström, +46-8-768 39 44
 http://www.md.kth.se/~chr http://www.md.kth.se/%7Echr




-- 
Manveru
jabber: [EMAIL PROTECTED]
gg: 1624001
http://www.manveru.pl


Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Jens Noeckel

Christian,

On Jul 28, 2008, at 12:12 AM, Christian Ridderström wrote:


On Sun, 27 Jul 2008, Jens Noeckel wrote:

I can't repeat this with Opera on Windows, do you still see this  
problem? (I was doing stuff with the web backend, so maybe it's  
just your browser that needs to reload it's cache or something)

Do others seem something strange when looking at the page:
 http://www.lyx.org/Download


Yes, I can reproduce it with Safari. When you follow a link from  
the homepage, the next page has a link to a non-existent  
stylesheet, http:/farm/pub/skins/lyx/lyx.css


Thanks, that'll greatly help me fix the bug!


The correct URI should be
http://www.lyx.org/farm/pub/skins/lyx/lyx.css

(so the base URI isn't added) That's what causes the missing  
formating. Firefox is better at guessing what you meant here, but  
it really is an error that appears on all the other pages except  
for the lyx home page.


Funny though, I thought you didn't have to give the domain in the  
URI when linking from a page. Anyway, if it doesn't work in Safari,  
I'll have to add the domain.



Christian,
I don't know how your server is set up, but relative addresses should  
always be fine, and even your intended approach should be doable:
Everything should work fine if you leave out the domain, provided you  
_also_ leave out the http:/ (this would have been incorrect syntax  
in any case because of the missing second backslash). Then either  
make the path relative to the current page, or start with /farm/...  
to specify an absolute address from the server root.


Jens



Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Christian Ridderström

On Mon, 28 Jul 2008, Jens Noeckel wrote:


 The correct URI should be
 http://www.lyx.org/farm/pub/skins/lyx/lyx.css


I don't know how your server is set up, but relative addresses should always 
be fine, and even your intended approach should be doable:
Everything should work fine if you leave out the domain, provided you _also_ 
leave out the http:/ (this would have been incorrect syntax in any case 
because of the missing second backslash). Then either make the path relative 
to the current page, or start with /farm/... to specify an absolute address 
from the server root.


Hi,

I've added a hack to the code, prepending the base domain. Please confirm 
that it now looks ok in Safari (The HTML seems fine to me).


Just out of curiosity, and in case I want to replace the hack with 
something that works better, is this how the relative URI should appear:


/farm/pub/skins/lyx/lyx.css

Best regards,
/Christian

--
Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Bob Lounsbury
On Mon, Jul 28, 2008 at 4:44 PM, Christian Ridderström
[EMAIL PROTECTED] wrote:
 On Mon, 28 Jul 2008, Jens Noeckel wrote:

  The correct URI should be
  http://www.lyx.org/farm/pub/skins/lyx/lyx.css

 I don't know how your server is set up, but relative addresses should
 always be fine, and even your intended approach should be doable:
 Everything should work fine if you leave out the domain, provided you
 _also_ leave out the http:/ (this would have been incorrect syntax in any
 case because of the missing second backslash). Then either make the path
 relative to the current page, or start with /farm/... to specify an
 absolute address from the server root.

 Hi,

 I've added a hack to the code, prepending the base domain. Please confirm
 that it now looks ok in Safari (The HTML seems fine to me).

 Just out of curiosity, and in case I want to replace the hack with something
 that works better, is this how the relative URI should appear:

/farm/pub/skins/lyx/lyx.css

 Best regards,
 /Christian

 --
 Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Confirmed here. Thanks.

/Bob


Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Christian Ridderström

On Sun, 27 Jul 2008, Jens Noeckel wrote:

I can't repeat this with Opera on Windows, do you still see this problem? 
(I was doing stuff with the web backend, so maybe it's just your browser 
that needs to reload it's cache or something)


Do others seem something strange when looking at the page:
 http://www.lyx.org/Download


Yes, I can reproduce it with Safari. When you follow a link from the 
homepage, the next page has a link to a non-existent stylesheet, 
http:/farm/pub/skins/lyx/lyx.css


Thanks, that'll greatly help me fix the bug!


The correct URI should be
http://www.lyx.org/farm/pub/skins/lyx/lyx.css

(so the base URI isn't added) That's what causes the missing formating. 
Firefox is better at guessing what you meant here, but it really is an 
error that appears on all the other pages except for the lyx home page.


Funny though, I thought you didn't have to give the domain in the URI when 
linking from a page. Anyway, if it doesn't work in Safari, I'll have to 
add the domain.


/Christian

--
Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Manveru
IVHMO it is Safari bug, that it does not add domain automatically when the
path starts from /.

M.

2008/7/28 Christian Ridderström <[EMAIL PROTECTED]>:

> On Sun, 27 Jul 2008, Jens Noeckel wrote:
>
>  I can't repeat this with Opera on Windows, do you still see this problem?
>>> (I was doing stuff with the web backend, so maybe it's just your browser
>>> that needs to reload it's cache or something)
>>>
>>> Do others seem something strange when looking at the page:
>>>  http://www.lyx.org/Download
>>>
>>
>> Yes, I can reproduce it with Safari. When you follow a link from the
>> homepage, the next page has a link to a non-existent stylesheet,
>> http:/farm/pub/skins/lyx/lyx.css
>>
>
> Thanks, that'll greatly help me fix the bug!
>
>  The correct URI should be
>> http://www.lyx.org/farm/pub/skins/lyx/lyx.css
>>
>> (so the base URI isn't added) That's what causes the missing formating.
>> Firefox is better at guessing what you meant here, but it really is an error
>> that appears on all the other pages except for the lyx home page.
>>
>
> Funny though, I thought you didn't have to give the domain in the URI when
> linking from a page. Anyway, if it doesn't work in Safari, I'll have to add
> the domain.
>
>
> /Christian
>
> --
> Christian Ridderström, +46-8-768 39 44
> http://www.md.kth.se/~chr 
>



-- 
Manveru
jabber: [EMAIL PROTECTED]
gg: 1624001
http://www.manveru.pl


Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Jens Noeckel

Christian,

On Jul 28, 2008, at 12:12 AM, Christian Ridderström wrote:


On Sun, 27 Jul 2008, Jens Noeckel wrote:

I can't repeat this with Opera on Windows, do you still see this  
problem? (I was doing stuff with the web backend, so maybe it's  
just your browser that needs to reload it's cache or something)

Do others seem something strange when looking at the page:
 http://www.lyx.org/Download


Yes, I can reproduce it with Safari. When you follow a link from  
the homepage, the next page has a link to a non-existent  
stylesheet, http:/farm/pub/skins/lyx/lyx.css


Thanks, that'll greatly help me fix the bug!


The correct URI should be
http://www.lyx.org/farm/pub/skins/lyx/lyx.css

(so the base URI isn't added) That's what causes the missing  
formating. Firefox is better at guessing what you meant here, but  
it really is an error that appears on all the other pages except  
for the lyx home page.


Funny though, I thought you didn't have to give the domain in the  
URI when linking from a page. Anyway, if it doesn't work in Safari,  
I'll have to add the domain.



Christian,
I don't know how your server is set up, but relative addresses should  
always be fine, and even your intended approach should be doable:
Everything should work fine if you leave out the domain, provided you  
_also_ leave out the "http:/" (this would have been incorrect syntax  
in any case because of the missing second backslash). Then either  
make the path relative to the current page, or start with "/farm/..."  
to specify an absolute address from the server root.


Jens



Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Christian Ridderström

On Mon, 28 Jul 2008, Jens Noeckel wrote:


> The correct URI should be
> http://www.lyx.org/farm/pub/skins/lyx/lyx.css


I don't know how your server is set up, but relative addresses should always 
be fine, and even your intended approach should be doable:
Everything should work fine if you leave out the domain, provided you _also_ 
leave out the "http:/" (this would have been incorrect syntax in any case 
because of the missing second backslash). Then either make the path relative 
to the current page, or start with "/farm/..." to specify an absolute address 
from the server root.


Hi,

I've added a hack to the code, prepending the base domain. Please confirm 
that it now looks ok in Safari (The HTML seems fine to me).


Just out of curiosity, and in case I want to replace the hack with 
something that works better, is this how the relative URI should appear:


/farm/pub/skins/lyx/lyx.css

Best regards,
/Christian

--
Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Re: LyX website displays incorrectly w/ Safari

2008-07-28 Thread Bob Lounsbury
On Mon, Jul 28, 2008 at 4:44 PM, Christian Ridderström
<[EMAIL PROTECTED]> wrote:
> On Mon, 28 Jul 2008, Jens Noeckel wrote:
>
>>> > The correct URI should be
>>> > http://www.lyx.org/farm/pub/skins/lyx/lyx.css
>
>> I don't know how your server is set up, but relative addresses should
>> always be fine, and even your intended approach should be doable:
>> Everything should work fine if you leave out the domain, provided you
>> _also_ leave out the "http:/" (this would have been incorrect syntax in any
>> case because of the missing second backslash). Then either make the path
>> relative to the current page, or start with "/farm/..." to specify an
>> absolute address from the server root.
>
> Hi,
>
> I've added a hack to the code, prepending the base domain. Please confirm
> that it now looks ok in Safari (The HTML seems fine to me).
>
> Just out of curiosity, and in case I want to replace the hack with something
> that works better, is this how the relative URI should appear:
>
>/farm/pub/skins/lyx/lyx.css
>
> Best regards,
> /Christian
>
> --
> Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Confirmed here. Thanks.

/Bob


Re: LyX website displays incorrectly w/ Safari

2008-07-27 Thread Christian Ridderström

On Sun, 27 Jul 2008, Bob Lounsbury wrote:

I just started using my Mac again with the Safari web browser and went 
to the LyX website to download the latest version. The homepage is 
displayed correctly, but when I click on any other link on the website 
like Download it looses the website style. I really don't know anything 
about websites so I don't know how to describe it, so I've attached a 
screenshot when I click on the Download link.


Hi Bob,

I can't repeat this with Opera on Windows, do you still see this problem? 
(I was doing stuff with the web backend, so maybe it's just your browser 
that needs to reload it's cache or something)


Do others seem something strange when looking at the page:
http://www.lyx.org/Download

regards,
/Christian

--
Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Re: LyX website displays incorrectly w/ Safari

2008-07-27 Thread Jens Noeckel


On Jul 27, 2008, at 2:13 PM, Christian Ridderström wrote:


On Sun, 27 Jul 2008, Bob Lounsbury wrote:

I just started using my Mac again with the Safari web browser and  
went to the LyX website to download the latest version. The  
homepage is displayed correctly, but when I click on any other  
link on the website like Download it looses the website style. I  
really don't know anything about websites so I don't know how to  
describe it, so I've attached a screenshot when I click on the  
Download link.


Hi Bob,

I can't repeat this with Opera on Windows, do you still see this  
problem? (I was doing stuff with the web backend, so maybe it's  
just your browser that needs to reload it's cache or something)


Do others seem something strange when looking at the page:
http://www.lyx.org/Download




Yes, I can reproduce it with Safari. When you follow a link from the  
homepage, the next page has a link to a non-existent stylesheet,

http:/farm/pub/skins/lyx/lyx.css

The correct URI should be
http://www.lyx.org/farm/pub/skins/lyx/lyx.css

(so the base URI isn't added)
That's what causes the missing formating. Firefox is better at  
guessing what you meant here, but it really is an error that appears  
on all the other pages except for the lyx home page.


Jens




Re: LyX website displays incorrectly w/ Safari

2008-07-27 Thread Christian Ridderström

On Sun, 27 Jul 2008, Bob Lounsbury wrote:

I just started using my Mac again with the Safari web browser and went 
to the LyX website to download the latest version. The homepage is 
displayed correctly, but when I click on any other link on the website 
like Download it looses the website style. I really don't know anything 
about websites so I don't know how to describe it, so I've attached a 
screenshot when I click on the Download link.


Hi Bob,

I can't repeat this with Opera on Windows, do you still see this problem? 
(I was doing stuff with the web backend, so maybe it's just your browser 
that needs to reload it's cache or something)


Do others seem something strange when looking at the page:
http://www.lyx.org/Download

regards,
/Christian

--
Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Re: LyX website displays incorrectly w/ Safari

2008-07-27 Thread Jens Noeckel


On Jul 27, 2008, at 2:13 PM, Christian Ridderström wrote:


On Sun, 27 Jul 2008, Bob Lounsbury wrote:

I just started using my Mac again with the Safari web browser and  
went to the LyX website to download the latest version. The  
homepage is displayed correctly, but when I click on any other  
link on the website like Download it looses the website style. I  
really don't know anything about websites so I don't know how to  
describe it, so I've attached a screenshot when I click on the  
Download link.


Hi Bob,

I can't repeat this with Opera on Windows, do you still see this  
problem? (I was doing stuff with the web backend, so maybe it's  
just your browser that needs to reload it's cache or something)


Do others seem something strange when looking at the page:
http://www.lyx.org/Download




Yes, I can reproduce it with Safari. When you follow a link from the  
homepage, the next page has a link to a non-existent stylesheet,

http:/farm/pub/skins/lyx/lyx.css

The correct URI should be
http://www.lyx.org/farm/pub/skins/lyx/lyx.css

(so the base URI isn't added)
That's what causes the missing formating. Firefox is better at  
guessing what you meant here, but it really is an error that appears  
on all the other pages except for the lyx home page.


Jens




Re: LyX website displays incorrectly w/ Safari

2008-07-27 Thread Christian Ridderström

On Sun, 27 Jul 2008, Bob Lounsbury wrote:

I just started using my Mac again with the Safari web browser and went 
to the LyX website to download the latest version. The homepage is 
displayed correctly, but when I click on any other link on the website 
like Download it looses the website style. I really don't know anything 
about websites so I don't know how to describe it, so I've attached a 
screenshot when I click on the Download link.


Hi Bob,

I can't repeat this with Opera on Windows, do you still see this problem? 
(I was doing stuff with the web backend, so maybe it's just your browser 
that needs to reload it's cache or something)


Do others seem something strange when looking at the page:
http://www.lyx.org/Download

regards,
/Christian

--
Christian Ridderström, +46-8-768 39 44http://www.md.kth.se/~chr

Re: LyX website displays incorrectly w/ Safari

2008-07-27 Thread Jens Noeckel


On Jul 27, 2008, at 2:13 PM, Christian Ridderström wrote:


On Sun, 27 Jul 2008, Bob Lounsbury wrote:

I just started using my Mac again with the Safari web browser and  
went to the LyX website to download the latest version. The  
homepage is displayed correctly, but when I click on any other  
link on the website like Download it looses the website style. I  
really don't know anything about websites so I don't know how to  
describe it, so I've attached a screenshot when I click on the  
Download link.


Hi Bob,

I can't repeat this with Opera on Windows, do you still see this  
problem? (I was doing stuff with the web backend, so maybe it's  
just your browser that needs to reload it's cache or something)


Do others seem something strange when looking at the page:
http://www.lyx.org/Download




Yes, I can reproduce it with Safari. When you follow a link from the  
homepage, the next page has a link to a non-existent stylesheet,

http:/farm/pub/skins/lyx/lyx.css

The correct URI should be
http://www.lyx.org/farm/pub/skins/lyx/lyx.css

(so the base URI isn't added)
That's what causes the missing formating. Firefox is better at  
guessing what you meant here, but it really is an error that appears  
on all the other pages except for the lyx home page.


Jens