xsddoc/samples build.xml,1.7,1.8

Kurt Riede <[email protected]>
Newsgroups gmane.text.xml.xframe.xsddoc.devel
Message-ID <[email protected]>
Update of /cvsroot/xframe/xsddoc/samples
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26417/samples

Modified Files:
	build.xml 
Log Message:
new sample: ruleML

Index: build.xml
===================================================================
RCS file: /cvsroot/xframe/xsddoc/samples/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** build.xml	30 Aug 2004 07:05:48 -0000	1.7
--- build.xml	15 Sep 2004 15:18:06 -0000	1.8
***************
*** 1,3 ****
--- 1,23 ----
  <?xml version="1.0" encoding="UTF-8"?>
+ <!--
+ This file is part of the xframe software package
+ hosted at http://xframe.sourceforge.net
+ 
+ Copyright (c) 2003 Kurt Riede.
+ 
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+ 
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+ 
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ -->
  <project name="xframe-xsddoc-samples" default="all">
    <!--
***************
*** 9,29 ****
      target all
    -->
!   <target name="all" depends="samples"/>
    <!--
      define xsddoc task
    -->
!   <taskdef name="xsddoc" classname="net.sf.xframe.xsddoc.Task"/>
    <!--
!     target samples
    -->
!   <target name="samples" depends="docBookSample, xsddocSample, stressSample, XMLSchemaSample, envelopeSample, addressBookSample, castorSample">
    </target>
    <!--
    -->
!   <target name="stressSample">
!   	<mkdir dir="stress/html"/>
      <xsddoc file="stress/stress.xsd"
!              out="stress/html"
!          debug="true">
        <doctitle><![CDATA[Stress tests]]></doctitle>
        <header><![CDATA[Stress tests Header]]></header>
--- 29,52 ----
      target all
    -->
!   <target name="all" depends="samples" description="default target"/>
    <!--
      define xsddoc task
    -->
!   <taskdef name="xsddoc" classname="net.sf.xframe.xsddoc.Task">
!     <classpath path="../lib/xsddoc.jar"></classpath>
!   </taskdef>
    <!--
!     all samples
    -->
!   <target name="samples" depends="docBookSample, xsddocSample, stressSample, XMLSchemaSample, envelopeSample, addressBookSample, castorSample"
!     description="build all samples">
    </target>
    <!--
+     stress sample
    -->
!   <target name="stressSample" description="build stress sample">
!     <mkdir dir="stress/html"/>
      <xsddoc file="stress/stress.xsd"
!              out="stress/html">
        <doctitle><![CDATA[Stress tests]]></doctitle>
        <header><![CDATA[Stress tests Header]]></header>
***************
*** 39,115 ****
    </target>
    <!--
    -->
!   <target name="XMLSchemaSample">
!   	<mkdir dir="XMLSchema/html"/>
      <xsddoc file="XMLSchema/XMLSchema.xsd"
               out="XMLSchema/html"
!         doctitle="XML Schema for XML Schema"
!          verbose="true"/>
    </target>
    <!--
    -->
!   <target name="envelopeSample">
!   	<mkdir dir="soap/html"/>
      <xsddoc file="soap/envelope.xsd"
               out="soap/html"
!         doctitle="XML Schema for SOAP envelopes"
!            verbose="true"/>
    </target>
    <!--
    -->
!   <target name="docBookSample">
!   	<mkdir dir="DocBook/html"/>
      <xsddoc file="DocBook/docbook.xsd"
               out="DocBook/html"
!         doctitle="XML Schema of DocBook"
!          verbose="true"/>
    </target>
    <!--
    -->
!   <target name="addressBookSample">
!   	<mkdir dir="addressBook/html"/>
      <xsddoc file="addressBook/addressBook.xsd"
               out="addressBook/html"
!         doctitle="XML Schema for a simple address book"
!          verbose="true"/>
    </target>
    <!--
    -->
!   <target name="xsddocSample">
!   	<mkdir dir="xsddoc/html"/>
      <xsddoc file="xsddoc/xsddoc.xsd"
               out="xsddoc/html"
!         doctitle="XML Schema for XML documentation generated by xsddoc"
!          verbose="true"/>
    </target>
    <!--
    -->
!   <target name="castorSample">
!   	<mkdir dir="castor/html"/>
      <xsddoc dir="castor"
              out="castor/html"
!           title="Castor"
!         verbose="true"/>
    </target>
    <!--
    -->
!   <target name="xhtmlSample">
!   	<mkdir dir="xhtml/html"/>
      <xsddoc file="xhtml/xhtml1-strict.xsd"
              out="xhtml/html"
!           title="XHTML 1.0 (Second Edition) Strict"
!         verbose="true"/>
    </target>
    <!--
    -->
!   <target name="rulemlSample">
!   	<mkdir dir="ruleml/html"/>
!     <xsddoc out="ruleml/html"
!           title="XHTML 1.0 (Second Edition) Strict"
!         verbose="true">
!       <fileset dir="ruleml">
!         <include name="**/*.xsd"/>
!       </fileset>
!     </xsddoc>
    </target>
  </project>
--- 62,153 ----
    </target>
    <!--
+     XML Schema sample
    -->
!   <target name="XMLSchemaSample" description="build XML Schema sample">
!     <mkdir dir="XMLSchema/html"/>
      <xsddoc file="XMLSchema/XMLSchema.xsd"
               out="XMLSchema/html"
!         doctitle="XML Schema for XML Schema"/>
    </target>
    <!--
+     SOAP envelope sample
    -->
!   <target name="envelopeSample" description="build SOAP envelope sample">
!     <mkdir dir="soap/html"/>
      <xsddoc file="soap/envelope.xsd"
               out="soap/html"
!         doctitle="XML Schema for SOAP envelopes"/>
    </target>
    <!--
+     DocBook sample
    -->
!   <target name="docBookSample" description="build DocBook sample">
!     <mkdir dir="DocBook/html"/>
      <xsddoc file="DocBook/docbook.xsd"
               out="DocBook/html"
!         doctitle="XML Schema of DocBook"/>
    </target>
    <!--
+     address book sample
    -->
!   <target name="addressBookSample" description="build address book sample">
!     <mkdir dir="addressBook/html"/>
      <xsddoc file="addressBook/addressBook.xsd"
               out="addressBook/html"
!         doctitle="XML Schema for a simple address book"/>
    </target>
    <!--
+     xsddoc sample
    -->
!   <target name="xsddocSample" description="build xsddoc sample">
!     <mkdir dir="xsddoc/html"/>
      <xsddoc file="xsddoc/xsddoc.xsd"
               out="xsddoc/html"
!         doctitle="XML Schema for XML documentation generated by xsddoc"/>
    </target>
    <!--
+     Castor sample
    -->
!   <target name="castorSample" description="build Castor sample">
!     <mkdir dir="castor/html"/>
      <xsddoc dir="castor"
              out="castor/html"
!           title="Castor"/>
    </target>
    <!--
+     XHTML sample
    -->
!   <target name="xhtmlSample" description="build XHTML sample">
!     <mkdir dir="xhtml/html"/>
      <xsddoc file="xhtml/xhtml1-strict.xsd"
              out="xhtml/html"
!           title="XHTML 1.0 (Second Edition) Strict"/>
    </target>
    <!--
+     ruleML sample
    -->
!   <target name="rulemlSample" description="build ruleML sample">
!     <mkdir   dir="ruleml/equalog/html"/>
!     <xsddoc file="ruleml/equalog.xsd"
!              out="ruleml/equalog/html"
!            title="XML Schema for a Equational-Logic RuleML sublanguage"/>
! <!--
!       <mkdir   dir="ruleml/nafnegdatalog/html"/>
!     <xsddoc file="ruleml/nafnegdatalog.xsd"
!              out="ruleml/nafnegdatalog/html"
!            title="XML Schema for a Datalog RuleML sublanguage, including both explicit and default (strong/weak) negation"/>
!     <mkdir   dir="ruleml/negdatalog/html"/>
!     <xsddoc file="ruleml/negdatalog.xsd"
!              out="ruleml/negdatalog/html"
!            title="XML Schema for a Datalog RuleML sublanguage, including classical/strong negation"/>
!     <mkdir   dir="ruleml/nafdatalog/html"/>
!     <xsddoc file="ruleml/nafdatalog.xsd"
!              out="ruleml/nafdatalog/html"
!            title="XML Schema for a Datalog RuleML sublanguage, including negation as failure (NAF)"/>
!     <mkdir   dir="ruleml/bindatalog/html"/>
!     <xsddoc file="ruleml/bindatalog.xsd"
!              out="ruleml/bindatalog/html"
!            title="XML Schema for a Binary Datalog RuleML sublanguage"/>
! -->
    </target>
  </project>



-------------------------------------------------------
This SF.Net email is sponsored by: thawte's Crypto Challenge Vl
Crack the code and win a Sony DCRHC40 MiniDV Digital Handycam
Camcorder. More prizes in the weekly Lunch Hour Challenge.
Sign up NOW http://ad.doubleclick.net/clk;10740251;10262165;m
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.