Start to refactor docs / dist into root

This commit is contained in:
dsyer
2009-02-19 13:52:55 +00:00
parent 164ce4f60d
commit c521cf3189
100 changed files with 34 additions and 114 deletions

View File

@@ -1,17 +1,9 @@
Manifest-Version: 1.0
Export-Package: example;version="2.0.0.CI-SNAPSHOT";uses:="org.springf
ramework.batch.item",test.jdbc.datasource;version="2.0.0.CI-SNAPSHOT"
;uses:="javax.sql,org.apache.commons.logging,org.springframework.bean
s.factory,org.springframework.core.io,org.springframework.transaction
,org.springframework.transaction.support"
Bundle-Classpath: .
Bundle-Version: 2.0.0.CI-SNAPSHOT
Built-By: dsyer
Build-Jdk: 1.6.0_10
Bundle-Name: Spring Batch Cammand Line Archetype
Bundle-ManifestVersion: 2
Archiver-Version: Plexus Archiver
Build-Jdk: 1.5.0_09
Built-By: dsyer
Created-By: Apache Maven
Bundle-SymbolicName: org.springframework.batch.archetype.simple.cli
Import-Package: javax.sql,org.apache.commons.io;version="[1.4.0, 2.0.0
)";resolution:=optional,org.apache.commons.logging;version="[1.1.0, 2
.0.0)",org.springframework.batch.core.job;version="[2.0.0, 3.0.0)",or
@@ -27,5 +19,11 @@ Import-Package: javax.sql,org.apache.commons.io;version="[1.4.0, 2.0.0
on="[2.5.5, 3.0.0)";resolution:=optional,org.springframework.transact
ion.support;version="[2.5.5, 3.0.0)";resolution:=optional,org.springf
ramework.util;version="[2.5.5, 3.0.0)";resolution:=optional
Archiver-Version: Plexus Archiver
Bundle-ManifestVersion: 2
Bundle-SymbolicName: org.springframework.batch.archetype.simple.cli
Export-Package: example;version="${version}";uses:="org.springframewor
k.batch.item",test.jdbc.datasource;version="${version}";uses:="javax.
sql,org.apache.commons.logging,org.springframework.core.io,org.spring
framework.transaction"
Bundle-Version: ${version}

View File

@@ -22,7 +22,7 @@
<link>
<name>central-pom.xml</name>
<type>1</type>
<location>SPRING_BATCH/central-pom.xml</location>
<locationURI>SPRING_BATCH/central-pom.xml</locationURI>
</link>
<link>
<name>pom.xml</name>

View File

@@ -3,8 +3,8 @@
<fileSets>
<fileSet>
<includes>
<include>license.txt</include>
<include>notice.txt</include>
<include>src/assembly/license.txt</include>
<include>src/assembly/notice.txt</include>
</includes>
</fileSet>
<fileSet>

View File

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -1,17 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes" encoding="UTF-8"
indent="yes" />
<xsl:param name="project" />
<xsl:template match="/report/data/all">
<xsl:element name="project">
<xsl:attribute name="name"><xsl:value-of select="$project" />
</xsl:attribute>
<xsl:apply-templates select="coverage" />
</xsl:element>
</xsl:template>
<xsl:template match="coverage">
<xsl:copy-of select="." />
</xsl:template>
</xsl:stylesheet>

View File

@@ -1,81 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes" encoding="UTF-8"
indent="yes" />
<xsl:param name="project" />
<xsl:param name="version" />
<xsl:template match="/summary">
<html>
<head>
<meta content="text/html; charset=UTF-8"
http-equiv="Content-Type" />
<title><xsl:value-of select="$project" /> Coverage Report</title>
<style TYPE="text/css">
@import url("../css/maven-base.css");
@import url("../css/maven-theme.css");
@import url("../css/site.css");
</style>
</head>
<body class="composite">
<div id="banner">
<a href="http://www.springframework.org/"
id="bannerLeft">
<xsl:value-of select="$project" />
</a>
<span id="bannerRight">
<img src="../images/shim.gif" alt="" />
</span>
<div class="clear">
<hr />
</div>
</div>
<h2>
OVERALL COVERAGE SUMMARY for
<xsl:value-of select="$project" />
(
<xsl:value-of select="$version" />
)
</h2>
<table class="bodyTable">
<tr class="a">
<th>name</th>
<th>class, %</th>
<th>method, %</th>
<th>block, %</th>
<th>line, %</th>
</tr>
<xsl:apply-templates select="project" />
</table>
<p></p>
</body>
</html>
</xsl:template>
<xsl:template match="project">
<tr class="b">
<td>
<xsl:value-of select="@name" />
</td>
<td>
<xsl:apply-templates
select="coverage[@type='class, %']" />
</td>
<td>
<xsl:apply-templates
select="coverage[@type='method, %']" />
</td>
<td>
<xsl:apply-templates
select="coverage[@type='block, %']" />
</td>
<td>
<xsl:apply-templates select="coverage[@type='line, %']" />
</td>
</tr>
</xsl:template>
<xsl:template match="coverage">
<xsl:value-of select="@value" />
</xsl:template>
</xsl:stylesheet>

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 71 KiB

View File

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View File

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,20 @@
-----
Spring Batch Documentation
-----
Dave Syer
-----
Aug 2007
-----
Spring Batch Documentation
This is the home of the Spring Batch Reference Guide. This is where you can find out how to use Spring Batch and how the pieces fit together. For detailed descriptions of the individual classes in Spring Batch please refer to the {{{../apidocs/index.html}Javadocs}}. There is also a separate section of this web site for the {{{../org.springframework.batch.samples/index.html}Spring Batch Samples}}. If you want to get started quickly that might be a good place to start.
Use the links below to navigate to the HTML and PDF versions of the guide:
* {{{html/index.html}HTML}} format
* {{{html-single/index.html}HTML Single Page}}
* {{{pdf/spring-batch-docs.pdf}PDF}} format

View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 60 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 40 KiB

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

Before

Width:  |  Height:  |  Size: 251 KiB

After

Width:  |  Height:  |  Size: 251 KiB

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 77 KiB

View File

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 128 KiB

View File

Before

Width:  |  Height:  |  Size: 584 KiB

After

Width:  |  Height:  |  Size: 584 KiB

View File

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

Before

Width:  |  Height:  |  Size: 380 KiB

After

Width:  |  Height:  |  Size: 380 KiB

View File

Before

Width:  |  Height:  |  Size: 143 KiB

After

Width:  |  Height:  |  Size: 143 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 43 KiB

View File

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

View File

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View File

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

Before

Width:  |  Height:  |  Size: 172 KiB

After

Width:  |  Height:  |  Size: 172 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 45 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 52 KiB

View File

@@ -23,7 +23,7 @@
<menu name="Documentation" inherit="none">
<item name="Home" href="index.html"/>
<item name="Changelog" href="migration/index.html"/>
<item name="User Guide" href="org.springframework.batch.docs/index.html"/>
<item name="User Guide" href="reference/index.html"/>
<item name="Features" href="features.html"/>
<item name="Use Cases" href="cases/index.html"/>
<item name="Transactions" href="transactions.html"/>