Author: ajith
Date: Thu Feb 28 12:39:58 2008
New Revision: 632114
URL: http://svn.apache.org/viewvc?rev=632114&view=rev
Log:
1. Added filtering capabilities to the README and RELEASE-NOTE files. Due to a
bug (?) in maven assembly plugin I had add a separate filter properties file
2. Added the needed documentation to cater for the change in the API
Added:
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/filter.properties
Modified:
webservices/commons/branches/modules/XmlSchema/1.4/README.txt
webservices/commons/branches/modules/XmlSchema/1.4/RELEASE-NOTE.txt
webservices/commons/branches/modules/XmlSchema/1.4/pom.xml
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/bin.xml
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/src.xml
webservices/commons/branches/modules/XmlSchema/1.4/src/site/xdoc/download.xml
Modified: webservices/commons/branches/modules/XmlSchema/1.4/README.txt
URL:
http://svn.apache.org/viewvc/webservices/commons/branches/modules/XmlSchema/1.4/README.txt?rev=632114&r1=632113&r2=632114&view=diff
==============================================================================
--- webservices/commons/branches/modules/XmlSchema/1.4/README.txt (original)
+++ webservices/commons/branches/modules/XmlSchema/1.4/README.txt Thu Feb 28
12:39:58 2008
@@ -1,9 +1,9 @@
====================================
- XMLSchema Release Notes
+ XMLSchema Release Notes - Version ${version}
====================================
XMLSchema is a lightweight schema object model that can be used to manipulate
and
-generate XML schema representations. It has very few external dependancies and
can
+generate XML schema representations. It has very few external dependencies and
can
be easily integrated into an existing project.
You are welcome to kick the tires and get XMLSchema on the move. If you like
to
Modified: webservices/commons/branches/modules/XmlSchema/1.4/RELEASE-NOTE.txt
URL:
http://svn.apache.org/viewvc/webservices/commons/branches/modules/XmlSchema/1.4/RELEASE-NOTE.txt?rev=632114&r1=632113&r2=632114&view=diff
==============================================================================
--- webservices/commons/branches/modules/XmlSchema/1.4/RELEASE-NOTE.txt
(original)
+++ webservices/commons/branches/modules/XmlSchema/1.4/RELEASE-NOTE.txt Thu Feb
28 12:39:58 2008
@@ -1,13 +1,13 @@
====================================
- XMLSchema 1.3.2 Release Notes
+ XMLSchema ${version} Release Notes
====================================
-This is the release of XMLSchema 1.3.2 of Apache WS-Commons. This release
includes
+This is the release of XMLSchema ${version} of Apache WS-Commons. This release
includes
numerous bug fixes and a new feature addition that enables users to register
extension types with the schema parser.
XMLSchema is a lightweight schema object model that can be used to manipulate
-and generate XML schema representations. It has no external dependancies
+and generate XML schema representations. It has no external dependencies
and can be easily integrated into an existing project.
You are welcome to kick the tires and get XMLSchema on the move. If you like
@@ -15,6 +15,14 @@
submitting improvements to the documentation, and reporting bugs are always
welcome.
+Major Changes since the last release
+
+ * The behavior of the getElementByName(QName name) and getTypeByName(QName
name) has
+ changed. Now this method triggers a search in the complete schema tree
(including imported and
+ included schemas) for the specified type.
+ * Two new methods have been added etElementByName(String name) and
getTypeByName(String name) which
+ would perform the search only in the current schema.
+
Thanks for your interest in XMLSchema!
- The XMLSchema Development Team
Modified: webservices/commons/branches/modules/XmlSchema/1.4/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/commons/branches/modules/XmlSchema/1.4/pom.xml?rev=632114&r1=632113&r2=632114&view=diff
==============================================================================
--- webservices/commons/branches/modules/XmlSchema/1.4/pom.xml (original)
+++ webservices/commons/branches/modules/XmlSchema/1.4/pom.xml Thu Feb 28
12:39:58 2008
@@ -201,7 +201,14 @@
<name>Apache Software Foundation</name>
<url>http://www.apache.org/</url>
</organization>
- <build>
+ <build>
+ <!-- this entry here is for the assembly plugin- For some reason
+ the assembly plugin cannot override the filter properties
(as explained
+ in the docs) and also does not inherit the maven
standard properties. This
+ is the one that points to a seperare filter props file -->
+ <filters>
+ <filter>src/main/assembly/filter.properties</filter>
+ </filters>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
@@ -290,7 +297,7 @@
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
- <configuration>
+ <configuration>
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
<descriptor>src/main/assembly/src.xml</descriptor>
Modified:
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/bin.xml
URL:
http://svn.apache.org/viewvc/webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/bin.xml?rev=632114&r1=632113&r2=632114&view=diff
==============================================================================
---
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/bin.xml
(original)
+++
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/bin.xml
Thu Feb 28 12:39:58 2008
@@ -27,7 +27,13 @@
<fileSet>
<includes>
<include>*.txt</include>
- </includes>
+ </includes>
+ <!-- Note that we exclude these txt files and later
copy them with
+ filteres -->
+ <excludes>
+ <exclude>README.txt</exclude>
+ <exclude>RELEASE-NOTE.txt</exclude>
+ </excludes>
</fileSet>
<fileSet>
<directory>target</directory>
@@ -40,11 +46,22 @@
<exclude>*-sources.jar</exclude>
</excludes>
</fileSet>
- </fileSets>
+ </fileSets>
+ <files>
+ <file>
+ <source>README.txt</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ </file>
+ <file>
+ <source>RELEASE-NOTE.txt</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ </file>
+ </files>
<dependencySets>
<dependencySet>
<outputDirectory>/lib</outputDirectory>
-
</dependencySet>
</dependencySets>
</assembly>
Added:
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/filter.properties
URL:
http://svn.apache.org/viewvc/webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/filter.properties?rev=632114&view=auto
==============================================================================
---
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/filter.properties
(added)
+++
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/filter.properties
Thu Feb 28 12:39:58 2008
@@ -0,0 +1,25 @@
+#
+# ~ Licensed to the Apache Software Foundation (ASF) under one
+# ~ or more contributor license agreements. See the NOTICE file
+# ~ distributed with this work for additional information
+# ~ regarding copyright ownership. The ASF licenses this file
+# ~ to you under the Apache License, Version 2.0 (the
+# ~ "License"); you may not use this file except in compliance
+# ~ with the License. You may obtain a copy of the License at
+# ~
+# ~ http://www.apache.org/licenses/LICENSE-2.0
+# ~
+# ~ Unless required by applicable law or agreed to in writing,
+# ~ software distributed under the License is distributed on an
+# ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# ~ KIND, either express or implied. See the License for the
+# ~ specific language governing permissions and limitations
+# ~ under the License.
+#
+# This entry here is for the assembly plugin- For some reason
+# the assembly plugin cannot override the filter properties (as explained
+# in the docs) and also does not inherit the maven standard properties. This
+# is the one that points to a separate filter props file
+#
+
+version = 1.4
\ No newline at end of file
Modified:
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/src.xml
URL:
http://svn.apache.org/viewvc/webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/src.xml?rev=632114&r1=632113&r2=632114&view=diff
==============================================================================
---
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/src.xml
(original)
+++
webservices/commons/branches/modules/XmlSchema/1.4/src/main/assembly/src.xml
Thu Feb 28 12:39:58 2008
@@ -28,15 +28,28 @@
<include>*.txt</include>
<include>*.xml</include>
<include>*.properties</include>
- <!--<include>.classpath</include>-->
- <!--<include>.project</include>-->
- </includes>
+ </includes>
+ <!-- Note that we exclude these txt files and later copy them with
+ filteres -->
+ <excludes>
+ <exclude>README.txt</exclude>
+ <exclude>RELEASE-NOTE.txt</exclude>
+ </excludes>
</fileSet>
- <!--<fileSet>-->
- <!--<directory>.settings</directory>-->
- <!--</fileSet>-->
- <fileSet>
+ <fileSet>
<directory>src</directory>
</fileSet>
- </fileSets>
+ </fileSets>
+ <files>
+ <file>
+ <source>README.txt</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ </file>
+ <file>
+ <source>RELEASE-NOTE.txt</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>true</filtered>
+ </file>
+ </files>
</assembly>
Modified:
webservices/commons/branches/modules/XmlSchema/1.4/src/site/xdoc/download.xml
URL:
http://svn.apache.org/viewvc/webservices/commons/branches/modules/XmlSchema/1.4/src/site/xdoc/download.xml?rev=632114&r1=632113&r2=632114&view=diff
==============================================================================
---
webservices/commons/branches/modules/XmlSchema/1.4/src/site/xdoc/download.xml
(original)
+++
webservices/commons/branches/modules/XmlSchema/1.4/src/site/xdoc/download.xml
Thu Feb 28 12:39:58 2008
@@ -52,7 +52,49 @@
<td align="center" width="100">Date</td>
<td align="center" width="200">Description</td>
</tr>
-
+
+ <tr class="b">
+ <td align="center"
valign="middle">
+ 1.3.2
+ </td>
+ <td
align="center">Release</td>
+ <td>Source
Distribution
+ <a
href="[preferred]/ws/commons/XmlSchema/1_4/XmlSchema-1.4-src.zip"
+
title="[preferred]/ws/commons/XmlSchema/1_4/XmlSchema-1.4-src.zip">zip</a>
+
+ <a
href="http://www.apache.org/dist/ws/commons/XmlSchema/1_3_2/XmlSchema-1.4-src.zip.md5"
+
class="externalLink"
+
title="http://www.apache.org/dist/ws/commons/XmlSchema/1_4/XmlSchema-1.4-src.zip.md5">MD5</a>
+ <a
href="http://www.apache.org/dist/ws/commons/XmlSchema/1_4/XmlSchema-1.4-src.zip.asc"
+
class="externalLink"
+
title="http://www.apache.org/dist/ws/commons/XmlSchema/1_4/XmlSchema-1.4-src.zip.asc">PGP</a>
+ <br/>
+ Binary
Distribution
+ <a
href="[preferred]/ws/commons/XmlSchema/1_4/XmlSchema-1.4-bin.zip"
+
title="[preferred]/ws/commons/XmlSchema/1_4/XmlSchema-1.4-bin.zip">zip</a>
+ <a
href="http://www.apache.org/dist/ws/commons/XmlSchema/1_4/XmlSchema-1.4-bin.zip.md5"
+
class="externalLink"
+
title="http://www.apache.org/dist/ws/commons/XmlSchema/1_4/XmlSchema-1.4-bin.zip.md5">MD5</a>
+ <a
href="http://www.apache.org/dist/ws/commons/XmlSchema/1_4/XmlSchema-1.4-bin.zip.asc"
+
class="externalLink"
+
title="http://www.apache.org/dist/ws/ws/commons/XmlSchema/1_4/XmlSchema-1.4-bin.zip.asc">
+
PGP</a>
+ <br/>
+ Documents
Distribution
+ <a
href="[preferred]/ws/commons/XmlSchema/1_4/XmlSchema-1.4-docs.zip"
+
title="[preferred]/ws/commons/XmlSchema/1_4/XmlSchema-1.4-docs.zip">zip</a>
+ <a
href="http://www.apache.org/dist/ws/commons/XmlSchema/1_4/XmlSchema-1.4-docs.zip.md5"
+
class="externalLink"
+
title="http://www.apache.org/dist/ws/commons/XmlSchema/1_4/XmlSchema-1.4-docs.zip.md5">MD5</a>
+ <a
href="http://www.apache.org/dist/ws/commons/XmlSchema/1_4/XmlSchema-1.4-docs.zip.asc"
+
class="externalLink"
+
title="http://www.apache.org/dist/ws/ws/commons/XmlSchema/1_4/XmlSchema-1.4-docs.zip.asc">
+
PGP</a>
+ <br/>
+ </td>
+ <td>24 - 07
- 2007</td>
+ <td>1.3.2
Release (Mirrored)</td>
+ </tr>
<tr class="b">
<td align="center"
valign="middle">
1.3.2
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]