Joe Wang
e89bdfbdc3
8015016: Improve JAXP 1.5 error message
...
Reviewed-by: lancea
2013-06-06 15:03:55 -07:00
Daniel Fuchs
45c882ac0a
8013434: Xalan and Xerces internal ObjectFactory need rework
...
With this changeset, DTMManager and XSLTCDTMManager will always use their own default implementation.
Reviewed-by: joehw, alanb
2013-06-06 20:47:13 +02:00
Aleksej Efimov
53ae44836c
8009579: Xpathexception does not honor initcause()
...
Reviewed-by: alanb, dholmes, joehw
2013-06-06 20:40:43 +04:00
Joe Wang
53ba53a941
8015630: Remove default restriction settings of jaxp 1.5 properties in JDK8
...
Reviewed-by: alanb
2013-06-04 09:35:12 -07:00
Lana Steuck
ea244da844
Merge
2013-06-03 16:09:15 -07:00
David Katleman
d1eabf07b1
8015525: JDK8 b91 source with GPL header errors
...
Reviewed-by: dholmes, lancea
2013-05-29 10:15:19 -07:00
Joe Wang
ed440d1096
8012683: Remove unused, obsolete ObjectFactory classes
...
Reviewed-by: lancea
2013-05-20 23:46:51 -07:00
Joe Wang
80041e51d1
8014891: Redundant setting of external access properties in setFeatures
...
Reviewed-by: lancea
2013-05-20 16:11:49 -07:00
Daniel Fuchs
98c17c258e
8013900: More warnings compiling jaxp
...
Some internal implementation classes in Jaxp were redefining equals() without redefining hashCode(). This patch adds hashCode() methods that are consistent with equals().
Reviewed-by: chegar, joehw
2013-05-17 10:40:21 +02:00
Joe Wang
8620b1e2d7
8014333: javadoc error in JAXP 1.5 patch
...
Reviewed-by: lancea
2013-05-10 09:23:22 -07:00
Joe Wang
f0330c4199
8011653: Upgrade JDK8 to JAXP 1.5
...
Reviewed-by: alanb, dfuchs
2013-05-08 23:38:03 -07:00
Daniel Fuchs
c76e4b0e46
8008738: Issue in com.sun.org.apache.xml.internal.serializer.Encodings causes some JCK tests to fail intermittently
...
Encodings.java sometimes creates EncodingInfo objects whose java names are not recognized by the Charset API. This patch fixes that issue.
Reviewed-by: joehw, alanb
2013-05-06 18:50:16 +02:00
Daniel Fuchs
9a94591b8e
8005954: JAXP Plugability Layer should use java.util.ServiceLoader
...
This fix replaces manual processing of files under META-INF/services in JAXP factories by calls to java.util.ServiceLoader.
Reviewed-by: alanb, joehw, mchung
2013-04-17 15:23:19 +02:00
Joe Wang
8b12f5abcc
6657673: Issues with JAXP
...
Reviewed-by: alanb, lancea, ahgross, mullan
2013-02-18 11:33:35 -08:00
Edvard Wendelin
14b0e4eb6f
Merge
2013-02-19 21:45:15 +01:00
Eric McCorkle
3d09f6b621
8007389: Remove uses of _ as identifier in jaxp
...
Reviewed-by: lancea, joehw
2013-02-05 14:56:34 +00:00
David Buck
8f70550080
8003147: port fix for BCEL bug 39695
...
Added support for Local Variable Type Table so that BCEL library can be used to modify methods with generics-related debug data without violating class file format
Reviewed-by: lancea
2013-01-10 20:26:00 -08:00
Lana Steuck
5294fa2499
Merge
2012-12-28 18:31:52 -08:00
Joe Wang
c04f299d28
8005473: Warnings compiling jaxp
...
Clean up compiling warnings.
Reviewed-by: weijun, chegar, forax
2012-12-27 18:17:58 -08:00
David Katleman
fb31951ddf
8004982: JDK8 source with GPL header errors
...
Reviewed-by: ohair
2012-12-20 16:23:11 -08:00
Joe Wang
9ee412031f
8003261: static field is public but not final
...
Add final to fVersion field, and make it a non-compile time constant.
Reviewed-by: hawtin, lancea, dholmes, chegar
2012-12-18 21:11:43 -08:00
Joe Wang
fd69767808
8003260: [findbug] some fields should be package protected
...
Change public or protected mutable static fields to private or package private.
Reviewed-by: lancea
2012-12-14 13:24:34 -08:00
Joe Wang
d1398dfca7
8001235: Improve JAXP HTTP handling
...
Reviewed-by: lancea, skoivu
2012-12-12 15:19:19 -08:00
Joe Wang
0b25975fcd
8000172: 2 SAX features does not work properly
...
When external dtd is not loaded, skippedEntity event should be reported for entity references.
Reviewed-by: lancea
2012-10-09 14:19:11 -07:00
Joe Wang
5d2e65169c
7191547: XMLEventFactory.newFactory(String factoryId, ClassLoader loader) does not work as expected
...
Similar to the patch for 6756677 for XMLInputFactory and XMLOutputFactory, this patch fixes an error in XMLEventFactory where factoryId was taken as factory class.
Reviewed-by: lancea
2012-08-17 09:49:42 -07:00
Joe Wang
fec1de491b
7183760: DocumentBuilder.parse(String uri) is not IPv6 enabled
...
Removing the hack of using escapeNonUSAscii. this is the same patch as 7166896 for 7u8.
Reviewed-by: psandoz, lancea
2012-07-12 21:06:52 -07:00
Lana Steuck
73e8d2923d
Merge
2012-06-26 22:47:23 -07:00
Joe Wang
6b5a5ca0e2
7166896: DocumentBuilder.parse(String uri) is not IPv6 enabled. It throws MalformedURLException
...
Skip the added international character handling for general paths
Reviewed-by: lancea
2012-06-26 15:28:21 -07:00
Lana Steuck
6b961cfac1
Merge
2012-06-26 10:27:51 -07:00
Joe Wang
94d67fa6a5
7144423: StAX EventReader swallows the cause of error
...
Make sure the cause of the error is properly reported
Reviewed-by: lancea, psandoz
2012-06-12 10:23:49 -07:00
Joe Wang
e881068530
7157610: NullPointerException occurs when parsing XML doc
...
Recovers what was the original disallow-doctype-decl, reporting error when disallow-doctype-decl is true, and change everything else that was added for SupportDTD to be governed by a new flag 'fSupportDTD'.
Reviewed-by: lancea
2012-06-11 15:47:01 -07:00
Joe Wang
478e52def4
7157608: One feature is not recognized
...
Adding feature standard-uri-conformant into the recognized list
Reviewed-by: psandoz
2012-06-08 11:28:29 -07:00
Joe Wang
aca1037e9f
7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
...
Roll back XalanJ-2271 that caused the regression
Reviewed-by: lancea
2012-06-07 13:47:53 -07:00
Abhijit Saha
a84e7fc733
Merge
2012-05-08 07:30:48 -07:00
Joe Wang
db4db38876
7160380: Sync JDK8 with JAXP 1.4.5
...
Bring JDK8 up to date to what we have in 7u4
Reviewed-by: lancea, mullan
2012-04-17 11:17:59 -07:00
Joe Wang
60663487f6
7160496: Rename JDK8 JAXP source directory
...
Moving src/share/classes to src
Reviewed-by: ohair
2012-04-12 08:38:26 -07:00
Joe Wang
dcfcdd72ce
7157609: Issues with loop
...
Reviewed-by: hawtin, lancea, asaha
2012-04-10 13:59:21 -07:00
Kelly O'Hair
13c4ad8e20
7150324: Stop using drop bundles in jaxp
...
Reviewed-by: prr, joehw
2012-03-04 11:55:34 -08:00
Kelly O'Hair
855418d191
6894441: Add checksum checks, remove use of original sources in jax repositories, fix bundle logic
...
Reviewed-by: andrew
2009-10-23 11:05:51 -07:00
Xiomara Jayasena
b9490b461c
6884624: Update copyright year
...
Update copyright for files that have been modified in 2009 through Septermber
Reviewed-by: tbell, ohair
2009-09-22 14:06:16 -07:00
Abhijit Saha
9d6744c9fe
Merge
2009-08-03 12:20:04 -07:00
Xiomara Jayasena
632469b81d
6862919: Update copyright year
...
Update copyright for files that have been modified in 2009, up to 07/09
Reviewed-by: tbell, ohair
2009-07-28 12:12:45 -07:00
Abhijit Saha
95f53ce57b
6845701: Xerces2 Java XML library infinite loop with malformed XML input
...
Reviewed-by: hawtin
2009-06-22 13:56:30 -07:00
Tim Bell
0bbebf3a62
6588002: XSLTProcessorApplet still allows reading from forbidden URLs
...
Reviewed-by: darcy
2009-05-04 21:10:30 -07:00
Tim Bell
1633b4781d
6738894: Merge jaxp fixes from 6 update train into OpenJDK 6 and 7
...
6573268: Four JCK-devtools-6a tests report OOM: Java Heap space since JDK7 b14
Reviewed-by: darcy
2009-04-20 22:50:16 -07:00
J. Duke
74f4779697
Initial load
2007-12-01 00:00:00 +00:00