CVS log for XML/HTMLparser.c
Up to [Public] / XML
Request diff between arbitrary revisions
Default branch: 1
Revision 1.88 / (download) - annotate - [select for diffs]
, Wed Jan 3 17:57:36 2001 UTC (7 years, 4 months ago) by veillard
CVS Tags: HEAD
Changes since 1.87: +2 -0
lines
Diff to previous 1.87
(colored)
Applied IPV6 first patch to nanohttp
Patched htmlCheckParagraph to check htmlOmittedDefaultValue, Jonas Borgström
Daniel
Revision 1.87 / (download) - annotate - [select for diffs]
, Mon Dec 18 12:51:37 2000 UTC (7 years, 4 months ago) by veillard
Changes since 1.86: +17 -0
lines
Diff to previous 1.86
(colored)
Applied Tenihin Andrey <algorithm@peterlink.ru> patch for
encoding in htmlParseDoc, Daniel
Revision 1.86 / (download) - annotate - [select for diffs]
, Wed Dec 6 14:30:34 2000 UTC (7 years, 5 months ago) by veillard
Changes since 1.85: +22 -1
lines
Diff to previous 1.85
(colored)
Work done in the plane, daniel
Revision 1.85 / (download) - annotate - [select for diffs]
, Tue Nov 21 18:45:36 2000 UTC (7 years, 5 months ago) by veillard
Changes since 1.84: +59 -13
lines
Diff to previous 1.84
(colored)
Chasing troubles with "advanced" XPointer functionalities, Daniel
Revision 1.84 / (download) - annotate - [select for diffs]
, Fri Nov 17 16:08:49 2000 UTC (7 years, 5 months ago) by veillard
Changes since 1.83: +5 -4
lines
Diff to previous 1.83
(colored)
Fixed handling of broken numeric entities in the HTML parser, Daniel
Revision 1.83 / (download) - annotate - [select for diffs]
, Tue Oct 31 13:28:21 2000 UTC (7 years, 6 months ago) by veillard
CVS Tags: LIBXML_2_2_8
Changes since 1.82: +8 -0
lines
Diff to previous 1.82
(colored)
- HTMLparser.c: fixed loop on invalid char in scripts
- parser.c: update to description of xmlIOParseDTD()
- libxml.m4 xmlversion.h.in: changes contributed by
Michael Schmeing <m.schmeing@internet-factory.de>
Daniel
Revision 1.82 / (download) - annotate - [select for diffs]
, Sat Oct 28 08:52:21 2000 UTC (7 years, 6 months ago) by veillard
Changes since 1.81: +8 -1
lines
Diff to previous 1.81
(colored)
Attempt at handling <b> <em> <bold> and white spaces problems, Daniel
Revision 1.81 / (download) - annotate - [select for diffs]
, Wed Oct 25 19:26:52 2000 UTC (7 years, 6 months ago) by veillard
Changes since 1.80: +184 -107
lines
Diff to previous 1.80
(colored)
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.80 / (download) - annotate - [select for diffs]
, Tue Oct 24 10:29:47 2000 UTC (7 years, 6 months ago) by veillard
CVS Tags: LIBXML_2_2_6
Changes since 1.79: +18 -7
lines
Diff to previous 1.79
(colored)
A number of contributed patches:
- include/Makefile.am: problem passing in DESTDIR= values patch
from Marc Christensen <marc@calderasystems.com>
- nanohttp.c: removed debugging remains
- HTMLparser.c: the bogus tag should be ignored (Wayne)
- HTMLparser.c parser.c: fixing a number of problems with the
macros in the *parser.c files (Wayne).
- HTMLparser.c: close the previous option when opening a new one
(Marc Sanfacon).
- result/HTML/*: updated the HTML results accordingly
Daniel
Revision 1.79 / (download) - annotate - [select for diffs]
, Mon Oct 23 16:01:42 2000 UTC (7 years, 6 months ago) by veillard
Changes since 1.78: +1 -0
lines
Diff to previous 1.78
(colored)
option should close itself as reported by Marc Sanfacon, Daniel.
Revision 1.78 / (download) - annotate - [select for diffs]
, Sun Oct 15 14:20:58 2000 UTC (7 years, 7 months ago) by veillard
Changes since 1.77: +55 -0
lines
Diff to previous 1.77
(colored)
Attribute normalization is needed for HTML too (Bjorn Reese)
Added htmlIsScriptAttribute()
Daniel
Revision 1.77 / (download) - annotate - [select for diffs]
, Sat Oct 14 23:09:30 2000 UTC (7 years, 7 months ago) by veillard
Changes since 1.76: +203 -111
lines
Diff to previous 1.76
(colored)
HTML, proper handling of SCRIPT and STYLE, Daniel.
Revision 1.76 / (download) - annotate - [select for diffs]
, Tue Oct 10 22:44:45 2000 UTC (7 years, 7 months ago) by veillard
Changes since 1.75: +1 -2
lines
Diff to previous 1.75
(colored)
Large XPointer updates and changes.
Incorporating pre-2.2.5 feedback.
Adding XPath/XPointer tests,
Daniel
Revision 1.75 / (download) - annotate - [select for diffs]
, Mon Oct 9 12:27:32 2000 UTC (7 years, 7 months ago) by veillard
Changes since 1.74: +4 -4
lines
Diff to previous 1.74
(colored)
Moved xml-error.h to xmlerror.h since this was breaking automake
Worked on the xpointer implementation and tests,
Daniel
Revision 1.74 / (download) - annotate - [select for diffs]
, Tue Oct 3 09:27:56 2000 UTC (7 years, 7 months ago) by veillard
Changes since 1.73: +1 -28
lines
Diff to previous 1.73
(colored)
Removed 2 section previously #if 0 commented out
Switched the attribute name parsing to case insensitive,
Daniel
Revision 1.73 / (download) - annotate - [select for diffs]
, Sun Oct 1 20:29:37 2000 UTC (7 years, 7 months ago) by veillard
Changes since 1.72: +33 -33
lines
Diff to previous 1.72
(colored)
- 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.72 / (download) - annotate - [select for diffs]
, Sun Oct 1 18:23:39 2000 UTC (7 years, 7 months ago) by veillard
Changes since 1.71: +3 -1
lines
Diff to previous 1.71
(colored)
Cleanups, 1 bug fix:
- HTMLparser.c: fixed htmlStartCloseIndexinitialized init
- entities.h: exported xmlInitializePredefinedEntities
- parser.[ch] : added xmlInitParser()
- parserInternals.h : had to export htmlInitAutoClose()
Daniel
Revision 1.71 / (download) - annotate - [select for diffs]
, Mon Sep 25 14:24:33 2000 UTC (7 years, 7 months ago) by veillard
Changes since 1.70: +4 -3
lines
Diff to previous 1.70
(colored)
Avoiding a few warning when compiling with MSC, Daniel
Revision 1.70 / (download) - annotate - [select for diffs]
, Sat Sep 23 10:20:33 2000 UTC (7 years, 7 months ago) by veillard
Changes since 1.69: +1 -1
lines
Diff to previous 1.69
(colored)
Another patch from Wayne Davison <wayned@users.sourceforge.net>, correcting
an URI bug and a fix for the control-character-induced infinite loop, Daniel
Revision 1.69 / (download) - annotate - [select for diffs]
, Fri Sep 22 10:57:40 2000 UTC (7 years, 7 months ago) by veillard
Changes since 1.68: +6 -22
lines
Diff to previous 1.68
(colored)
Applied and tweaked Wayne Davison patch for xmlStrcasecmp and al. Daniel
Revision 1.68 / (download) - annotate - [select for diffs]
, Sun Sep 17 23:17:12 2000 UTC (7 years, 7 months ago) by veillard
Changes since 1.67: +4 -3
lines
Diff to previous 1.67
(colored)
Got 2 patches for 2.2.3:
Applied Denis Barbier <barbier@imacs.polytechnique.fr> patches on memset
Applied Wayne Davison <wayned@blorf.net> patch for UTF8 characters in HTML
tag-attribute values.
Daniel
Revision 1.67 / (download) - annotate - [select for diffs]
, Sat Sep 16 18:14:09 2000 UTC (7 years, 8 months ago) by veillard
Changes since 1.66: +7 -8
lines
Diff to previous 1.66
(colored)
set ctxt->errNo before calling the error or warning handlers, Daniel.
Revision 1.66 / (download) - annotate - [select for diffs]
, Sat Sep 16 13:35:49 2000 UTC (7 years, 8 months ago) by veillard
Changes since 1.65: +0 -1
lines
Diff to previous 1.65
(colored)
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.65 / (download) - annotate - [select for diffs]
, Sun Sep 10 16:01:05 2000 UTC (7 years, 8 months ago) by veillard
Changes since 1.64: +27 -0
lines
Diff to previous 1.64
(colored)
- uri.c tree.c SAX.c parser.c entities.c debugXML.c: finished
the cleanup of the computation of URI references when seeking
external entities. The URI reference string and the resulting
URI are both stored now.
- parser.c HTMLparser.c: memory allocation checks
- entities.c: fixed problems when doc == NULL
Daniel
Revision 1.64 / (download) - annotate - [select for diffs]
, Wed Sep 6 22:37:26 2000 UTC (7 years, 8 months ago) by veillard
Changes since 1.63: +1 -1
lines
Diff to previous 1.63
(colored)
Jumbo snprintf patch Denis Barbier <barbier@imacs.polytechnique.fr>, Daniel
Revision 1.63 / (download) - annotate - [select for diffs]
, Tue Aug 29 09:24:00 2000 UTC (7 years, 8 months ago) by veillard
Changes since 1.62: +2 -0
lines
Diff to previous 1.62
(colored)
Applied 2 new patches from Wayne Davison <wayned@blorf.net>
Regenerated the SAX HTML output,
Daniel
Revision 1.62 / (download) - annotate - [select for diffs]
, Mon Aug 28 09:47:25 2000 UTC (7 years, 8 months ago) by veillard
Changes since 1.61: +101 -2
lines
Diff to previous 1.61
(colored)
Applied Wayne Davison <wayned@blorf.net> second patch, fixed a bug
when using SAX only with HTML (about ignorable white spaces), Daniel
Revision 1.61 / (download) - annotate - [select for diffs]
, Sun Aug 27 22:38:17 2000 UTC (7 years, 8 months ago) by veillard
Changes since 1.60: +91 -56
lines
Diff to previous 1.60
(colored)
- SAX.c tree.c debugXML.c: fixed bogus behaviour when an
undeclared namespace prefix was used, added a warning.
Cleaned up support w.r.t. entities, spilling out a warning
and being pedantic on lookups.
added test/warning/ent9
- Applied some of Wayne Davison <wayned@blorf.net> HTML output patches
Daniel
Revision 1.60 / (download) - annotate - [select for diffs]
, Tue Aug 22 22:20:34 2000 UTC (7 years, 8 months ago) by veillard
Changes since 1.59: +3 -1
lines
Diff to previous 1.59
(colored)
Fixed Bug#21552: libxml fails to decode &
uri.c testUri.c patches, by Marc Sanfacon (1 left)
HTML/encoding push problems reported by Wayne Davison
Daniel
Revision 1.59 / (download) - annotate - [select for diffs]
, Thu Aug 17 13:48:54 2000 UTC (7 years, 8 months ago) by veillard
Changes since 1.58: +144 -11
lines
Diff to previous 1.58
(colored)
Work on cleaning up message from SAx tests.
Work on auto-opening <p> tags when needed,
Daniel
Revision 1.58 / (download) - annotate - [select for diffs]
, Wed Aug 16 19:53:33 2000 UTC (7 years, 9 months ago) by veillard
Changes since 1.57: +2 -1
lines
Diff to previous 1.57
(colored)
Patches received after 2.2.2 release, Daniel
Revision 1.57 / (download) - annotate - [select for diffs]
, Mon Aug 7 13:43:51 2000 UTC (7 years, 9 months ago) by veillard
Changes since 1.56: +1 -1
lines
Diff to previous 1.56
(colored)
Commiting work done on the plane, mostly an attempt at XML Schema understanding
by coding ... Daniel
Revision 1.56 / (download) - annotate - [select for diffs]
, Fri Aug 4 17:51:27 2000 UTC (7 years, 9 months ago) by veillard
Changes since 1.55: +66 -24
lines
Diff to previous 1.55
(colored)
Fixed the bugs reported by Marc Sanfacon <sanm@copernic.com>, added
associated testcase, Daniel
Revision 1.55 / (download) - annotate - [select for diffs]
, Wed Aug 2 16:11:05 2000 UTC (7 years, 9 months ago) by veillard
Changes since 1.54: +19 -3
lines
Diff to previous 1.54
(colored)
Fixed HTML small bugs, added SAx tests to HTMLtests for both push and pull
and added the results to the testsuite, Daniel.
Revision 1.54 / (download) - annotate - [select for diffs]
, Tue Aug 1 23:42:54 2000 UTC (7 years, 9 months ago) by veillard
Changes since 1.53: +35 -2
lines
Diff to previous 1.53
(colored)
Fixed the problem reported by Marc Sanfacon, added testcase, Daniel
Revision 1.53 / (download) - annotate - [select for diffs]
, Wed Jul 12 13:46:54 2000 UTC (7 years, 10 months ago) by veillard
CVS Tags: LIBXML_2_2_1
Changes since 1.52: +366 -162
lines
Diff to previous 1.52
(colored)
Completely converted HTML document content to UTF8, fixed output,
added HTML output filter, corrected HTML regression tests, Daniel.
Revision 1.52 / (download) - annotate - [select for diffs]
, Tue Jul 11 23:12:32 2000 UTC (7 years, 10 months ago) by veillard
Changes since 1.51: +159 -39
lines
Diff to previous 1.51
(colored)
a bit more work toward cleaning up HTML result of parsing, Daniel.
Revision 1.51 / (download) - annotate - [select for diffs]
, Wed Jul 5 14:12:57 2000 UTC (7 years, 10 months ago) by veillard
Changes since 1.50: +2 -0
lines
Diff to previous 1.50
(colored)
Fixed an allocation bug showing up on Slowlaris, Daniel.
Revision 1.50 / (download) - annotate - [select for diffs]
, Wed Jul 5 12:32:16 2000 UTC (7 years, 10 months ago) by veillard
Changes since 1.49: +77 -77
lines
Diff to previous 1.49
(colored)
Large cleanup using SunPro cc, Daniel.
Revision 1.49 / (download) - annotate - [select for diffs]
, Sun Jul 2 12:12:44 2000 UTC (7 years, 10 months ago) by daniel
Changes since 1.48: +8 -0
lines
Diff to previous 1.48
(colored)
Fixed last bugs on autoclose, added testsuite, Daniel.
Revision 1.48 / (download) - annotate - [select for diffs]
, Sun Jul 2 11:57:05 2000 UTC (7 years, 10 months ago) by daniel
Changes since 1.47: +12 -3
lines
Diff to previous 1.47
(colored)
Fixed a strange case of blank detection, Daniel.
Revision 1.47 / (download) - annotate - [select for diffs]
, Sun Jul 2 07:54:07 2000 UTC (7 years, 10 months ago) by daniel
Changes since 1.46: +179 -160
lines
Diff to previous 1.46
(colored)
Work on character encoding support for the HTML parser,
Fixed a potential memleak in the encoding stuff,
Fixed some autoopen/autoclose probs for the HTML parser,
Daniel
Revision 1.46 / (download) - annotate - [select for diffs]
, Fri Jun 30 17:56:07 2000 UTC (7 years, 10 months ago) by daniel
CVS Tags: LIBXML_2_1_1
Changes since 1.45: +16 -21
lines
Diff to previous 1.45
(colored)
Attempt at better SAXification of HTML parser
Revision 1.45 / (download) - annotate - [select for diffs]
, Thu Jun 29 16:02:51 2000 UTC (7 years, 10 months ago) by daniel
Changes since 1.44: +4 -3
lines
Diff to previous 1.44
(colored)
Patches w.r.t Windows build error messages, Daniel
http://www.ce.berkeley.edu/~doolin/code/libxmlwin32/buildwarn2.1
Revision 1.44 / (download) - annotate - [select for diffs]
, Thu Jun 29 10:33:02 2000 UTC (7 years, 10 months ago) by daniel
CVS Tags: LIBXML_2_1_0
Changes since 1.43: +2 -0
lines
Diff to previous 1.43
(colored)
Added xmlStopParser(), updated TODO, Daniel.
Revision 1.43 / (download) - annotate - [select for diffs]
, Wed Jun 28 16:42:12 2000 UTC (7 years, 10 months ago) by daniel
Changes since 1.42: +54 -0
lines
Diff to previous 1.42
(colored)
Trying to cope with libxml1/libxml2, Daniel.
Revision 1.42 / (download) - annotate - [select for diffs]
, Mon Jun 26 13:18:58 2000 UTC (7 years, 10 months ago) by daniel
Changes since 1.41: +3 -2
lines
Diff to previous 1.41
(colored)
fixed support for empty attributes like <hr noshade> for dand, Daniel.
Revision 1.41 / (download) - annotate - [select for diffs]
, Sat Jun 24 17:29:55 2000 UTC (7 years, 10 months ago) by daniel
Changes since 1.40: +1 -0
lines
Diff to previous 1.40
(colored)
Patch for andersca, Daniel.
Revision 1.40 / (download) - annotate - [select for diffs]
, Fri Jun 23 18:10:05 2000 UTC (7 years, 10 months ago) by daniel
Changes since 1.39: +4 -0
lines
Diff to previous 1.39
(colored)
start document for andersca (HTML),
fixed stalled connections in nanoftp and nanohttp,
Daniel
Revision 1.39 / (download) - annotate - [select for diffs]
, Mon Apr 3 18:45:47 2000 UTC (8 years, 1 month ago) by daniel
Changes since 1.38: +13 -8
lines
Diff to previous 1.38
(colored)
Work done on flignt ot Boston and w.e. ready for 2.0.0, Daniel
Revision 1.38 / (download) - annotate - [select for diffs]
, Tue Feb 22 14:22:09 2000 UTC (8 years, 2 months ago) by daniel
Changes since 1.37: +2 -1
lines
Diff to previous 1.37
(colored)
XML problems cleanup using James Clark and OASIS testsuites, Daniel.
Revision 1.37 / (download) - annotate - [select for diffs]
, Mon Feb 14 08:24:33 2000 UTC (8 years, 3 months ago) by daniel
Changes since 1.36: +3 -4
lines
Diff to previous 1.36
(colored)
First set of patches for DOM and v2.0, Daniel.
Revision 1.36 / (download) - annotate - [select for diffs]
, Thu Feb 10 14:45:03 2000 UTC (8 years, 3 months ago) by daniel
CVS Tags: COMPAT_1_0
Changes since 1.35: +41 -21
lines
Diff to previous 1.35
(colored)
Patch from Lutz Behnke for snprintf, Daniel.
Revision 1.35 / (download) - annotate - [select for diffs]
, Mon Feb 7 12:41:12 2000 UTC (8 years, 3 months ago) by daniel
Changes since 1.34: +27 -2
lines
Diff to previous 1.34
(colored)
Bunch of bug fixes while on the road, better conformance, UTF-8 work
demacroized NEXT() and tigthen the code a lot, Daniel
Revision 1.34 / (download) - annotate - [select for diffs]
, Thu Feb 3 15:35:57 2000 UTC (8 years, 3 months ago) by daniel
Changes since 1.33: +2 -1
lines
Diff to previous 1.33
(colored)
Do a bit more of bufferization in push mode, Daniel
Revision 1.33 / (download) - annotate - [select for diffs]
, Tue Jan 11 19:42:27 2000 UTC (8 years, 4 months ago) by daniel
Changes since 1.32: +2 -2
lines
Diff to previous 1.32
(colored)
Removed all exit() references from the library code, Daniel
Revision 1.32 / (download) - annotate - [select for diffs]
, Wed Jan 5 15:58:41 2000 UTC (8 years, 4 months ago) by daniel
Changes since 1.31: +125 -23
lines
Diff to previous 1.31
(colored)
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.31 / (download) - annotate - [select for diffs]
, Wed Dec 29 12:47:07 1999 UTC (8 years, 4 months ago) by daniel
Changes since 1.30: +803 -42
lines
Diff to previous 1.30
(colored)
Push mode for the HTML parser too, improvement on the mem debug, cleanup, Daniel
Revision 1.30 / (download) - annotate - [select for diffs]
, Tue Dec 28 15:31:13 1999 UTC (8 years, 4 months ago) by daniel
Changes since 1.29: +12 -10
lines
Diff to previous 1.29
(colored)
Work done during hollidays:
- push parsing
- XML shell
- XPath debug
Lots of bug fixes and cleanup too,
Daniel
Revision 1.29 / (download) - annotate - [select for diffs]
, Tue Dec 21 17:53:00 1999 UTC (8 years, 4 months ago) by daniel
Changes since 1.28: +1 -2
lines
Diff to previous 1.28
(colored)
Tried to integrate WIN32 patches from pj@walter-graphtek.com, Daniel.
Revision 1.28 / (download) - annotate - [select for diffs]
, Tue Dec 21 13:33:05 1999 UTC (8 years, 4 months ago) by daniel
Changes since 1.27: +60 -2
lines
Diff to previous 1.27
(colored)
Hopefully the end of that silly C++ include problem
Added a few functions: xmlReplaceNode, xmlAddPrevSibling, xmlAddNextSibling,
xmlNodeSetName and xmlDocSetRootElement
When saving HTML try to avoid troubles with autoclosed elements when
the stree shape doesn't follow the DtD specs.
Updated the HTML examples regression tests output
Daniel
Revision 1.27 / (download) - annotate - [select for diffs]
, Sat Dec 18 14:58:00 1999 UTC (8 years, 4 months ago) by daniel
Changes since 1.26: +1 -0
lines
Diff to previous 1.26
(colored)
Closed bug #4344, cleanup header files, C++ wise, daniel.
Revision 1.26 / (download) - annotate - [select for diffs]
, Fri Dec 10 18:18:57 1999 UTC (8 years, 5 months ago) by daniel
Changes since 1.25: +174 -160
lines
Diff to previous 1.25
(colored)
Work done on the plane, cleanup of parser from CUR_PTR weirdnesses, added xlink modules, and a proper SAX.h header for generated doc, Daniel.
Revision 1.25 / (download) - annotate - [select for diffs]
, Wed Dec 1 18:58:39 1999 UTC (8 years, 5 months ago) by daniel
Changes since 1.24: +65 -26
lines
Diff to previous 1.24
(colored)
Memory bug fixes, Daniel
Revision 1.24 / (download) - annotate - [select for diffs]
, Tue Nov 23 10:22:04 1999 UTC (8 years, 5 months ago) by daniel
Changes since 1.23: +15 -22
lines
Diff to previous 1.23
(colored)
Closing bug report #3748, changed global compression flag usage, and
added xmlNewTextChild() and xmlNewDocRawNode(), Daniel
Revision 1.23 / (download) - annotate - [select for diffs]
, Tue Oct 26 08:30:58 1999 UTC (8 years, 6 months ago) by daniel
Changes since 1.22: +1 -1
lines
Diff to previous 1.22
(colored)
Same fix but on the HTML parser, Daniel.
Revision 1.22 / (download) - annotate - [select for diffs]
, Tue Oct 26 08:18:05 1999 UTC (8 years, 6 months ago) by daniel
Changes since 1.21: +18 -19
lines
Diff to previous 1.21
(colored)
Version 1.7.4, Daniel.
Revision 1.21 / (download) - annotate - [select for diffs]
, Sat Oct 23 21:43:49 1999 UTC (8 years, 6 months ago) by daniel
Changes since 1.20: +9 -2
lines
Diff to previous 1.20
(colored)
Fixed the bug reported by gnumeric user, Daniel.
Revision 1.20 / (download) - annotate - [select for diffs]
, Thu Oct 14 08:26:49 1999 UTC (8 years, 7 months ago) by daniel
Changes since 1.19: +1 -1
lines
Diff to previous 1.19
(colored)
Introduced HTML document type, removed ' for HTML, improved
xmlmemory, Daniel.
Revision 1.19 / (download) - annotate - [select for diffs]
, Thu Oct 14 07:29:23 1999 UTC (8 years, 7 months ago) by daniel
Changes since 1.18: +40 -42
lines
Diff to previous 1.18
(colored)
Debugging the HTML parser and environment, more testing, Daniel.
Revision 1.18 / (download) - annotate - [select for diffs]
, Tue Oct 12 19:33:07 1999 UTC (8 years, 7 months ago) by daniel
Changes since 1.17: +132 -78
lines
Diff to previous 1.17
(colored)
Serious revamp of the HTML parser, there is still a bug around, Daniel.
Revision 1.17 / (download) - annotate - [select for diffs]
, Tue Oct 12 12:34:34 1999 UTC (8 years, 7 months ago) by daniel
Changes since 1.16: +23 -14
lines
Diff to previous 1.16
(colored)
Corrected the XML output, the HTML parser bug, new xmlValidGetPotentialChildren
and xmlValidGetValidElements, added --insert test to tester.c, Daniel.
Revision 1.16 / (download) - annotate - [select for diffs]
, Sun Oct 10 16:09:50 1999 UTC (8 years, 7 months ago) by daniel
Changes since 1.15: +5 -5
lines
Diff to previous 1.15
(colored)
HTML elements TFOOT, TBODY, TR, and TD closes P, Daniel
Revision 1.15 / (download) - annotate - [select for diffs]
, Fri Oct 8 14:34:02 1999 UTC (8 years, 7 months ago) by daniel
Changes since 1.14: +63 -25
lines
Diff to previous 1.14
(colored)
Fixed the problems w.r.t. HTML parsing and SAX reported by Kristian Hogsberg Kristensen <hogsberg@daimi.au.dk>, Daniel.
Revision 1.14 / (download) - annotate - [select for diffs]
, Thu Sep 30 15:43:35 1999 UTC (8 years, 7 months ago) by daniel
Changes since 1.13: +85 -85
lines
Diff to previous 1.13
(colored)
Commited 1.7.3 from GnomeCVS, Daniel.
Revision 1.13 / (download) - annotate - [select for diffs]
, Fri Sep 17 12:08:23 1999 UTC (8 years, 8 months ago) by daniel
Changes since 1.12: +9 -2
lines
Diff to previous 1.12
(colored)
Cleanup on includes, defines, etc ... Daniel
Revision 1.12 / (download) - annotate - [select for diffs]
, Sun Sep 5 21:37:56 1999 UTC (8 years, 8 months ago) by daniel
Changes since 1.11: +2 -0
lines
Diff to previous 1.11
(colored)
Draw the path for tree.c and xpath.c extensions, Daniel.
Revision 1.11 / (download) - annotate - [select for diffs]
, Thu Sep 2 16:30:54 1999 UTC (8 years, 8 months ago) by daniel
Changes since 1.10: +41 -40
lines
Diff to previous 1.10
(colored)
Memory leak hunting, successful it seems ! Daniel
Revision 1.10 / (download) - annotate - [select for diffs]
, Wed Sep 1 00:20:45 1999 UTC (8 years, 8 months ago) by daniel
Changes since 1.9: +30 -3
lines
Diff to previous 1.9
(colored)
Two small fixes, Daniel
Revision 1.9 / (download) - annotate - [select for diffs]
, Sun Aug 29 18:01:17 1999 UTC (8 years, 8 months ago) by daniel
Changes since 1.8: +1 -1
lines
Diff to previous 1.8
(colored)
More cleanup, added processing-instruction(name) in xpath, Insure ... Daniel
Revision 1.8 / (download) - annotate - [select for diffs]
, Sun Aug 29 10:56:44 1999 UTC (8 years, 8 months ago) by daniel
Changes since 1.7: +17 -25
lines
Diff to previous 1.7
(colored)
Cleanup with -pedantic, closing TODOs, added a missing VC, Daniel
Revision 1.7 / (download) - annotate - [select for diffs]
, Thu Aug 5 09:42:03 1999 UTC (8 years, 9 months ago) by daniel
CVS Tags: LIBXML_1_5_0
Changes since 1.6: +5 -9
lines
Diff to previous 1.6
(colored)
Big progresses on the validating front, DIA doc validates, Daniel
Revision 1.6 / (download) - annotate - [select for diffs]
, Tue Jul 27 18:44:58 1999 UTC (8 years, 9 months ago) by veillard
Changes since 1.5: +1 -0
lines
Diff to previous 1.5
(colored)
Cleanup using Insure++, Daniel
Revision 1.5 / (download) - annotate - [select for diffs]
, Tue Jul 27 13:16:05 1999 UTC (8 years, 9 months ago) by daniel
Changes since 1.4: +110 -182
lines
Diff to previous 1.4
(colored)
More cleanup on progressive parsing, added an option to tester, a bit
of XPath cleanup, improved make clean, Daniel.
Revision 1.4 / (download) - annotate - [select for diffs]
, Thu Jul 15 12:32:47 1999 UTC (8 years, 10 months ago) by daniel
Changes since 1.3: +1 -0
lines
Diff to previous 1.3
(colored)
Started debugging, extended testXPath, added regression tests, Daniel
Revision 1.3 / (download) - annotate - [select for diffs]
, Mon Jul 12 10:48:30 1999 UTC (8 years, 10 months ago) by daniel
Changes since 1.2: +0 -4
lines
Diff to previous 1.2
(colored)
Removed a dep to zlib-1.1, added // and .. support, Daniel
Revision 1.2 / (download) - annotate - [select for diffs]
, Fri Jul 9 16:16:31 1999 UTC (8 years, 10 months ago) by daniel
Changes since 1.1: +3 -3
lines
Diff to previous 1.1
(colored)
Patch to file Input, bug fix on HTML printing, more work on XPath, Daniel
Revision 1.1 / (download) - annotate - [select for diffs]
, Wed Jul 7 09:16:18 1999 UTC (8 years, 10 months ago) by daniel
Diff
Adding HTML support, testcases, and updates from bugs.gnome.org, Daniel
This form allows you to request diff's 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.
Webmaster