jochen      2005/05/19 23:58:59

  Modified:    src/xs/org/apache/ws/jaxme/xs/junit Tag: v0_4
                        ParserTest.java
               src/documentation/content/xdocs Tag: v0_4 news.xml site.xml
               .        Tag: v0_4 status.xml build.xml
  Log:
  Prepared 0.4 final.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.20.2.4  +6 -0      
ws-jaxme/src/xs/org/apache/ws/jaxme/xs/junit/ParserTest.java
  
  Index: ParserTest.java
  ===================================================================
  RCS file: 
/home/cvs/ws-jaxme/src/xs/org/apache/ws/jaxme/xs/junit/ParserTest.java,v
  retrieving revision 1.20.2.3
  retrieving revision 1.20.2.4
  diff -u -r1.20.2.3 -r1.20.2.4
  --- ParserTest.java   18 May 2005 22:20:56 -0000      1.20.2.3
  +++ ParserTest.java   20 May 2005 06:58:59 -0000      1.20.2.4
  @@ -333,6 +333,12 @@
       isource.setSystemId("testElements.xsd");
       XSSchema schema = pParser.parse(isource);
   
  +    XSAttribute[] attrs = schema.getAttributes();
  +    assertEquals(1, attrs.length);
  +    XSAttribute id = attrs[0];
  +    assertEquals(new XsQName((String) null, "id"), id.getName());
  +    assertEquals(XSID.getInstance(), id.getType());
  +
       XSObject[] elements = schema.getElements();
       assertEquals(4, elements.length);
   
  
  
  
  No                   revision
  No                   revision
  1.8.2.1   +3 -0      ws-jaxme/src/documentation/content/xdocs/news.xml
  
  Index: news.xml
  ===================================================================
  RCS file: /home/cvs/ws-jaxme/src/documentation/content/xdocs/news.xml,v
  retrieving revision 1.8
  retrieving revision 1.8.2.1
  diff -u -r1.8 -r1.8.2.1
  --- news.xml  12 Apr 2005 08:17:18 -0000      1.8
  +++ news.xml  20 May 2005 06:58:59 -0000      1.8.2.1
  @@ -23,6 +23,9 @@
     </header> 
     <body>
       <dl>
  +      <dt>2005-May-19: JaxMe 0.4 Released</dt>
  +      <dd>Compared to the beta version, no new features have been introduced.
  +        A few bugs have been fixed, mainly concerning the nested group 
support.</dd>
         <dt>2005-Apr-12: JaxMe 0.4beta Released</dt>
         <dd>This release introduces support for nested groups with 
multiplicity &lt;= 1.
           In particular, xs:extension is supported now.</dd>
  
  
  
  1.23.2.1  +4 -4      ws-jaxme/src/documentation/content/xdocs/site.xml
  
  Index: site.xml
  ===================================================================
  RCS file: /home/cvs/ws-jaxme/src/documentation/content/xdocs/site.xml,v
  retrieving revision 1.23
  retrieving revision 1.23.2.1
  diff -u -r1.23 -r1.23.2.1
  --- site.xml  12 Apr 2005 09:58:40 -0000      1.23
  +++ site.xml  20 May 2005 06:58:59 -0000      1.23.2.1
  @@ -43,11 +43,11 @@
     </about>
   
     <docs label="Documentation">
  -<!-- build.online.site=false
  +<!-- build.online.site=false -->
       <manual label="Manual" href="manual/index.html"/>
       <javadoc label="Javadocs" href="apidocs/index.html"/>    
  --->
  -<!-- build.online.site=true -->
  +<!-- build.online.site -->
  +<!-- build.online.site=true
       <manual label="Manual">
           <manual label="Current" href="manual/index.html"/>
           <manual label="0.3" href="release-0.3/manual/index.html"/>
  @@ -56,7 +56,7 @@
           <javadoc label="Current" href="apidocs/index.html"/>    
           <javadoc label="0.3" href="release-0.3/apidocs/index.html"/>
       </javadoc>
  -<!-- build.online.site -->
  +-->
     </docs>
   
     <developers label="Developer Resources">
  
  
  
  No                   revision
  No                   revision
  1.45.2.9  +1 -1      ws-jaxme/status.xml
  
  Index: status.xml
  ===================================================================
  RCS file: /home/cvs/ws-jaxme/status.xml,v
  retrieving revision 1.45.2.8
  retrieving revision 1.45.2.9
  diff -u -r1.45.2.8 -r1.45.2.9
  --- status.xml        19 May 2005 20:30:52 -0000      1.45.2.8
  +++ status.xml        20 May 2005 06:58:59 -0000      1.45.2.9
  @@ -30,7 +30,7 @@
     </todo>
   
     <changes>
  -    <release version="0.4" date="Not yet published">
  +    <release version="0.4" date="2005-May-19">
         <action dev="JW" type="fix" context="xs">
           The methods XSSimpleContentImpl.isEmpty(),
           XSSimpleContentImpl.isMixed(), and
  
  
  
  1.25.2.1  +1 -1      ws-jaxme/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-jaxme/build.xml,v
  retrieving revision 1.25
  retrieving revision 1.25.2.1
  diff -u -r1.25 -r1.25.2.1
  --- build.xml 12 Apr 2005 09:58:40 -0000      1.25
  +++ build.xml 20 May 2005 06:58:59 -0000      1.25.2.1
  @@ -14,7 +14,7 @@
    * limitations under the License.
   -->
   <project name="JaxMe" default="all">
  -    <property name="version" value="0.4beta"/>
  +    <property name="version" value="0.5-dev"/>
       <property name="debug" value="true"/>
       <property name="optimize" value="false"/>   
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to