Show
Ignore:
Timestamp:
06/28/07 07:07:14 (2 years ago)
Author:
athomas
Message:

Dev Todo:

  • A few bugfixes.
  • Added XML declaration parsing/saving. This is a stop-gap at best, but will
    hopefully be useful to some.
  • Removed reliance on builtin regex library. Hopefully the completely broken
    version of glibc that instigated the inclusion of it is now out of
    circulation.
  • Fixed a whole bunch of compiler warnings on more recent GCC versions.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • todo/trunk/util/XML.h

    r290 r443  
    6565 
    6666                // Lexer constants 
    67                 enum { XmlCommentBegin = 256, XmlBegin, XmlEnd, XmlDataBegin, XmlContent }; 
     67                enum { XmlDecl = 256, XmlCommentBegin, XmlBegin, XmlEnd, XmlDataBegin, XmlContent }; 
    6868                enum { ElementWS = 256, ElementValue, ElementKey, ElementAssignment, ElementTerminator}; 
    6969                enum { CommentEnd = 256,  CommentBody };