|
The following sections list the core software changes in each release since Xalan-Java version 2.0.D01.
 |  |  |  | Changes for Xalan-Java 2.7.0 |  |  |  |  |
| | |
Core (Non-XSLTC) source code updates:
- Committed by minchau@apache.org on 2004/03/04
Modified: xml-xalan/java/src/org/apache/xalan/processor ProcessorImport.java ProcessorInclude.java ProcessorLRE.java
ProcessorStylesheetElement.java StylesheetHandler.java XSLTElementDef.java xml-xalan/java/src/org/apache/xalan/templates
ElemExsltFunction.java
Committer's log entry:
Submitted by: Brian Minchau
Modified code for potential extension of classes with callbacks to the extensions.
- Committed by bhakti@apache.org on 2004/03/08
Modified: xml-xalan/java/src/org/apache/xml/serializer Encodings.properties
Committer's log entry:
Added a newline at the end of Encodings.properties to fix bug 27516.
- Committed by jycli@apache.org on 2004/03/11
Modified: xml-xalan/java/src/org/apache/xalan/extensions ObjectFactory.java xml-xalan/java/src/org/apache/xalan/lib
ObjectFactory.java xml-xalan/java/src/org/apache/xalan/lib/sql ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xslt
ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xsltc/cmdline ObjectFactory.java
xml-xalan/java/src/org/apache/xalan/xsltc/compiler ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util
ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xsltc/dom ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xsltc/runtime
ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xsltc/trax ObjectFactory.java xml-xalan/java/src/org/apache/xml/dtm
ObjectFactory.java xml-xalan/java/src/org/apache/xml/dtm/ref ObjectFactory.java xml-xalan/java/src/org/apache/xml/serializer
ObjectFactory.java xml-xalan/java/src/org/apache/xml/utils ObjectFactory.java xml-xalan/java/src/org/apache/xpath/compiler
ObjectFactory.java xml-xalan/java/src/org/apache/xpath/functions ObjectFactory.java
Committer's log entry:
Fix a bug in the findProviderClass method of ObjectFactory
classes. The argument of SecurityManager.checkPackageAccess should be a string
value of a package name, instead of a class name.
- Committed by santiagopg@apache.org on 2004/03/23
Modified: xml-xalan/java/src/org/apache/xpath/compiler Compiler.java FunctionTable.java
Committer's log entry:
Patch to hide static function table in FunctionTable class. We do not want to expose this table to others.
- Committed by santiagopg@apache.org on 2004/03/23
Modified: xml-xalan/java/src/org/apache/xml/utils DOMBuilder.java
Committer's log entry:
The xmlns URI should also be used to add NS decls as attributes to a DOM. However, this was only done for attributes that started
with 'xmlns:' and not for 'xmlns' (i.e. not for decls of the default NS).
- Committed by igorh@apache.org on 2004/04/26
Modified: xml-xalan/java/src/org/apache/xpath XPathContext.java xml-xalan/java/src/org/apache/xpath/objects
DTMXRTreeFrag.java XRTreeFrag.java
Committer's log entry:
The problem is that about 1800 * Thread_num XRTreeFrag objects were created.
It took too long for finalizer to be executed to release the references.
A lot of the objects have the same DTMs (and one XPathContext per thread).
In my fix I am suggesting
a. to have new class DTMXRTreeFrag. The object of the class would
be created only for different DTMs (just 5 objects).
b. release the references to DTM and XPathContext from XPathContext.reset()
(and remove finalize() ).
- Committed by minchau@apache.org on 2004/04/27
Modified: xml-xalan/java/src/org/apache/xml/serializer ToHTMLStream.java xml-xalan/java/src/org/apache/xml/utils Trie.java
Committer's log entry:
PR: bugzilla 28435
Submitted by: Brian Minchau
Reviewed by: Henry Zongaro
- Committed by igorh@apache.org on 2004/04/28
Modified: xml-xalan/java/src/org/apache/xalan/templates AVT.java
Committer's log entry:
Scaling Problem in org/apache/xalan/templates/AVT.evaluate. The problem is that synchronized calls
StringBufferPool.get() and StringBufferPool.free(buf) are redundant if (null != m_simpleString).
The bug results in severe performance degradation in multi-thread test.
The fix is simple just not to the calls when (null != m_simpleString).
- Committed by mcnamara@apache.org on 2004/05/03
Modified: xml-xalan/java/xdocs/style/stylesheets designdoc2html.xsl
Committer's log entry:
Provide alternative text for images to address accessibility issues.
All images should contain a short alternative text description that represents
the function of the graphic.
- Committed by mcnamara@apache.org on 2004/05/03
Modified: xml-xalan/java/xdocs xml-site-style.tar.gz
Committer's log entry:
Update document2html.xsl within this tarball to provide alternative text for images to address accessibility issues.
All images should contain a short alternative text description that represents the function of the graphic.
- Committed by minchau@apache.org on 2004/05/03
Modified: xml-xalan/java/samples/SAX2SAX SAX2SAX.java xml-xalan/java/samples/Pipe Pipe.java
xml-xalan/java/samples/DOM2DOM DOM2DOM.java
xml-xalan/java/samples/UseStylesheetPI foo.xsl xml-xalan/java/samples/UseStylesheetParam foo.xsl
xml-xalan/java/samples/UseXMLFilters UseXMLFilters.java
xml-xalan/java/samples/Trace foo.xsl
Committer's log entry:
Clean up related to bugzilla 24304.
There is no longer a space after the XML header. To keep the output
of this sample the same as before properties were set on the
serializer (indent="yes" and standalone="no" ).
Submitted by: Brian Minchau
Reviewed by: Sarah McNamara
- Committed by igorh@apache.org on 2004/05/06
Modified: xml-xalan/java/src/org/apache/xalan/templates AVT.java
Committer's log entry:
The problem is that we use an object pool (shared between different threads)
to allocate FastStringBuffer objects. The problem results in a serious performance
degradation on Z/OS and seems to be invisible on AIX.
1 Differences in optimization of object pools for different JVMs and for different
platforms are known(I know it now too). It is not surprising that Z/OS and AIX
have different results.
2. a. Object pools should be used only for very heavy object which live for a long time
and could be reused in a lot of places.
b. Small local objects which size cannot be changed could be allocated on the
stack => creating them with new in the local scope could be a good idea.
c. Caching middle size objects which can grow in size seems as a good idea,
because such objects usually cannot be allocated on the stack.
This is actually the case for FastStringBuffer objects.
Solution: Create FastStringBuffer objects in a local scope and use caching whenever possible.
- Committed by minchau@apache.org on 2004/05/13
Modified: xml-xalan/java/src/org/apache/xalan/client XSLTProcessorApplet.java
Committer's log entry:
Submitted by: Brian Minchau
Reviewed by: Christine Li
Fixing binary compatibility (serialization/de-serialization) of XSLTProcessorApplet.
- Committed by minchau@apache.org on 2004/06/01
Modified: xml-xalan/java/src/org/apache/xml/serializer ToStream.java
Committer's log entry:
PR: bugzilla 29234
Submitted by: Brian Minchau
Reviewed by: Morris Kwan
This problem only showed up under XSLTC. When setting the
encoding a related field was not set. Fixed this by over-riding the
set method for the stream serializers.
- Committed by minchau@apache.org on 2004/06/07
Modified: xml-xalan/java/src/org/apache/xml/serializer WriterToUTF8Buffered.java
Committer's log entry:
PR: bugzilla 29372
Submitted by: J Desrochers (john@ASCnet.COM)
Reviewed by: Brian Minchau
A safe fix for chunking up an array for output. The length was multiplied by the
chunk number (0,1,2... chunks) then divided by "chunks". John's fix uses a
"long" to do the arithemetic because multiplying by the chunk number first
could cause an overflow.
- Committed by zongaro@apache.org on 2004/06/17
Modified: xml-xalan/java/src/org/apache/xpath/axes ChildIterator.java
Committer's log entry:
Fix for Bugzilla bug 28879. Classes derived from NodeTest need to ensure
that initNodeTest is called to set the filter for the kinds of nodes accepted.
Without this change, ChildIterator will reject all nodes.
Patch reviewed by Christine Li (jycli@ca.ibm.com).
- Committed by aruny@apache.org on 2004/07/15
Modified: xml-xalan/java/src/org/apache/xml/serializer ToStream.java
Committer's log entry:
Description: Improper Serialization of document type declaration in xml document.
- Committed by mkwan@apache.org on 2004/07/21
Modified: xml-xalan/java/src/org/apache/xalan Version.java xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm SAX2DTM2.java
Committer's log entry:
Patch for bug 30056. Recover the performance degradation for xsl:copy and xsl:copy-of.
Reviewed by Henry Zongaro (zongaro@ca.ibm.com).
- Committed by minchau@apache.org on 2004/07/21
Modified: xml-xalan/java/src/org/apache/xml/serializer SerializerBase.java ToTextStream.java
Committer's log entry:
PR: bugzilla 29706
Submitted by: Brian Minchau
Reviewed by: Christine Li
A fix to add a temporary vs. permanent output state to the serializer
(AKA result-tree-handler). In theory the XSLT processor should set the
temporary or permanent output state, but we observer that when the
encoding of a ToTextStream serializer is null, then such a serializer is
in temporary output state.
In temorary output state we don't do any escaping or encoding or other
sorts of normalization on output. This will be done by another serializer
later on, and that one will be in permanent output state.
- Committed by minchau@apache.org on 2004/07/21
Modified: xml-xalan/java/src/org/apache/xml/serializer ToHTMLStream.java
Committer's log entry:
PR: bugzilla 30142
Submitted by: Bruno Dumon (bruno@outerthought.org)
Reviewed by: Brian Minchau
Thanks to Bruno for this simple one-line, fix where we forgot to put
a space between the PUBLIC and SYSTEM ID's in a DOCTYPE declaration
in serialized HTML output.
- Committed by minchau@apache.org on 2004/07/22
Modified: xml-xalan/java/src/org/apache/xpath/objects XString.java
Committer's log entry:
Submitted by: Yash Talwar
Reviewed by: Brian Minchau
Fix for bugzilla 29655.
- Committed by minchau@apache.org on 2004/08/13
Modified: xml-xalan/java/src/org/apache/xalan/lib Redirect.java
Committer's log entry:
PR: 30658
Submitted by: Brian Minchau
Reviewed by: Morris Kwan
- Committed by minchau@apache.org on 2004/08/13
Modified: xml-xalan/java/src/org/apache/xalan/trace TraceManager.java
Committer's log entry:
PR: 30301
Submitted by: Brian Minchau
Reviewed by: Morris Kwan
- Committed by minchau@apache.org on 2004/08/13
Modified: xml-xalan/java/src/org/apache/xpath/objects XRTreeFragSelectWrapper.java xml-xalan/java/src/org/apache/xpath/res
XPATHErrorResources.java
Committer's log entry:
PR: 30262
Submitted by: Yash Talwar
Reviewed by: Henry Zongaro
- Committed by mcnamara@apache.org on 2004/08/17
Modified: xml-xalan/java/src/org/apache/xml/dtm DTMException.java xml-xalan/java/src/org/apache/xpath XPathException.java
Committer's log entry:
Fix for printStackTrace when using JDK 1.4.
- Committed by mcnamara@apache.org on 2004/08/17
Modified: xml-xalan/java/src/org/apache/xalan/extensions ObjectFactory.java xml-xalan/java/src/org/apache/xalan/lib
ObjectFactory.java xml-xalan/java/src/org/apache/xalan/lib/sql ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xslt
ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xsltc/cmdline ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xsltc/compiler
ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xsltc/dom
ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xsltc/runtime ObjectFactory.java xml-xalan/java/src/org/apache/xalan/xsltc/trax
ObjectFactory.java xml-xalan/java/src/org/apache/xml/dtm ObjectFactory.java xml-xalan/java/src/org/apache/xml/dtm/ref ObjectFactory.java
xml-xalan/java/src/org/apache/xml/serializer ObjectFactory.java xml-xalan/java/src/org/apache/xml/utils ObjectFactory.java
xml-xalan/java/src/org/apache/xpath/compiler ObjectFactory.java xml-xalan/java/src/org/apache/xpath/functions ObjectFactory.java
Committer's log entry:
Fixing a potential memory leak. The reader used to read the service provider is never closed if an IOException is thrown while
reading from it. Adding a finally block so that the reader will always be closed. Patch reviewed by Christine Li.
- Committed by jycli@apache.org on 2004/08/17
Modified: xml-xalan/java/src/org/apache/xalan/extensions ObjectFactory.java
Committer's log entry:
Added serialVersionUID for classes which implement Serializable interface.
- Committed by jycli@apache.org on 2004/08/17
Modified: xml-xalan/java/src/org/apache/xalan/lib ObjectFactory.java xml-xalan/java/src/org/apache/xalan/lib/sql ObjectFactory.java
Committer's log entry:
Added serialVersionUID for classes which implement Serializable interface. Was reviewed by Henry Zongaro (zongaro@ca.ibm.com)
- Committed by jycli@apache.org on 2004/08/17
Modified: xml-xalan/java/src/org/apache/xalan/processor ProcessorAttributeSet.java ProcessorCharacters.java ProcessorDecimalFormat.java
ProcessorExsltFuncResult.java ProcessorExsltFunction.java ProcessorGlobalParamDecl.java ProcessorGlobalVariableDecl.java
ProcessorImport.java ProcessorInclude.java ProcessorKey.java ProcessorLRE.java ProcessorNamespaceAlias.java ProcessorOutputElem.java
ProcessorPreserveSpace.java ProcessorStripSpace.java ProcessorStylesheetDoc.java ProcessorStylesheetElement.java ProcessorTemplate.java
ProcessorTemplateElem.java ProcessorText.java ProcessorUnknown.java WhitespaceInfoPaths.java XSLTElementProcessor.java
Committer's log entry:
Added serialVersionUID for classes which implement Serializable interface. Patch created by Christine Li (jycli@ca.ibm.com)
and was reviewed by Henry Zongaro (zongaro@ca.ibm.com)
- Committed by jycli@apache.org on 2004/08/17
Modified: xml-xalan/java/src/org/apache/xalan/templates AVT.java AVTPart.java AVTPartSimple.java AVTPartXPath.java
DecimalFormatProperties.java ElemApplyImport.java ElemApplyTemplates.java ElemAttribute.java ElemAttributeSet.java
ElemCallTemplate.java ElemChoose.java ElemComment.java ElemCopy.java ElemCopyOf.java ElemElement.java ElemEmpty.java
ElemExsltFuncResult.java ElemExsltFunction.java ElemExtensionCall.java ElemExtensionDecl.java ElemExtensionScript.java
ElemFallback.java ElemForEach.java ElemIf.java ElemLiteralResult.java ElemMessage.java ElemNumber.java ElemOtherwise.java
ElemParam.java ElemPI.java ElemSort.java ElemTemplate.java ElemTemplateElement.java ElemText.java ElemTextLiteral.java
ElemUnknown.java ElemUse.java ElemValueOf.java ElemVariable.java ElemVariablePsuedo.java ElemWhen.java ElemWithParam.java
FuncDocument.java FuncFormatNumb.java FuncKey.java KeyDeclaration.java NamespaceAlias.java OutputProperties.java Stylesheet.java
StylesheetComposed.java StylesheetRoot.java TemplateList.java TemplateSubPatternAssociation.java WhiteSpaceInfo.java
XMLNSDecl.java XUnresolvedVariable.java XUnresolvedVariableSimple.java xml-xalan/java/src/org/apache/xalan/transformer
CountersTable.java KeyIterator.java KeyRefIterator.java xml-xalan/java/src/org/apache/xalan/xslt ObjectFactory.java
Committer's log entry:
Added serialVersionUID for classes which implement Serializable interface. Patch created by Christine Li (jycli@ca.ibm.com)
and was reviewed by Henry Zongaro (zongaro@ca.ibm.com)
- Committed by jycli@apache.org on 2004/08/17
Modified: xml-xalan/java/src/org/apache/xml/dtm DTMConfigurationException.java DTMDOMException.java ObjectFactory.java
xml-xalan/java/src/org/apache/xml/dtm/ref DTMNamedNodeMap.java IncrementalSAXSource_Filter.java ObjectFactory.java
xml-xalan/java/src/org/apache/xml/serializer ObjectFactory.java xml-xalan/java/src/org/apache/xml/utils MutableAttrListImpl.java
NameSpace.java NodeVector.java ObjectFactory.java ObjectPool.java QName.java SAXSourceLocator.java SerializableLocatorImpl.java
StopParseException.java StringVector.java URI.java WrappedRuntimeException.java WrongParserException.java
Committer's log entry:
Added serialVersionUID for classes which implement Serializable interface. Patch created by Christine Li (jycli@ca.ibm.com)
and was reviewed by Henry Zongaro (zongaro@ca.ibm.com)
- Committed by jycli@apache.org on 2004/08/17
Modified: xml-xalan/java/src/org/apache/xpath Expression.java FoundIndex.java NodeSetDTM.java XPath.java
XPathProcessorException.java xml-xalan/java/src/org/apache/xpath/axes AttributeIterator.java AxesWalker.java
BasicTestIterator.java ChildIterator.java ChildTestIterator.java DescendantIterator.java FilterExprIterator.java
FilterExprIteratorSimple.java FilterExprWalker.java IteratorPool.java LocPathIterator.java MatchPatternIterator.java
NodeSequence.java OneStepIterator.java OneStepIteratorForward.java PredicatedNodeTest.java ReverseAxesWalker.java
RTFIterator.java SelfIteratorNoPredicate.java UnionChildIterator.java UnionPathIterator.java WalkingIterator.java
WalkingIteratorSorted.java xml-xalan/java/src/org/apache/xpath/compiler ObjectFactory.java
xml-xalan/java/src/org/apache/xpath/functions FuncBoolean.java FuncCeiling.java FuncConcat.java FuncContains.java
FuncCount.java FuncCurrent.java FuncDoclocation.java FuncExtElementAvailable.java FuncExtFunction.java
FuncExtFunctionAvailable.java FuncFalse.java FuncFloor.java FuncGenerateId.java FuncId.java FuncLang.java
FuncLast.java FuncLocalPart.java FuncNamespace.java FuncNormalizeSpace.java FuncNot.java FuncNumber.java
FuncPosition.java FuncQname.java FuncRound.java FuncStartsWith.java FuncString.java FuncStringLength.java
FuncSubstring.java FuncSubstringAfter.java FuncSubstringBefore.java FuncSum.java FuncSystemProperty.java
Function.java Function2Args.java Function3Args.java FunctionDef1Arg.java FunctionMultiArgs.java FunctionOneArg.java
FuncTranslate.java FuncTrue.java FuncUnparsedEntityURI.java ObjectFactory.java WrongNumberArgsException.java
xml-xalan/java/src/org/apache/xpath/objects XBoolean.java XBooleanStatic.java XNodeSet.java XNodeSetForDOM.java
XNull.java XNumber.java XObject.java XRTreeFrag.java XRTreeFragSelectWrapper.java XString.java XStringForChars.java
XStringForFSB.java xml-xalan/java/src/org/apache/xpath/operations And.java Bool.java Div.java Equals.java Gt.java
Gte.java Lt.java Lte.java Minus.java Mod.java Mult.java Neg.java NotEquals.java Number.java Operation.java Or.java
Plus.java Quo.java String.java UnaryOperation.java Variable.java VariableSafeAbsRef.java
xml-xalan/java/src/org/apache/xpath/patterns ContextMatchStepPattern.java FunctionPattern.java NodeTest.java
StepPattern.java UnionPattern.java
Committer's log entry:
Added serialVersionUID for classes which implement Serializable interface. Patch created by Christine Li (jycli@ca.ibm.com)
and was reviewed by Henry Zongaro (zongaro@ca.ibm.com)
- Committed by minchau@apache.org on 2004/08/26
Modified: xml-xalan/java/src/org/apache/xml/utils Trie.java
Committer's log entry:
Submitted by: Brian Minchau
No external changes to Trie, but some additional APIs to make for a lower case
only search in a Trie (possibly for future XHTML support where the element
names are lower-case only).
- Committed by minchau@apache.org on 2004/08/27
Modified: xml-xalan/java/src/org/apache/xml/serializer CharInfo.java ToHTMLStream.java ToStream.java
Committer's log entry:
Minor changes to CharInfo to map charaters to decorated entities (e.g. "<" )
rather than just entity names (e.g. "lt"), which is a minor performance improvement.
- Committed by mkwan@apache.org on 2004/08/30
Modified: xml-xalan/java/src/org/apache/xml/utils XMLReaderManager.java
Committer's log entry:
Fix a memory leak problem described in bugzilla 28082.
- Committed by minchau@apache.org on 2004/09/01
Modified: xml-xalan/java/src/org/apache/xml/serializer SerializerTraceWriter.java ToStream.java
WriterChain.java WriterToASCI.java WriterToUTF8Buffered.java
Committer's log entry:
Submitted by: Brian Minchau
Code clean up, to have an explicit interface, WriterChain, for writers that wrap other Writers or OutputStreams,
e.g. WriterToUTF8Buffered.
- Committed by minchau@apache.org on 2004/09/01
Modified: xml-xalan/java/src/org/apache/xml/serializer ToXMLStream.java
Committer's log entry:
Submitted by: Brian Minchau
Javadoc changes, and added a call in ToXMLStream.processingInstruction()
method to effectively consider that a startDocument() call was made,
if none was yet seen.
- Committed by minchau@apache.org on 2004/09/07
Modified: xml-xalan/java/src/org/apache/xml/serializer ToSAXHandler.java
Committer's log entry:
PR: bugzilla 27522
Submitted by: Brian Minchau
committing patch from bugzilla 27522.
- Committed by johng@apache.org on 2004/09/16
Modified: xml-xalan/java/src/org/apache/xalan/lib/sql SQLDocument.java
Committer's log entry:
Fixed bug where JDBC execute was being called instead ofg executeQuery.
executeQuery will always retrurn a result set even if the query does not return any rows
where execute won't. This was causing a compatibility issue.
Added in Record skip code to help with pagination.
PR: http://nagoya.apache.org/jira/browse/XALANJ-1908
Submitted by: John Gentilin
- Committed by johng@apache.org on 2004/09/16
Modified: xml-xalan/java/src/org/apache/xalan/lib/sql XConnection.java
Committer's log entry:
Fixed bug where the close document method could not locxate the SQL Document.
see http://nagoya.apache.org/jira/browse/XALANJ-1925.
Obtained from: Moraine Didier mailto://didier.moraine@winterthur.be
Submitted by: John Gentilin
- Committed by mcnamara@apache.org on 2004/09/17
Modified: xml-xalan/java build.xml
Committer's log entry:
Added new targets to support building the distribution packages (*-bin.tar.gz/.zip and *-src.tar.gz/.zip)
without building the user guide and api docs.
Reorganized some sections to make the targets more readable.
Renamed the "*-nojardepends" rules to either "*-compile" or "*-build" to make them more intuitive.
Reviewed by Christine Li.
- Committed by zongaro@apache.org on 2004/10/01
Modified: xml-xalan/java/src/org/apache/xpath/compiler XPathParser.java xml-xalan/java/src/org/apache/xpath/patterns NodeTest.java
Committer's log entry:
Patch from Yash Talwar (ytalwar@ca.ibm.com) for XALANJ-1186.
The existing code in the interpretive processor was handling namespace::pre by
resolving the namespace prefix "pre" in the stylesheet, and then looking for
namespace nodes with that same URI in the input document. In fact, it should
look for namespaces nodes in the input document that declare the prefix "pre",
without regard to the associated URI. The patch was reviewed by myself (zongaro@ca.ibm.com).
- Committed by minchau@apache.org on 2004/10/06
Modified: xml-xalan/java/src/org/apache/xml/serializer ToHTMLSAXHandler.java
Committer's log entry:
XSL Transformation drops content inside xsl:comment tags.
PR: XALANJ-1966
Submitted by: Yash Talwar
Reviewed by: Brian Minchau
- Committed by minchau@apache.org on 2004/10/06
Modified: xml-xalan/java/src/org/apache/xpath/operations Variable.java
Committer's log entry:
Null Pointer Exception on sorting using a variable.
PR: XALANJ-1942
Submitted by: Yash Talwar
Reviewed by: Brian Minchau
- Committed by minchau@apache.org on 2004/10/06
Modified: xml-xalan/java/src/org/apache/xalan/processor ProcessorNamespaceAlias.java xml-xalan/java/src/org/apache/xalan/res
XSLTErrorResources.java
Committer's log entry:
Null Pointer Exception when namespace-alias element says to use "#default" namespace but there is no default namespace.
PR: XALANJ-1967
Submitted by: Yash Talwar
Reviewed by: Brian Minchau
- Committed by zongaro@apache.org on 2004/10/13
Modified: xml-xalan/java build.xml
Committer's log entry:
At the suggestion of Joseph Kesselman, dropped contents of the org.apache.xml.utils.synthetic package, as they have never been used.
Patch reviewed by Christine Li (jycli@ca.ibm.com).
- Committed by jycli@apache.org on 2004/10/13
Modified: xml-xalan/java build.xml xml-xalan/java/src/org/apache/xalan/extensions ExtensionHandlerGeneral.java
xml-xalan/java/xdocs/sources/xalan extensions.xml resources.xml
Committer's log entry:
Fixed of Bug report XalanJ-1822. Added alternative BSF implementation support for extension functions in languages other than Java
Patch reviewed by Henry Zongaro (zongaro@ca.ibm.com)
- Committed by minchau@apache.org on 2004/10/14
Modified: xml-xalan/java/src/org/apache/xml/serializer/utils AttList.java BoolStack.java DOM2Helper.java Messages.java
SerializerMessages_en.java SerializerMessages.java StringToIntTable.java SystemIDResolver.java URI.java Utils.java
WrappedRuntimeException.java
Committer's log entry:
PR: XALANJ-1891
Submitted by: Brian Minchau
Reviewed by: Yash Talwar
- Committed by minchau@apache.org on 2004/10/14
Modified: xml-xalan/java/src/org/apache/xml/serializer/utils Messages.java SerializerMessages.java Utils.java
Committer's log entry:
Submitted by: Brian Minchau
Made some fields final or private to make the objects immutable, especially the messages.
- Committed by minchau@apache.org on 2004/10/14
Modified: xml-xalan/java/src/org/apache/xml/serializer AttributesImplSerializer.java CharInfo.java DOMSerializer.java ElemDesc.java
EmptySerializer.java EncodingInfo.java Encodings.java ExtendedContentHandler.java ExtendedLexicalHandler.java Method.java
NamespaceMappings.java ObjectFactory.java OutputPropertiesFactory.java OutputPropertyUtils.java SerializationHandler.java
Serializer.java SerializerBase.java SerializerConstants.java SerializerFactory.java SerializerTrace.java SerializerTraceWriter.java
ToHTMLSAXHandler.java ToHTMLStream.java ToSAXHandler.java ToStream.java ToTextSAXHandler.java ToTextStream.java ToUnknownStream.java
ToXMLSAXHandler.java ToXMLStream.java TreeWalker.java Utils.java Version.java WriterToASCI.java ElemContext.java TransformStateSetter.java
Committer's log entry:
Submitted by: Brian Minchau
Reviewed by: Yash Talwar
Source code changes to the serializer to make it independent of Xalan.
Mostly message and utility usage changes.
However multiple classes had their visibility reduced to less than "public".
- Committed by minchau@apache.org on 2004/10/14
Modified: xml-xalan/java/src/org/apache/xml/utils CharKey.java Trie.java
Committer's log entry:
PR: XALANJ-1891
Submitted by: Brian Minchau
Reviewed by: Yash Talwar
Deleting Charkey and Trie which were only used by the serializer.
These classes are migrated to the serializer package, in the case of
CharKey, it is now an inner private class.
- Committed by minchau@apache.org on 2004/10/15
Modified: xml-xalan/java/src MANIFEST.SERIALIZER
Committer's log entry:
PR: XALANJ-1891
Submitted by: Brian Minchau
Reviewed by: Sarah McNamara
Creating MANIFEST.SERIALIZER, a template like MANIFEST.MF but
for an independent serializer.jar that is not part of xalan.jar
- Committed by minchau@apache.org on 2004/10/15
Modified: xml-xalan/java build.xml
Committer's log entry:
PR: XALANJ-1891
Submitted by: Brian Minchau
Reviewed by: Sarah McNamara
Changes to java/build.xml so that the serializer.jar is built and used by Xalan.
The two new build targets are serializer.jar and serializer-dist.
- Committed by minchau@apache.org on 2004/10/15
Modified: xml-xalan/java/bin serializer.jar
Committer's log entry:
PR: XALANJ-1891
Submitted by: Brian Minchau
Reviewed by: Sarah McNamara, Yash Talwar
Checking in an initial serializer.jar into java/bin, hopefully this won't change too often.
- Committed by johng@apache.org on 2004/10/19
Modified: xml-xalan/java/src/org/apache/xalan/lib/sql DefaultConnectionPool.java XConnection.java SQLDocument.java
Committer's log entry:
This patch makes the close() function behave better but still has a
problem when certain iterators are used. This code is at least safe
in all instaces. It also fixes a minor bug in the default connection pool.
Obtained from: John Gentilin
Submitted by: John Gentilin
- Committed by jycli@apache.org on 2004/10/21
Modified: xml-xalan/java/src/org/apache/xpath/objects XStringForFSB.java
Committer's log entry:
A patch to fix Bug XALANJ-1708. Reviewed by Morris Kwan (mkwan@ca.ibm.com)
- Committed by jycli@apache.org on 2004/10/21
Modified: xml-xalan/java/src/org/apache/xpath/axes NodeSequence.java UnionPathIterator.java
Committer's log entry:
A fix for bug XALANJ-1810. Reviewed by Morris Kwan (mkwan@ca.ibm.com)
- Committed by mcnamara@apache.org on 2004/10/21
Modified: xml-xalan/java build.xml
Committer's log entry:
Fix the samples build. The samples.class.path needs to include the serializer.jar.
- Committed by mcnamara@apache.org on 2004/10/28
Modified: xml-xalan/java build.xml
Committer's log entry:
One more fix to enable builds with JDK 1.4.x. Need to add the serializer classes to the
xslt.boot.class.path.
- Committed by jycli@apache.org on 2004/11/02
Modified: xml-xalan/java/src/org/apache/xpath/axes DescendantIterator.java
Committer's log entry:
String comparison should use String.equals(), instead of ==.
Even == works fine for most of the cases, for a serializable object, two variable originally reference to the same string
after deserialization, they no longer reference the same string, although the values are the same. Fix for bug XalanJ-1550.
- Committed by jycli@apache.org on 2004/11/02
Modified: xml-xalan/java/src/org/apache/xalan/extensions ExtensionHandlerGeneral.java
Committer's log entry:
The latest Rhino1_5R5 checks for the script language line/column no.>=0. Fixed for bug XALANJ-1887.
- Committed by jycli@apache.org on 2004/11/03
Modified: xml-xalan/java/src/META-INF/services org.apache.xalan.extensions.bsf.BSFManager
Committer's log entry:
Added a service provider configuration file to set the Apache BSF as the default implementation for scripting language support.
- Committed by jycli@apache.org on 2004/11/03
Modified: xml-xalan/java/bin bsf.jar bsf.LICENSE.txt bsf.README.txt
Committer's log entry:
remove IBM bsf implementation from the distribution. Xalan is not going to ship any bsf implementation. If users need
IBM bsf, they can download it from Attic.
- Committed by minchau@apache.org on 2004/11/12
Modified: xml-xalan/java/src/org/apache/xpath/compiler Lexer.java XPathParser.java xml-xalan/java/src/org/apache/xpath/domapi
XPathEvaluatorImpl.java XPathExpressionImpl.java XPathNamespaceImpl.java XPathNSResolverImpl.java XPathResultImpl.java
XPathStylesheetDOM3Exception.java xml-xalan/java/src/org/apache/xpath/res XPATHErrorResources.java
Committer's log entry:
PR: bug XALANJ-1985
Submitted by: Yash Talwar
Reviewed by: Brian Minchau
Support for DOM 3 API, for use by an XML Parser.
- Committed by zongaro@apache.org on 2004/11/19
Modified: xml-xalan/java/src/org/apache/xpath/objects XStringForFSB.java
Committer's log entry:
Patch for XALANJ-1955. The equals(Object) method contains a list of
instanceof checks, and then casts the Object argument to the tested type in
order to dispatch to a more specific equals method. In the case where the
Object argument was an XMLString, the code was actually casting "this" to
XMLString - thus testing this.equals(this), which will always be true.
Reviewd by Joanne Tong (joannet@ca.ibm.com).
- Committed by zongaro@apache.org on 2004/11/19
Modified: xml-xalan/java/src/org/apache/xalan/transformer KeyTable.java
Committer's log entry:
Patch for XALANJ-1368.
The method getKeyDeclaration was looping through all the xsl:key elements
defined, and returning the first with the required name. However, more than
one xsl:key element can specify the same name, and should be treated
cumulatively. Modified the method so that it returns all elements with the
required name, and the caller so that it tries to match against the patterns
associated with all such elements.
Reviewed by Joanne Tong (joannet@ca.ibm.com).
- Committed by mkwan@apache.org on 2004/11/22
Modified: xml-xalan/java/src/org/apache/xml/dtm/ref DTMManagerDefault.java
Committer's log entry:
Fix a memory leak problem in DTMManager (XALANJ-1999).
- Committed by joannet@apache.org on 2004/12/13
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemApplyImport.java xml-xalan/java/src/org/apache/xalan/transformer
TransformerImpl.java
Committer's log entry:
Fixed XALANJ-1824. Changed current template rule when named template executes an xsl:apply-imports.
- Committed by joannet@apache.org on 2004/12/13
Modified: xml-xalan/java/src/org/apache/xalan/lib PipeDocument.java
Committer's log entry:
Fixed XALANJ-1662. Allow pipeDocument to throw exceptions.
- Committed by jycli@apache.org on 2004/12/15
Modified: Many files....
Committer's log entry:
Patch for bug report XALANJ-2008
Based on Sun's Security Code Guidelines, modified the code to improve the security. Major changes includes:
1. Added final modifier to static variables;
2. Reduced scope and added public get methods whenever it is appropriate;
3. Changed some static variable to instance variables;
4. Changed some interfaces to final classes, if those interfaces are used only to define constants
5. Removed the usage of System.exit;
6. For various org.apache.xml.utils.res.XResourceBundle, the getObject() methods return immutable array wrappers instead of arrays
7. Changed static methods of org.apache.xpath.compiler.FunctionTable to instance methods and the reference of a function table is passed
around the processing to create an XPath object;
8. Changed the flags of FEATURE_INCREMENTAL, FEATURE_OPTIMIZE and FEATURE_SOURCE_LOCATION to instance variables in TransformerFactorImpl.
So they will not be changed during a processing once a new Templates is created;
- Committed by mkwan@apache.org on 2004/12/15
Modified: xml-xalan/java/src/org/apache/xalan Version.java xml-xalan/java/src/org/apache/xpath/functions FuncExtFunction.java
Committer's log entry:
Patch for bug XALANJ-1592. Submitted by Catya Alone (catyaa@hotmail.com).
Set the parent node for the arguments in extension functions.
- Committed by minchau@apache.org on 2004/12/16
Modified: xml-xalan/java/src/org/apache/xml/serializer/utils Messages.java
Committer's log entry:
Partial fix for bug XALANJ-2021.
- Committed by minchau@apache.org on 2004/12/16
Modified: xml-xalan/java/src/org/apache/xml/serializer/utils SerializerMessages.java
Committer's log entry:
Partial fix for bug XALANJ-2021 to make key/keyvalue consistent.
- Committed by minchau@apache.org on 2004/12/16
Modified: xml-xalan/java/src/org/apache/xml/serializer/utils SerializerMessages_ca.java SerializerMessages_cs.java
SerializerMessages_de.java SerializerMessages_es.java SerializerMessages_fr.java SerializerMessages_hu.java
SerializerMessages_it.java SerializerMessages_ja.java SerializerMessages_ko.java SerializerMessages_pl.java
SerializerMessages_pt_BR.java SerializerMessages_ru.java SerializerMessages_sv.java SerializerMessages_tr.java
SerializerMessages_zh_CN.java SerializerMessages_zh_TW.java
Committer's log entry:
Other languages, for XALANJ-2021.
- Committed by minchau@apache.org on 2004/12/16
Modified: xml-xalan/java/src/org/apache/xml/serializer/utils MsgKey.java
Committer's log entry:
A class containing only message keys, to be shared by all language
translations (including English). This is to prevent replication of these
keys during translation. Related to XALANJ-2021.
- Committed by minchau@apache.org on 2004/12/16
Modified: xml-xalan/java/src/org/apache/xml/serializer/utils SerializerMessages_ca.java SerializerMessages_cs.java
SerializerMessages_de.java
SerializerMessages_es.java SerializerMessages_fr.java SerializerMessages_hu.java SerializerMessages_it.java SerializerMessages_ja.java
SerializerMessages_ko.java SerializerMessages_pl.java SerializerMessages_pt_BR.java SerializerMessages_ru.java SerializerMessages_sv.java
SerializerMessages_tr.java SerializerMessages_zh_CN.java SerializerMessages_zh_TW.java
Committer's log entry:
Changes for moving the message keys, to be shared by all language
translations (including English). This is to prevent replication of these
keys during translation. Related to XALANJ-2021.
- Committed by minchau@apache.org on 2004/12/16
Modified: xml-xalan/java/src/org/apache/xml/serializer/utils Messages.java SerializerMessages.java URI.java
xml-xalan/java/src/org/apache/xml/serializer CharInfo.java OutputPropertiesFactory.java SerializerBase.java
SerializerFactory.java ToHTMLStream.java ToStream.java ToTextStream.java ToXMLStream.java Committer's log entry:
Changes for moving the message keys, to be shared by all language
translations (including English). This is to prevent replication of these
keys during translation. Related to XALANJ-2021.
- Committed by minchau@apache.org on 2004/12/16
Modified: xml-xalan/java/src/org/apache/xml/res XMLErrorResources.java
Committer's log entry:
Serializer messages were copied into a message file in the
org.apache.xml.serializer.utils package.
The serializer messages in this file are now "dead", so they are being deleted.
This is part of the cleanup with XALANJ-2021.
- Committed by zongaro@apache.org on 2004/12/22
Modified: xml-xalan/java/src/org/apache/xml/dtm/ref DTMNamedNodeMap.java DTMNodeProxy.java
Committer's log entry:
Applying patch for Jira bug report XALANJ-1427 on behalf of Yash Talwar (ytalwar@ca.ibm.com).
Completing support for DOM Level 2 Core methods that were previously
unimplemented, and fixed some bugs in the implementation. The implementation
continues to be, of necessity, a read-only implementation.
In particular, implemented the following:
DTMNamedNodeMap.getNamedItem(String)
DTMNodeProxy.getElementsByTagName(String)
DTMNodeProxy.getElementsByTagNameNS(String,String)
DTMNodeProxy.getElementById(String,String)
DTMNodeProxy.getAttributeNodeNS(String,String)
- Committed by jycli@apache.org on 2005/01/05
Modified: xml-xalan/java/xdocs/sources/xalan faq.xml
Committer's log entry:
Added a FAQ about how to use XSLTC in applet when using JRE1.4. It is a fix for bug report XALANJ-1705. Patch reviewed and
modified by Sarah McNamara
- Committed by ilene@apache.org on 2005/01/10
Modified: xml-xalan/java/src/org/apache/xalan/lib ExsltDatetime.java
Committer's log entry:
Fix for XALANJ-2013. Duplicate time zone string returned from EXSLT time() function.
- Committed by mcnamara@apache.org on 2005/01/10
Modified: xml-xalan/java/src manifest.xalan-interpretive
Committer's log entry:
New manifest file to resolve Jira bug report XALANJ-1853.
- Committed by mcnamara@apache.org on 2005/01/10
Modified: xml-xalan/java build.xml
Committer's log entry:
Fix for Jira bug report XALANJ-1853 . Use the new xalan interpretive manifest file
when building the standalone xalan.jar that only contains the interpretive processor.
- Committed by mcnamara@apache.org on 2005/01/10
Modified: xml-xalan/java/src MANIFEST.MF MANIFEST.SERIALIZER manifest.xsltc
Committer's log entry:
Fix for Jira bug report XALANJ-1852.
- Committed by zongaro@apache.org on 2005/01/20
Modified: xml-xalan/java/src/org/apache/xalan/serialize SerializerUtils.java
Committer's log entry:
Applying patch for Jira bug report XALANJ-1640.
As it's currently written, SerializerUtils.outputResultTreeFragment loops
through the nodes in a result tree fragment, and for each one, it checks
whether the node is in some namespace. If it is not, the code undeclares the
default namespace by calling handler.startPrefixMapping("", ""). The problem
is that if the RTF that's being copied just consists of a text node (or PIs or
comments), that undeclaration of the default namespace hangs around until some
subsequent child element picks it up as one of its attributes, even if that
element is in some namespace - even what should be the default!
The fix is to check whether the node that is being output is an element node
prior to issuing the handler.startPrefixMapping call - that ensures the prefix
mapping is not issued unless it's actually going to be used by the node that is
about to be serialized.
This patch was reviewed by Brian Minchau (minchau@ca.ibm.com).
- Committed by zongaro@apache.org on 2005/01/24
Modified: xml-xalan/java/src/org/apache/xpath CachedXPathAPI.java
Committer's log entry:
Fix for Jira bug report XALANJ-1811.
Updated Javadocs for constructors to make it clear that a single instance of
CachecXPathAPI must not be used by multiple threads without synchronization.
Reviewed by Christine Li (jycli@ca.ibm.com)
- Committed by zongaro@apache.org on 2005/01/27
Modified: xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm SAX2DTM.java
Committer's log entry:
Fix for Jira bug report XALANJ-1888.
It is possible for the characters SAX event to specify a length of zero. Text
nodes should not be created in such situations. Changed the charactersFlush
method to guard against this case.
Reviewed by Morris Kwan (mkwan@ca.ibm.com)
- Committed by zongaro@apache.org on 2005/01/27
Modified: xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm SAX2DTM2.java
Committer's log entry:
Two part fix for Jira bug report XALANJ-1888.
1) It is possible for the characters SAX event to specify a length of zero.
Text nodes should not be created in such situations. Changed the
charactersFlush method to guard against this case.
2) Made a defensive change to references to m_dataOrQName. If the value in
this vector is to be interpreted as an index into m_data, it is stored as a
negative value (via calls to addNode). However, most references to elements of
m_dataOrQName were checking whether the value was non-positive, treating a
value of zero as an index into m_data as well. The zeroth entry into m_data is
an invalid entry.
The fix to charactersFlush described above should ensure that zero is never
stored in m_dataOrQName, but I thought it was just as well to duplicate the
interpretation used in storing values in m_dataOrQName.
Reviewed by Morris Kwan (mkwan@ca.ibm.com)
- Committed by jycli@apache.org on 2005/02/04
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemNumber.java
Committer's log entry:
Implement Errata E24, when the value attribute of xsl:number is NaN, infinite or less than 0.5.
More details please refer to bug report XALANJ-1979. Patch is reviewed by Morris Kwan (mkwan@ca.ibm.com)
- Committed by zongaro@apache.org on 2005/02/09
Modified: xml-xalan/java/src/org/apache/xpath/compiler XPathParser.java xml-xalan/java/src/org/apache/xpath/res
XPATHErrorResources.java
Committer's log entry:
Fix for Jira bug report XALANJ-1478.
In the recursive descent parsing of an ill-formed XPath expression like "2+",
when the parser reaches the end of the expression while still looking for an
operand it ultimately ends up trying to see whether what remains can be parsed
as a location path. However, the LocationPath method was silently parsing the
end of an expression as a location path! Added an error for that situation.
Reviewed by Brian Minchau (minchau@ca.ibm.com)
- Committed by zongaro@apache.org on 2005/02/09
Modified: xml-xalan/java/samples/trax ExampleContentHandler.java
Committer's log entry:
Fix for Jira bug report XALANJ-2054.
The sample ContentHandler code was printing the namespaceURI argument of
startElement and of endElement twice, but never printed the localName argument.
Fixed that typo.
Reviewed by Brian Minchau (minchau@ca.ibm.com)
- Committed by minchau@apache.org on 2005/02/11
Modified: xml-xalan/java/src/org/apache/xml/serializer AttributesImplSerializer.java EmptySerializer.java
ExtendedContentHandler.java NamespaceMappings.java SerializerBase.java ToStream.java ToTextSAXHandler.java
ToTextStream.java ToUnknownStream.java ToXMLSAXHandler.java ToXMLStream.java xml-xalan/java/src/org/apache/xalan/serialize
SerializerUtils.java xml-xalan/java/src/org/apache/xalan/templates ElemAttribute.java ElemLiteralResult.java
Committer's log entry:
Fix for XALANJ-1886. Multiple problems fixed related to collecting xsl:attributes
with over-ridden values and prefix/URI maps. With this fix, internally the
serializer correctly identifies attributes by their expanded QName, which
includes the URI rather than the prefix.
- Committed by minchau@apache.org on 2005/02/11
Modified: xml-xalan/java/src/org/apache/xalan/transformer TransformerIdentityImpl.java xml-xalan/java/src/org/apache/xml/serializer
TreeWalker.java
Committer's log entry:
Fix for XALANJ-1985, reviewed by Henry Zongaro. The problem was that a serialized DOM failed to declare a prefix/URI mapping.
- Committed by minchau@apache.org on 2005/02/11
Modified: xml-xalan/java/src/org/apache/xalan/processor ProcessorLRE.java
Committer's log entry:
Fix for XALANJ-2037. The trace information doesn't have the right location information in this case.
- Committed by minchau@apache.org on 2005/02/18
Modified: xml-xalan/java/src/org/apache/xml/serializer EmptySerializer.java ExtendedContentHandler.java SerializerBase.java
Committer's log entry:
Committing serializer.patch5.txt in JIRA issue XALANJ-1886,
that puts back an old attAttribute() method that takes 5 String arguments.
There is a new one that takes these 5 String arguments and a boolean to indicate if it is from an xsl:attribute
or not. I'm just restoring the old method. Patch reviewed by Henry Zongaro.
- Committed by minchau@apache.org on 2005/02/21
Modified: xml-xalan/java/src/org/apache/xml/serializer EmptySerializer.java SerializationHandler.java SerializerBase.java
ToStream.java
Committer's log entry:
Fix for XALANJ-2033 and XALANJ-2051 so that the serializer will serialize DTD
tags if desired. The patch was reviewed by Ilene Seeleman.
- Committed by ytalwar@apache.org on 2005/02/22
Modified: xml-xalan/java/src/org/apache/xml/utils URI.java
Committer's log entry:
The fix is for XALANJ-2059.
The problem is that when href attribute has aboslute uri with jar scheme and
base uri is not null, then base uri is pre-appended to uri specified in href attribute.
The newer patch is according to RFC 2396.
The newer patch ignores base uri and directly make use of uri specifed href attribute, provided following conditions are met.
a)If uri specified in href attribute starts with / after the scheme and :
For example, href="file:/myDIR/myXSLFile.xsl.
b)If scheme specified for uri href attribute is not same as scheme for base uri.
c)If base uri is not hierarchical
Henry Zongaro has helped creating this patch.
- Committed by ytalwar@apache.org on 2005/03/02
Modified: xml-xalan/java/src/org/apache/xml/serializer SerializerConstants.java ToStream.java ToXMLStream.java
xml-xalan/java/src/org/apache/xml/serializer/utils MsgKey.java SerializerMessages.java
Committer's log entry:
This patch fix XALANJ-2070. This patch add XML 1.1 support in term of following:
- Output Document can be of Version XML 1.1
- Control Characters in Range C0 and C1 are output as NCR.
- Namespaces in XML 1.1 can be IRIs.
- NCNames and QNames can conform to XML 1.1 specifications.
- NEL and LSEP characters are treated as new end of line character as per XML 1.1 specifications.
Thanks to Brian Minchau for reviewing the patch. Brian Minchau and Henry Zongaro has also helped how XML 1.1 support should be done.
- Committed by jycli@apache.org on 2005/03/03
Modified: xml-xalan/java/src/org/apache/xalan/res XSLTErrorResources.java xml-xalan/java/src/org/apache/xalan/templates
ElemExtensionCall.java ElemLiteralResult.java
Committer's log entry:
Added implementation for getAttribute, getAttributeNS and getAttributes for LRE. A fix for bug report XALANJ-1526.
- Committed by mcnamara@apache.org on 2005/03/03
Modified: xml-xalan/java/xdocs/sources/design design2_0_0.xml
Committer's log entry:
Patch for XALANJ-1990. Fixes broken link to apidocs for Serializer.html.
- Committed by mcnamara@apache.org on 2005/03/03
Modified: xml-xalan/java/xdocs/sources/xalan usagepatterns.xml
Committer's log entry:
Patch for XALANJ-2026. Fixes typo in Debugger interface code example.
- Committed by minchau@apache.org on 2005/03/07
Modified: xml-xalan/java/src/org/apache/xml/serializer SerializerFactory.java xml-xalan/java/src/org/apache/xml/serializer/utils
MsgKey.java SerializerMessages.java
Committer's log entry:
Fix for XALANJ-2074, committing patch2 in that issue, which removes two
untranslated messages in SerializerFactory, and uses a new common message
in SerializerMessages.
- Committed by jycli@apache.org on 2005/03/10
Modified: xml-xalan/java/src/org/apache/xml/serializer CharInfo.java
Committer's log entry:
Marked the code to be privileged, which allows users to load
customized entity files in sandbox. Fixed bug report XALANJ-2068.
Patch was reviewed by Brian Minchau (minchau@ca.ibm.com)
- Committed by ytalwar@apache.org on 2005/03/10
Modified: xml-xalan/java/src/org/apache/xml/serializer ToStream.java
Committer's log entry:
This patch fixes XALANJ-1431. The patch has been reviewed by Brian.
The problem is that that when an empty attribute value is encountered, a text node is being created
with empty string.
Henry Zongaro has helped finding the XSLT 1.0 specs. that suggest a text node with empty string should not be created.
URL http://www.w3.org/TR/xslt#value-of has the following information:
"The xsl:value-of element is instantiated to create a text node in the result tree. The required select attribute is an
expression; this expression is evaluated and the resulting object is converted to a string as if by a call to the string
function. The string specifies the string-value of the created text node. If the string is empty, no text node will be
created. The created text node will be merged with any adjacent text nodes."
- Committed by zongaro@apache.org on 2005/03/14
Modified: xml-xalan/java/xdocs/sources/xalan builds.xml
Committer's log entry:
Patch for Jira bug report XALANJ-2079. Updated links to nightly Gump build. Reviewed by Brian Minchau.
- Committed by ytalwar@apache.org on 2005/03/23
Modified: xml-xalan/java/src/org/apache/xalan/processor XSLTAttributeDef.java xml-xalan/java/src/org/apache/xalan/templates
ElemAttribute.java ElemElement.java ElemPI.java xml-xalan/java/src/org/apache/xalan/xsltc/compiler ApplyTemplates.java
AttributeSet.java CallTemplate.java DecimalFormatting.java Key.java Output.java ProcessingInstruction.java Template.java
VariableBase.java WithParam.java xpath.lex XslAttribute.java XslElement.java xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util
Util.java xml-xalan/java/src/org/apache/xalan/xsltc/runtime BasisLibrary.java xml-xalan/java/src/org/apache/xml/serializer
WriterToUTF8Buffered.java xml-xalan/java/src/org/apache/xml/utils QName.java XML11Char.java
Committer's log entry:
This is resolve UTF-8 Charcater support and QName character support for XML 1.1 support in XALANJ-2070.
Henry Zongaro and Brian Minchau helped in fixing this part of the JIRA issue.
A new class org.apache.xml.utils.XML11Char has been included to support XML 1.1 characters.
Also a reference to org.apache.xml.utils.XMLChar has been replaced with a reference to
org.apache.xml.utils.XML11Char in almost all the places in Xalan.
org.apache.xml.serializer.WriterToUTF8Buffered has been update to support UTF-8 characters that can be represented in four bytes.
- Committed by ytalwar@apache.org on 2005/03/30
Modified: xml-xalan/java/src/org/apache/xpath/domapi package.html
Committer's log entry:
This resolves XALANJ-2085. Sarah McNamara has reviewed this change.
- Committed by ytalwar@apache.org on 2005/04/01
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemNumber.java
Committer's log entry:
This is a fix for XALANJ-2089.
Christine Li has created this patch.
Brian Minchau helped in creating this patch.
Brian Minchau also reviewed this patch.
org.apache.xalan.templates.ElemNumber.java has raised some performance issue as
a static array to hold resources was removed earlier. However, the removal of static array is necessary
to fix a potential bug multithread environment, where a given thread can request different locale than another thread.
This patch resolves the performance glicth that was found in internal testing.
- Committed by minchau@apache.org on 2005/04/07
Modified: xml-xalan/java/src/org/apache/xml/serializer CharInfo.java
Committer's log entry:
Commiting patch for XALANJ-2095, that tabs in text nodes in XML documents
are serialized to 	 but should stay as a tab character.
- Committed by minchau@apache.org on 2005/04/07
Modified: xml-xalan/java/xdocs/sources/xalan usagepatterns.xml
Committer's log entry:
Patch from XALANJ-1924 applied. The one deprecated API used is replace
by the current one, but multiple typos in other examples are corrected.
- Committed by minchau@apache.org on 2005/04/07
Modified: xml-xalan/java/src/org/apache/xml/serializer Encodings.java
Committer's log entry:
Committing patch for XALANJ-2077. This performance modification is
estimated to shave 3% of the serialization stage of small documents.
Every little bit counts.
- Committed by minchau@apache.org on 2005/04/07
Modified: xml-xalan/java/src/org/apache/xml/serializer Encodings.java
Committer's log entry:
Appling fix for XALANJ-2086, which pointed out that findCharToByteConverterMethod()
always returned null. This bug was introduced some time ago during some security
fixes.
- Committed by minchau@apache.org on 2005/04/25
Modified: xml-xalan/java/src/org/apache/xml/serializer ToHTMLStream.java
Committer's log entry:
Fix for XALANJ-2109 applied (we won't \n to \r\n in an HTML attribute value on
Windows OS anymore, it will be left as is during serialization).
- Committed by minchau@apache.org on 2005/04/26
Modified: xml-xalan/java/src/org/apache/xml/utils XMLReaderManager.java
Committer's log entry:
Applying patch in XALANJ-2105.
- Committed by mkwan@apache.org on 2005/05/17
Modified: xml-xalan/java/src/org/apache/xalan Version.java xml-xalan/java/src/org/apache/xalan/processor
TransformerFactoryImpl.java xml-xalan/java/src/org/apache/xalan/templates ElemLiteralResult.java
xml-xalan/java/src/org/apache/xalan/transformer TransformerImpl.java xml-xalan/java/src/org/apache/xalan/xsltc/trax
SmartTransformerFactoryImpl.java TransformerFactoryImpl.java xml-xalan/java/src/org/apache/xml/dtm/ref DTMNodeProxy.java
xml-xalan/java/src/org/apache/xml/dtm/ref/dom2dtm DOM2DTMdefaultNamespaceDeclarationNode.java xml-xalan/java/src/org/apache/xml/utils
UnImplNode.java xml-xalan/java/src/org/apache/xpath/domapi XPathNamespaceImpl.java xml-xalan/java/src/org/apache/xpath/operations
Variable.java xml-xalan/java/src/org/apache/xpath/res XPATHErrorResources.java
Committer's log entry:
JAXP 1.3 integration. Integrate the Sun donated JAXP 1.3 implementation into the head branch.
- Committed by mkwan@apache.org on 2005/05/17
Modified: xml-xalan/java/src/org/apache/xpath/jaxp JAXPExtensionsProvider.java JAXPPrefixResolver.java JAXPVariableStack.java
XPathExpressionImpl.java XPathFactoryImpl.java XPathImpl.java
Committer's log entry:
JAXP 1.3 integration. Commit the XPath API implementation under org.apache.xpath.jaxp.
- Committed by mkwan@apache.org on 2005/05/17
Modified: xml-xalan/java/bin xml-apis.jar
Committer's log entry:
New xml-apis.jar containing JAXP 1.3 APIs.
- Committed by jycli@apache.org on 2005/05/17
Modified: xml-xalan/java/src/org/apache/xpath/compiler Compiler.java FuncLoader.java FunctionTable.java Keywords.java
ObjectFactory.java SecuritySupport.java SecuritySupport12.java XPathParser.java xml-xalan/java/src/org/apache/xpath/functions
FuncExtFunctionAvailable.java xml-xalan/java/src/org/apache/xalan/processor StylesheetHandler.java
Committer's log entry:
Modified FunctionTable. Although it is not recommanded, but it is doable for users to add a customized function or overwrite
the default implementation of a build-in function. Fixed bug report XALANJ-2116. Patch is reviewed by Henry Zongaro.
- Committed by mkwan@apache.org on 2005/05/20
Modified: xml-xalan/java/src/org/apache/xalan/transformer TransformerIdentityImpl.java TransformerImpl.java
xml-xalan/java/src/org/apache/xml/utils DOMBuilder.java
Committer's log entry:
Support DOMResult.nextSibling in XalanJ Interpretive. If nextSibling is not null, then result nodes are inserted
before it.
- Committed by mkwan@apache.org on 2005/05/20
Modified: xml-xalan/java/samples/XPathAPI ApplyXPathJAXP.java foo.xml XPathResolver.java
Committer's log entry:
Add two samples to demonstrate how to use the XPath API in JAXP 1.3.
1. ApplyXPathJAXP. Basic sample like ApplyXPath, but use JAXP 1.3 XPath API instead.
2. XPathResolver. Demonstrate how to use NamespaceContext, XPathFunctionResolver and XPathVariableResolver.
- Committed by mkwan@apache.org on 2005/05/30
Modified: xml-xalan/java/src/org/apache/xalan/extensions ExtensionHandlerJavaClass.java ExtensionHandlerJavaPackage.java
ExtensionNamespaceContext.java XPathFunctionImpl.java XPathFunctionResolverImpl.java
Committer's log entry:
Patch for XALANJ-2126. This is a sample implementation of XPathFunctionResolver, with support for
Java and EXSLT extension functions.
- Committed by mkwan@apache.org on 2005/05/30
Modified: xml-xalan/java/src/org/apache/xalan/res XSLTErrorResources.java
Committer's log entry:
New messages for XALANJ-2126. Messages for the sample XPathFunctionResolver implementation.
- Committed by mkwan@apache.org on 2005/05/30
Modified: xml-xalan/java/samples/XPathAPI ExtensionFunctionResolver.java
Committer's log entry:
For XALANJ-2126. New sample to demonstrate how to use the sample
XPathFunctionResolver to evaluate XPath expression containing
Java and EXSLT extension functions.
- Committed by minchau@apache.org on 2005/05/31
Modified: xml-xalan/java/src/org/apache/xml/serializer ToHTMLStream.java
Committer's log entry:
Committing patch for issue XALANJ-2121, which is that some empty attributes
of some HTML elements are note serialized as empty.
- Committed by minchau@apache.org on 2005/05/31
Modified: xml-xalan/java/src/org/apache/xml/serializer ToHTMLStream.java
Committer's log entry:
Putting static iniitialization of HTML element/attribute information in a static method,
which is invoked from a static { ...} block.
No real difference, but slowly inching this code towards adding a
ToXHTMLStream class that extends ToXMLStream, but uses methods in
ToHTMLStream.
- Committed by minchau@apache.org on 2005/05/31
Modified: xml-xalan/java/src/org/apache/xml/serializer ToHTMLStream.java
Committer's log entry:
Added "nowrap" as an empty attribute for elements <div> <src> and <tr>
as these are either Netscape or Internet-Explorer extensions.
This is patch3 from XALANJ-2121.
- Committed by minchau@apache.org on 2005/06/01
Modified: xml-xalan/java/src/org/apache/xml/serializer OutputPropertiesFactory.java ToStream.java
Committer's log entry:
Applying patcth for JIRA XALANJ-2093. Adding a xalan:line-separator extension output attribute.
- Committed by mkwan@apache.org on 2005/06/03
Modified: xml-xalan/java/src/org/apache/xalan Version.java xml-xalan/java/src/org/apache/xalan/processor
TransformerFactoryImpl.java xml-xalan/java/src/org/apache/xalan/transformer TransformerIdentityImpl.java
TransformerImpl.java xml-xalan/java/src/org/apache/xalan/xsltc/compiler Parser.java
xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util ErrorMsg.java xml-xalan/java/src/org/apache/xalan/xsltc/trax
TransformerFactoryImpl.java xml-xalan/java/src/org/apache/xml/utils DefaultErrorHandler.java
Committer's log entry:
Patch for XALANJ-2134. Change the error handling behavior to be conformant with the requirement
from JAXP 1.3 that the default ErrorListener will report all warnings and errors
to System.err and does not throw any Exceptions.
- Committed by mkwan@apache.org on 2005/06/07
Modified: xml-xalan/java/src/org/apache/xalan Version.java xml-xalan/java/src/org/apache/xalan/processor
ProcessorInclude.java ProcessorLRE.java ProcessorStylesheetElement.java TransformerFactoryImpl.java
xml-xalan/java/src/org/apache/xalan/res XSLTErrorResources.java xml-xalan/java/src/org/apache/xalan/templates
ElemExtensionCall.java StylesheetRoot.java xml-xalan/java/src/org/apache/xalan/transformer TransformerIdentityImpl.java
TransformerImpl.java TrAXFilter.java xml-xalan/java/src/org/apache/xalan/xslt Process.java xml-xalan/java/src/org/apache/xml/utils
DOMHelper.java xml-xalan/java/src/org/apache/xpath XPathContext.java xml-xalan/java/src/org/apache/xpath/functions
FuncExtFunction.java xml-xalan/java/src/org/apache/xpath/res XPATHErrorResources.java
Committer's log entry:
Patch for XALANJ-2136. Support the secure processing feature in Xalan interpretive. When this feature
is set to true, the following XML processing limits are applied:
1. extension functions and extension elements are disabled.
2. parsers created by the XSLT processor also have the secure processing feature set
to true.
A new option -secure is added to the Process command line to enable the secure
processing feature.
- Committed by mkwan@apache.org on 2005/06/15
Modified: xml-xalan/java/xdocs/sources entities.ent xalan-jlocal.xml xalan-jsite.xml xml-xalan/java/xdocs/sources/xalan
features.xml samples.xml xpath_apis.xml Committer's log entry:
Patch for XALANJ-2124. Update the online documentation to include descriptions on the new JAXP 1.3 features:
1. Add a new "XPath API" page to provide a complete guide on how to use the
XPath API in JAXP 1.3. Details on basic usage patterns, factory plugin mechanism,
how to use NamespaceContext, XPathVariableResolver and XPathFunctionResolver.
2. Document the secure processing feature in the features page.
3. Describe three new XPath API related samples in the samples page.
- Committed by mkwan@apache.org on 2005/06/21
Modified: xml-xalan/java/src/META-INF/services javax.xml.xpath.XPathFactory
Committer's log entry:
Service provider file for javax.xml.xpath.XPathFactory.
- Committed by mkwan@apache.org on 2005/06/21
Modified: xml-xalan/java/samples/XPathAPI ExtensionTest.java numlist.xml
Committer's log entry:
xml and extension java source for the ExtensionFunctionResolver sample.
- Committed by mkwan@apache.org on 2005/06/21
Modified: xml-xalan/java/src MANIFEST.MF manifest.xalan-interpretive manifest.xsltc
Committer's log entry:
Update manifest files for jaxp version and remove entry for org.w3c.dom.xpath.
- Committed by mkwan@apache.org on 2005/06/22
Modified: xml-xalan/java build.xml xml-xalan/java/bin xml-apis.jar xml-xalan/java/src
xml-commons-external-1.2.01-src.tar.gz xml-commons-external-1.3.01-src.tar.gz Committer's log entry:
Update the source and binary of xml-apis.jar.
- Committed by mkwan@apache.org on 2005/06/22
Modified: xml-xalan/java/src/org/apache/xml/dtm/ref DTMNodeProxy.java
Committer's log entry:
Java docs cleanup. Remove the word "Experimental" for DOM Level 3 spec and update the URI link.
Also remove the obsolete methods that are replaced by new ones.
- Committed by mkwan@apache.org on 2005/06/22
Modified: xml-xalan/java/src/org/apache/xalan Version.java xml-xalan/java/src/org/apache/xalan/processor
StylesheetHandler.java xml-xalan/java/src/org/apache/xml/utils UnImplNode.java
Committer's log entry:
Cleanup javadocs on DOM Level 3 spec. Update the uri and remove
obsolete methods. The getVersion() method in org.w3c.dom.Node is replaced by
getXmlVersion().
- Committed by mkwan@apache.org on 2005/06/24
Modified: xml-xalan/java build.xml
Committer's log entry:
Add xml-apis.jar to boot classpath to fix a build problem with JDK 1.4.
- Committed by mkwan@apache.org on 2005/06/28
Modified: xml-xalan/java/src/org/apache/xalan/lib ExsltDatetime.java
Committer's log entry:
Patch for XALANJ-2076. Fix a bug in date:month-in-year.
- Committed by mkwan@apache.org on 2005/06/29
Modified: xml-xalan/java/bin xercesImpl.jar
Committer's log entry:
New xercesImpl.jar from the official Xerces-J 2.7.0 release.
- Committed by jycli@apache.org on 2005/06/29
Modified: xml-xalan/java/src/org/apache/xalan/res XSLTErrorResources.java
xml-xalan/java/src/org/apache/xml/res XMLErrorResources.java xml-xalan/java/src/org/apache/xpath/res XPATHErrorResources.java
Committer's log entry:
Cleanup resource files. Remove unused constants and commented out message keys. Fix for bug XALANJ-2161
Patch is reviewed by Sarah McNamara (mcnamara@ca.ibm.com)
- Committed by zongaro@apache.org on 2005/07/05
Modified: xml-xalan/java/src/org/apache/xalan/transformer TransformerIdentityImpl.java
Committer's log entry:
Patch for Jira issue XALANJ-1978. Reviewed by Christine Li (jycli@ca.ibm.com).
Behaviour of StreamResult.getSystemId has changed if the Result object was
created using a File. The URI returned begins with "file:/" where it used to
begin with "file:///". TransformerIdentityImpl had a dependency on the old
behaviour.
- Committed by minchau@apache.org on 2005/07/15
Modified: xml-xalan/java/src/org/apache/xml/serializer ToHTMLSAXHandler.java
Committer's log entry:
Applying patch2 from XALANJ-2023.
Submitted by Ken Weiner, reviewed, approved, applied by Brian Minchau.
- Committed by minchau@apache.org on 2005/07/15
Modified: xml-xalan/java/src/org/apache/xml/serializer ToHTMLStream.java
Committer's log entry:
Changing "<!DOCTYPE HTML" to "<!DOCTYPE html" to be more xhtml friendly.
Applying the patch in XALANJ-2103 that was created by Brian Minchau
and reviewed/approved by Joanne Tong.
- Committed by mcnamara@apache.org on 2005/07/15
Modified: xml-xalan/java/src/org/apache/xalan/lib ExsltDatetime.java
Committer's log entry:
Patch for XALANJ-2099 provided by Morris Kwan and reviewed by me.
According to the EXSLT doc the extension date:day-abbreviation() should
output a three-letter English day abbreviation: one of 'Sun', 'Mon', 'Tue',
'Wed', 'Thu' or 'Fri'. (See http://exslt.org/date/functions/day-abbreviation/index.html)
- Committed by mcnamara@apache.org on 2005/07/15
Modified: xml-xalan/java/src/org/apache/xalan/transformer TransformerImpl.java
Committer's log entry:
Patch for XALANJ-2143. Javadoc improvement for TransformerImpl.setOutputProperty(name,value).
- Committed by mcnamara@apache.org on 2005/07/15
Modified: xml-xalan/java/xdocs/sources/xalan usagepatterns.xml Committer's log entry:
Patch for XALANJ-2142 - correction for the xalan namespace URI. Patch provided by Brian Minchau and
reviewed by Sarah McNamara.
Patch for XALANJ-2144 - incorrect use of the word "concurrently" when referring to the XPath module.
- Committed by mcnamara@apache.org on 2005/07/19
Modified: xml-xalan/java/licenses BCEL.LICENSE.txt LICENSE.DOM-documentation.html LICENSE.DOM-software.html
LICENSE-SAX.html regexp.LICENSE.txt runtime.LICENSE.txt serializer.LICENSE.txt serializer.NOTICE.txt xalan.LICENSE.txt
xalan.NOTICE.txt xercesImpl.LICENSE.txt xercesImpl.NOTICE.txt xml-apis.LICENSE.txt xml-apis.NOTICE.txt
Committer's log entry:
Creation of the xml-xalan/java/licenses directory which contains
all licenses required for the Xalan Java (interpretive and compiled) runtime
jars and its dependencies. Most of these files have been moved here
from xml-xalan/java/bin. The serializer files are new for the Xalan Java 2.7
release (fixes XALANJ-1977). The xercesImpl.LICENSE.txt and xml-apis.LICENSE.txt
now reflect ASL v2.0. This change was reviewed and approved in XALANJ-2170 by Christine Li.
- Committed by mcnamara@apache.org on 2005/07/19
Modified: xml-xalan/java/lib xercesImpl.jar xercesImpl.README.txt xml-apis.jar xml-apis.README.txt BCEL.jar BCEL.README.txt
regexp.jar regexp.README.txt runtime.jar runtime.README.txt
Committer's log entry:
Creation of the xml-xalan/java/lib directory which contains all runtime
library dependencies (jars) required by Xalan Java (interpretive and compiled) runtime
These files have been moved here from xml-xalan/java/bin.
This change was reviewed and approved in XALANJ-2170 by Christine Li.
- Committed by mcnamara@apache.org on 2005/07/19
Modified: xml-xalan/java/tools ant.jar ant.LICENSE.txt ant.README.txt antRun antRun.bat java_cup.jar java_cup.LICENSE.txt
java_cup.README.txt JLex.jar JLex.LICENSE.txt JLex.README.txt stylebook-1.0-b3_xalan-2.jar stylebook-1.0-b3_xalan-2.LICENSE.txt
stylebook-1.0-b3_xalan-2.README.txt xalan2jdoc.jar xalan2jtaglet.jar
Committer's log entry:
Creation of the xml-xalan/java/tools directory which contains all build time
tools required by Xalan Java (interpretive and compiled) builds, including
documentation builds. These tools are not required at runtime.
These files have been moved here from xml-xalan/java/bin.
This change was reviewed and approved in XALANJ-2170 by Christine Li.
- Committed by mcnamara@apache.org on 2005/07/19
Modified: xml-xalan/java serializer.README.txt xalan.README.txt
Committer's log entry:
New readme files for the xalan.jar and serializer.jar.
This change was reviewed and approved in XALANJ-2170 by Christine Li.
- Committed by mcnamara@apache.org on 2005/07/19
Modified: xml-xalan/java build.bat build.sh build.xml
Committer's log entry:
Updates to the build scripts and Ant build.xml file to accomodate the
restructuring of the tools and runtime libraries in xml-xalan/java/tools and
xml-xalan/java/lib. Also changes to build.xml to reflect upcoming
Xalan Java 2.7.0 (version number) changes.
This change was reviewed and approved in XALANJ-2170 by Christine Li.
- Committed by mcnamara@apache.org on 2005/07/19
Modified: xml-xalan/java/samples/AppletXMLtoHTML client.html README.html xml-xalan/java/samples/ApplyXPathDOM ApplyXPathDOM.java
Committer's log entry:
Doc changes for Xalan Java 2.7.0 release.
This change was reviewed and approved in XALANJ-2170 by Christine Li.
- Committed by mcnamara@apache.org on 2005/07/19
Modified: xml-xalan/java/src/org/apache/xalan/processor XSLProcessorVersion.java xml-xalan/java/src/org/apache/xalan/xslt
EnvironmentCheck.java xml-xalan/java/src/org/apache/xpath/domapi XPathEvaluatorImpl.java XPathExpressionImpl.java
XPathNSResolverImpl.java XPathResultImpl.java xml-xalan/java/src/org/apache/xml/serializer Version.src xml-xalan/java/xdocs/sources
entities.src xalan-jlocal.xml xalan-jsite.xml xml-xalan/java/xdocs/sources/xalan commandline_xsltc.xml commandline.xml downloads.xml
extensions.xml extensionslib.xml faq.xml features.xml getstarted.xml index.xml overview.xml public_apis.xml resources.xml samples.xml
trax.xml usagepatterns.xml whatsnew.xml xpath_apis.xml xsltc_usage.xml xml-xalan/java/xdocs/sources/xsltc README.xslt README.xsltc
Committer's log entry:
Doc changes for Xalan Java 2.7.0 release.
This change was reviewed and approved in XALANJ-2170 by Christine Li.
- Committed by mcnamara@apache.org on 2005/07/19
Modified: xml-xalan/java/src/org/apache/xalan/processor XSLProcessorVersion.src xml-xalan/java build.xml
Committer's log entry:
Doc changes for Xalan Java 2.7.0 release.
This change was reviewed and approved in XALANJ-2170 by Christine Li.
- Committed by zongaro@apache.org on 2005/07/21
Modified: xml-xalan/java/src/org/apache/xml/utils XMLString.java XMLStringDefault.java xml-xalan/java/src/org/apache/xpath/objects
XString.java
Committer's log entry:
Patch for XALANJ-2176 reviewed by Christine Li (jycli@ca.ibm.com).
Replaced characters in Javadoc comments that were encoded in ISO-8859-1 with
HTML character entity references. This avoids any problems with editors, IDEs
or versions of javac that make faulty assumptions about source encodings.
- Committed by johng@apache.org on 2005/07/24
Modified: xml-xalan/java/src/org/apache/xalan/processor TransformerFactoryImpl.java
Committer's log entry:
PR: XALANJ-2113
Submitted by: John Gentilin
Reviewed by: Henry Zongaro
- Committed by johng@apache.org on 2005/07/25
Modified: xml-xalan/java/src/org/apache/xpath/objects XString.java
xml-xalan/java/src/org/apache/xml/dtm/ref DTMDefaultBase.java
Committer's log entry:
PR: XALANJ-2114
Submitted by: John Gentilin
Reviewed by: Henry Zongaro
- Committed by mcnamara@ca.ibm.com on 2005/07/25
Modified: xml-xalan/java/src/org/apache/xpath/functions FuncSystemProperty.java
Committer's log entry:
Patch for XALANJ-936. Reviewed by Yash Talwar.
- Committed by mcnamara@apache.org on 2005/07/27
Modified: xml-xalan/java/bin xml-apis.jar
Committer's log entry:
Update xml-apis.jar to xml-commons-external-1.3.02 version.
- Committed by johng@apache.org on 2005/07/27
Modified: java/src/org/apache/xalan/lib/sql JNDIConnectionPool.java
java/samples/extensions/sql/basic-connection dbinfo.xml dbtest.xsl DumpSQL.xsl dbtest-cinfo.xsl
java/samples/extensions/sql/ext-connection dbtest.xsl ExternalConnection.java
java/samples/extensions/sql/pquery dbinfo.xml
java/samples/extensions/sql/streamable cachedNodes.xsl streamNodes.xsl pivot.xsl
java/samples/extensions/sql GETTING_STARTED.txt runDerby.bat runXalan.sh createdb.sql runDerby.sh runXalan.bat
Committer's log entry:
PR: XALANJ-2172
Obtained from: Eric Everman
Submitted by: Eric Everman / John Gentilin
Reviewed by: Yash Talwar
- Committed by mcnamara@apache.org on 2005/07/29
Modified: xml-xalan/java/bin xercesImpl.jar
Committer's log entry:
New xercesImpl.jar from the official Xerces-J 2.7.1 release.
- Committed by minchau@apache.org on 2005/08/03
Modified: java/src/org/apache/xml/serializer ToTextStream.java Encodings.properties ToHTMLStream.java
ToStream.java EncodingInfo.java ToXMLStream.java Encodings.java
Committer's log entry:
Committing patch for XALANJ-2087. This is a fix for correctly deciding if a character is in an encoding or not,
so we write it as is, or as an entity.
The old code had a concept of a maximum character in the encoding, and assumed that all characters less
than that unicode value were in the encoding. New code uses the underlying Java libarary, but caches results
for performance.
Patch was reviewed/approved by Yash Talwar (see XALANJ-2087).
- Committed by mcnamara@apache.org on 2005/08/04
Modified: java/samples/extensions/sql/show-error invalidQuery.xsl invalidPQuery.xsl invalidConn.xsl
Committer's log entry:
Updates for the SQL samples (part of the fix for XALANJ-2172). Patch provided by John Gentilin and reviewed by Sarah McNamara.
- Committed by minchau@apache.org on 2005/08/04
Modified: java/src/org/apache/xml/serializer ToStream.java EncodingInfo.java
java/src/org/apache/xml/serializer/utils SerializerMessages.java MsgKey.java
Committer's log entry:
Committing XALANJ-2181. When the requested encoding is not supported by the JDK no
warning is given,... this fix adds an error message.
- Committed by johng@apache.org on 2005/08/05
Modified: java/samples/extensions/sql/ext-connection ExternalConnection.java
java/xdocs/sources/xalan samples.xml
java/samples/extensions/sql runDerby.bat runXalan.sh runDerby.sh runXalan.bat runExtConnection.bat runExtConnection.sh
java/src/org/apache/xalan/lib/sql DefaultConnectionPool.java
Committer's log entry:
PR: XALANJ-2183.
|
 |  |  |  | Changes for Xalan-Java 2.6.0 |  |  |  |  |
| | |
Core (Non-XSLTC) source code updates:
- Committed by zongaro@apache.org on 2003/11/24
Modified: xml-xalan/java/src/org/apache/xalan/xsltc DOM.java Translet.java
xml-xalan/java/src/org/apache/xalan/xsltc/compiler SyntaxTreeNode.java xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util
ResultTreeType.java xml-xalan/java/src/org/apache/xalan/xsltc/dom AdaptiveResultTreeImpl.java
DOMAdapter.java DOMWSFilter.java MultiDOM.java SAXImpl.java SimpleResultTreeImpl.java
xml-xalan/java/src/org/apache/xml/dtm/ref ExpandedNameTable.java
Committer's log entry:
Patch from Morris Kwan (mkwan@ca.ibm.com), reviewed by myself, with a tweak
or two from myself, reviewed by Morris.
Split namesArray in translet into three arrays: namesArray, urisArray and
typesArray.
Previously, entries in the namesArray had to be examined at run-time to
distinguish those that represented elements, from those that represented
attributes (prefixed by an '@'), and those that represented namespace node
names (prefixed by a '?'). In addition, any namespace URI for the element or
attribute was similarly stored in the namesArray entry. So,
"http://example.org:abc" and "http://example.org:@abc" respectively represented
an element and an attribute named abc in the http://example.org namespace;
"?abc" represented a namespace prefix of abc.
With this change, the namesArray will have entries for "abc" in all three
cases; the urisArray will contain entries for "http://example.org" for the
element and attribute, and an empty string for the namespace prefix; and the
typesArray will contain the value 1 for the element, 2 for the attribute and 13
for the namespace (which correspond to the DTM constant values for those kinds
of nodes).
In addition, these values are stored in static arrays in the translet, and
references to those arrays are copied to instance fields in the translet's
constructor, rather than constructing arrays and initializing all their entries
in the constructor each time.
All this serves to reduce the overhead of initializing a transformation.
- Committed by minchau@apache.org on 2003/11/24
Modified: xml-xalan/java/src/org/apache/xml/serializer NamespaceMappings.java
Committer's log entry:
Submitted by: Brian Minchau
Just indentation and whitespace changes in the code
(trying to get Apache head and the xslt2.0-compiled branches closer).
- Committed by minchau@apache.org on 2003/11/25
Modified: xml-xalan/java/src/org/apache/xml/serializer ToTextStream.java
Committer's log entry:
PR: bugzilla 24278
Submitted by: Brian Minchau
- Committed by minchau@apache.org on 2003/11/25
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemLiteralResult.java
Committer's log entry:
PR: bugzilla 24423
Submitted by: Brian Minchau
- Committed by minchau@apache.org on 2003/11/25
Modified: xml-xalan/java/src/org/apache/xml/serializer SerializerBase.java ToXMLSAXHandler.java
Committer's log entry:
Submitted by: Brian Minchau
Just indentation and whitespace changes in the code
(trying to get Apache head and the xslt2.0-compiled branches closer).
- Committed by minchau@apache.org on 2003/11/25
Modified: xml-xalan/java/src/org/apache/xml/serializer ToStream.java
Committer's log entry:
PR: bugzilla 24958
Submitted by: Brian Minchau
- Committed by igorh@apache.org on 2003/12/04
Modified: xml-xalan/java/samples/TransformThread TransformThread.java foo0.xml foo0.xsl foo1.xml
foo1.xsl xml-xalan/java/xdocs/sources/xalan samples.xml
Committer's log entry:
Transform Thread sample. Submitted by Richard Cao.
- Committed by zongaro@apache.org on 2003/12/04
Modified: xml-xalan/java/src/org/apache/xalan/transformer TransformerIdentityImpl.java
xml-xalan/java/src/org/apache/xalan/xsltc/trax TrAXFilter.java xml-xalan/java/src/org/apache/xml/dtm/ref
DTMManagerDefault.java xml-xalan/java/src/org/apache/xml/utils XMLReaderManager.java
Committer's log entry:
Moved code for caching XMLReader objects from XSLTC's TransformerFactoryImpl to
a new org.apache.xml.utils.XMLReaderManager class.
It is now the responsibility of the DTMManagerDefault class to request one of
these cached XMLReader objects, so the benefit of reusing an XMLReader is now
conferred upon both XSLTC and Xalan-J Interpretive, as well as upon references
to the document() function.
- Committed by zongaro@apache.org on 2003/12/04
Modified: xml-xalan/java/src/org/apache/xml/utils ObjectFactory.java
Committer's log entry:
Factored out part of ObjectFactory's createObject method into separately
callable lookUpFactoryClass and lookUpFactoryClassName methods. This allows
the caller to cache the Class object that provides a service at an appropriate
level, and create new instances of that class at will, rather than going
through the expensive service provider look-up procedure for each and every
object created.
- Committed by santiagopg@apache.org on 2003/12/04
Modified: xml-xalan/java/src/org/apache/xml/serializer Encodings.java
Committer's log entry:
Reflection code to load sun.io.CharToByteConverter is now wrapped in a privileged action.
This is needed when user code is run without the required permssions.
- Committed by zongaro@apache.org on 2003/12/04
Modified: xml-xalan/java build.xml xml-xalan/java/bin xml-apis.jar xml-xalan/java/src
xml-commons-src.tar.gz xml-commons-external-1.2.01-src.tar.gz
Committer's log entry:
Upgrading to xml-commons-external-1.2.01 release, and moving to new naming
convention for xml-commons source file.
- Committed by santiagopg@apache.org on 2003/12/04
Modified: xml-xalan/java/src/org/apache/xml/serializer Encodings.java
Committer's log entry:
Avoid RuntimeException(Throwable) as it is only available in JDK 1.4.
- Committed by zongaro@apache.org on 2003/12/08
Modified: xml-xalan/java/src/org/apache/xalan/res XSLTErrorResources.java
xml-xalan/java/src/org/apache/xalan/templates ElemVariable.java ElemWithParam.java
Committer's log entry:
Applying patch from Richard Cao (richcao@ca.ibm.com) for Bugzilla bug report
797.
Added code that checks whether an xsl:param, xsl:variable or xsl:with-param
has both a select attribute and content. Also, new test case to test for
message in case of xsl:with-param, and updated messages in existing tests for
xsl:param and xsl:variable.
- Committed by zongaro@apache.org on 2003/12/08
Modified: xml-xalan/java/src/org/apache/xalan/transformer NodeSorter.java
Committer's log entry:
Applying patch from Richard Cao (richcao@ca.ibm.com) for Bugzilla bug report
5761. Removed code that caused keys to be ignored when they select an empty set of
values.
- Committed by zongaro@apache.org on 2003/12/09
Modified: xml-xalan/java/bin xercesImpl.jar
Committer's log entry:
Upgrading to version 2.6.0 of Xerces-Java.
- Committed by zongaro@apache.org on 2003/12/12
Modified: xml-xalan/java/src/org/apache/xml/dtm/ref DTMManagerDefault.java
Committer's log entry:
Added a finally block for SAXSource/StreamSource case in order to ensure that
any XMLReader is released to the XMLReader cache.
Thanks to Joanne Tong (joannet@ca.ibm.com) for catching this bug when she
reviewed my changes to where caching of XMLReaders was handled, and the DTM
plugability changes for XSLTC.
- Committed by zongaro@apache.org on 2003/12/12
Modified: xml-xalan/java/src/org/apache/xml/utils ObjectFactory.java
Committer's log entry:
Created a named constant for "META-INF/services" string.
- Committed by rameshm@apache.org on 2003/12/22
Modified: xml-xalan/java/src/org/apache/xalan/processor StopParseException.java StylesheetPIHandler.java
TransformerFactoryImpl.java xml-xalan/java/src/org/apache/xalan/xsltc/trax TransformerFactoryImpl.java
xml-xalan/java/src/org/apache/xml/utils StopParseException.java StylesheetPIHandler.java
Committer's log entry:
Moving classes that are used between Xalan interpretive and XSLTC ( StylesheetPIHandler and StopParseException )
to xml/utils package . Making the required modifications to accomadate this change.
Submitted by: Bhakti Mehta ( bhakti.mehta@sun.com )
Reviewed by: Ramesh Mandava
- Committed by zongaro@apache.org on 2003/12/24
Modified: xml-xalan/java/src/org/apache/xml/utils ObjectFactory.java
Committer's log entry:
Fixed a bug I injected recently - missing slash between 'META-INF/services' and service name.
- Committed by zongaro@apache.org on 2004/01/04
Modified: xml-xalan/java/src/org/apache/xalan/templates RedundentExprEliminator.java XSLTVisitor.java
Committer's log entry:
Made methods in this class public, as is the case in the XPathVisitor class that
it extends. Having the class be public, but none of the methods public isn't
helpful.
Contributed by Warwick Burrows (wburrows@us.ibm.com).
- Committed by zongaro@apache.org on 2004/01/06
Modified: xml-xalan/java/src/org/apache/xalan/templates RedundentExprEliminator.java XSLTVisitor.java
Committer's log entry:
Updating the copyright dates to reflect recent modifications.
- Committed by zongaro@apache.org on 2004/01/08
Modified: xml-xalan/java build.xml
Committer's log entry:
Updating build copyright year.
- Committed by minchau@apache.org on 2004/01/15
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemLiteralResult.java ElemTextLiteral.java
Committer's log entry:
PR: 26169
Submitted by: Brian Minchau
Flushed serialier before emitting trace event in ElemeTextLiteral and
ElemLiteralResult.
- Committed by igorh@apache.org on 2004/01/21
Modified: xml-xalan/java build.xml
Committer's log entry:
Add TransformThread sample to xalansamples.jar.
- Committed by zongaro@apache.org on 2004/02/02
Modified: xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm SAX2RTFDTM.java
Committer's log entry:
Fix for bugzilla bug report 25442.
Record the initial empty sizes of the various vectors in the DTM, and use those
sizes as the defaults in popRewindMark. The code originally assumed that these
vectors had default sizes of zero, but that's not true in the case of m_data,
which reserves entry zero.
Reviewed by Christine Li (jycli@ca.ibm.com)
- Committed by jycli@apache.org on 2004/02/02
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemApplyTemplates.java
Committer's log entry:
Fix for bugzilla bug report 19464.
A reworked patch, move the push statements to the beginning of try block
and added a flag to make sure that there is always something to pop
Reviewed by Henry Zongaro (zongaro@ca.ibm.com)
- Committed by jycli@apache.org on 2004/02/05
Modified: xml-xalan/java/src/org/apache/xpath/axes UnionPathIterator.java
Committer's log entry:
Fix for bugzilla bug report 26019. detach location path iterators happens only when allowDetach flag is true.
Reviewed by Henry Zongaro (zongaro@ca.ibm.com)
- Committed by jycli@apache.org on 2004/02/05
Modified: xml-xalan/java/src/org/apache/xalan/processor ProcessorExsltFunction.java
Committer's log entry:
Fix for bugzilla bug report 18351.
xsl:message instruction is allowed inside func:function.
It doesn't construct nodes as part of the result.
Reviewed by Henry Zongaro (zongaro@ca.ibm.com)
- Committed by jycli@apache.org on 2004/02/05
Modified: xml-xalan/java/src/org/apache/xpath/functions FuncExtFunction.java
Committer's log entry:
Fix bugzilla bug report 18351.
Set allowDetachToRelease flag to false, which allow caching of the arguments
Reviewed by Henry Zongaro (zongaro@ca.ibm.com)
- Committed by igorh@apache.org on 2004/02/05
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemAttribute.java
Committer's log entry:
Fix for Bugzilla Bug 26075.
- Committed by igorh@apache.org on 2004/02/06
Modified: xml-xalan/java/src/org/apache/xml/utils TreeWalker.java
Committer's log entry:
Fix for Bugzilla Bug 25416.
- Committed by jycli@apache.org on 2004/02/09
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemTemplateElement.java
Committer's log entry:
Applying Joanne Tone's (joannet@ca.ibm.com) patch for
bugzilla bug report 26030.
Do not suppress Xalan specified extension element namespace, unless they
are declared as extension element namespaces by users.
- Committed by jycli@apache.org on 2004/02/11
Modified: xml-xalan/java build.xml
Committer's log entry:
Fix for bugzilla bug report 26829.
Modified build.xml to add xalanj2taglet.jar to Xalan source distribution
Contributed by Sarah McNamara (mcnamara@ca.ibm.com)
- Committed by zongaro@apache.org on 2004/02/11
Modified: xml-xalan/java/src/org/apache/xalan/extensions ExtensionHandlerExsltFunction.java
xml-xalan/java/src/org/apache/xalan/templates ElemExsltFunction.java ElemExsltFuncResult.java
xml-xalan/java/src/org/apache/xalan/transformer TransformerImpl.java
Committer's log entry:
Fix for bugzilla bug report 24302.
Fields in the object representing an EXSLT function element (ElemExsltFunction)
were being used to store execution state information for references to that
function. That caused problems with multi-threaded code that used Transformer
objects created from the same Templates object - each Transformer shares the
same instances of ElemExsltFunction.
The fix was to replace the fields ElemExsltFunction.m_result and
ElemExsltFunction.m_isResultSet with a new ObjectStack field in TransformerImpl
named m_currentFuncResult.
Also, changed how VariableStack was being updated in the execute method for a
function reference - this change was modelled on equivalent code in
ElemCallTemplate.
Reviewed by Morris Kwan (mkwan@ca.ibm.com)
- Committed by zongaro@apache.org on 2004/02/11
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemParam.java
Committer's log entry:
Fix for bugzilla bug report 24302.
Changed condition under which the parent element's m_inArgsSize field is
incremented - that field keeps track of the number of xsl:param children an
element has. This was only happening for ElemTemplate, but it needs to happen
for ElemExsltFunction, which is a subclass of ElemTemplate, as well.
Reviewed by Morris Kwan (mkwan@ca.ibm.com)
- Committed by igorh@apache.org on 2004/02/12
Modified: xml-xalan/java/src/org/apache/xalan/xsltc/compiler Sort.java
xml-xalan/java/src/org/apache/xalan/xsltc/dom NodeSortRecord.java NodeSortRecordFactory.java
xml-xalan/java/src/org/apache/xml/utils LocaleUtility.java
Committer's log entry:
Fix for Bugzilla Bug 26842.
- Committed by igorh@apache.org on 2004/02/13
Modified: xml-xalan/java/src/org/apache/xalan/xsltc/dom NodeSortRecord.java
xml-xalan/java/src/org/apache/xml/utils StringComparable.java
Committer's log entry:
Fix for Bugzilla Bug 1396.
- Committed by minchau@apache.org on 2004/02/17
Modified: Most files in the Xalan Java cvs repository (too many to list)
Committer's log entry:
New Apache 2.0 license update.
- Committed by minchau@apache.org on 2004/02/17
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemForEach.java
xml-xalan/java/src/org/apache/xalan/processor StylesheetHandler.java
Committer's log entry:
PR: bugzilla 26217
Submitted by: Brian Minchau
Reviewed by: Henry Zongaro
This is a javadoc update only.
Programming instructions don't have a namespace, so make
the PI with no namespace be "xalan-doc-cache-off" rather than
"xalan:doc-cache-off"
- Committed by minchau@apache.org on 2004/02/17
Modified: xml-xalan/java/xdocs/sources/xalan faq.xml
Committer's log entry:
PR: bugzilla 26217
Submitted by: Brian Minchau
Reviewed by: Henry Zongaro
Changed a ":" to a "-" in "xalan:doc-cache-off" in the FAQ.
Programming instructions don't have a namespace, so make
the PI with no namespace be "xalan-doc-cache-off" rather than
"xalan:doc-cache-off".
- Committed by minchau@apache.org on 2004/02/18
Modified: xml-xalan/java/src/org/apache/xml/utils DOMBuilder.java
Committer's log entry:
PR: bugzilla 15140
Submitted by: patch submitted by Bruno Dumon (bruno@outerthought.org)
Reviewed by: Brian Minchau (minchau@ca.ibm.com)
- Committed by minchau@apache.org on 2004/02/18
Modified: xml-xalan/java/src/org/apache/xml/serializer ToXMLStream.java
Committer's log entry:
PR: bugzilla 24304
Submitted by: Brian Minchau
Reviewed by: Henry Zongaro
Serialized XML no longer put a new line after the xml header unless indent="yes".
- Committed by minchau@apache.org on 2004/02/18
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemForEach.java
Committer's log entry:
PR: bugzilla 16889
Submitted by: Elson Jiang
Reviewed by: Brian Minchau
Fixes ElemForEach TraceListener bug.
- Committed by minchau@apache.org on 2004/02/18
Modified: xml-xalan/java/src/org/apache/xalan/transformer TransformerIdentityImpl.java TransformerImpl.java
Committer's log entry:
PR: bugzilla 23591
Submitted by: Brian Minchau
Reviewed by: Henry Zongaro
JAXP transformer.setOutputProperties(null); now not only doesn't
get an exception, it also resets the internal state to flush out any
previously accumulated properties as if the transformer had
just been created.
- Committed by minchau@apache.org on 2004/02/18
Modified: xml-xalan/java/src/org/apache/xml/serializer OutputPropertiesFactory.java
ToHTMLStream.java ToStream.java ToXMLStream.java
Committer's log entry:
PR: bugzilla 25816
Submitted by: Brian Minchau
Reviewed by: Henry Zongaro
Make default properties returned by serializer factory immutable.
- Committed by minchau@apache.org on 2004/02/18
Modified: xml-xalan/java/src/org/apache/xalan/lib Redirect.java
Committer's log entry:
Javadoc update only.
PR: bugzilla 26742
Submitted by: Brian Minchau
Changed old invalid URI for xmlns:xsl to the correct one
for XSLT 1.0. The old value was before the XSLT 1.0 recommendation
and appeared only in a javadoc example. But it did confuse me when
I tried to run the example in the javadoc.
- Committed by jycli@apache.org on 2004/02/20
Modified: xml-xalan/java/src/org/apache/xml/utils PrefixResolverDefault.java
Committer's log entry:
Fix for bugzilla bug report 24979.
Fix for DOM XPath API, any element has an implicit declaration of its own
prefix, which is enforced during namespace serialization.
Reviewed by Morris Kwan (mkwan@ca.ibm.com)
- Committed by igorh@apache.org on 2004/02/21
Modified: xml-xalan/java/src/org/apache/xalan/xsltc/dom SAXImpl.java
xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm SAX2DTM2.java
Committer's log entry:
Code cleaning and optimization for copy and copy-of. Discussed with Henry Zongaro.
- Committed by zongaro@apache.org on 2004/02/22
Modified: xml-xalan/java build.xml xml-xalan/java/src MANIFEST.MF manifest.xsltc
Committer's log entry:
Applying patch for Bugzilla bug report 24728 from Sarah McNamara (mcnamara@ca.ibm.com).
Use Ant's filtering capabilities to place appropriate "created-by" information
into the MANIFEST.MF file of the jar that's being built.
- Committed by jycli@apache.org on 2004/02/23
Modified: xml-xalan/java/src/org/apache/xalan/transformer TrAXFilter.java
Committer's log entry:
Fix for bugzilla bug report 22376.
When a TrAXFilter has a parent, should set itself as the EntityResolver,
DTDHandler and ErrorHandler for it's parent to keep the filter chain,
instead of always use the default EntityResolver, DTDHandler and ErrorHandler
The patch is submitted by Werner Donne (werner.donne@re.be)
- Committed by aruny@apache.org on 2004/02/23
Modified: xml-xalan/java/src/org/apache/xml/utils DOMBuilder.java
Committer's log entry:
Description : Copying the patch from jaxp-1_3_0-branch to main trunk.
When there is no mark up inside element content, text should be contained in single TEXT node.
- Committed by zongaro@apache.org on 2004/02/24
Modified: xml-xalan/java/src/org/apache/xalan/templates ElemAttribute.java ElemElement.java
ElemPI.java ElemTemplateElement.java xml-xalan/java/src/org/apache/xalan/xsltc/compiler ApplyTemplates.java
AttributeSet.java Copy.java DecimalFormatting.java Key.java LiteralElement.java Output.java ProcessingInstruction.java
Template.java XslAttribute.java XslElement.java xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util
ErrorMessages.java ErrorMsg.java Util.java xml-xalan/java/src/org/apache/xalan/xsltc/runtime BasisLibrary.java
ErrorMessages.java xml-xalan/java/src/org/apache/xml/utils XMLChar.java
Committer's log entry:
Patch for Bugzilla bug report 24988 from Joanne Tong (joannet@ca.ibm.com)
reviewed by myself.
Changes required to test whether an attribute value that is required to be
a QName, NCName or whitespace-separated list of QNames actually meets that
requirement.
- Committed by zongaro@apache.org on 2004/02/24
Modified: xml-xalan/java/bin xercesImpl.jar
Committer's log entry:
Upgrading to version 2.6.2 of Xerces-Java.
- Committed by zongaro@apache.org on 2004/02/24
Modified: xml-xalan/java/src/org/apache/xml/dtm/ref/sax2dtm SAX2DTM2.java
Committer's log entry:
Part of patch for bug report 24985. Ensure that m_size is set to zero in
setStartNode methods of AncestorIterator and TypedAncestorIterator. The way
getLast() is implemented resulted in setStartNode being called twice in
some circumstances, with the nodes from the second call being included as
additional (though duplicate) ancestors. Clearing m_size avoids that.
Reviewed by Morris Kwan (mkwan@ca.ibm.com).
|
|