Hm,
Stylesheets do not change often, it would be better to read them from
textfile than querying the database at the beginning of each html file
which includes it.
MArtin
"Anatoly K. Lasareff" wrote:
>
> >>>>> "d" == derndorfer <Martin> writes:
>
> d> hi,
> d> this is the part II of a question i already asked:
>
> d> i have some tables:
> d> create table css_class(nr int4, classname varchar(50));
> d> create table css_prop(nr int4, name varchar(50), val varchar(50),
> d> classnr int4);
> d> (css_prop.classnr foreign key-> css_class.nr)
>
> d> i would need a trigger on update and insert who takes all entries from
> d> the tables above and put them into a textfile in the following stype
>
> d> .n-th_of_css_class {
> d> n-th_of_css_prop.name(*) : n-th_of_css_prop.val(*);
> d> n+1-th_of_css_prop.name(*): [...]
> d> }
> d> .n+1-th_of_css_class { [...]
>
> d> with other words: i want to create a cascading style sheet out of the
> d> table:
> d> css files look something like that
>
> d> .cassname {
> d> property1 : value_prop1;
> d> property2 : value_prop2;
> d> [...]
> d> }
> d> [...]
>
> d> Can anyone help?
> d> a c-function would be ok too (_really_ think that i need one) but the
> d> file has to be created by the database itself.
>
> d> Idea for the future: whole html pages built out of the databased
> d> resulted by trigger/query combination. (not the question _yet_)
>
> d> MArtin
>
> I think this is bad idea to build text file every time you change the
> tables. What about external program (on C, Perl... etc) what rebuilds,
> pehaps incrementally, file(s) with changed data? Or creating style
> sheets and html pages 'on the fly' with any cgi-script?
>
> --
> Anatoly K. Lasareff Email: tolik@icomm.ru
> Senior programmer