[jboss-cvs] JBossAS SVN: r89859 - in projects/spring-int/trunk/documentation: user-guide and 3 other directories.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Fri Jun 5 01:32:32 EDT 2009
Author: marius.bogoevici
Date: 2009-06-05 01:32:32 -0400 (Fri, 05 Jun 2009)
New Revision: 89859
Added:
projects/spring-int/trunk/documentation/user-guide/
projects/spring-int/trunk/documentation/user-guide/pom.xml
projects/spring-int/trunk/documentation/user-guide/src/
projects/spring-int/trunk/documentation/user-guide/src/main/
projects/spring-int/trunk/documentation/user-guide/src/main/docbook/
projects/spring-int/trunk/documentation/user-guide/src/main/docbook/author-group.xml
projects/spring-int/trunk/documentation/user-guide/src/main/docbook/legal-notice.xml
projects/spring-int/trunk/documentation/user-guide/src/main/docbook/user-guide.xml
Log:
Initial commit for documentation.
Added: projects/spring-int/trunk/documentation/user-guide/pom.xml
===================================================================
--- projects/spring-int/trunk/documentation/user-guide/pom.xml (rev 0)
+++ projects/spring-int/trunk/documentation/user-guide/pom.xml 2009-06-05 05:32:32 UTC (rev 89859)
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.spring-int</groupId>
+ <artifactId>user-guide</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>jdocbook</packaging>
+ <name>JBoss Spring Integration User Guide (${translation})</name>
+
+ <properties>
+ <translation>en-US</translation>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.0.0</version>
+ <extensions>true</extensions>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-docbook-xslt</artifactId>
+ <version>1.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.0</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDocumentName>user-guide.xml</sourceDocumentName>
+ <imageResource>
+ <directory>src/main/docbook</directory>
+ <includes>
+ <include>images/*.png</include>
+ </includes>
+ </imageResource>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>user-guide.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
+ <!-- could also locate the docbook dependency and inspect its version... -->
+ <docbookVersion>1.72.0</docbookVersion>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Added: projects/spring-int/trunk/documentation/user-guide/src/main/docbook/author-group.xml
===================================================================
--- projects/spring-int/trunk/documentation/user-guide/src/main/docbook/author-group.xml (rev 0)
+++ projects/spring-int/trunk/documentation/user-guide/src/main/docbook/author-group.xml 2009-06-05 05:32:32 UTC (rev 89859)
@@ -0,0 +1,6 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
+<authorgroup>
+ <corpauthor>Marius Bogoevici</corpauthor>
+</authorgroup>
Added: projects/spring-int/trunk/documentation/user-guide/src/main/docbook/legal-notice.xml
===================================================================
--- projects/spring-int/trunk/documentation/user-guide/src/main/docbook/legal-notice.xml (rev 0)
+++ projects/spring-int/trunk/documentation/user-guide/src/main/docbook/legal-notice.xml 2009-06-05 05:32:32 UTC (rev 89859)
@@ -0,0 +1,17 @@
+<?xml version='1.0'?>
+<!DOCTYPE legalnotice PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
+
+<legalnotice id="Book-Legal_Notice">
+ <title>Legal Notice</title>
+ <para>
+ <address>
+ <street>1801 Varsity Drive</street>
+ <city>Raleigh</city>, <state>NC</state><postcode>27606-2072</postcode><country>USA</country><phone>Phone: +1 919 754 3700</phone>
+ <phone>Phone: 888 733 4281</phone>
+ <fax>Fax: +1 919 754 3701</fax>
+ <pob>PO Box 13588</pob><city>Research Triangle Park</city>, <state>NC</state><postcode>27709</postcode><country>USA</country>
+ </address>
+ </para>
+</legalnotice>
+
Added: projects/spring-int/trunk/documentation/user-guide/src/main/docbook/user-guide.xml
===================================================================
--- projects/spring-int/trunk/documentation/user-guide/src/main/docbook/user-guide.xml (rev 0)
+++ projects/spring-int/trunk/documentation/user-guide/src/main/docbook/user-guide.xml 2009-06-05 05:32:32 UTC (rev 89859)
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
+"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
+<!ENTITY % RH-ENTITIES SYSTEM "Common_Config/rh-entities.ent">
+]>
+<book>
+ <bookinfo>
+ <title>JBoss Spring Integration Package 1.0.0</title>
+
+ <subtitle>User Guide</subtitle>
+
+ <issuenum>1.0</issuenum>
+
+ <productnumber>2</productnumber>
+
+ <xi:include href="author-group.xml"
+ xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+ <xi:include href="legal-notice.xml"
+ xmlns:xi="http://www.w3.org/2001/XInclude" />
+ </bookinfo>
+
+ <preface>
+ <title>What This Guide Covers</title>
+
+ <para>This user guide aims to cover the functionality of the JBoss Spring
+ Integation Pack, its components, and to provide information on how to use
+ it optimally for running Spring applications in JBoss.</para>
+
+ <para>The current version of the package is supporting the following
+ configuration:</para>
+
+ <itemizedlist>
+ <listitem>
+ <para>JBoss AS 5.x</para>
+ </listitem>
+
+ <listitem>
+ <para>Spring 2.5.x</para>
+ </listitem>
+ </itemizedlist>
+ </preface>
+
+ <chapter>
+ <title>Introduction</title>
+
+ <section>
+ <title></title>
+
+ <para></para>
+ </section>
+ </chapter>
+</book>
More information about the jboss-cvs-commits
mailing list