[Xmlstorage-commits] SF.net SVN: xmlstorage: [98] trunk/c++/xmlstorage.cpp
Brought to you by:
martinfuchs
From: <mar...@us...> - 2008-07-13 07:39:05
|
Revision: 98 http://xmlstorage.svn.sourceforge.net/xmlstorage/?rev=98&view=rev Author: martinfuchs Date: 2008-07-13 00:39:12 -0700 (Sun, 13 Jul 2008) Log Message: ----------- allow colons in attribute names (extended by Tobias Lange) Modified Paths: -------------- trunk/c++/xmlstorage.cpp Modified: trunk/c++/xmlstorage.cpp =================================================================== --- trunk/c++/xmlstorage.cpp 2008-05-30 12:11:47 UTC (rev 97) +++ trunk/c++/xmlstorage.cpp 2008-07-13 07:39:12 UTC (rev 98) @@ -667,7 +667,7 @@ if (c == '\xC3') // UTF-8 escape character ++p; //TODO only continue on umlaut characters - else if (!isalnum(c) && c!='_' && c!='-') + else if (!isalnum(c) && c!='_' && c!='-' && c!=':') break; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |