L
lloyd christopher
im developing a template based web application in perl and need some
guidance. currently its all pretty simple stuff, we tell the designers
place holders to use and then &username; or %USERNAME% or <MYusername/>
would be replaced by the value. basically what the perl cookbook uses in a
few examples iirc.
however more and more we have to deal with more complex data. variable
length lists of data. say for example a list of new products per day, one
day might have 4, one might have 7. so far we tell them to put %TABLE% and
it gets replaced with a preformatted table with lots of id's and classes so
they can customize the look of it.
what i really would like to do though is give them more power. something
along the lines of:
<table>
<mytable>
<tr><td>&product;</td><td>&description;</td></tr>
</mytable>
</table>
and then i can loop through the <mytable>..</mytable> for each one. i can
do this easily enough using regular expressions, but what i'd like to know
is if there are any standards for this sort of thing that already exist, any
modules etc. obviously i'd rather not reinvent the wheel. HTML:
arser?
DOM?
(yes i know i keep jumping between styles of placeholders, trying to decide
on whats the best / standard if their is one).
thanks alot sorry for the rambling post.
lloyd christopher
SLOW30
guidance. currently its all pretty simple stuff, we tell the designers
place holders to use and then &username; or %USERNAME% or <MYusername/>
would be replaced by the value. basically what the perl cookbook uses in a
few examples iirc.
however more and more we have to deal with more complex data. variable
length lists of data. say for example a list of new products per day, one
day might have 4, one might have 7. so far we tell them to put %TABLE% and
it gets replaced with a preformatted table with lots of id's and classes so
they can customize the look of it.
what i really would like to do though is give them more power. something
along the lines of:
<table>
<mytable>
<tr><td>&product;</td><td>&description;</td></tr>
</mytable>
</table>
and then i can loop through the <mytable>..</mytable> for each one. i can
do this easily enough using regular expressions, but what i'd like to know
is if there are any standards for this sort of thing that already exist, any
modules etc. obviously i'd rather not reinvent the wheel. HTML:
DOM?
(yes i know i keep jumping between styles of placeholders, trying to decide
on whats the best / standard if their is one).
thanks alot sorry for the rambling post.
lloyd christopher
SLOW30