Need for a parseable a CSS 1 list

If anybody could help, it will be sympathic (and i think that some guy
on w3c have this)
PS : bluefish is an opensource project

--
 Ludovic.Maitre@sophia.inria.fr

 INRIA - 2004 route des lucioles - BP 93    Tel: (33/0) 4 92 38 50 41
 06902   SOPHIA-ANTIPOLIS cedex (France)    Fax: (33/0) 4 92 38 76 02

Forwarded message 1

  • From: Olivier Sessink <olivier@bluefish.openoffice.nl>
  • Date: Mon, 30 Oct 2000 14:21:28 +0100
  • Subject: a CSS 1 list
  • To: bluefish-dev@lists.ems.ru
  • Message-id: <20001030142128.A29368@fender.fakenet>
Hi,

I'm writing a new CSS dialog, but I need a parseable list of CSS properties,
does anyone know of such a list?

check html2.c, it contains a list like:

static gchar *cs3_colors[] = {"blue", "red", NULL};
static gchar *cs3_repeat[] = {"repeat", "repeat-x", "repeat-y", "no-repeat",
NULL};

static Tcs3_arr cs3_arr[] = {
	{"color", cs3_colors, 0},
	{"background-color", cs3_colors, 0},
	{"background-image", NULL, 0},
	{"background-repeat", cs3_repeat, 1},
	{NULL, NULL, 0}
};


I want to generate this in some way, anybody an idea or URL where to find a
list which can be parsed?

bye,
	Olivier

-
To unsubscribe from this list: send the line "unsubscribe bluefish-dev" in
the body of a message to listar@lists.ems.ru
Main Web Page: http://bluefish.openoffice.nl/

Received on Monday, 30 October 2000 09:42:00 UTC