Re: www-user(css) version 2.0

2001-06-17 Thread Michael Koziarski
I did all the changes. Please, download my lyx.css again. The only remaining warning Done. -- | Michael Koziarski |Conventional wisdom is often | | BCA/BSc Student, OpenBSD/Linux user | long on

Re: www-user(css) version 2.0

2001-06-17 Thread Zvezdan Petkovic
There is a nice way to centre the screenshot images. Add to lyx.css: .center { text-indent: 0; text-align: center; margin-left: 0% } and in index.html surround the images with div class=center/div div class=center a href=lyx_screen.gif img width=167 height=128

Re: www-user(css) version 2.0

2001-06-17 Thread Marcello Nuccio
On Sat, Jun 16, 2001 at 07:55:19PM -0400, Zvezdan Petkovic wrote: I also had to add this as the first line: ?xml version=1.0 encoding=iso-8859-1? and this after !DOCTYPE ?xml-stylesheet href=lyx.css type=text/css? to enable validation. It

Re Qt frontend

2001-06-17 Thread Angus Leeming
Kalle, do you subscribe to lyx-cvs? If so, I won't post these redundant messages. Anyway, I fixed the crash in citation dialog. It was a trivial xforms-qt thing. See the Changelog. The dialog is looking very pretty but the ButtonController is busted. If you need any help, you know where to

comments please

2001-06-17 Thread Edwin Leuven
Hi guys, I cleaned up the spellcheck code a bit; I took spellchecker.C and did the following: 1. put the ispell and pspell code in their own classes that inherit from a common spellbase class 2. have these changes reflected in RunSpellChecker 3. deleted the spelloptions (for the moment

Re: www-user(css) version 2.0

2001-06-17 Thread Zvezdan Petkovic
On Sun, Jun 17, 2001 at 08:52:31PM +1200, Michael Koziarski wrote: I did all the changes. Please, download my lyx.css again. The only remaining warning Done. I still see the black screen on your site at the download. I downloaded your CSS and it has that problematic double assignment

Re: www-user(css) version 2.0

2001-06-17 Thread Garst R. Reese
Zvezdan Petkovic wrote: and fix them. Please check again: http://www.cs.wm.edu/~zvezdan/LyX/www-user/ Very nice! Fast. Thanks, Garst

Re: comments please

2001-06-17 Thread Angus Leeming
Haven't read this closely yet but class SpellBase is meant to be an abstract base class isn't it. Ie, you can't create an instance of SpellBase, just of it's derived classes? If so, then it's member functions should be declared pure virtual. ie, not virtual void initialize(BufferParams

Re: www-user(css) version 2.0

2001-06-17 Thread Marcello Nuccio
On Sun, Jun 17, 2001 at 11:57:49AM -0400, Zvezdan Petkovic wrote: On Sun, Jun 17, 2001 at 01:43:57PM +0200, Marcello Nuccio wrote: ?xml version=1.0 encoding=iso-8859-1? and this after !DOCTYPE ?xml-stylesheet href=lyx.css type=text/css? I cannot verify (I don't have

minipage in latest cvs

2001-06-17 Thread Herbert Voss
changing an horizontal alignment inside the minipage from layout-paragraph has no effect. the text/table/image/... is always left aligned. Herbert -- http://www.educat.hu-berlin.de/~voss/lyx/

Re: www-user(css) version 2.0

2001-06-17 Thread Zvezdan Petkovic
On Sun, Jun 17, 2001 at 07:44:47PM +0200, Marcello Nuccio wrote: just suspect because i remember that putting: ?xml version=1.0 encoding=ISO-8859-1? ?xml-stylesheet href=etc/CSS/default.css type=text/css? !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN

Re: Qt2 filenames

2001-06-17 Thread Allan Rae
yOn Fri, 15 Jun 2001, John Levon wrote: On Fri, Jun 15, 2001 at 01:55:48PM +1000, Allan Rae wrote: On Thu, 14 Jun 2001, Kalle Dalheimer wrote: At least, I like the idea of dropping the Form prefix a lot (I never understood why it was there, probably an xforms thing). The xforms

Re: www-user(css) version 2.0

2001-06-17 Thread Michael Koziarski
> I did all the changes. Please, download my lyx.css again. > The only remaining warning Done. -- | Michael Koziarski |"Conventional wisdom is often | | BCA/BSc Student, OpenBSD/Linux user | long

Re: www-user(css) version 2.0

2001-06-17 Thread Zvezdan Petkovic
There is a nice way to centre the screenshot images. Add to lyx.css: .center { text-indent: 0; text-align: center; margin-left: 0% } and in index.html surround the images with I tested it in Netscape, Mozilla, and Konqueror. -- Zvezdan Petkovic <[EMAIL

Re: www-user(css) version 2.0

2001-06-17 Thread Marcello Nuccio
On Sat, Jun 16, 2001 at 07:55:19PM -0400, Zvezdan Petkovic wrote: > I also had to add this as the first line: > > > and this after !DOCTYPE > > > > to enable validation. It validates as clean CSS and XHTML! I cannot verify (I dont have Windows

Re Qt frontend

2001-06-17 Thread Angus Leeming
Kalle, do you subscribe to lyx-cvs? If so, I won't post these redundant messages. Anyway, I fixed the crash in citation dialog. It was a trivial xforms->qt thing. See the Changelog. The dialog is looking very pretty but the ButtonController is busted. If you need any help, you know where to

comments please

2001-06-17 Thread Edwin Leuven
Hi guys, I cleaned up the spellcheck code a bit; I took spellchecker.C and did the following: 1. put the ispell and pspell code in their own classes that inherit from a common spellbase class 2. have these changes reflected in RunSpellChecker 3. deleted the spelloptions (for the moment

Re: www-user(css) version 2.0

2001-06-17 Thread Zvezdan Petkovic
On Sun, Jun 17, 2001 at 08:52:31PM +1200, Michael Koziarski wrote: > > > I did all the changes. Please, download my lyx.css again. > > The only remaining warning > > Done. > I still see the black screen on your site at the download. I downloaded your CSS and it has that problematic double

Re: www-user(css) version 2.0

2001-06-17 Thread Garst R. Reese
Zvezdan Petkovic wrote: > and fix them. Please check again: > > http://www.cs.wm.edu/~zvezdan/LyX/www-user/ Very nice! Fast. Thanks, Garst

Re: comments please

2001-06-17 Thread Angus Leeming
Haven't read this closely yet but class SpellBase is meant to be an abstract base class isn't it. Ie, you can't create an instance of SpellBase, just of it's derived classes? If so, then it's member functions should be declared pure virtual. ie, not virtual void initialize(BufferParams

Re: www-user(css) version 2.0

2001-06-17 Thread Marcello Nuccio
On Sun, Jun 17, 2001 at 11:57:49AM -0400, Zvezdan Petkovic wrote: > On Sun, Jun 17, 2001 at 01:43:57PM +0200, Marcello Nuccio wrote: > > > > > > and this after !DOCTYPE > > > > > > > I cannot verify (I don't have Windows on my PCs), but I'm quite sure > > that Explorer5.x is badly

minipage in latest cvs

2001-06-17 Thread Herbert Voss
changing an horizontal alignment inside the minipage from layout->paragraph has no effect. the text/table/image/... is always left aligned. Herbert -- http://www.educat.hu-berlin.de/~voss/lyx/

Re: www-user(css) version 2.0

2001-06-17 Thread Zvezdan Petkovic
On Sun, Jun 17, 2001 at 07:44:47PM +0200, Marcello Nuccio wrote: > just suspect because i remember that putting: > > > >"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd;> > > at the top of the file makes it completely broken in IE5.x. > Rereading your mail, I guess

Re: Qt2 filenames

2001-06-17 Thread Allan Rae
yOn Fri, 15 Jun 2001, John Levon wrote: > On Fri, Jun 15, 2001 at 01:55:48PM +1000, Allan Rae wrote: > > > On Thu, 14 Jun 2001, Kalle Dalheimer wrote: > > > > > At least, I like the idea of dropping the Form prefix a lot (I never > > > understood why it was there, probably an xforms thing). > >