Author: chinthaka
Date: Fri Apr 7 06:09:42 2006
New Revision: 392275
URL: http://svn.apache.org/viewcvs?rev=392275&view=rev
Log:
Updating release notes and docs, etc
Modified:
webservices/commons/trunk/modules/axiom/README.txt
webservices/commons/trunk/modules/axiom/RELEASE-NOTE.txt
webservices/commons/trunk/modules/axiom/xdocs/OMTutorial.html
Modified: webservices/commons/trunk/modules/axiom/README.txt
URL:
http://svn.apache.org/viewcvs/webservices/commons/trunk/modules/axiom/README.txt?rev=392275&r1=392274&r2=392275&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/README.txt (original)
+++ webservices/commons/trunk/modules/axiom/README.txt Fri Apr 7 06:09:42 2006
@@ -1,5 +1,5 @@
======================================================
-Apache AXIOM 0.95 build (March 23rd, 2006)
+Apache AXIOM 1.0 RC1 (April 7, 2006)
http://ws.apache.org/commons/axiom/
------------------------------------------------------
Modified: webservices/commons/trunk/modules/axiom/RELEASE-NOTE.txt
URL:
http://svn.apache.org/viewcvs/webservices/commons/trunk/modules/axiom/RELEASE-NOTE.txt?rev=392275&r1=392274&r2=392275&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/RELEASE-NOTE.txt (original)
+++ webservices/commons/trunk/modules/axiom/RELEASE-NOTE.txt Fri Apr 7
06:09:42 2006
@@ -1,19 +1,20 @@
====================================
- AXIOM 0.95 Release Note
+ AXIOM 1.0 RC1 Release Note
====================================
-This is AXIOM 0.95 release of the Apache WS-Commons.
+This is AXIOM 1.0 RC1 release of the Apache AXIOM project.
-AXIOM Complete Features List in this Release :
+The Complete Features List :
Full infoset compliant XML object model
StAX based builders
MTOM support
Convenient SOAP API
Linked list based implementation
+ AXIOM based DOM implementation
-AXIOM is taking shape, this 0.95 release is a glimpse of 1.0 that should be
coming soon. If you like to contribute to AXIOM please help us to shape AXIOM.
Any contribution in the form of coding, testing, submitting improvements to the
documentation, and reporting bugs are always welcome.
+AXIOM is taking shape, this 1.0 RC1 is the release candidate of 1.0 that
should be coming soon. If you like to contribute to AXIOM please help us to
shape AXIOM. Any contribution in the form of coding, testing, submitting
improvements to the documentation, and reporting bugs are always welcome.
Thanks for your interest in AXIOM!
Modified: webservices/commons/trunk/modules/axiom/xdocs/OMTutorial.html
URL:
http://svn.apache.org/viewcvs/webservices/commons/trunk/modules/axiom/xdocs/OMTutorial.html?rev=392275&r1=392274&r2=392275&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/xdocs/OMTutorial.html (original)
+++ webservices/commons/trunk/modules/axiom/xdocs/OMTutorial.html Fri Apr 7
06:09:42 2006
@@ -360,7 +360,7 @@
OMNamespace ns2 = root.declareNamespace("bar1","y");
OMElement elt1 = factory.createOMElement("foo",ns1);
OMElement elt2 = factory.createOMElement("yuck",ns2);
-OMText txt1 = factory.createText(elt2,"blah");
+OMText txt1 = factory.createOMText(elt2,"blah");
elt2.addChild(txt1);
elt1.addChild(elt2);
root.addChild(elt1);</pre>
@@ -584,8 +584,8 @@
OMElement elt1 = factory.createOMElement("foo",ns1);
OMElement elt2 = factory.createOMElement("yuck",ns2);
<b>OMElement elt3 = factory.createOMElement("yuck",ns2);</b>
-OMText txt1 = factory.createText(elt2,"blah");
-<b>OMText txt2 = factory.createText(elt3,"blahblah");
+OMText txt1 = factory.createOMText(elt2,"blah");
+<b>OMText txt2 = factory.createOMText(elt3,"blahblah");
elt3.addchild(txt2);</b>
elt2.addChild(txt1);
elt1.addChild(elt2);