W3C CVS Root

CVS log for XML/valid.c

[BACK] Up to [Public] / XML

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.83: download - view: text, markup, annotated - select for diffs
Thu Jan 4 14:07:30 2001 UTC (23 years, 4 months ago) by veillard
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +73 -112 lines
* tree.c: fixed a stupid bug
* valid.c: applied "Paul D. Smith" <pausmith@nortelnetworks.com>
  patches related to validation of an XInclude processing result
* TODO: updated
Daniel

Revision 1.82: download - view: text, markup, annotated - select for diffs
Tue Nov 7 13:19:11 2000 UTC (23 years, 6 months ago) by veillard
Branches: MAIN
CVS tags: LIBXML_2_2_8
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +2 -0 lines
Fixed a validation problem, Daniel

Revision 1.81: download - view: text, markup, annotated - select for diffs
Fri Nov 3 13:45:27 2000 UTC (23 years, 6 months ago) by veillard
Branches: MAIN
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +3 -0 lines
Sync'ing couple of fixes and XInclude preliminary work, Daniel

Revision 1.80: download - view: text, markup, annotated - select for diffs
Wed Oct 25 19:26:53 2000 UTC (23 years, 6 months ago) by veillard
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +120 -76 lines
Message cleanup Jumbo Diff:
- in xmlerror.h : I added the export of an error context type (void *)
     an error handler type xmlGenericErrorFunc
     there is an interface
       xmlSetGenericErrorFunc  (void *ctx, xmlGenericErrorFunc handler);
     to reset the error handling routine and its argument
 (by default it's equivalent to respectively fprintf and stderr.
- in all the c files, all wild accesses to stderr or stdout within
 the library have been replaced to the handler.
- removed slashrdf.c now obsolete
Daniel

Revision 1.79: download - view: text, markup, annotated - select for diffs
Tue Oct 24 15:35:13 2000 UTC (23 years, 6 months ago) by veillard
Branches: MAIN
CVS tags: LIBXML_2_2_6
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +107 -118 lines
Fixing the reamining validation problems,
extended the hash callback functions to provide the key
Daniel

Revision 1.78: download - view: text, markup, annotated - select for diffs
Mon Oct 23 18:59:50 2000 UTC (23 years, 6 months ago) by veillard
Branches: MAIN
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +14 -8 lines
Fixed the Makefile.am to get memleaks reported again
Fixed the memory leaks introduced in hash changes
Still a couple of problems with Validity checks
Daniel

Revision 1.77: download - view: text, markup, annotated - select for diffs
Mon Oct 23 17:04:22 2000 UTC (23 years, 6 months ago) by veillard
Branches: MAIN
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +143 -345 lines
switching the element, attributes and notation tables to the hash stuff,
compiles but not finished ... TODO_ and testing required, Daniel.

Revision 1.76: download - view: text, markup, annotated - select for diffs
Mon Oct 23 16:01:42 2000 UTC (23 years, 6 months ago) by veillard
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +178 -413 lines
option should close itself as reported by Marc Sanfacon, Daniel.

Revision 1.75: download - view: text, markup, annotated - select for diffs
Sat Oct 21 08:11:29 2000 UTC (23 years, 6 months ago) by veillard
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +16 -1 lines
- Export more xpath functions
- fix problem with large buffers
- force body and html close tags emission
Daniel

Revision 1.74: download - view: text, markup, annotated - select for diffs
Wed Oct 11 15:16:38 2000 UTC (23 years, 7 months ago) by veillard
Branches: MAIN
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +53 -24 lines
Fixed the post validation bug reported by Bill Kendrick <William.Kendrick@wcom.com>, Daniel

Revision 1.73: download - view: text, markup, annotated - select for diffs
Tue Oct 10 22:44:45 2000 UTC (23 years, 7 months ago) by veillard
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +1 -3 lines
Large XPointer updates and changes.
Incorporating pre-2.2.5 feedback.
Adding XPath/XPointer tests,
Daniel

Revision 1.72: download - view: text, markup, annotated - select for diffs
Sun Oct 1 20:29:37 2000 UTC (23 years, 7 months ago) by veillard
Branches: MAIN
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +53 -53 lines
- configure.in: releasing 2.2.4
- parser.[ch]: added xmlStrEqual()
- HTMLparser.c HTMLtree.c SAX.c debugXML.c entities.c parser.c
  tree.c valid.c xlink.c xpath.c: converted all !xmlStrcmp to
  use xmlStrEqual instead
- TODO: updated
Daniel

Revision 1.71: download - view: text, markup, annotated - select for diffs
Sat Sep 16 19:45:06 2000 UTC (23 years, 8 months ago) by veillard
Branches: MAIN
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +3 -0 lines
Cleaned up warnings in pedantic mode, Daniel

Revision 1.70: download - view: text, markup, annotated - select for diffs
Sat Sep 16 13:35:50 2000 UTC (23 years, 8 months ago) by veillard
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +28 -1 lines
BIG CLEANUP during flight:
parserInternals.c parserInternals.h parser.c Makefile.in:
created a new module parserInternals.c, moved most of the
code shared by the various parsers there, as well as
deprecated  code from parser.c. More cleanup of parser.c
Daniel

Revision 1.69: download - view: text, markup, annotated - select for diffs
Wed Sep 6 22:37:26 2000 UTC (23 years, 8 months ago) by veillard
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +9 -4 lines
Jumbo snprintf patch Denis Barbier <barbier@imacs.polytechnique.fr>, Daniel

Revision 1.68: download - view: text, markup, annotated - select for diffs
Sat Aug 26 19:52:45 2000 UTC (23 years, 8 months ago) by veillard
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +1 -1 lines
Added --pedantic to xmllint, SAX wasn't disabled within EXCLUDE'd
conditionnal sections, now validation against Docbook-4.1.1. don't
spill errors doesn't mean everything is perfect though, daniel.

Revision 1.67: download - view: text, markup, annotated - select for diffs
Sat Aug 26 10:28:56 2000 UTC (23 years, 8 months ago) by veillard
Branches: MAIN
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +66 -14 lines
First speed improvement set: last used cache for Element lookup,
and xmlAddAttributeDecl change to use element attribute list, Daniel.

Revision 1.66: download - view: text, markup, annotated - select for diffs
Fri Jul 28 23:06:20 2000 UTC (23 years, 9 months ago) by veillard
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +6 -6 lines
Played with Oasis testsuite a bit more, added xmlGetFeaturesList,
xmlGetFeature, xmlSetFeature, applied submitted bugfixes, Daniel

Revision 1.65: download - view: text, markup, annotated - select for diffs
Wed Jul 26 19:08:54 2000 UTC (23 years, 9 months ago) by veillard
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +10 -0 lines
Worked on the Oasis testsuite tool, fixed a couple of nasty bugs in the
way. Added node information for empty elements, Daniel.

Revision 1.64: download - view: text, markup, annotated - select for diffs
Wed Jul 5 12:32:16 2000 UTC (23 years, 10 months ago) by veillard
Branches: MAIN
CVS tags: LIBXML_2_2_1
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +31 -27 lines
Large cleanup using SunPro cc, Daniel.

Revision 1.63: download - view: text, markup, annotated - select for diffs
Fri Jun 30 17:56:07 2000 UTC (23 years, 10 months ago) by daniel
Branches: MAIN
CVS tags: LIBXML_2_1_1
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +3 -0 lines
Attempt at better SAXification of HTML parser

Revision 1.62: download - view: text, markup, annotated - select for diffs
Mon Jun 26 07:32:33 2000 UTC (23 years, 10 months ago) by daniel
Branches: MAIN
CVS tags: LIBXML_2_1_0
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +313 -18 lines
Fixed most validation + namespace problems, Daniel.

Revision 1.61: download - view: text, markup, annotated - select for diffs
Mon Apr 3 18:45:48 2000 UTC (24 years, 1 month ago) by daniel
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +4 -4 lines
Work done on flignt ot Boston and w.e. ready for 2.0.0, Daniel

Revision 1.60: download - view: text, markup, annotated - select for diffs
Mon Mar 13 12:11:12 2000 UTC (24 years, 2 months ago) by daniel
Branches: MAIN
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +59 -0 lines
- Dtd attribute normalization
- push parser bug removed
- added XML erratas to TODO
...
Daniel

Revision 1.59: download - view: text, markup, annotated - select for diffs
Sat Mar 11 17:44:07 2000 UTC (24 years, 2 months ago) by daniel
Branches: MAIN
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +238 -3 lines
Fixed a bunch of validity probs during the badminton tournament, daniel

Revision 1.58: download - view: text, markup, annotated - select for diffs
Sat Mar 4 11:37:06 2000 UTC (24 years, 2 months ago) by daniel
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +324 -110 lines
Bunch of patches including validation within entities, done in
SanJose->Grenoble trip. Includes deactivation of white space removal
heuristic by default,
Daniel

Revision 1.57: download - view: text, markup, annotated - select for diffs
Tue Feb 29 16:16:18 2000 UTC (24 years, 2 months ago) by daniel
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +3 -3 lines
Work done when going from Grenoble to SanJose, Daniel

Revision 1.56: download - view: text, markup, annotated - select for diffs
Thu Feb 24 16:51:08 2000 UTC (24 years, 2 months ago) by daniel
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +45 -15 lines
Fixed IDREFS valid checking, cleanups, updated TODO, and Oasis testing, Daniel.

Revision 1.55: download - view: text, markup, annotated - select for diffs
Wed Feb 23 15:34:44 2000 UTC (24 years, 2 months ago) by daniel
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +3 -3 lines
fixed levels of conditionnal section
added HTML output to the tester program
Daniel

Revision 1.54: download - view: text, markup, annotated - select for diffs
Mon Feb 21 18:49:25 2000 UTC (24 years, 2 months ago) by daniel
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +42 -6 lines
Lots of bugs fixing on the validation, added RunTests, Daniel.

Revision 1.53: download - view: text, markup, annotated - select for diffs
Mon Feb 21 09:33:35 2000 UTC (24 years, 2 months ago) by daniel
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +1 -0 lines
Parsing teh external subset in context of the internal one.
Added conditionnal sections support
Daniel

Revision 1.52: download - view: text, markup, annotated - select for diffs
Thu Feb 17 10:03:23 2000 UTC (24 years, 3 months ago) by daniel
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +9 -14 lines
More fixes on UTF-16, Daniel.

Revision 1.51: download - view: text, markup, annotated - select for diffs
Wed Feb 16 17:16:22 2000 UTC (24 years, 3 months ago) by daniel
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +3 -1 lines
Bunch of fixes on I18N, fixed UTF16toUTF8, validity checking fixes,
working on james Clark regression tests, added --nowarning to tester, Daniel.

Revision 1.50: download - view: text, markup, annotated - select for diffs
Tue Feb 15 14:56:32 2000 UTC (24 years, 3 months ago) by daniel
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +26 -2 lines
Added attributes and element declarations to the dtd node children,
Improved the debugging routine to check for node connectivity
fixed some SAX generated node connectivity problems
fixed a validity warning
fixed a unnecessary write when parsing a string
Daniel

Revision 1.49: download - view: text, markup, annotated - select for diffs
Mon Feb 14 18:24:30 2000 UTC (24 years, 3 months ago) by daniel
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +1 -1 lines
Cleanup, daniel

Revision 1.48: download - view: text, markup, annotated - select for diffs
Mon Feb 14 17:28:57 2000 UTC (24 years, 3 months ago) by daniel
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +24 -22 lines
Integrated the DTD node in the doc children list, Daniel.

Revision 1.47: download - view: text, markup, annotated - select for diffs
Mon Feb 14 11:44:22 2000 UTC (24 years, 3 months ago) by daniel
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +21 -20 lines
More work/debug towas DOM for DTDs, Daniel.

Revision 1.46: download - view: text, markup, annotated - select for diffs
Mon Feb 14 08:24:33 2000 UTC (24 years, 3 months ago) by daniel
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +11 -10 lines
First set of patches for DOM and v2.0, Daniel.

Revision 1.45: download - view: text, markup, annotated - select for diffs
Wed Jan 26 16:04:32 2000 UTC (24 years, 3 months ago) by daniel
Branches: MAIN
CVS tags: COMPAT_1_0
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +10 -7 lines
Patches to valid.c, Daniel.

Revision 1.44: download - view: text, markup, annotated - select for diffs
Tue Jan 11 19:42:27 2000 UTC (24 years, 4 months ago) by daniel
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +1 -1 lines
Removed all exit() references from the library code, Daniel

Revision 1.43: download - view: text, markup, annotated - select for diffs
Wed Jan 5 15:58:41 2000 UTC (24 years, 4 months ago) by daniel
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +84 -4 lines
valid.[ch]: added xmlRemoveID() and xmlRemoveRef()
tree.c: added check and handling when possibly removing an ID
tree.c, HTMLparser.h, HTMLtree.h: fixed entities parsing
     and saving.
test/HTML/entities.html result/HTML/entities.html* : test for
     various entities reference cases
result/HTML/* : as a result output of some testcase have
     changed
HTMLparser.c, parser.c: fixed a bug in the push mode triggered
     by previous example. added xmlParseTryOrFinish().
xpath.h tree.h parser.h valid.h xmlIO.h xlink.h encoding.h
  entities.h debugXML.h HTMLparser.h: changed the way struct are
  declared to allow gtk-doc to expose those
parser.c: closed bug #4960

Revision 1.42: download - view: text, markup, annotated - select for diffs
Tue Dec 28 15:31:14 1999 UTC (24 years, 4 months ago) by daniel
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +67 -1 lines
Work done during hollidays:
  - push parsing
  - XML shell
  - XPath debug
Lots of bug fixes and cleanup too,
Daniel

Revision 1.41: download - view: text, markup, annotated - select for diffs
Tue Dec 21 17:53:00 1999 UTC (24 years, 4 months ago) by daniel
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +1 -2 lines
Tried to integrate WIN32 patches from pj@walter-graphtek.com, Daniel.

Revision 1.40: download - view: text, markup, annotated - select for diffs
Sat Dec 18 11:28:54 1999 UTC (24 years, 5 months ago) by daniel
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +52 -16 lines
closed bug #3950, ramiro@eazel.com patch for "namespace", a posteriori
validation fixup, fixed a bug with default namespace, and
cnygard@bellatlantic.net bug report on IS_BASECHAR, Daniel

Revision 1.39: download - view: text, markup, annotated - select for diffs
Wed Dec 15 11:47:38 1999 UTC (24 years, 5 months ago) by daniel
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +76 -10 lines
Debug on post validation, added --postvalid, xmlDocGetRootElement(), Daniel.

Revision 1.38: download - view: text, markup, annotated - select for diffs
Sat Dec 11 23:51:29 1999 UTC (24 years, 5 months ago) by daniel
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +15 -2 lines
Cleanup, switch HTML output to lowercase (like XHTML), added support
to DTD default attribute values, Daniel

Revision 1.37: download - view: text, markup, annotated - select for diffs
Wed Nov 24 17:57:48 1999 UTC (24 years, 5 months ago) by daniel
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +3 -3 lines
Added cleanup routines, cleanup with -pedantic on linux, patch for 3788, Daniel

Revision 1.36: download - view: text, markup, annotated - select for diffs
Wed Nov 10 17:04:11 1999 UTC (24 years, 6 months ago) by daniel
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +1 -2 lines
Fixed a typo and corrected a signature error, Daniel.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Thu Oct 14 08:26:49 1999 UTC (24 years, 7 months ago) by daniel
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +1 -0 lines
Introduced HTML document type, removed &apos; for HTML, improved
xmlmemory, Daniel.

Revision 1.34: download - view: text, markup, annotated - select for diffs
Tue Oct 12 12:34:34 1999 UTC (24 years, 7 months ago) by daniel
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +145 -89 lines
Corrected the XML output, the HTML parser bug, new xmlValidGetPotentialChildren
and xmlValidGetValidElements, added --insert test to tester.c, Daniel.

Revision 1.33: download - view: text, markup, annotated - select for diffs
Mon Oct 11 11:54:58 1999 UTC (24 years, 7 months ago) by daniel
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +111 -0 lines
cleanup of the XML output, regeneration of tests, Daniel.

Revision 1.32: download - view: text, markup, annotated - select for diffs
Fri Oct 8 09:35:42 1999 UTC (24 years, 7 months ago) by daniel
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +2 -2 lines
Corrections of comments/doc, CORBA fields init patch from raph, Daniel.

Revision 1.31: download - view: text, markup, annotated - select for diffs
Thu Sep 30 15:43:35 1999 UTC (24 years, 7 months ago) by daniel
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +46 -46 lines
Commited 1.7.3 from GnomeCVS, Daniel.

Revision 1.30: download - view: text, markup, annotated - select for diffs
Mon Sep 20 12:23:02 1999 UTC (24 years, 7 months ago) by daniel
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +1 -1 lines
Cleanup, added some WebDAV testing, errno on parser, extended nanohttp API, Daniel.

Revision 1.29: download - view: text, markup, annotated - select for diffs
Fri Sep 17 12:08:24 1999 UTC (24 years, 8 months ago) by daniel
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +12 -1 lines
Cleanup on includes, defines, etc ... Daniel

Revision 1.28: download - view: text, markup, annotated - select for diffs
Mon Sep 13 12:28:56 1999 UTC (24 years, 8 months ago) by daniel
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +50 -18 lines
More work on validation, Daniel.

Revision 1.27: download - view: text, markup, annotated - select for diffs
Sun Sep 5 21:37:56 1999 UTC (24 years, 8 months ago) by daniel
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +268 -3 lines
Draw the path for tree.c and xpath.c extensions, Daniel.

Revision 1.26: download - view: text, markup, annotated - select for diffs
Thu Sep 2 16:30:54 1999 UTC (24 years, 8 months ago) by daniel
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +74 -73 lines
Memory leak hunting, successful it seems ! Daniel

Revision 1.25: download - view: text, markup, annotated - select for diffs
Mon Aug 30 11:19:42 1999 UTC (24 years, 8 months ago) by daniel
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +5 -4 lines
Patches submitted by Stephane.Conversy@lri.fr, cleanup, Daniel.

Revision 1.24: download - view: text, markup, annotated - select for diffs
Sun Aug 29 18:01:18 1999 UTC (24 years, 8 months ago) by daniel
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +7 -5 lines
More cleanup, added processing-instruction(name) in xpath, Insure ... Daniel

Revision 1.23: download - view: text, markup, annotated - select for diffs
Sun Aug 29 10:56:44 1999 UTC (24 years, 8 months ago) by daniel
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +45 -5 lines
Cleanup with -pedantic, closing TODOs, added a missing VC, Daniel

Revision 1.22: download - view: text, markup, annotated - select for diffs
Wed Aug 25 10:55:47 1999 UTC (24 years, 8 months ago) by daniel
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +47 -1 lines
Large improvement when substituting entities, PI support added,
ID support added (with checking), API for external parsed entities, Daniel.

Revision 1.21: download - view: text, markup, annotated - select for diffs
Thu Aug 12 13:04:03 1999 UTC (24 years, 9 months ago) by daniel
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +194 -0 lines
Work on the plane, XPath equal and compare, ID support, Daniel

Revision 1.20: download - view: text, markup, annotated - select for diffs
Sat Aug 7 14:10:11 1999 UTC (24 years, 9 months ago) by daniel
Branches: MAIN
CVS tags: LIBXML_1_5_0
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +1 -8 lines
Validation bug fixing, XML-REC now validates, Daniel.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Thu Aug 5 14:38:26 1999 UTC (24 years, 9 months ago) by daniel
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +141 -11 lines
The xlink draft now validates :-), Daniel.

Revision 1.18: download - view: text, markup, annotated - select for diffs
Thu Aug 5 09:42:03 1999 UTC (24 years, 9 months ago) by daniel
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +399 -8 lines
Big progresses on the validating front, DIA doc validates, Daniel

Revision 1.17: download - view: text, markup, annotated - select for diffs
Wed Aug 4 10:11:42 1999 UTC (24 years, 9 months ago) by daniel
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +5 -6 lines
Removed a bug in attributes data generation, attribute decl printing,
more progress on DtD validation, isnan and isinf workarounds, Daniel.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Wed Aug 4 08:32:17 1999 UTC (24 years, 9 months ago) by daniel
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +411 -31 lines
Started adding validation of the DtD parts, Daniel

Revision 1.15: download - view: text, markup, annotated - select for diffs
Tue Aug 3 11:57:32 1999 UTC (24 years, 9 months ago) by daniel
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +138 -43 lines
Restored DtD parsing, set-up the framework for validation, Daniel

Revision 1.14: download - view: text, markup, annotated - select for diffs
Mon Aug 2 16:45:50 1999 UTC (24 years, 9 months ago) by daniel
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +300 -0 lines
First steps toward adding the validation code, Daniel

Revision 1.13: download - view: text, markup, annotated - select for diffs
Thu Jul 29 09:43:58 1999 UTC (24 years, 9 months ago) by daniel
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +3 -3 lines
Cleanup, debugging on external entities parsing, Daniel

Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Jul 7 09:16:19 1999 UTC (24 years, 10 months ago) by daniel
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +14 -14 lines
Adding HTML support, testcases, and updates from bugs.gnome.org, Daniel

Revision 1.11: download - view: text, markup, annotated - select for diffs
Mon Jun 7 22:28:44 1999 UTC (24 years, 11 months ago) by daniel
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +8 -3 lines
Corrected bugs an memory alloc, make testall under Insure is now clean, Daniel

Revision 1.10: download - view: text, markup, annotated - select for diffs
Tue Jun 1 13:01:05 1999 UTC (24 years, 11 months ago) by daniel
Branches: MAIN
CVS tags: LIB_XML_1_1
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +6 -9 lines
More fixes, the parser now work on the xml parsing tests from the XML-1.0 REQ, Daniel

Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon May 31 17:36:32 1999 UTC (24 years, 11 months ago) by daniel
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -9 lines
Quite some work to make a correct entity model, Daniel.

Revision 1.8: download - view: text, markup, annotated - select for diffs
Wed Apr 21 11:12:53 1999 UTC (25 years ago) by daniel
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +71 -73 lines
Cleaned-up reentrancy issues related to dump, Daniel.

Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Apr 4 22:46:12 1999 UTC (25 years, 1 month ago) by daniel
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +6 -4 lines
Moved to a SAX processing model, removed old namespace support, Daniel

Revision 1.6: download - view: text, markup, annotated - select for diffs
Mon Feb 22 12:02:49 1999 UTC (25 years, 2 months ago) by daniel
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +31 -14 lines
Cleanupt for gnome-xml, added parserInternals.h, more work on internal subset, Daniel.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Sun Feb 21 15:38:57 1999 UTC (25 years, 2 months ago) by daniel
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +244 -1 lines
More work toward full parsing of DTDs, finished attributes added notations, Daniel.

Revision 1.4: download - view: text, markup, annotated - select for diffs
Sat Feb 20 20:39:52 1999 UTC (25 years, 2 months ago) by daniel
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +403 -8 lines
Much improvements on the ATTLIST decl parsing and save, memory debug, Daniel.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Mon Feb 1 10:30:21 1999 UTC (25 years, 3 months ago) by daniel
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +81 -7 lines
More work on <!ELEMENT parsing and saving, Daniel.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun Jan 31 20:56:35 1999 UTC (25 years, 3 months ago) by daniel
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +235 -11 lines
More work on the DTD parsing, Daniel.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Tue Jan 5 17:30:08 1999 UTC (25 years, 4 months ago) by daniel
Branches: MAIN
First cut at adding Emenet content parsing, Daniel.

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

Webmaster