Changeset 138
- Timestamp:
- 12/07/02 20:08:22 (6 years ago)
- Files:
-
- trunk/libxode/src/xmlparse.c (modified) (4 diffs, 2 props)
- trunk/libxode/src/xmltok.c (modified) (1 diff, 2 props)
- trunk/libxode/src/xstream.c (modified) (1 diff, 2 props)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libxode/src/xmlparse.c
- Property svn:eol-style deleted
- Property svn:keywords deleted
r2 r138 191 191 static Processor cdataSectionProcessor; 192 192 static Processor epilogProcessor; 193 static Processor errorProcessor; 193 /*static Processor errorProcessor;*/ 194 194 static Processor externalEntityInitProcessor; 195 195 static Processor externalEntityInitProcessor2; … … 2334 2334 } 2335 2335 2336 static2336 /*static 2337 2337 enum XML_Error errorProcessor(XML_Parser parser, 2338 2338 const char *s, … … 2341 2341 { 2342 2342 return errorCode; 2343 } 2343 }*/ 2344 2344 2345 2345 static enum XML_Error … … 2484 2484 const char *entityTextEnd) 2485 2485 { 2486 const ENCODING *internalEnc = ns ? XmlGetInternalEncodingNS() : XmlGetInternalEncoding(); 2486 /* const ENCODING *internalEnc = ns ? XmlGetInternalEncodingNS() : XmlGetInternalEncoding();*/ 2487 2487 STRING_POOL *pool = &(dtd.pool); 2488 2488 entityTextPtr += encoding->minBytesPerChar; trunk/libxode/src/xmltok.c
- Property svn:eol-style deleted
- Property svn:keywords deleted
r2 r138 1492 1492 } 1493 1493 } 1494 *encPtr = encodingTable[ INIT_ENC_INDEX(enc)];1494 *encPtr = encodingTable[(int)INIT_ENC_INDEX(enc)]; 1495 1495 return XmlTok(*encPtr, state, ptr, end, nextTokPtr); 1496 1496 } trunk/libxode/src/xstream.c
- Property svn:eol-style deleted
- Property svn:keywords deleted
r2 r138 19 19 20 20 #include <libxode.h> 21 #include <sys/types.h> 22 #include <time.h> 21 23 22 24 /* xstream is a way to have a consistent method of handling incoming XML Stream based events... it doesn't handle the generation of an XML Stream, but provides some facilities to help do that */
