Menu

#2 support for namespaces

open
nobody
None
5
2005-12-08
2005-12-08
weltraumkuh
No

Hi,

i think ekhtml should support tagnames with : in it. It
is useful for tags with namespaces - which are in use
for example in Java Server Faces.

Example:
<h:inputText >

The solution is easy just change
static EKHTML_CHARMAP_TYPE valid_tagname(char in){
if(in == '-' || in == '.' || isdigit(in) ||
isalpha(in) )

to
static EKHTML_CHARMAP_TYPE valid_tagname(char in){
if(in == '-' || in == '.' || isdigit(in) ||
isalpha(in) || in == ':')

in ekhtml_mktables.c

Discussion


Log in to post a comment.

MongoDB Logo MongoDB