[rfc][icedtea-web] u51 classpath manifest entry implementation
Jiri Vanek
jvanek at redhat.com
Wed Feb 5 10:13:08 PST 2014
Hi!
So here is first impelmentation of more complex D-I-D manifest attributes:
http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/manifest.html
the codebase
http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/manifest.html#codebase
The classapth matcher is quite complex, as its going to be reused in
Application-Library-Allowable-Codebase and Caller-Allowable-Codebase Attribute
The patch is divided into three parts
implementation and tests of classpath matcher itself
the integration int jnlp classlaoder
and the reprodcuers for most of the cases.
There is a flaw in "specification"
http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/manifest.html#codebase
It says: *.example.com matches https://example.com, http://example.com
I must disagree with this - where the dot disappeared?
So in my implmentation
*.example.com DON'T matches https://example.com, http://example.com.
It macthes only https://a.example.com, http://a.example.com https://a.b.example.com,
http://a.b.example.com ....
I wrote to oracle, but I got no reply :(
Also my current implementation ignores when protocol is file.
Thanx!
J.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: classpathAttribute-impl.diff
Type: text/x-patch
Size: 37955 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20140205/03dead34/classpathAttribute-impl-0001.diff
-------------- next part --------------
A non-text attachment was scrubbed...
Name: classpathAttribute-integration.patch
Type: text/x-patch
Size: 30544 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20140205/03dead34/classpathAttribute-integration-0001.patch
-------------- next part --------------
A non-text attachment was scrubbed...
Name: classpathAttribute-tests.diff
Type: text/x-patch
Size: 81976 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20140205/03dead34/classpathAttribute-tests-0001.diff
More information about the distro-pkg-dev
mailing list