xsddoc project.xml,NONE,1.1 project.properties,NONE,1.1 checkstyle.xml,NONE,1.1 build.xml,1.17,1.18 readme.txt,1.11,1.12 build.version,1.5,1.6 .cvsignore,1.4,1.5
Kurt Riede <[email protected]>
| Newsgroups | gmane.text.xml.xframe.xsddoc.devel |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/xframe/xsddoc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26652
Modified Files:
build.xml readme.txt build.version .cvsignore
Added Files:
project.xml project.properties checkstyle.xml
Log Message:
preparations for oncoming release 0.6-beta, switch to build with Apache Maven
Index: .cvsignore
===================================================================
RCS file: /cvsroot/xframe/xsddoc/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** .cvsignore 5 Aug 2004 21:23:53 -0000 1.4
--- .cvsignore 15 Sep 2004 15:19:03 -0000 1.5
***************
*** 4,5 ****
--- 4,9 ----
classes
patch
+ .maven
+ target
+ velocity.log
+ .cvspass
Index: build.xml
===================================================================
RCS file: /cvsroot/xframe/xsddoc/build.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** build.xml 21 Jun 2004 09:43:55 -0000 1.17
--- build.xml 15 Sep 2004 15:19:03 -0000 1.18
***************
*** 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-build" default="all">
<!--
--- NEW FILE: project.xml ---
<?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>
<pomVersion>3</pomVersion>
<id>xsddoc</id>
<name>xsddoc</name>
<groupId>xframe</groupId>
<currentVersion>0.6-beta</currentVersion>
<organization>
<name>xframe</name>
<url>http://xframe.sf.net/</url>
<logo>/images/project-logo.png</logo>
</organization>
<inceptionYear>2004</inceptionYear>
<package>net.sf.xframe</package>
<description>
The xsddoc subproject is a XML Schema documentation generator
for W3C XML Schemas.
</description>
<shortDescription>XML schema documenation generator</shortDescription>
<url>http://xframe.sf.net/xsddoc.html</url>
<siteDirectory>/home/groups/x/xf/xframe/htdocs</siteDirectory>
<issueTrackingUrl>http://sourceforge.net/tracker/?group_id=48863&atid=454391</issueTrackingUrl>
<repository>
<connection>scm:cvs:pserver:[email protected]:/cvsroot/xframe:xsddoc</connection>
<developerConnection>scm:[email protected]:/cvsroot/xframe:xsddoc</developerConnection>
<url>http://cvs.sourceforge.net/viewcvs.py/xframe/xsddoc/</url>
</repository>
<siteAddress>xframe.sourceforge.net</siteAddress>
<siteDirectory>/home/groups/x/xf/xframe/htdocs</siteDirectory>
<versions>
<version>
<id>b3</id>
<name>0.6-beta</name>
<tag>XSDDOC_0_6</tag>
</version>
</versions>
<mailingLists>
<mailingList>
<name>xsddoc user list</name>
<subscribe>http://lists.sourceforge.net/mailman/listinfo/xframe-xsddoc</subscribe>
<unsubscribe>http://lists.sourceforge.net/mailman/listinfo/xframe-xsddoc</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=xframe-xsddoc</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<name>Kurt Riede</name>
<id>kriede</id>
<email>[email protected]</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.5.3-1</version>
<type>jar</type>
<url>http://ant.apache.org</url>
<properties/>
</dependency>
<dependency>
<groupId>maven-validator</groupId>
<artifactId>maven-xhtml-plugin</artifactId>
<version>1.2</version>
<type>plugin</type>
</dependency>
</dependencies>
<build>
<nagEmailAddress>[email protected]</nagEmailAddress>
<sourceDirectory>/src</sourceDirectory>
<unitTestSourceDirectory>/test</unitTestSourceDirectory>
<aspectSourceDirectory/>
<unitTest>
<includes>
<include>**/*Test.java</include>
</includes>
<excludes>
<exclude>**/RepositoryTest.java</exclude>
</excludes>
</unitTest>
<resources>
<resource>
<directory>${basedir}/src</directory>
<includes>
<include>**/*.xsl</include>
</includes>
</resource>
</resources>
<integrationUnitTest/>
<jars>
</jars>
</build>
<reports>
<report>maven-jdepend-plugin</report>
<report>maven-checkstyle-plugin</report>
<report>maven-changes-plugin</report>
<report>maven-changelog-plugin</report>
<report>maven-file-activity-plugin</report>
<report>maven-developer-activity-plugin</report>
<report>maven-javadoc-plugin</report>
<report>maven-jxr-plugin</report>
<report>maven-junit-report-plugin</report>
<report>maven-license-plugin</report>
<report>maven-tasklist-plugin</report>
<report>maven-simian-plugin</report>
<report>maven-linkcheck-plugin</report>
<report>maven-xhtml-plugin</report>
</reports>
</project>
--- NEW FILE: checkstyle.xml ---
<?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
-->
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN" "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
<module name="Checker">
<module name="TreeWalker">
<module name="com.puppycrawl.tools.checkstyle.checks.ArrayTypeStyleCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck">
<property name="severity" value="warning"/>
<property name="tokens" value="METHOD_DEF, CTOR_DEF"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.GenericIllegalRegexpCheck">
<property name="format" value="\s+$"/>
<property name="ignoreCase" value="false"/>
<property name="message" value="Line has trailing spaces."/>
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.ModifierOrderCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.RedundantModifierCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.TodoCommentCheck">
<property name="format" value="TODO:"/>
<property name="severity" value="ignore"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.UpperEllCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.blocks.AvoidNestedBlocksCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.blocks.EmptyBlockCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.blocks.LeftCurlyCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.blocks.NeedBracesCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.blocks.RightCurlyCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.AvoidInlineConditionalsCheck">
<property name="severity" value="ignore"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.DoubleCheckedLockingCheck">
<property name="severity" value="error"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.EmptyStatementCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.EqualsHashCodeCheck">
<property name="severity" value="error"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.HiddenFieldCheck">
<property name="ignoreConstructorParameter" value="true"/>
<property name="ignoreSetter" value="false"/>
<property name="severity" value="error"/>
<property name="tokens" value="PARAMETER_DEF, VARIABLE_DEF"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.IllegalInstantiationCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.InnerAssignmentCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.MagicNumberCheck">
<property name="ignoreNumbers" value="-1, 0, 1, 2, 3"/>
<property name="severity" value="warning"/>
<property name="tokens" value="NUM_DOUBLE, NUM_FLOAT, NUM_INT, NUM_LONG"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.MissingSwitchDefaultCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.RedundantThrowsCheck">
<property name="allowSubclasses" value="false"/>
<property name="allowUnchecked" value="true"/>
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.SimplifyBooleanExpressionCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.coding.SimplifyBooleanReturnCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.design.DesignForExtensionCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.design.FinalClassCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.design.HideUtilityClassConstructorCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.design.InterfaceIsTypeCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.design.MutableExceptionCheck">
<property name="format" value="^.*Exception$|^.*Error$"/>
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.design.ThrowsCountCheck">
<property name="max" value="4"/>
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.design.VisibilityModifierCheck">
<property name="packageAllowed" value="false"/>
<property name="protectedAllowed" value="false"/>
<property name="publicMemberPattern" value="^serialVersionUID"/>
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.imports.AvoidStarImportCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.imports.IllegalImportCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.imports.RedundantImportCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.imports.UnusedImportsCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck">
<property name="allowMissingParamTags" value="false"/>
<property name="allowMissingReturnTag" value="false"/>
<property name="allowMissingThrowsTags" value="false"/>
<property name="allowThrowsTagsForSubclasses" value="false"/>
<property name="allowUndeclaredRTE" value="false"/>
<property name="scope" value="protected"/>
<property name="severity" value="warning"/>
<property name="tokens" value="METHOD_DEF, CTOR_DEF"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocStyleCheck">
<property name="checkFirstSentence" value="true"/>
<property name="checkHtml" value="true"/>
<property name="scope" value="protected"/>
<property name="severity" value="warning"/>
<property name="tokens" value="INTERFACE_DEF, CLASS_DEF, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocTypeCheck">
<property name="scope" value="protected"/>
<property name="severity" value="warning"/>
<property name="tokens" value="CLASS_DEF, INTERFACE_DEF"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocVariableCheck">
<property name="scope" value="protected"/>
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.naming.ConstantNameCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.naming.LocalFinalVariableNameCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.naming.LocalVariableNameCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.naming.MemberNameCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.naming.MethodNameCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.naming.PackageNameCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.naming.StaticVariableNameCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.naming.TypeNameCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.sizes.FileLengthCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.sizes.LineLengthCheck">
<property name="ignorePattern" value="^$"/>
<property name="max" value="128"/>
<property name="severity" value="warning"/>
<property name="tabWidth" value="4"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.sizes.MethodLengthCheck">
<property name="countEmpty" value="true"/>
<property name="max" value="100"/>
<property name="severity" value="warning"/>
<property name="tokens" value="METHOD_DEF, CTOR_DEF"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.sizes.ParameterNumberCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.whitespace.EmptyForIteratorPadCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.whitespace.NoWhitespaceAfterCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.whitespace.NoWhitespaceBeforeCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.whitespace.OperatorWrapCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.whitespace.ParenPadCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.whitespace.TabCharacterCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.whitespace.WhitespaceAfterCheck">
<property name="severity" value="warning"/>
</module>
<module name="com.puppycrawl.tools.checkstyle.checks.whitespace.WhitespaceAroundCheck">
<property name="severity" value="warning"/>
</module>
</module>
</module>
--- NEW FILE: project.properties ---
# -------------------------------------------------------------------
# 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
# -------------------------------------------------------------------
# -------------------------------------------------------------------
# P R O J E C T P R O P E R T I E S
# -------------------------------------------------------------------
maven.final.name = xsddoc
maven.build.dir = ${basedir}/target
maven.gen.docs = ${maven.build.dir}/generated-xdocs
maven.jar.manifest = manifest.mf
# -------------------------------------------------------------------
# C O M P I L E
# -------------------------------------------------------------------
maven.compile.target=1.3
# -------------------------------------------------------------------
# T E S T I N G
# -------------------------------------------------------------------
# This is to test a feature where a value is defined in a properties file
# and is available for use inside the POM.
pomProperty = value
# -------------------------------------------------------------------
# C H E C K S T Y L E P R O P E R T I E S
# -------------------------------------------------------------------
maven.checkstyle.properties = ${basedir}/checkstyle.xml
# maven.checkstyle.header.file = ${basedir}/checkstyle-license.txt
# -------------------------------------------------------------------
# P M D / C P D P R O P E R T I E S
# -------------------------------------------------------------------
maven.pmd.cpd.enable = true
# -------------------------------------------------------------------
# S I M I A N P R O P E R T I E S
# -------------------------------------------------------------------
maven.simian.linecount = 4
# -------------------------------------------------------------------
# J A V A D O C P R O P E R T I E S
# -------------------------------------------------------------------
# maven.javadoc.links = http://jakarta.apache.org/commons/jelly/apidocs/
# -------------------------------------------------------------------
# X D O C P R O P E R T I E S
# -------------------------------------------------------------------
# Display the date on the Maven web site
maven.xdoc.date = left
maven.xdoc.date.format = dd.MM.yyyy HH:mm z
# Display the maven version the web site is documenting
#maven.xdoc.version = ${pom.currentVersion}
#------------------------------------------------------------------
# N S I S P R O P E R T I E S
#------------------------------------------------------------------
# maven.nsis.src=${basedir}/src/installer/nsis
# maven.nsis.logo=${maven.nsis.src}/maven.bmp
# maven.nsis.logo.position=left
# maven.nsis.logo.widthHeight=70
#------------------------------------------------------------------
# H T M L 2 X D O C P R O P E R T I E S
#------------------------------------------------------------------
maven.html2xdoc.enable=true
#------------------------------------------------------------------
# P D F P R O P E R T I E S
#------------------------------------------------------------------
# maven.pdf.projectLogo=http://maven.apache.org/images/xsddoc-logo.gif
maven.pdf.companyLogo=http://maven.apache.org/images/project-logo.png
maven.pdf.navigationFile=navigation-pdf.xml
#------------------------------------------------------------------
# L I C E N S E
#------------------------------------------------------------------
maven.license.licenseFile=legal/LICENSE.txt
#------------------------------------------------------------------
# B O O T S T R A P
#------------------------------------------------------------------
# ------------------------------------------------------------------------------
# bootstrap is offline or online - online by default . Pass this property
# as -o from the command prompt if you are offline
# Online mode:
# maven.bootstrap.online =
# Offline mode:
# maven.bootstrap.online = -o
# ------------------------------------------------------------------------------
maven.bootstrap.online=
# ------------------------------------------------------------------------------
# The bootstrap classes consist of an Ant task front that:
#
# a) parses the POM using a simple subclass of DefaultHandler
# b) downloads Maven's dependencies
# ------------------------------------------------------------------------------
maven.bootstrap.classes = ${maven.bootstrap.dir}/bootstrap-classes
# ------------------------------------------------------------------------------
# The phase1 classes are all the Maven classes compiled using Ant instead
# of Maven itself.
# ------------------------------------------------------------------------------
maven.bootstrap.phase1.classes = ${maven.bootstrap.dir}/phase1-classes
maven.bootstrap.install.dir = ${maven.bootstrap.dir}/install-phase1
maven.bootstrap.bin.dir = ${maven.bootstrap.dir}/bin
maven.lite.plugins=artifact,clean,console,deploy,dist,genapp,jar,java,license,multiproject,plugin,pom,release,repository,scm,site,test,war,xdoc,developer-activity,file-activity,javadoc,jdepend,jellydoc,junit-report,jxr,linkcheck,pmd,tasklist
# jdk1.3 compat
maven.junit.fork=yes
maven.junit.sysproperties=maven.home
# Distribution location
maven.repo.central = www.apache.org
maven.repo.central.directory = /www/www.apache.org/dist/java-repository/
Index: readme.txt
===================================================================
RCS file: /cvsroot/xframe/xsddoc/readme.txt,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** readme.txt 20 Jun 2004 21:46:26 -0000 1.11
--- readme.txt 15 Sep 2004 15:19:03 -0000 1.12
***************
*** 22,30 ****
1. Download
! The latest release 0.5-beta of xsddoc is available in two version:
! If you already have Apache xalan and xerces on your classpath, the standard
distribution should be your choice. Otherwise download the full distribution
to have all required libraries. Both distributions are available once in ZIP
! format for Win32 users and once as tar.gz fpr Unix/Linux users.
here you can download xframe - xsddoc:
--- 22,30 ----
1. Download
! This release 0.6-beta of xsddoc is available in two version:
! If you already have Apache Xalan and Xerces on your classpath, the standard
distribution should be your choice. Otherwise download the full distribution
to have all required libraries. Both distributions are available once in ZIP
! format for Win32 users and once as tar.gz for Unix/Linux users.
here you can download xframe - xsddoc:
***************
*** 91,95 ****
-f -footer <footer> Set the documentation footer
-b -bottom <bottom> Set the documentation bottom
- -v -verbose Output messages about what xsddoc is doing
-s -hideSubTypes hide sub types references
-l -hideSubLocalUsage hide show local usage references
--- 91,94 ----
***************
*** 99,102 ****
--- 98,103 ----
-xml output as XML instead of HTML
-version Only output version of xsddoc
+ -v -verbose Output messages about what xsddoc is doing
+ -q -quiet Be quiet about what xsddoc is doing
-d -debug Output debug messages
-? -help Print this help message
***************
*** 126,131 ****
file path to location of schema
dir folder of schemas
! out optional, path to output folder (default: .)
! doctitle optional, descriptibe title of schema
header Include header text for each page (html-code) (default: no)
footer Include footer text for each page (html-code) (default: no)
--- 127,132 ----
file path to location of schema
dir folder of schemas
! out optional, path to output folder (default: .)
! doctitle optional, descriptibe title of schema
header Include header text for each page (html-code) (default: no)
footer Include footer text for each page (html-code) (default: no)
***************
*** 135,144 ****
nested filesets points to a directory that doesn't
exist or an error occurs while copying. (default: no)
! debug optional boolean, debug output (default: false)
! verbose optional boolean, verbose output (default: false)
xml optional boolean, if XML should be generated
! insteadof html for schema components (default: false)
! hideSubTypes optional boolean, if sub types reference should be hidden (default: false)
! hideLocalUsage optional boolean, if local usage reference should be hidden (default: false)
hideTypes hide types in overview pages (default: false)
hideGroups hide groups in overview pages (default: false)
--- 136,146 ----
nested filesets points to a directory that doesn't
exist or an error occurs while copying. (default: no)
! verbose optional boolean, verbose output (default: true)
! quiet optional boolean, quiet output (default: false)
! debug optional boolean, debug output (default: false)
xml optional boolean, if XML should be generated
! insteadof html for schema components (default: false)
! hideSubTypes optional boolean, if sub types reference should be hidden (default: false)
! hideLocalUsage optional boolean, if local usage reference should be hidden (default: false)
hideTypes hide types in overview pages (default: false)
hideGroups hide groups in overview pages (default: false)
Index: build.version
===================================================================
RCS file: /cvsroot/xframe/xsddoc/build.version,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** build.version 25 Jun 2004 07:04:37 -0000 1.5
--- build.version 15 Sep 2004 15:19:03 -0000 1.6
***************
*** 1 ****
! build.version=0.5-beta
--- 1 ----
! build.version=0.6-beta
-------------------------------------------------------
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