(sgmllib.py): Partial acceptance of patch from David Leonard

<leonard@dstc.edu.au>; allows hyphen and period in the middle
	of attribute names.  Still not allowed as first character;
	as first character these are illegal in the Reference Concrete
	Syntax, and we've not identified any use of these characters as
	the first char in an attribute name in deployment on the web.
This commit is contained in:
Fred Drake 1996-12-16 21:56:27 +00:00
parent b6454e58bc
commit 09bcf8c031
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ commentopen = regex.compile('<!--')
commentclose = regex.compile('--[ \t\n]*>')
tagfind = regex.compile('[a-zA-Z][a-zA-Z0-9]*')
attrfind = regex.compile(
'[ \t\n]+\([a-zA-Z_][a-zA-Z_0-9]*\)'
'[ \t\n]+\([a-zA-Z_][-.a-zA-Z_0-9]*\)'
'\([ \t\n]*=[ \t\n]*'
'\(\'[^\']*\'\|"[^"]*"\|[-a-zA-Z0-9./:+*%?!()_#=~]*\)\)?')