mrglavas2005/04/13 11:27:04
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
The XInclude spec says that children of include elements which are
elements not in the XInclude namespace and descendants of these
elements are to be ignored. We were not ignoring
mrglavas2005/04/13 10:33:45
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Fixing JIRA Issue #1062:
http://issues.apache.org/jira/browse/XERCESJ-1062
At the end of an element we should be clearing the sawInclude array
at the current depth instead of d
mrglavas2005/02/18 13:30:23
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Added support for two new features which control whether base URI fixup or
language fixup is performed.
Enable base URI fixup:
http://apache.org/xml/features/xinclude/fixup-base-
mrglavas2005/02/16 21:52:02
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Making a couple of inner classes static. Neither Notation nor UnparsedEntity
referenced any fields from the enclosing class.
Revision ChangesPath
1.43 +3 -3
xml-
mrglavas2005/01/11 06:35:17
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Performance: Only copy features to child configuration when they've changed.
This not only saves copying but allows the child config to avoid reading its
parser configuration on res
mrglavas2005/01/10 20:42:13
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Performance: Reduce reset cost by not reading features/properties from
the parser configuration when it has not changed between parses.
Revision ChangesPath
1.40 +12
mrglavas2005/01/10 19:47:32
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Fixing potential memory leaks. If there's a failure the language stacks never
get reset. Making sure this always happens on reset.
Changing Vectors for notations and unparsed entitie
mrglavas2004/09/29 21:26:31
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
If the continue after fatal error feature is enabled we
don't want to send out a request with malformed
request properties. Nulling them if they're bad so we
don't use them lat
mrglavas2004/08/15 18:27:30
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Propagate buffer size to child pipelines.
Revision ChangesPath
1.35 +9 -2
xml-xerces/java/src/org/apache/xerces/xinclude/XIncludeHandler.java
Index: XInclude
mrglavas2004/08/13 12:15:30
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Fixing a number of bugs regarding namespace fixup:
1) When adding an attribute for the default namespace
we were reporting that the prefix was 'xmlns' instead of null.
mrglavas2004/08/13 08:46:37
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Sharing the symbol table with child pipelines. Also, SAX is expecting
internalized strings for all XML names since the string-interning
feature is always on. We weren't doing that
mrglavas2004/08/12 19:02:17
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Fixing a bug introduced in a previous commit. Should be
calling startElement() instead of emptyElement().
Revision ChangesPath
1.31 +2 -2
xml-xerces/java/src/o
mrglavas2004/08/12 18:59:59
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Adding an implementation for language fixup as specified in
the XInclude 1.0 CR (April, 2004). Also, renaming some
fields to conform to the project's naming conventions.
[1
mrglavas2004/07/19 21:07:17
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Applying a few bug fixes.
An xi:include element must not contain any elements from
the XInclude namespace other than xi:fallback.
An xi:fallback element must not contai
mrglavas2004/07/18 19:22:50
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Fixing Jira Bug #843:
http://nagoya.apache.org/jira/browse/XERCESJ-843
To ensure that only the aggregate document is schema validated, the
XInclude handler sets the schema
mrglavas2004/07/18 12:57:42
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
XIncludeTextReader.java XInclude11TextReader.java
Log:
JIRA Issue #992:
http://nagoya.apache.org/jira/browse/XERCESJ-992
The parse method of XIncludeTextRea
mrglavas2004/03/04 14:48:09
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Partial fix for Bug #27422:
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27422
Report a fatal error for malformed byte sequences in a
given encoding, specifically UTF-
mrglavas2004/01/29 11:21:53
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Fixing Bug #26472:
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26472
We cannot assume that fSawFallback, fSawInclude and
fState are the same length. Their sizes are not
mrglavas2004/01/21 14:52:43
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Fixing a few bugs. We weren't propogating the parent parser's
entity resolver or security manager to the child parser.
Revision ChangesPath
1.18 +40 -6
xml-xerce
venu2003/12/02 23:45:13
Modified:java/src/org/apache/xerces/xinclude Tag: jaxp13-2_6-branch
XIncludeHandler.java
Log:
picking up changes made by michale , venu from main trunk.
Revision ChangesPath
No revision
No
venu2003/12/02 01:37:08
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
check for xpointer as href is optional in latest spec.
Revision ChangesPath
1.15 +4 -2
xml-xerces/java/src/org/apache/xerces/xinclude/XIncludeHandler.java
In
venu2003/12/01 23:58:50
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Enable setting http properties.
Revision ChangesPath
1.14 +28 -23
xml-xerces/java/src/org/apache/xerces/xinclude/XIncludeHandler.java
Index: XIncludeHandler.ja
mrglavas2003/12/01 14:59:48
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Partial fix for Bug #24992. Fix NPE which would occur if an
include parent has no base URI.
Revision ChangesPath
1.13 +1 -1
xml-xerces/java/src/org/apache/xerc
mrglavas2003/12/01 14:45:20
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Fixing Bug #24318:
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24318
Comments and PIs from the DTD should be directed to the DTDHandler.
Revision ChangesPath
1.
mrglavas2003/12/01 13:52:32
Modified:java/src/org/apache/xerces/impl/msg
XIncludeMessages.properties
java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Issue a warning to users of the old http://www.w3.org/2001/XInclude namespace.
venu2003/12/01 03:56:45
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Basic implementation of setting Accept, Accept-Charset,Accetp-Language as per [1].
Not yet complete.
[1]http://www.w3.org/TR/2003/WD-xinclude-20031110
Revision ChangesPath
mrglavas2003/11/30 20:49:56
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Updating implementation to incorporate change to XInclude namespace
from latest WD: http://www.w3.org/TR/2003/WD-xinclude-20031110/
Revision ChangesPath
1.9 +4 -4
mrglavas2003/11/09 15:27:49
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
XIncludeTextReader.java
Log:
Fixed several bugs with text inclusion.
Most notably we weren't reporting errors for invalid characters, nor were we using
the encodi
mrglavas2003/10/31 13:35:44
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
MultipleScopeNamespaceSupport.java
Log:
Fixing Bugzilla #22482.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22482
Modified patch submitted by Jari Aalto.
mrglavas2003/10/17 14:59:12
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Some cleanup.
Remove references to XIncludeFatalError. This class is no longer used.
Revision ChangesPath
1.5 +2 -4
xml-xerces/java/src/org/apache/xerces/x
elena 2003/07/28 13:43:02
Modified:java/src/org/apache/xerces/xinclude XIncludeHandler.java
XIncludeTextReader.java
Log:
Fixing some bugs in XInclude implementation.
Submitter: Peter McCracken
Revision ChangesPath
1.3 +142 -57
xml-xerc
mrglavas2003/06/24 17:49:21
Added: java/src/org/apache/xerces/xinclude XIncludeHandler.java
Log:
Preliminary support for XInclude submitted by Peter McCracken. It supports:
regular/text includes, fallbacks, namespace fix-up, etc...
Revision ChangesPath
1.1
32 matches
Mail list logo