Seam SVN: r7610 - in maven-plugins/trunk/seam-docbook-xslt: src and 6 other directories.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-03-18 14:32:26 -0400 (Tue, 18 Mar 2008)
New Revision: 7610
Added:
maven-plugins/trunk/seam-docbook-xslt/pom.xml
maven-plugins/trunk/seam-docbook-xslt/src/
maven-plugins/trunk/seam-docbook-xslt/src/main/
maven-plugins/trunk/seam-docbook-xslt/src/main/resources/
maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/
maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/
maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/
maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/
maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/seam-html.xsl
maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/seam-pdf.xsl
maven-plugins/trunk/seam-docbook-xslt/target/
Log:
Added: maven-plugins/trunk/seam-docbook-xslt/pom.xml
===================================================================
--- maven-plugins/trunk/seam-docbook-xslt/pom.xml (rev 0)
+++ maven-plugins/trunk/seam-docbook-xslt/pom.xml 2008-03-18 18:32:26 UTC (rev 7610)
@@ -0,0 +1,78 @@
+<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.seam</groupId>
+ <artifactId>seam-docbook-xslt</artifactId>
+ <packaging>jar</packaging>
+ <version>1.1.0-SNAPSHOT</version>
+
+ <name>SeamFramework.org DocBook XSLT</name>
+ <description>The main project to transform DocBook XML into XHTML and other formats for SeamFramework.org Documentation.</description>
+ <url>http://jboss.org</url>
+
+ <dependencies>
+ <dependency>
+ <groupId>net.sf.docbook</groupId>
+ <artifactId>docbook</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.uwyn</groupId>
+ <artifactId>jhighlight</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>de.java2html</groupId>
+ <artifactId>java2html</artifactId>
+ <version>5.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.docs</groupId>
+ <artifactId>highlight</artifactId>
+ <version>3.1.4.GA</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.docs</groupId>
+ <artifactId>highlight</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>net.sf.docbook</groupId>
+ <artifactId>docbook</artifactId>
+ <version>1.72.0</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <build>
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.wagon</groupId>
+ <artifactId>wagon-webdav</artifactId>
+ <version>1.0-beta-2</version>
+ </extension>
+ </extensions>
+ </build>
+
+ <distributionManagement>
+ <repository>
+ <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
+ <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
+ <!-- todo : replace this with direct svn access once the svnkit providers are available -->
+ <id>repository.jboss.org</id>
+ <url>file://${maven.repository.root}</url>
+ </repository>
+ <!--<snapshotRepository>
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshot Repository</name>
+ <url>dav:https://snapshots.jboss.org/maven2</url>
+ </snapshotRepository>-->
+ </distributionManagement>
+
+</project>
Property changes on: maven-plugins/trunk/seam-docbook-xslt/pom.xml
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/seam-html.xsl
===================================================================
--- maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/seam-html.xsl (rev 0)
+++ maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/seam-html.xsl 2008-03-18 18:32:26 UTC (rev 7610)
@@ -0,0 +1,35 @@
+<?xml version='1.0'?>
+
+<!--
+ Copyright 2007 Red Hat, Inc.
+ License: GPL
+ Author: Pete Muir
+-->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version='1.0'
+ xmlns="http://www.w3.org/TR/xhtml1/transitional"
+ xmlns:fo="http://www.w3.org/1999/XSL/Format"
+ exclude-result-prefixes="#default">
+
+ <xsl:import href="main-html.xsl"/>
+
+ <!-- Placement of titles -->
+ <xsl:param name="formal.title.placement">
+ figure after
+ example before
+ equation before
+ table before
+ procedure before
+ </xsl:param>
+ <xsl:param name="use.extensions">1</xsl:param>
+ <!-- Callouts -->
+
+ <xsl:param name="callout.extensions">1</xsl:param>
+ <!-- Don't use graphics, use a simple number style -->
+ <xsl:param name="callout.graphics">0</xsl:param>
+
+ <!-- Place callout marks at this column in annotated areas -->
+
+
+</xsl:stylesheet>
Property changes on: maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/seam-html.xsl
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/seam-pdf.xsl
===================================================================
--- maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/seam-pdf.xsl (rev 0)
+++ maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/seam-pdf.xsl 2008-03-18 18:32:26 UTC (rev 7610)
@@ -0,0 +1,99 @@
+<?xml version='1.0'?>
+
+<!--
+ Copyright 2007 Red Hat, Inc.
+ License: GPL
+ Author: Pete Muir
+-->
+
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ version='1.0'
+ xmlns="http://www.w3.org/TR/xhtml1/transitional"
+ xmlns:fo="http://www.w3.org/1999/XSL/Format"
+ exclude-result-prefixes="#default">
+
+ <xsl:import href="classpath:/xslt/org/jboss/main-pdf.xsl"/>
+
+ <xsl:param name="use.extensions">1</xsl:param>
+
+ <!-- Place callout marks at this column in annotated areas -->
+
+ <!--###################################################
+ Callouts
+ ################################################### -->
+
+ <!-- We want to use callouts... -->
+ <xsl:param name="callout.extensions">1</xsl:param>
+
+ <!-- Place callout bullets at this column in programmlisting.-->
+ <xsl:param name="callout.defaultcolumn">80</xsl:param>
+
+ <!--
+ No, don't use crappy graphics for the callout bullets. This setting
+ enables some weird Unicode rendering for some fancy bullet points
+ in callouts. By default, this can only count to 10 and produces
+ strange results if you ever have more than 10 callouts for one
+ programlisting. We will fix that next.
+ -->
+ <xsl:param name="callout.graphics">0</xsl:param>
+
+ <!--
+ Again, fun with DocBook XSL: The callout bullets are rendered in
+ two places: In the programlisting itself and in the list below
+ the listing, with the actual callout text. The rendering in the
+ programlisting is some XSL transformer extension (e.g. a Saxon
+ extension), so we can't change that without messing with the
+ extensions. We only can turn it off by setting this limit to
+ zero, then, a simple bracket style like "(3)" and "(4)" will
+ be used in the programlisting.
+ -->
+ <xsl:param name="callout.unicode.number.limit" select="'0'"></xsl:param>
+
+ <!--
+ The callout bullets in the actual callout list will be rendered
+ with an XSL FO template. The default template is broken: limited to 10
+ nice looking Unicode bullet points and then it doesn't print anything,
+ the fallback doesn't work. We implement our own template, which is not
+ as complicated, more ugly, but works. As always, function is more
+ important than form.
+ -->
+ <xsl:template name="callout-bug" >
+ <xsl:param name="conum" select='1'/>
+ <fo:inline
+ color="black"
+ padding-top="0.1em"
+ padding-bottom="0.1em"
+ padding-start="0.2em"
+ padding-end="0.2em"
+ baseline-shift="0.1em"
+ font-family="{$monospace.font.family}"
+ font-weight="bold"
+ font-size="75%">
+ <xsl:text>(</xsl:text>
+ <xsl:value-of select="$conum"/>
+ <xsl:text>)</xsl:text>
+ </fo:inline>
+
+ </xsl:template>
+
+ <!-- Correct placement of titles for figures and examples. -->
+ <xsl:param name="formal.title.placement">
+ figure after
+ example before
+ equation before
+ table before
+ procedure before
+ </xsl:param>
+
+ <!-- Prevent blank pages in output -->
+ <xsl:template name="book.titlepage.before.verso">
+ </xsl:template>
+ <xsl:template name="book.titlepage.verso">
+ </xsl:template>
+ <xsl:template name="book.titlepage.separator">
+ </xsl:template>
+
+
+
+
+</xsl:stylesheet>
Property changes on: maven-plugins/trunk/seam-docbook-xslt/src/main/resources/xslt/org/jboss/seam/seam-pdf.xsl
___________________________________________________________________
Name: svn:mime-type
+ text/plain
18 years, 1 month
Seam SVN: r7609 - maven-plugins and 1 other directories.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-03-18 14:32:04 -0400 (Tue, 18 Mar 2008)
New Revision: 7609
Added:
maven-plugins/
maven-plugins/branches/
maven-plugins/tags/
maven-plugins/trunk/
maven-plugins/trunk/seam-docbook-xslt/
Log:
Initial import of seam-docbook-xslt
18 years, 1 month
Seam SVN: r7608 - branches/Seam_2_0/doc/Seam_Reference_Guide/en.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-03-18 07:58:53 -0400 (Tue, 18 Mar 2008)
New Revision: 7608
Modified:
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Feedback.xml
Log:
ws
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Feedback.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en/Feedback.xml 2008-03-18 11:57:39 UTC (rev 7607)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Feedback.xml 2008-03-18 11:58:53 UTC (rev 7608)
@@ -3,14 +3,24 @@
]>
<section id="Book-We_Need_Feedback">
- <title>Help Contribute</title>
- <para>
- If you find a typographical error in the <citetitle>Seam Reference Guide</citetitle>, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA: <ulink url="http://jira.jboss.com/jira/browse/JBSEAM">http://jira.jboss.com/jira/browse/JBSEAM</ulink> and component <citetitle>Documentation Issues</citetitle>.
- </para>
- <para>
- If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
- </para>
- <note><title>Note</title><para>Be sure to give us your name so you can receive full credit.</para></note>
+ <title>Help Contribute</title>
+ <para>
+ If you find a typographical error in the
+ <citetitle>Seam Reference Guide</citetitle>, or if you have thought of a
+ way to make this manual better, we would love to hear from you! Please
+ submit a report in <ulink url="http://jira.jboss.com/jira/browse/JBSEAM">JIRA</ulink>
+ and component <citetitle>Documentation Issues</citetitle>.
+ </para>
+ <para>
+ If you have a suggestion for improving the documentation, try to be as
+ specific as possible when describing it. If you have found an error,
+ please include the section number and some of the surrounding text so we
+ can find it easily.
+ </para>
+ <note>
+ <title>Note</title>
+ <para>Be sure to give us your name so you can receive full credit.</para>
+ </note>
</section>
18 years, 1 month
Seam SVN: r7607 - branches/Seam_2_0/doc/Seam_Reference_Guide/en.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-03-18 07:57:39 -0400 (Tue, 18 Mar 2008)
New Revision: 7607
Modified:
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Feedback.xml
Log:
Corrections
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Feedback.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en/Feedback.xml 2008-03-18 11:54:55 UTC (rev 7606)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Feedback.xml 2008-03-18 11:57:39 UTC (rev 7607)
@@ -5,18 +5,12 @@
<section id="Book-We_Need_Feedback">
<title>Help Contribute</title>
<para>
- If you find a typographical error in the <citetitle>Seam Reference Guide</citetitle>, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA: <ulink url="http://jira.jboss.com/jira/browse/JBSEAM">http://jira.jboss.com/jira/browse/JBSEAM</ulink> against the project <citetitle>Seam</citetitle> and component <citetitle>Documentation</citetitle>.
+ If you find a typographical error in the <citetitle>Seam Reference Guide</citetitle>, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA: <ulink url="http://jira.jboss.com/jira/browse/JBSEAM">http://jira.jboss.com/jira/browse/JBSEAM</ulink> and component <citetitle>Documentation Issues</citetitle>.
</para>
<para>
If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
</para>
<note><title>Note</title><para>Be sure to give us your name so you can receive full credit.</para></note>
-
- <note><title>Note</title><para>This content is taken from https://svn.jboss.org/repos/seam/trunk/doc/ and has yet to be branched.</para></note>
-
- <para>To access the content directly and make changes yourself:</para>
-<screen>
-svn co https://svn.jboss.org/repos/seam/trunk/doc/ --username yourname</screen >
</section>
18 years, 1 month
Seam SVN: r7606 - branches/Seam_2_0/build.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-03-18 07:54:55 -0400 (Tue, 18 Mar 2008)
New Revision: 7606
Modified:
branches/Seam_2_0/build/docs.pom.xml
Log:
Up to newer docs build
Modified: branches/Seam_2_0/build/docs.pom.xml
===================================================================
--- branches/Seam_2_0/build/docs.pom.xml 2008-03-18 11:54:05 UTC (rev 7605)
+++ branches/Seam_2_0/build/docs.pom.xml 2008-03-18 11:54:55 UTC (rev 7606)
@@ -1,98 +1,49 @@
<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">
+ 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>
+ <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.seam.reference-guide</groupId>
- <artifactId>seam-reference-guide-${translation}</artifactId>
- <version>@seam.version@</version>
- <packaging>jdocbook</packaging>
- <name>Seam Reference Guide (${translation})</name>
+ <parent>
+ <groupId>org.jboss</groupId>
+ <artifactId>documentation</artifactId>
+ <version>1.1-SNAPSHOT</version>
+ </parent>
- <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.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jbossorg-jdocbook-style</artifactId>
- <version>1.0.0</version>
- <type>jdocbook-style</type>
- </dependency>
- </dependencies>
- <configuration>
- <minmemory>1024m</minmemory>
- <maxmemory>1024m</maxmemory>
- <sourceDocumentName>Seam_Reference_Guide.xml</sourceDocumentName>
- <sourceDirectory>en-US</sourceDirectory>
- <imageResource>
- <directory>en-US</directory>
- <includes>
- <include>images/*</include>
- </includes>
- </imageResource>
- <!--<cssResource>
- <directory>src/main/css</directory>
- </cssResource>-->
- <formats>
+ <groupId>org.jboss.seam.reference-guide</groupId>
+ <artifactId>seam-reference-guide-${translation}</artifactId>
+ <version>@seam.version@</version>
+ <packaging>jdocbook</packaging>
+ <name>Seam Reference Guide (${translation})</name>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/main-html.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/nochunk-html.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/main-pdf.xsl</stylesheetResource>
- <finalName>Seam_Reference_Guide.pdf</finalName>
- </format >
- <!--<format>
- <formatName>eclipse</formatName>
- <stylesheetResource>classpath:/xslt/main-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>
- <transformerParameters>
- <property>
- <name>javax.xml.parsers.DocumentBuilderFactory</name>
- <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
- </property>
- <property>
- <name>javax.xml.parsers.SAXParserFactory</name>
- <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
- </property>
- <!--<javax.xml.parsers.DocumentBuilderFactory>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</javax.xml.parsers.DocumentBuilderFactory>
- <javax.xml.parsers.SAXParserFactory>org.apache.xerces.jaxp.SAXParserFactoryImpl</javax.xml.parsers.SAXParserFactory>
- <javax.xml.validation.SchemaFactory:http\://www.w3.org/2001/XMLSchema>org.apache.xerces.jaxp.validation.XMLSchemaFactory</javax.xml.validation.SchemaFactory:http\://www.w3.org/2001/XMLSchema>-->
- </transformerParameters>
- </options>
- </configuration>
- </plugin>
- </plugins>
- </build>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <url>http://repository.jboss.org/maven2</url>
+ </pluginRepository>
+ <pluginRepository>
+ <snapshots />
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshot Repository</name>
+ <url>http://snapshots.jboss.org/maven2</url>
+ </pluginRepository>
+ </pluginRepositories>
+ <repositories>
+ <repository>
+ <id>repository.jboss.org</id>
+ <name>JBoss Repository</name>
+ <url>http://repository.jboss.org/maven2</url>
+ </repository>
+ <repository>
+ <snapshots />
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshot Repository</name>
+ <url>http://snapshots.jboss.org/maven2</url>
+ </repository>
+ </repositories>
- <properties>
- <translation>en-US</translation>
- </properties>
+ <properties>
+ <translation>en</translation>
+ </properties>
</project>
18 years, 1 month
Seam SVN: r7605 - in branches/Seam_2_0/doc/Seam_Reference_Guide: en and 1 other directory.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-03-18 07:54:05 -0400 (Tue, 18 Mar 2008)
New Revision: 7605
Added:
branches/Seam_2_0/doc/Seam_Reference_Guide/en/
branches/Seam_2_0/doc/Seam_Reference_Guide/en/master.xml
Removed:
branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Seam_Reference_Guide.xml
Modified:
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Configuration.xml
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Controls.xml
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Conversations.xml
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Gwt.xml
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Jbpm.xml
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Preface.xml
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Security.xml
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Testing.xml
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Tools.xml
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Tutorial.xml
branches/Seam_2_0/doc/Seam_Reference_Guide/en/Webservices.xml
Log:
Move en-US to en
Copied: branches/Seam_2_0/doc/Seam_Reference_Guide/en (from rev 7589, branches/Seam_2_0/doc/Seam_Reference_Guide/en-US)
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Configuration.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Configuration.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Configuration.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -427,10 +427,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/ee5.png" align="center"/>
+ <imagedata fileref="images/ee5.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/ee5.png" align="center"/>
+ <imagedata fileref="images/ee5.png" align="center"/>
</imageobject>
</mediaobject>
@@ -517,10 +517,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/hibernate-ee.png" align="center"/>
+ <imagedata fileref="images/hibernate-ee.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/hibernate-ee.png" align="center"/>
+ <imagedata fileref="images/hibernate-ee.png" align="center"/>
</imageobject>
</mediaobject>
@@ -639,10 +639,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/testng.png" align="center"/>
+ <imagedata fileref="images/testng.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/testng.png" align="center"/>
+ <imagedata fileref="images/testng.png" align="center"/>
</imageobject>
</mediaobject>
@@ -650,10 +650,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/e-ejb3.png" align="center"/>
+ <imagedata fileref="images/e-ejb3.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/e-ejb3.png" align="center"/>
+ <imagedata fileref="images/e-ejb3.png" align="center"/>
</imageobject>
</mediaobject>
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Controls.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Controls.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Controls.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -612,10 +612,10 @@
<para><emphasis>Example</emphasis></para>
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/controls-seamtext.png" align="center"/>
+ <imagedata fileref="images/controls-seamtext.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/controls-seamtext.png" align="center"/>
+ <imagedata fileref="images/controls-seamtext.png" align="center"/>
</imageobject>
</mediaobject>
</entry>
@@ -971,10 +971,10 @@
<para><emphasis>Example</emphasis></para>
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/controls-selectdate.png" align="center"/>
+ <imagedata fileref="images/controls-selectdate.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/controls-selectdate.png" align="center"/>
+ <imagedata fileref="images/controls-selectdate.png" align="center"/>
</imageobject>
</mediaobject>
@@ -1088,10 +1088,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/controls-selectdatecss.png" align="center"/>
+ <imagedata fileref="images/controls-selectdatecss.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/controls-selectdatecss.png" align="center"/>
+ <imagedata fileref="images/controls-selectdatecss.png" align="center"/>
</imageobject>
</mediaobject>
</entry>
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Conversations.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Conversations.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Conversations.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -857,10 +857,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/switcher.png" align="center"/>
+ <imagedata fileref="images/switcher.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/switcher.png" align="center"/>
+ <imagedata fileref="images/switcher.png" align="center"/>
</imageobject>
</mediaobject>
@@ -904,10 +904,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/list.png" align="center"/>
+ <imagedata fileref="images/list.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/list.png" align="center"/>
+ <imagedata fileref="images/list.png" align="center"/>
</imageobject>
</mediaobject>
@@ -938,10 +938,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/breadcrumbs.png" align="center"/>
+ <imagedata fileref="images/breadcrumbs.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/breadcrumbs.png" align="center"/>
+ <imagedata fileref="images/breadcrumbs.png" align="center"/>
</imageobject>
</mediaobject>
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Gwt.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Gwt.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Gwt.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -173,7 +173,7 @@
<imagedata fileref="images/gwt-helloworld.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="../shared/images/gwt-helloworld.png" align="center"/>
+ <imagedata fileref="images/gwt-helloworld.png" align="center"/>
</imageobject>
</mediaobject>
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Jbpm.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Jbpm.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Jbpm.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -209,10 +209,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/plugin-jbpm-numguess.png" align="center"/>
+ <imagedata fileref="images/plugin-jbpm-numguess.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/plugin-jbpm-numguess.png" align="center"/>
+ <imagedata fileref="images/plugin-jbpm-numguess.png" align="center"/>
</imageobject>
</mediaobject>
@@ -632,10 +632,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/plugin-jbpm-todo.png" align="center"/>
+ <imagedata fileref="images/plugin-jbpm-todo.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/plugin-jbpm-todo.png" align="center"/>
+ <imagedata fileref="images/plugin-jbpm-todo.png" align="center"/>
</imageobject>
</mediaobject>
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Preface.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Preface.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Preface.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -279,7 +279,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="/images/architecture.png"/>
+ <imagedata fileref="images/architecture.png"/>
</imageobject>
</mediaobject>
Deleted: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Seam_Reference_Guide.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Seam_Reference_Guide.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Seam_Reference_Guide.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -1,43 +0,0 @@
-<?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" [ ]>
-
-<book>
- <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Tutorial.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Gettingstarted.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Concepts.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Xml.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Events.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Conversations.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Jbpm.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Persistence.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Validation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Groovy.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Framework.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Drools.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Security.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "I18n.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Text.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Itext.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Mail.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Jms.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Cache.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Webservices.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Remoting.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Gwt.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Spring.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Hsearch.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Configuration.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Annotations.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Components.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Controls.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Elenhancements.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Testing.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Tools.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Oc4j.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Weblogic.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Websphere.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href= "Dependencies.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-
-</book>
\ No newline at end of file
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Security.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Security.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Security.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -219,10 +219,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/security-addrole.png" align="center"/>
+ <imagedata fileref="images/security-addrole.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/security-addrole.png" align="center"/>
+ <imagedata fileref="images/security-addrole.png" align="center"/>
</imageobject>
</mediaobject>
@@ -1636,10 +1636,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/security-identitymanager.png" align="center"/>
+ <imagedata fileref="images/security-identitymanager.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/security-identitymanager.png" align="center"/>
+ <imagedata fileref="images/security-identitymanager.png" align="center"/>
</imageobject>
</mediaobject>
@@ -1672,10 +1672,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/security-useraccount.png" align="center"/>
+ <imagedata fileref="images/security-useraccount.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/security-useraccount.png" align="center"/>
+ <imagedata fileref="images/security-useraccount.png" align="center"/>
</imageobject>
</mediaobject>
@@ -1685,10 +1685,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/security-useraccountschema.png" align="center"/>
+ <imagedata fileref="images/security-useraccountschema.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/security-useraccountschema.png" align="center"/>
+ <imagedata fileref="images/security-useraccountschema.png" align="center"/>
</imageobject>
</mediaobject>
@@ -2411,10 +2411,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/security-usermanager1.png" align="center"/>
+ <imagedata fileref="images/security-usermanager1.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/security-usermanager1.png" align="center"/>
+ <imagedata fileref="images/security-usermanager1.png" align="center"/>
</imageobject>
</mediaobject>
@@ -2424,10 +2424,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/security-usermanager2.png" align="center"/>
+ <imagedata fileref="images/security-usermanager2.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/security-usermanager2.png" align="center"/>
+ <imagedata fileref="images/security-usermanager2.png" align="center"/>
</imageobject>
</mediaobject>
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Testing.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Testing.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Testing.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -301,10 +301,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/plugin-testng.png" align="center"/>
+ <imagedata fileref="images/plugin-testng.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/plugin-testng.png" align="center"/>
+ <imagedata fileref="images/plugin-testng.png" align="center"/>
</imageobject>
</mediaobject>
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Tools.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Tools.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Tools.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -20,10 +20,10 @@
<screeninfo>Business process designer</screeninfo>
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/bpmd.png" align="center"/>
+ <imagedata fileref="images/bpmd.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/bpmd.png" align="center"/>
+ <imagedata fileref="images/bpmd.png" align="center"/>
</imageobject>
</mediaobject>
</screenshot>
@@ -42,10 +42,10 @@
<screeninfo>Business process designer</screeninfo>
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/bpmpfv.png" align="center"/>
+ <imagedata fileref="images/bpmpfv.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/shared/images/bpmpfv.png" align="center"/>
+ <imagedata fileref="images/bpmpfv.png" align="center"/>
</imageobject>
</mediaobject>
</screenshot>
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Tutorial.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Tutorial.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Tutorial.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -111,10 +111,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/registration.png" align="center"/>
+ <imagedata fileref="images/registration.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/registration.png" align="center"/>
+ <imagedata fileref="images/registration.png" align="center"/>
</imageobject>
</mediaobject>
@@ -125,10 +125,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/register.png" align="center"/>
+ <imagedata fileref="images/register.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/register.png" align="center"/>
+ <imagedata fileref="images/register.png" align="center"/>
</imageobject>
</mediaobject>
@@ -761,10 +761,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/messages.png" align="center"/>
+ <imagedata fileref="images/messages.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/messages.png" align="center"/>
+ <imagedata fileref="images/messages.png" align="center"/>
</imageobject>
</mediaobject>
@@ -1086,10 +1086,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/todo.png" align="center"/>
+ <imagedata fileref="images/todo.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/todo.png" align="center"/>
+ <imagedata fileref="images/todo.png" align="center"/>
</imageobject>
</mediaobject>
@@ -1161,10 +1161,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/todo-process.png" align="center"/>
+ <imagedata fileref="images/todo-process.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/todo-process.png" align="center"/>
+ <imagedata fileref="images/todo-process.png" align="center"/>
</imageobject>
</mediaobject>
@@ -1449,10 +1449,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/numberguess.png" align="center"/>
+ <imagedata fileref="images/numberguess.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/numberguess.png" align="center"/>
+ <imagedata fileref="images/numberguess.png" align="center"/>
</imageobject>
</mediaobject>
@@ -1542,10 +1542,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/numberguess-pageflow.png" align="center"/>
+ <imagedata fileref="images/numberguess-pageflow.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/numberguess-pageflow.png" align="center"/>
+ <imagedata fileref="images/numberguess-pageflow.png" align="center"/>
</imageobject>
</mediaobject>
@@ -1862,10 +1862,10 @@
<screeninfo>Booking example</screeninfo>
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/booking.png" align="center"/>
+ <imagedata fileref="images/booking.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/booking.png" align="center"/>
+ <imagedata fileref="images/booking.png" align="center"/>
</imageobject>
</mediaobject>
</screenshot>
@@ -2413,10 +2413,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/debug.png" align="center"/>
+ <imagedata fileref="images/debug.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/debug.png" align="center"/>
+ <imagedata fileref="images/debug.png" align="center"/>
</imageobject>
</mediaobject>
@@ -2436,10 +2436,10 @@
<screeninfo>DVD Store example</screeninfo>
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/dvdsearch.png" align="center"/>
+ <imagedata fileref="images/dvdsearch.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/dvdsearch.png" align="center"/>
+ <imagedata fileref="images/dvdsearch.png" align="center"/>
</imageobject>
</mediaobject>
</screenshot>
@@ -2451,10 +2451,10 @@
<screeninfo>DVD Store example</screeninfo>
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/dvdtasks.png" align="center"/>
+ <imagedata fileref="images/dvdtasks.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/dvdtasks.png" align="center"/>
+ <imagedata fileref="images/dvdtasks.png" align="center"/>
</imageobject>
</mediaobject>
</screenshot>
@@ -2487,10 +2487,10 @@
<screeninfo>Blog example</screeninfo>
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/blog.png" align="center"/>
+ <imagedata fileref="images/blog.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/blog.png" align="center"/>
+ <imagedata fileref="images/blog.png" align="center"/>
</imageobject>
</mediaobject>
</screenshot>
Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Webservices.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en-US/Webservices.xml 2008-03-15 12:12:53 UTC (rev 7589)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Webservices.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -99,10 +99,10 @@
<mediaobject>
<imageobject role="fo">
- <imagedata fileref="/images/ws-strategy.png" align="center"/>
+ <imagedata fileref="images/ws-strategy.png" align="center"/>
</imageobject>
<imageobject role="html">
- <imagedata fileref="/images/ws-strategy.png" align="center"/>
+ <imagedata fileref="images/ws-strategy.png" align="center"/>
</imageobject>
</mediaobject>
Added: branches/Seam_2_0/doc/Seam_Reference_Guide/en/master.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en/master.xml (rev 0)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/master.xml 2008-03-18 11:54:05 UTC (rev 7605)
@@ -0,0 +1,43 @@
+<?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" [ ]>
+
+<book>
+ <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Tutorial.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Gettingstarted.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Concepts.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Xml.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Events.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Conversations.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Jbpm.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Persistence.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Validation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Groovy.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Framework.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Drools.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Security.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "I18n.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Text.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Itext.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Mail.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Jms.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Cache.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Webservices.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Remoting.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Gwt.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Spring.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Hsearch.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Configuration.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Annotations.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Components.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Controls.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Elenhancements.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Testing.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Tools.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Oc4j.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Weblogic.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Websphere.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href= "Dependencies.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+</book>
\ No newline at end of file
Property changes on: branches/Seam_2_0/doc/Seam_Reference_Guide/en/master.xml
___________________________________________________________________
Name: svn:executable
+ *
18 years, 1 month
Seam SVN: r7604 - branches/Seam_2_0/src/gen/org/jboss/seam/tool.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-03-18 07:07:29 -0400 (Tue, 18 Mar 2008)
New Revision: 7604
Modified:
branches/Seam_2_0/src/gen/org/jboss/seam/tool/EclipseClasspathTask.java
Log:
backport r7602, JBSEAM-2753
Modified: branches/Seam_2_0/src/gen/org/jboss/seam/tool/EclipseClasspathTask.java
===================================================================
--- branches/Seam_2_0/src/gen/org/jboss/seam/tool/EclipseClasspathTask.java 2008-03-18 11:05:56 UTC (rev 7603)
+++ branches/Seam_2_0/src/gen/org/jboss/seam/tool/EclipseClasspathTask.java 2008-03-18 11:07:29 UTC (rev 7604)
@@ -51,8 +51,9 @@
if (new File(javadocPath).exists())
{
+ eclipsepath += ">\r\n";
eclipsepath += "\t\t<attributes>\n";
- eclipsepath += "\t\t\t<attribute name=\"javadoc_location\" value=\"" + javadocPath + "!/\"/>\n";
+ eclipsepath += "\t\t\t<attribute name=\"javadoc_location\" value=\"jar:file:" + javadocPath + "!/\"/>\n";
eclipsepath += "\t\t</attributes>\n";
eclipsepath += "\t</classpathentry>\n";
}
18 years, 1 month
Seam SVN: r7603 - in trunk: build and 1 other directory.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-03-18 07:05:56 -0400 (Tue, 18 Mar 2008)
New Revision: 7603
Modified:
trunk/build.xml
trunk/build/utilities.build.xml
Log:
minor
Modified: trunk/build/utilities.build.xml
===================================================================
--- trunk/build/utilities.build.xml 2008-03-18 11:05:25 UTC (rev 7602)
+++ trunk/build/utilities.build.xml 2008-03-18 11:05:56 UTC (rev 7603)
@@ -46,6 +46,17 @@
</sequential>
</macrodef>
+ <!--<macrodef name="dependenciesWithSourcesAndJavadoc">
+ <attribute name="id" />
+ <attribute name="scope" />
+ <attribute name="pom" />
+ <sequential>
+ <artifact:dependencies pathId="@{scope}.(a){id}.path" filesetId="@{scope}.(a){id}.fileset" versionsId="@{scope}.(a){id}.versions" useScope="@{scope}" sourcesFilesetId="@{scope}.(a){id}.source.fileset" javadocFilesetId="@{scope}.(a){id}.javadoc.fileset">
+ <pom file="@{pom}" />
+ </artifact:dependencies>
+ </sequential>
+ </macrodef>-->
+
<macrodef name="install">
<attribute name="pom" default="" />
<attribute name="jar" default="" />
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2008-03-18 11:05:25 UTC (rev 7602)
+++ trunk/build.xml 2008-03-18 11:05:56 UTC (rev 7603)
@@ -954,17 +954,6 @@
<dependenciesWithSources id="ui" scope="compile" pom="${ui.pom}" />
</target>
- <!--<target name="downloadDependenciesJavadoc" depends="init">
- <dependenciesWithJavadoc id="core" scope="compile" pom="${core.pom}" />
- <dependenciesWithJavadoc id="debug" scope="compile" pom="${debug.pom}" />
- <dependenciesWithJavadoc id="gen" scope="compile" pom="${gen.pom}" />
- <dependenciesWithJavadoc id="ioc" scope="compile" pom="${ioc.pom}" />
- <dependenciesWithJavadoc id="mail" scope="compile" pom="${mail.pom}" />
- <dependenciesWithJavadoc id="pdf" scope="compile" pom="${pdf.pom}" />
- <dependenciesWithJavadoc id="remoting" scope="compile" pom="${remoting.pom}" />
- <dependenciesWithjavadoc id="ui" scope="compile" pom="${ui.pom}" />
- </target>-->
-
<target name="eclipseclasspath" depends="init, jargen" description="Update eclipse classpath">
<path id="seam-gen.path" path="${seam.dir}/lib/jboss-seam-gen.jar" />
18 years, 1 month
Seam SVN: r7602 - trunk/src/gen/org/jboss/seam/tool.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-03-18 07:05:25 -0400 (Tue, 18 Mar 2008)
New Revision: 7602
Modified:
trunk/src/gen/org/jboss/seam/tool/EclipseClasspathTask.java
Log:
JBSEAM_2753
Modified: trunk/src/gen/org/jboss/seam/tool/EclipseClasspathTask.java
===================================================================
--- trunk/src/gen/org/jboss/seam/tool/EclipseClasspathTask.java 2008-03-18 11:04:59 UTC (rev 7601)
+++ trunk/src/gen/org/jboss/seam/tool/EclipseClasspathTask.java 2008-03-18 11:05:25 UTC (rev 7602)
@@ -51,8 +51,9 @@
if (new File(javadocPath).exists())
{
+ eclipsepath += ">\r\n";
eclipsepath += "\t\t<attributes>\n";
- eclipsepath += "\t\t\t<attribute name=\"javadoc_location\" value=\"" + javadocPath + "!/\"/>\n";
+ eclipsepath += "\t\t\t<attribute name=\"javadoc_location\" value=\"jar:file:" + javadocPath + "!/\"/>\n";
eclipsepath += "\t\t</attributes>\n";
eclipsepath += "\t</classpathentry>\n";
}
18 years, 1 month
Seam SVN: r7601 - trunk/.settings.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-03-18 07:04:59 -0400 (Tue, 18 Mar 2008)
New Revision: 7601
Modified:
trunk/.settings/org.eclipse.jdt.core.prefs
trunk/.settings/org.eclipse.jdt.ui.prefs
Log:
Default settings for formatter in eclipse
Modified: trunk/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- trunk/.settings/org.eclipse.jdt.core.prefs 2008-03-18 10:13:03 UTC (rev 7600)
+++ trunk/.settings/org.eclipse.jdt.core.prefs 2008-03-18 11:04:59 UTC (rev 7601)
@@ -1,4 +1,4 @@
-#Fri Aug 31 15:15:15 CDT 2007
+#Fri Mar 14 21:59:09 GMT 2008
eclipse.preferences.version=1
org.eclipse.jdt.core.codeComplete.argumentPrefixes=
org.eclipse.jdt.core.codeComplete.argumentSuffixes=
@@ -80,7 +80,7 @@
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
org.eclipse.jdt.core.compiler.source=1.5
-org.eclipse.jdt.core.formatter.align_type_members_on_columns=true
+org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16
@@ -96,7 +96,7 @@
org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16
org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16
org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16
-org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16
+org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=0
org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16
org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16
org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16
@@ -112,17 +112,17 @@
org.eclipse.jdt.core.formatter.blank_lines_before_package=0
org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1
org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1
-org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line
+org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=next_line
+org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=next_line
org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line
-org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line
+org.eclipse.jdt.core.formatter.brace_position_for_block=next_line
+org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=next_line
+org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=next_line
+org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=next_line
+org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=next_line
+org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=next_line
+org.eclipse.jdt.core.formatter.brace_position_for_switch=next_line
+org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=next_line
org.eclipse.jdt.core.formatter.comment.clear_blank_lines=false
org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=false
org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false
@@ -136,7 +136,7 @@
org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true
org.eclipse.jdt.core.formatter.comment.indent_root_tags=true
org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert
-org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=insert
+org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=do not insert
org.eclipse.jdt.core.formatter.comment.line_length=80
org.eclipse.jdt.core.formatter.compact_else_if=true
org.eclipse.jdt.core.formatter.continuation_indentation=2
@@ -152,15 +152,15 @@
org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false
-org.eclipse.jdt.core.formatter.indentation.size=4
+org.eclipse.jdt.core.formatter.indentation.size=3
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert
org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert
+org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=insert
org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert
-org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert
+org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=insert
+org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=insert
+org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=insert
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert
@@ -326,13 +326,13 @@
org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false
org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false
org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false
-org.eclipse.jdt.core.formatter.lineSplit=80
+org.eclipse.jdt.core.formatter.lineSplit=800
org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false
org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false
org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0
org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1
org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true
org.eclipse.jdt.core.formatter.tabulation.char=space
-org.eclipse.jdt.core.formatter.tabulation.size=4
+org.eclipse.jdt.core.formatter.tabulation.size=3
org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false
org.eclipse.jdt.core.formatter.wrap_before_binary_operator=true
Modified: trunk/.settings/org.eclipse.jdt.ui.prefs
===================================================================
--- trunk/.settings/org.eclipse.jdt.ui.prefs 2008-03-18 10:13:03 UTC (rev 7600)
+++ trunk/.settings/org.eclipse.jdt.ui.prefs 2008-03-18 11:04:59 UTC (rev 7601)
@@ -1,6 +1,6 @@
-#Fri Aug 31 15:15:15 CDT 2007
+#Fri Mar 14 21:59:09 GMT 2008
eclipse.preferences.version=1
-formatter_profile=_my settings
+formatter_profile=_Seam
formatter_settings_version=11
internal.default.compliance=default
org.eclipse.jdt.ui.exception.name=e
18 years, 1 month