JBoss Ajax4JSF SVN: r243 - in trunk/docs: userguide/en-US and 14 other directories.
by ajax4jsf-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-06-05 20:41:55 -0400 (Tue, 05 Jun 2007)
New Revision: 243
Added:
trunk/docs/userguide/en-US/home/
trunk/docs/userguide/en-US/home/asmirnov/
trunk/docs/userguide/en-US/home/asmirnov/work/
trunk/docs/userguide/en-US/home/asmirnov/work/ajax4jsf/
trunk/docs/userguide/en-US/home/asmirnov/work/ajax4jsf/ajax4jsf/
trunk/docs/userguide/en-US/home/asmirnov/work/ajax4jsf/ajax4jsf/docs/
trunk/docs/userguide/en-US/home/asmirnov/work/ajax4jsf/ajax4jsf/docs/userguide/
trunk/docs/userguide/en-US/home/asmirnov/work/ajax4jsf/ajax4jsf/docs/userguide/en-US/
trunk/docs/userguide/en-US/src/main/docbook/f.xsl
trunk/docs/userguide/en-US/src/main/docbook/images/
trunk/docs/userguide/en-US/src/main/docbook/included/actionparam.desc.xml
trunk/docs/userguide/en-US/src/main/docbook/included/ajaxListener.desc.xml
trunk/docs/userguide/en-US/src/main/docbook/included/ajaxListener.xml
trunk/docs/userguide/en-US/src/main/docbook/included/commandLink.xml
trunk/docs/userguide/en-US/src/main/docbook/included/outputPanel.desc.xml
trunk/docs/userguide/en-US/src/main/docbook/included/poll.desc.xml
trunk/docs/userguide/en-US/src/main/docbook/included/region.desc.xml
trunk/docs/userguide/en-US/src/main/docbook/included/support.desc.xml
trunk/docs/xslt/src/main/resources/support/
trunk/docs/xslt/src/main/resources/support/docbook-dtd/
trunk/docs/xslt/src/main/resources/support/docbook-xsl/
Removed:
trunk/docs/userguide/en-US/src/main/docbook/included/Actionparam.desc.xml
trunk/docs/userguide/en-US/src/main/docbook/included/AjaxListener.xml
trunk/docs/userguide/en-US/src/main/docbook/included/ajaxlistener.desc.xml
trunk/docs/userguide/en-US/src/main/docbook/included/commandlink.xml
trunk/docs/userguide/en-US/src/main/docbook/included/outputPanel.Desc.xml
trunk/docs/userguide/en-US/src/main/docbook/included/poll.Desc.xml
trunk/docs/userguide/en-US/src/main/docbook/included/region.Desc.xml
trunk/docs/userguide/en-US/src/main/docbook/included/support.Desc.xml
trunk/docs/userguide/en-US/src/main/resources/images/
trunk/docs/xslt/src/main/resources/en/f.xsl
trunk/docs/xslt/support/docbook-dtd/
trunk/docs/xslt/support/docbook-xsl/
Modified:
trunk/docs/userguide/en-US/pom.xml
trunk/docs/userguide/en-US/src/main/docbook/master.xml
trunk/docs/userguide/pom.xml
trunk/docs/xslt/src/main/resources/en/fopdf.xsl
trunk/docs/xslt/src/main/resources/en/html.xsl
Log:
reorganize projects for a Maven documentation build
Modified: trunk/docs/userguide/en-US/pom.xml
===================================================================
--- trunk/docs/userguide/en-US/pom.xml 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/userguide/en-US/pom.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -10,11 +10,27 @@
</parent>
<artifactId>userguide-${translation}</artifactId>
- <packaging>pom</packaging>
+ <packaging>jar</packaging>
<name>Ajax4jsf Manual (${translation})</name>
<properties>
<translation>en-US</translation>
</properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>xml-maven-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jboss-docbook-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
</project>
Copied: trunk/docs/userguide/en-US/src/main/docbook/f.xsl (from rev 241, trunk/docs/xslt/src/main/resources/en/f.xsl)
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/f.xsl (rev 0)
+++ trunk/docs/userguide/en-US/src/main/docbook/f.xsl 2007-06-06 00:41:55 UTC (rev 243)
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:javaee="http://java.sun.com/JSP/TagLibraryDescriptor"
+ version="1.0" exclude-result-prefixes="javaee">
+ <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
+ <xsl:param name="lang" />
+
+ <xsl:template match="javaee:taglib | taglib">
+ <xsl:variable name="excluded-tag-names">header2,header3,header4,header5,header6</xsl:variable>
+
+ <chapter>
+
+ <title>Ajax4JSF Components Library</title>
+ <xsl:for-each select="javaee:tag | tag">
+
+ <!--xsl:value-of select="./name/text()" /-->
+
+ <xsl:if test="not(contains($excluded-tag-names, javaee:name))">
+ <xsl:call-template name="tag" />
+ </xsl:if>
+ <xsl:if test="not(contains($excluded-tag-names, ./name/text()))">
+ <xsl:call-template name="tag" />
+ </xsl:if>
+ </xsl:for-each>
+ </chapter>
+ </xsl:template>
+
+ <xsl:template name="tag">
+ <section role="NotInToc">
+ <xsl:variable name="tag_name">
+ <xsl:choose>
+ <xsl:when test="javaee:name">
+ <xsl:value-of select="javaee:name" />
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="./name/text()" />
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+ <xsl:attribute name="id"><xsl:value-of select="$tag_name"/></xsl:attribute>
+ <title><<xsl:value-of select="concat('a4j:', $tag_name)" />></title>
+ <xsl:for-each select="document(concat($lang, '/included/',$tag_name, '.desc.xml'))/*">
+ <xsl:copy-of select="./*"/>
+ </xsl:for-each>
+ <table>
+ <title>a4j:<xsl:value-of select="javaee:name"/><xsl:value-of select="name"/> attributes</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Attribute Name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <xsl:for-each select="javaee:attribute | attribute">
+ <row>
+ <entry>
+ <xsl:value-of select="javaee:name"/>
+ <xsl:value-of select="name"/>
+ </entry>
+ <entry>
+ <xsl:value-of select="javaee:description" disable-output-escaping="yes"/>
+ <xsl:value-of select="description" disable-output-escaping="yes"/>
+ </entry>
+ </row>
+ </xsl:for-each>
+ </tbody>
+ </tgroup>
+ </table>
+ <xsl:for-each select="document(concat($lang,'/included/',$tag_name, '.xml'))/*">
+ <xsl:copy-of select="./*"/>
+ </xsl:for-each>
+ </section>
+ </xsl:template>
+</xsl:transform>
\ No newline at end of file
Copied: trunk/docs/userguide/en-US/src/main/docbook/images (from rev 242, trunk/docs/userguide/en-US/src/main/resources/images)
Deleted: trunk/docs/userguide/en-US/src/main/docbook/included/Actionparam.desc.xml
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/Actionparam.desc.xml 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/Actionparam.desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -1,10 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<section>
- <para>The <emphasis role="bold">
- <property><a4j:actionparam></property>
- </emphasis> component combines the functionality of both JSF components: <emphasis role="bold">
- <property><f:param></property>
- </emphasis> and <emphasis role="bold">
- <property><f:actionListener></property>
- </emphasis>.</para>
-</section>
\ No newline at end of file
Deleted: trunk/docs/userguide/en-US/src/main/docbook/included/AjaxListener.xml
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/AjaxListener.xml 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/AjaxListener.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<root>
- <programlisting role="XML">
- <![CDATA[<a4j:region selfRendered="true" ajaxListener="#{bean.processAjax}" id="Region">
-
- </a4j:region>]]>
- </programlisting>
- <para>
- Every time when AJAX request triggered from "region" method "processAjax" of "bean" will be called.
- </para>
-</root>
\ No newline at end of file
Copied: trunk/docs/userguide/en-US/src/main/docbook/included/actionparam.desc.xml (from rev 242, trunk/docs/userguide/en-US/src/main/docbook/included/Actionparam.desc.xml)
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/actionparam.desc.xml (rev 0)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/actionparam.desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -0,0 +1,10 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<section>
+ <para>The <emphasis role="bold">
+ <property><a4j:actionparam></property>
+ </emphasis> component combines the functionality of both JSF components: <emphasis role="bold">
+ <property><f:param></property>
+ </emphasis> and <emphasis role="bold">
+ <property><f:actionListener></property>
+ </emphasis>.</para>
+</section>
\ No newline at end of file
Copied: trunk/docs/userguide/en-US/src/main/docbook/included/ajaxListener.desc.xml (from rev 242, trunk/docs/userguide/en-US/src/main/docbook/included/ajaxlistener.desc.xml)
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/ajaxListener.desc.xml (rev 0)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/ajaxListener.desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -0,0 +1,5 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<section>
+ <para>The <emphasis role="bold"><property><a4j:ajaxListener></property></emphasis>
+component is the same one as "ActionListener" or "ValueChangeListener", but for an AJAX container.</para>
+</section>
Copied: trunk/docs/userguide/en-US/src/main/docbook/included/ajaxListener.xml (from rev 242, trunk/docs/userguide/en-US/src/main/docbook/included/AjaxListener.xml)
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/ajaxListener.xml (rev 0)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/ajaxListener.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<root>
+ <programlisting role="XML">
+ <![CDATA[<a4j:region selfRendered="true" ajaxListener="#{bean.processAjax}" id="Region">
+
+ </a4j:region>]]>
+ </programlisting>
+ <para>
+ Every time when AJAX request triggered from "region" method "processAjax" of "bean" will be called.
+ </para>
+</root>
\ No newline at end of file
Deleted: trunk/docs/userguide/en-US/src/main/docbook/included/ajaxlistener.desc.xml
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/ajaxlistener.desc.xml 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/ajaxlistener.desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<section>
- <para>The <emphasis role="bold"><property><a4j:ajaxListener></property></emphasis>
-component is the same one as "ActionListener" or "ValueChangeListener", but for an AJAX container.</para>
-</section>
Copied: trunk/docs/userguide/en-US/src/main/docbook/included/commandLink.xml (from rev 242, trunk/docs/userguide/en-US/src/main/docbook/included/commandlink.xml)
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/commandLink.xml (rev 0)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/commandLink.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -0,0 +1,68 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<chapter>
+
+ <para><table frame="all">
+ <title>Component identification parameters</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Name</entry>
+ <entry>Value</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>component-type</entry>
+ <entry>org.ajax4jsf.ajax.CommandLink</entry>
+ </row>
+ <row>
+ <entry>component-family</entry>
+ <entry>javax.faces.Command </entry>
+ </row>
+ <row>
+ <entry>component-class</entry>
+ <entry>org.ajax4jsf.ajax.html.HtmlCommandLink</entry>
+ </row>
+ <row>
+ <entry>renderer-type</entry>
+ <entry>org.ajax4jsf.components.AjaxCommandLinkRenderer </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table></para>
+
+ <section>
+ <title>Creating on a page</title>
+ <para><emphasis role="bold"><property><a4j:commandLink></property></emphasis> is used in the same way as <emphasis role="bold"><property><h:commandLink></property></emphasis>, but with definition of the area that is updated after the response comes back from the server.</para>
+ <programlisting role="XML"><![CDATA[<a4j:commandLink reRender="someData" action="#{bean.action1}" value="Link"/>]]></programlisting>
+ <para>This definition of the component provides a link, a click on the link causes an AJAX form
+ submit on the server, "action1" method performance, and rendering of the component
+ with "someData" id after the response comes back from the server.</para>
+ </section>
+ <section>
+ <title>Dynamical creation of a component from Java code</title>
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlAjaxCommandLink;
+...
+HtmlAjaxCommandLink myLink = new HtmlAjaxCommandLink();
+...
+]]></programlisting>
+ </section>
+ <section>
+ <title>Key attributes and ways of usage</title>
+ <para>The component <emphasis role="bold"><property><a4j:commandLink></property></emphasis> placed on a page generates the following HTML code:</para>
+ <programlisting role="JSP"><![CDATA[<a href="#" onclick="A4J.AJAX.Submit(?"request parameters");
+ return
+ <a href="#" onclick="A4J.AJAX.Submit(?"request parameters");
+ return false;">
+ <span style="color: black;">Link Value</span>
+ </a>
+]]></programlisting>
+ <para>Hence, the utility method "A4J.AJAX.Submit" is called on a click, the method performs AJAX request as the <emphasis role="bold"><property><a4j:support></property></emphasis> component</para>
+ <note>
+ <title>Note:</title>
+ <para>AJAX support is built in and it's not necessary to add nested <emphasis role="bold"><property><a4j:support></property></emphasis> to the component.</para>
+ </note>
+ <para>Common JSF navigation could be performed after AJAX submit and partial rendering, but Navigation Case must be defined as <emphasis role="bold"><property><redirect/></property></emphasis> in order to avoid problems with some browsers.</para>
+ <para>As any Ajax4jsf component sending AJAX requests and processing server responses <emphasis role="bold"><property><a4j:commandLink></property></emphasis> has all attributes described above (see <emphasis role="bold"><property><a4j:support></property></emphasis> chapter) that provide the required behavior of requests sending (delay, limitation of submit area and rendering, etc.)</para>
+ </section>
+</chapter>
\ No newline at end of file
Deleted: trunk/docs/userguide/en-US/src/main/docbook/included/commandlink.xml
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/commandlink.xml 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/commandlink.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -1,68 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<chapter>
-
- <para><table frame="all">
- <title>Component identification parameters</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Name</entry>
- <entry>Value</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.CommandLink</entry>
- </row>
- <row>
- <entry>component-family</entry>
- <entry>javax.faces.Command </entry>
- </row>
- <row>
- <entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlCommandLink</entry>
- </row>
- <row>
- <entry>renderer-type</entry>
- <entry>org.ajax4jsf.components.AjaxCommandLinkRenderer </entry>
- </row>
- </tbody>
- </tgroup>
- </table></para>
-
- <section>
- <title>Creating on a page</title>
- <para><emphasis role="bold"><property><a4j:commandLink></property></emphasis> is used in the same way as <emphasis role="bold"><property><h:commandLink></property></emphasis>, but with definition of the area that is updated after the response comes back from the server.</para>
- <programlisting role="XML"><![CDATA[<a4j:commandLink reRender="someData" action="#{bean.action1}" value="Link"/>]]></programlisting>
- <para>This definition of the component provides a link, a click on the link causes an AJAX form
- submit on the server, "action1" method performance, and rendering of the component
- with "someData" id after the response comes back from the server.</para>
- </section>
- <section>
- <title>Dynamical creation of a component from Java code</title>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlAjaxCommandLink;
-...
-HtmlAjaxCommandLink myLink = new HtmlAjaxCommandLink();
-...
-]]></programlisting>
- </section>
- <section>
- <title>Key attributes and ways of usage</title>
- <para>The component <emphasis role="bold"><property><a4j:commandLink></property></emphasis> placed on a page generates the following HTML code:</para>
- <programlisting role="JSP"><![CDATA[<a href="#" onclick="A4J.AJAX.Submit(?"request parameters");
- return
- <a href="#" onclick="A4J.AJAX.Submit(?"request parameters");
- return false;">
- <span style="color: black;">Link Value</span>
- </a>
-]]></programlisting>
- <para>Hence, the utility method "A4J.AJAX.Submit" is called on a click, the method performs AJAX request as the <emphasis role="bold"><property><a4j:support></property></emphasis> component</para>
- <note>
- <title>Note:</title>
- <para>AJAX support is built in and it's not necessary to add nested <emphasis role="bold"><property><a4j:support></property></emphasis> to the component.</para>
- </note>
- <para>Common JSF navigation could be performed after AJAX submit and partial rendering, but Navigation Case must be defined as <emphasis role="bold"><property><redirect/></property></emphasis> in order to avoid problems with some browsers.</para>
- <para>As any Ajax4jsf component sending AJAX requests and processing server responses <emphasis role="bold"><property><a4j:commandLink></property></emphasis> has all attributes described above (see <emphasis role="bold"><property><a4j:support></property></emphasis> chapter) that provide the required behavior of requests sending (delay, limitation of submit area and rendering, etc.)</para>
- </section>
-</chapter>
\ No newline at end of file
Deleted: trunk/docs/userguide/en-US/src/main/docbook/included/outputPanel.Desc.xml
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/outputPanel.Desc.xml 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/outputPanel.Desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -1,7 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<root>
-<section>
-<title>Description</title>
- <para>The component is used for components grouping in the AJAX output area, which offers several additional output opportunities such as inserting of non-present in tree components, saving of transient elements after AJAX request and some others.</para>
-</section>
-</root>
\ No newline at end of file
Copied: trunk/docs/userguide/en-US/src/main/docbook/included/outputPanel.desc.xml (from rev 242, trunk/docs/userguide/en-US/src/main/docbook/included/outputPanel.Desc.xml)
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/outputPanel.desc.xml (rev 0)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/outputPanel.desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -0,0 +1,7 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<root>
+<section>
+<title>Description</title>
+ <para>The component is used for components grouping in the AJAX output area, which offers several additional output opportunities such as inserting of non-present in tree components, saving of transient elements after AJAX request and some others.</para>
+</section>
+</root>
\ No newline at end of file
Deleted: trunk/docs/userguide/en-US/src/main/docbook/included/poll.Desc.xml
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/poll.Desc.xml 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/poll.Desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -1,9 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<root>
-<section>
-<title>Description</title>
- <para>The <emphasis role="bold">
- <property><a4j:poll></property>
- </emphasis> component allows periodical sending of AJAX requests to the server and is used for a page update according to a specified in milliseconds time interval.</para>
-</section>
-</root>
\ No newline at end of file
Copied: trunk/docs/userguide/en-US/src/main/docbook/included/poll.desc.xml (from rev 242, trunk/docs/userguide/en-US/src/main/docbook/included/poll.Desc.xml)
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/poll.desc.xml (rev 0)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/poll.desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -0,0 +1,9 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<root>
+<section>
+<title>Description</title>
+ <para>The <emphasis role="bold">
+ <property><a4j:poll></property>
+ </emphasis> component allows periodical sending of AJAX requests to the server and is used for a page update according to a specified in milliseconds time interval.</para>
+</section>
+</root>
\ No newline at end of file
Deleted: trunk/docs/userguide/en-US/src/main/docbook/included/region.Desc.xml
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/region.Desc.xml 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/region.Desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -1,11 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<root>
-<section>
-<title>Description</title>
- <para>
-The <emphasis role="bold">
-<property><a4j:region></property>
-</emphasis> component defines an area that is decoded on the server after AJAX submission.
-</para>
-</section>
-</root>
Copied: trunk/docs/userguide/en-US/src/main/docbook/included/region.desc.xml (from rev 242, trunk/docs/userguide/en-US/src/main/docbook/included/region.Desc.xml)
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/region.desc.xml (rev 0)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/region.desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -0,0 +1,11 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<root>
+<section>
+<title>Description</title>
+ <para>
+The <emphasis role="bold">
+<property><a4j:region></property>
+</emphasis> component defines an area that is decoded on the server after AJAX submission.
+</para>
+</section>
+</root>
Deleted: trunk/docs/userguide/en-US/src/main/docbook/included/support.Desc.xml
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/support.Desc.xml 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/support.Desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -1,9 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<root>
-<section>
-<title>Description</title>
- <para>The <emphasis role="bold">
- <property><a4j:support></property>
- </emphasis> component adds an AJAX support to any existing JSF component. It allows a component to generate asynchronous requests on the necessary event demand and with partial update of page content after a response incoming from the server.</para>
-</section>
-</root>
\ No newline at end of file
Copied: trunk/docs/userguide/en-US/src/main/docbook/included/support.desc.xml (from rev 242, trunk/docs/userguide/en-US/src/main/docbook/included/support.Desc.xml)
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/included/support.desc.xml (rev 0)
+++ trunk/docs/userguide/en-US/src/main/docbook/included/support.desc.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -0,0 +1,9 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<root>
+<section>
+<title>Description</title>
+ <para>The <emphasis role="bold">
+ <property><a4j:support></property>
+ </emphasis> component adds an AJAX support to any existing JSF component. It allows a component to generate asynchronous requests on the necessary event demand and with partial update of page content after a response incoming from the server.</para>
+</section>
+</root>
\ No newline at end of file
Modified: trunk/docs/userguide/en-US/src/main/docbook/master.xml
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/master.xml 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/userguide/en-US/src/main/docbook/master.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -6,7 +6,7 @@
<!ENTITY getttingStarted SYSTEM "modules/a4jUGstart.xml">
<!ENTITY envSettings SYSTEM "modules/a4jUGenvsettings.xml">
<!ENTITY usingAJAX SYSTEM "modules/a4jUGusingAJAX.xml">
- <!ENTITY componentDetails SYSTEM "../../build/generated/en/a4j_table.xml">
+ <!ENTITY componentDetails SYSTEM "../../../target/generated/en/a4j.xml">
<!ENTITY skinnability SYSTEM "modules/a4jUGskinnability.xml">
<!ENTITY IDEintegration SYSTEM "modules/a4jUGideintegration.xml">
<!ENTITY EVCP SYSTEM "modules/a4jUGevcp.xml">
Modified: trunk/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/userguide/pom.xml 2007-06-06 00:41:55 UTC (rev 243)
@@ -14,152 +14,176 @@
<packaging>pom</packaging>
<description>Ajax4jsf user guide</description>
<build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>unpack</id>
- <phase>generate-resources</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>org.ajax4jsf</groupId>
- <artifactId>ajax4jsf</artifactId>
- <version>
- ${project.version}
- </version>
- <type>jar</type>
- <overWrite>true</overWrite>
- <outputDirectory>
- ${project.build.directory}/library
- </outputDirectory>
- </artifactItem>
- <artifactItem>
- <groupId>org.ajax4jsf.docs</groupId>
- <artifactId>xslt</artifactId>
- <version>
- ${project.version}
- </version>
- <type>jar</type>
- <overWrite>true</overWrite>
- <outputDirectory>
- ${project.build.directory}/xslt
- </outputDirectory>
- </artifactItem>
- </artifactItems>
- <outputDirectory>
- ${project.build.directory}/library
- </outputDirectory>
- <overWriteReleases>false</overWriteReleases>
- <overWriteSnapshots>
- true
- </overWriteSnapshots>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>xml-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>transformTld</id>
- <phase>process-resources</phase>
- <goals>
- <goal>transform</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <basedir>${basedir}/src/main/docbook</basedir>
- <transformationSets>
- <transformationSet>
- <dir>
- ${project.build.directory}/library/META-INF
- </dir>
- <includes>
- <include>*.tld</include>
- </includes>
- <outputDir>
- ${project.build.directory}/generated/en/
- </outputDir>
- <stylesheet>${project.build.directory}/xslt/en/f.xsl</stylesheet>
- <fileMappers>
- <fileMapper
- implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
- <targetExtension>
- _table.xml
- </targetExtension>
- </fileMapper>
- </fileMappers>
- </transformationSet>
- </transformationSets>
- </configuration>
- </plugin>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>unpack</id>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.ajax4jsf</groupId>
+ <artifactId>
+ ajax4jsf
+ </artifactId>
+ <version>
+ ${project.version}
+ </version>
+ <type>jar</type>
+ <overWrite>true</overWrite>
+ <outputDirectory>
+ ${project.build.directory}/library
+ </outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ <outputDirectory>
+ ${project.build.directory}/library
+ </outputDirectory>
+ <overWriteReleases>
+ false
+ </overWriteReleases>
+ <overWriteSnapshots>
+ true
+ </overWriteSnapshots>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>xml-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>transformTld</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>transform</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>net.sf.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <version>8.7</version>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <transformationSets>
+ <transformationSet>
+ <dir>
+ ${project.build.directory}/library/META-INF
+ </dir>
+ <includes>
+ <include>*.tld</include>
+ </includes>
+ <outputDir>
+ ${project.build.directory}/generated/en/
+ </outputDir>
+ <stylesheet>
+ ${basedir}/src/main/docbook/f.xsl
+ </stylesheet>
+ <fileMappers>
+ <fileMapper
+ implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
+ <targetExtension>
+ xml
+ </targetExtension>
+ </fileMapper>
+ </fileMappers>
+ <parameters>
+ <parameter>
+ <name>lang</name>
+ <value>
+ ${basedir}/src/main/docbook
+ </value>
+ </parameter>
+ <parameter>
+ <name>title</name>
+ <value>
+ ${project.name}
+ </value>
+ </parameter>
+ </parameters>
+ </transformationSet>
+ </transformationSets>
+ </configuration>
+ </plugin>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jboss-docbook-plugin</artifactId>
- <version>1.0</version>
- <executions>
- <execution>
- <phase>compile</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>org.ajax4jsf.docs</groupId>
- <artifactId>xslt</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <configuration>
- <sourceDirectory>
- ${basedir}/src/main/docbook
- </sourceDirectory>
- <sourceDocumentName>master.xml</sourceDocumentName>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>
- /en/fopdf.xsl
- </stylesheetResource>
- <finalName>
- ajax4jsf_reference.pdf
- </finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>
- /en/html.xsl
- </stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- <xincludeSupported>true</xincludeSupported>
- <options>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jboss-docbook-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.ajax4jsf.docs</groupId>
+ <artifactId>xslt</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDirectory>
+ ${basedir}/src/main/docbook
+ </sourceDirectory>
+ <targetDirectory>${project.build.outputDirectory}</targetDirectory>
+ <sourceDocumentName>
+ master.xml
+ </sourceDocumentName>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>
+ /en/fopdf.xsl
+ </stylesheetResource>
+ <finalName>
+ ajax4jsf_reference.pdf
+ </finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>
+ /en/html.xsl
+ </stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
<xincludeSupported>true</xincludeSupported>
- <xmlTransformerType>saxon</xmlTransformerType>
- <transformerParameters>
- <property>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>
+ saxon
+ </xmlTransformerType>
+ <!--
+ <transformerParameters>
+ <property>
<name>custom.titlepage.img</name>
<value>
- ${basedir}/src/main/resources/shared/images/hibernate_logo_a.png
+ ${basedir}/src/main/resources/shared/images/hibernate_logo_a.png
</value>
- </property>
- </transformerParameters>
- </options>
- </configuration>
- </plugin>
- </plugins>
+ </property>
+ </transformerParameters>
+ -->
+ </options>
+ </configuration>
+
+ </plugin>
+ </plugins>
+ </pluginManagement>
</build>
<!-- report plugin is currently hosed
Deleted: trunk/docs/xslt/src/main/resources/en/f.xsl
===================================================================
--- trunk/docs/xslt/src/main/resources/en/f.xsl 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/xslt/src/main/resources/en/f.xsl 2007-06-06 00:41:55 UTC (rev 243)
@@ -1,75 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:javaee="http://java.sun.com/JSP/TagLibraryDescriptor"
- version="1.0" exclude-result-prefixes="javaee">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
- <xsl:param name="lang" />
-
- <xsl:template match="javaee:taglib | taglib">
- <xsl:variable name="excluded-tag-names">header2,header3,header4,header5,header6</xsl:variable>
-
- <chapter>
-
- <title>Ajax4JSF Components Library</title>
- <xsl:for-each select="javaee:tag | tag">
-
- <!--xsl:value-of select="./name/text()" /-->
-
- <xsl:if test="not(contains($excluded-tag-names, javaee:name))">
- <xsl:call-template name="tag" />
- </xsl:if>
- <xsl:if test="not(contains($excluded-tag-names, ./name/text()))">
- <xsl:call-template name="tag" />
- </xsl:if>
- </xsl:for-each>
- </chapter>
- </xsl:template>
-
- <xsl:template name="tag">
- <section role="NotInToc">
- <xsl:variable name="tag_name">
- <xsl:choose>
- <xsl:when test="javaee:name">
- <xsl:value-of select="javaee:name" />
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="./name/text()" />
- </xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:attribute name="id"><xsl:value-of select="$tag_name"/></xsl:attribute>
- <title><<xsl:value-of select="concat('a4j:', $tag_name)" />></title>
- <xsl:for-each select="document(concat($lang, '/included/',$tag_name, '.desc.xml'))/*">
- <xsl:copy-of select="./*"/>
- </xsl:for-each>
- <table>
- <title>a4j:<xsl:value-of select="javaee:name"/><xsl:value-of select="name"/> attributes</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Attribute Name</entry>
- <entry>Description</entry>
- </row>
- </thead>
- <tbody>
- <xsl:for-each select="javaee:attribute | attribute">
- <row>
- <entry>
- <xsl:value-of select="javaee:name"/>
- <xsl:value-of select="name"/>
- </entry>
- <entry>
- <xsl:value-of select="javaee:description" disable-output-escaping="yes"/>
- <xsl:value-of select="description" disable-output-escaping="yes"/>
- </entry>
- </row>
- </xsl:for-each>
- </tbody>
- </tgroup>
- </table>
- <xsl:for-each select="document(concat($lang,'/included/',$tag_name, '.xml'))/*">
- <xsl:copy-of select="./*"/>
- </xsl:for-each>
- </section>
- </xsl:template>
-</xsl:transform>
\ No newline at end of file
Modified: trunk/docs/xslt/src/main/resources/en/fopdf.xsl
===================================================================
--- trunk/docs/xslt/src/main/resources/en/fopdf.xsl 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/xslt/src/main/resources/en/fopdf.xsl 2007-06-06 00:41:55 UTC (rev 243)
@@ -10,7 +10,7 @@
-->
<!DOCTYPE xsl:stylesheet [
- <!ENTITY db_xsl_path "../../support/docbook-xsl/">
+ <!ENTITY db_xsl_path "../support/docbook-xsl">
]>
<xsl:stylesheet version="1.0" xmlns="http://www.w3.org/TR/xhtml1/transitional"
Modified: trunk/docs/xslt/src/main/resources/en/html.xsl
===================================================================
--- trunk/docs/xslt/src/main/resources/en/html.xsl 2007-06-05 22:59:27 UTC (rev 242)
+++ trunk/docs/xslt/src/main/resources/en/html.xsl 2007-06-06 00:41:55 UTC (rev 243)
@@ -15,7 +15,7 @@
-->
<!DOCTYPE xsl:stylesheet [
- <!ENTITY db_xsl_path "../../support/docbook-xsl/">
+ <!ENTITY db_xsl_path "../support/docbook-xsl">
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
Copied: trunk/docs/xslt/src/main/resources/support/docbook-dtd (from rev 239, trunk/docs/xslt/support/docbook-dtd)
Copied: trunk/docs/xslt/src/main/resources/support/docbook-xsl (from rev 239, trunk/docs/xslt/support/docbook-xsl)
17 years, 6 months
JBoss Ajax4JSF SVN: r242 - in trunk/docs: userguide/en-US and 3 other directories.
by ajax4jsf-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-06-05 18:59:27 -0400 (Tue, 05 Jun 2007)
New Revision: 242
Added:
trunk/docs/userguide/en-US/src/main/docbook/included/
trunk/docs/userguide/en-US/src/main/docbook/modules/
trunk/docs/userguide/en-US/src/main/resources/images/
Removed:
trunk/docs/userguide/en-US/images/
trunk/docs/userguide/en-US/included/
trunk/docs/userguide/en-US/modules/
trunk/docs/xslt/styles/
Modified:
trunk/docs/userguide/pom.xml
Log:
Copied: trunk/docs/userguide/en-US/src/main/docbook/included (from rev 240, trunk/docs/userguide/en-US/included)
Copied: trunk/docs/userguide/en-US/src/main/docbook/modules (from rev 240, trunk/docs/userguide/en-US/modules)
Copied: trunk/docs/userguide/en-US/src/main/resources/images (from rev 240, trunk/docs/userguide/en-US/images)
Modified: trunk/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2007-06-05 22:34:45 UTC (rev 241)
+++ trunk/docs/userguide/pom.xml 2007-06-05 22:59:27 UTC (rev 242)
@@ -30,13 +30,27 @@
<artifactItem>
<groupId>org.ajax4jsf</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>${project.version}</version>
+ <version>
+ ${project.version}
+ </version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>
- ${project.build.directory}/deps
+ ${project.build.directory}/library
</outputDirectory>
</artifactItem>
+ <artifactItem>
+ <groupId>org.ajax4jsf.docs</groupId>
+ <artifactId>xslt</artifactId>
+ <version>
+ ${project.version}
+ </version>
+ <type>jar</type>
+ <overWrite>true</overWrite>
+ <outputDirectory>
+ ${project.build.directory}/xslt
+ </outputDirectory>
+ </artifactItem>
</artifactItems>
<outputDirectory>
${project.build.directory}/library
@@ -54,22 +68,27 @@
<artifactId>xml-maven-plugin</artifactId>
<executions>
<execution>
- <id>transformTld</id>
- <phase>process-resources</phase>
- <goals>
+ <id>transformTld</id>
+ <phase>process-resources</phase>
+ <goals>
<goal>transform</goal>
</goals>
</execution>
</executions>
<configuration>
+ <basedir>${basedir}/src/main/docbook</basedir>
<transformationSets>
<transformationSet>
<dir>
${project.build.directory}/library/META-INF
</dir>
- <includes>*.tld</includes>
- <outputDir>${project.build.directory}/generated/en/</outputDir>
- <stylesheet>/en/f.xsl</stylesheet>
+ <includes>
+ <include>*.tld</include>
+ </includes>
+ <outputDir>
+ ${project.build.directory}/generated/en/
+ </outputDir>
+ <stylesheet>${project.build.directory}/xslt/en/f.xsl</stylesheet>
<fileMappers>
<fileMapper
implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
@@ -89,7 +108,7 @@
<version>1.0</version>
<executions>
<execution>
- <phase>compile</phase>
+ <phase>compile</phase>
<goals>
<goal>generate</goal>
</goals>
@@ -104,7 +123,7 @@
</dependencies>
<configuration>
<sourceDirectory>
- ${basedir}/userguide/en
+ ${basedir}/src/main/docbook
</sourceDirectory>
<sourceDocumentName>master.xml</sourceDocumentName>
<formats>
17 years, 6 months
JBoss Ajax4JSF SVN: r241 - in trunk/docs: userguide/en-US and 4 other directories.
by ajax4jsf-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-06-05 18:34:45 -0400 (Tue, 05 Jun 2007)
New Revision: 241
Added:
trunk/docs/userguide/en-US/src/
trunk/docs/userguide/en-US/src/main/
trunk/docs/userguide/en-US/src/main/docbook/
trunk/docs/userguide/en-US/src/main/docbook/master.xml
trunk/docs/userguide/en-US/src/main/resources/
trunk/docs/xslt/src/main/resources/en/f.xsl
Removed:
trunk/docs/userguide/en-US/master.xml
trunk/docs/userguide/f.xsl
Modified:
trunk/docs/userguide/pom.xml
Log:
reorganize projects for a Maven documentation build
Deleted: trunk/docs/userguide/en-US/master.xml
===================================================================
--- trunk/docs/userguide/en-US/master.xml 2007-06-05 22:03:41 UTC (rev 240)
+++ trunk/docs/userguide/en-US/master.xml 2007-06-05 22:34:45 UTC (rev 241)
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3CR3//EN"
-"../../../../jbosstools/trunk/documentation/resources/support/docbook-dtd/docbookx.dtd"
-[ <!ENTITY introduction SYSTEM "modules/a4jUGintro.xml">
- <!ENTITY technicalRequirements SYSTEM "modules/a4jUGtechreqs.xml">
- <!ENTITY getttingStarted SYSTEM "modules/a4jUGstart.xml">
- <!ENTITY envSettings SYSTEM "modules/a4jUGenvsettings.xml">
- <!ENTITY usingAJAX SYSTEM "modules/a4jUGusingAJAX.xml">
- <!ENTITY componentDetails SYSTEM "../../build/generated/en/a4j_table.xml">
- <!ENTITY skinnability SYSTEM "modules/a4jUGskinnability.xml">
- <!ENTITY IDEintegration SYSTEM "modules/a4jUGideintegration.xml">
- <!ENTITY EVCP SYSTEM "modules/a4jUGevcp.xml">
- <!ENTITY resourceLinks SYSTEM "modules/a4jUGlinks.xml">
- <!ENTITY wadParams SYSTEM "modules/AUGWADParams.xml">
- <!ENTITY FAQ SYSTEM "modules/a4jUGfaq.xml">
-]>
-<book>
- <bookinfo>
- <title>Ajax4jsf Developer Guide</title>
- <subtitle>A JSF component library and framework for incorporating AJAX into Web applications</subtitle>
- <copyright>
- <year>2007</year>
- <holder>Red Hat</holder>
- </copyright>
-
- </bookinfo>
- <toc/>
- &introduction;
- &technicalRequirements;
- &envSettings;
- &getttingStarted;
- &usingAJAX;
- &componentDetails;
- &skinnability;
- &IDEintegration;
-
-</book>
Copied: trunk/docs/userguide/en-US/src/main/docbook/master.xml (from rev 240, trunk/docs/userguide/en-US/master.xml)
===================================================================
--- trunk/docs/userguide/en-US/src/main/docbook/master.xml (rev 0)
+++ trunk/docs/userguide/en-US/src/main/docbook/master.xml 2007-06-05 22:34:45 UTC (rev 241)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3CR3//EN"
+"../../../../jbosstools/trunk/documentation/resources/support/docbook-dtd/docbookx.dtd"
+[ <!ENTITY introduction SYSTEM "modules/a4jUGintro.xml">
+ <!ENTITY technicalRequirements SYSTEM "modules/a4jUGtechreqs.xml">
+ <!ENTITY getttingStarted SYSTEM "modules/a4jUGstart.xml">
+ <!ENTITY envSettings SYSTEM "modules/a4jUGenvsettings.xml">
+ <!ENTITY usingAJAX SYSTEM "modules/a4jUGusingAJAX.xml">
+ <!ENTITY componentDetails SYSTEM "../../build/generated/en/a4j_table.xml">
+ <!ENTITY skinnability SYSTEM "modules/a4jUGskinnability.xml">
+ <!ENTITY IDEintegration SYSTEM "modules/a4jUGideintegration.xml">
+ <!ENTITY EVCP SYSTEM "modules/a4jUGevcp.xml">
+ <!ENTITY resourceLinks SYSTEM "modules/a4jUGlinks.xml">
+ <!ENTITY wadParams SYSTEM "modules/AUGWADParams.xml">
+ <!ENTITY FAQ SYSTEM "modules/a4jUGfaq.xml">
+]>
+<book>
+ <bookinfo>
+ <title>Ajax4jsf Developer Guide</title>
+ <subtitle>A JSF component library and framework for incorporating AJAX into Web applications</subtitle>
+ <copyright>
+ <year>2007</year>
+ <holder>Red Hat</holder>
+ </copyright>
+
+ </bookinfo>
+ <toc/>
+ &introduction;
+ &technicalRequirements;
+ &envSettings;
+ &getttingStarted;
+ &usingAJAX;
+ &componentDetails;
+ &skinnability;
+ &IDEintegration;
+
+</book>
Deleted: trunk/docs/userguide/f.xsl
===================================================================
--- trunk/docs/userguide/f.xsl 2007-06-05 22:03:41 UTC (rev 240)
+++ trunk/docs/userguide/f.xsl 2007-06-05 22:34:45 UTC (rev 241)
@@ -1,75 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:javaee="http://java.sun.com/JSP/TagLibraryDescriptor"
- version="1.0" exclude-result-prefixes="javaee">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
- <xsl:param name="lang" />
-
- <xsl:template match="javaee:taglib | taglib">
- <xsl:variable name="excluded-tag-names">header2,header3,header4,header5,header6</xsl:variable>
-
- <chapter>
-
- <title>Ajax4JSF Components Library</title>
- <xsl:for-each select="javaee:tag | tag">
-
- <!--xsl:value-of select="./name/text()" /-->
-
- <xsl:if test="not(contains($excluded-tag-names, javaee:name))">
- <xsl:call-template name="tag" />
- </xsl:if>
- <xsl:if test="not(contains($excluded-tag-names, ./name/text()))">
- <xsl:call-template name="tag" />
- </xsl:if>
- </xsl:for-each>
- </chapter>
- </xsl:template>
-
- <xsl:template name="tag">
- <section role="NotInToc">
- <xsl:variable name="tag_name">
- <xsl:choose>
- <xsl:when test="javaee:name">
- <xsl:value-of select="javaee:name" />
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="./name/text()" />
- </xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:attribute name="id"><xsl:value-of select="$tag_name"/></xsl:attribute>
- <title><<xsl:value-of select="concat('a4j:', $tag_name)" />></title>
- <xsl:for-each select="document(concat($lang, '/included/',$tag_name, '.desc.xml'))/*">
- <xsl:copy-of select="./*"/>
- </xsl:for-each>
- <table>
- <title>a4j:<xsl:value-of select="javaee:name"/><xsl:value-of select="name"/> attributes</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Attribute Name</entry>
- <entry>Description</entry>
- </row>
- </thead>
- <tbody>
- <xsl:for-each select="javaee:attribute | attribute">
- <row>
- <entry>
- <xsl:value-of select="javaee:name"/>
- <xsl:value-of select="name"/>
- </entry>
- <entry>
- <xsl:value-of select="javaee:description" disable-output-escaping="yes"/>
- <xsl:value-of select="description" disable-output-escaping="yes"/>
- </entry>
- </row>
- </xsl:for-each>
- </tbody>
- </tgroup>
- </table>
- <xsl:for-each select="document(concat($lang,'/included/',$tag_name, '.xml'))/*">
- <xsl:copy-of select="./*"/>
- </xsl:for-each>
- </section>
- </xsl:template>
-</xsl:transform>
\ No newline at end of file
Modified: trunk/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2007-06-05 22:03:41 UTC (rev 240)
+++ trunk/docs/userguide/pom.xml 2007-06-05 22:34:45 UTC (rev 241)
@@ -16,11 +16,47 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>unpack</id>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.ajax4jsf</groupId>
+ <artifactId>ajax4jsf</artifactId>
+ <version>${project.version}</version>
+ <type>jar</type>
+ <overWrite>true</overWrite>
+ <outputDirectory>
+ ${project.build.directory}/deps
+ </outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ <outputDirectory>
+ ${project.build.directory}/library
+ </outputDirectory>
+ <overWriteReleases>false</overWriteReleases>
+ <overWriteSnapshots>
+ true
+ </overWriteSnapshots>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xml-maven-plugin</artifactId>
<executions>
<execution>
- <goals>
+ <id>transformTld</id>
+ <phase>process-resources</phase>
+ <goals>
<goal>transform</goal>
</goals>
</execution>
@@ -28,10 +64,12 @@
<configuration>
<transformationSets>
<transformationSet>
- <dir>${project.build.directory}/tld</dir>
+ <dir>
+ ${project.build.directory}/library/META-INF
+ </dir>
<includes>*.tld</includes>
- <outputDir>build/generated/en/</outputDir>
- <stylesheet>userguide/f.xsl</stylesheet>
+ <outputDir>${project.build.directory}/generated/en/</outputDir>
+ <stylesheet>/en/f.xsl</stylesheet>
<fileMappers>
<fileMapper
implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
@@ -51,20 +89,19 @@
<version>1.0</version>
<executions>
<execution>
+ <phase>compile</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
- <!--
- <dependencies>
+ <dependencies>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-docbook-xslt</artifactId>
- <version>0.1</version>
+ <groupId>org.ajax4jsf.docs</groupId>
+ <artifactId>xslt</artifactId>
+ <version>${project.version}</version>
</dependency>
- </dependencies>
- -->
+ </dependencies>
<configuration>
<sourceDirectory>
${basedir}/userguide/en
@@ -74,7 +111,7 @@
<format>
<formatName>pdf</formatName>
<stylesheetResource>
- /styles/en/fopdf.xsl
+ /en/fopdf.xsl
</stylesheetResource>
<finalName>
ajax4jsf_reference.pdf
@@ -83,7 +120,7 @@
<format>
<formatName>html</formatName>
<stylesheetResource>
- /styles/en/html.xsl
+ /en/html.xsl
</stylesheetResource>
<finalName>index.html</finalName>
</format>
@@ -120,9 +157,9 @@
<masterTranslation>en-US</masterTranslation>
</properties>
- <modules>
- <module>en-US</module>
- </modules>
+ <modules>
+ <module>en-US</module>
+ </modules>
</project>
Copied: trunk/docs/xslt/src/main/resources/en/f.xsl (from rev 238, trunk/docs/userguide/f.xsl)
===================================================================
--- trunk/docs/xslt/src/main/resources/en/f.xsl (rev 0)
+++ trunk/docs/xslt/src/main/resources/en/f.xsl 2007-06-05 22:34:45 UTC (rev 241)
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:javaee="http://java.sun.com/JSP/TagLibraryDescriptor"
+ version="1.0" exclude-result-prefixes="javaee">
+ <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
+ <xsl:param name="lang" />
+
+ <xsl:template match="javaee:taglib | taglib">
+ <xsl:variable name="excluded-tag-names">header2,header3,header4,header5,header6</xsl:variable>
+
+ <chapter>
+
+ <title>Ajax4JSF Components Library</title>
+ <xsl:for-each select="javaee:tag | tag">
+
+ <!--xsl:value-of select="./name/text()" /-->
+
+ <xsl:if test="not(contains($excluded-tag-names, javaee:name))">
+ <xsl:call-template name="tag" />
+ </xsl:if>
+ <xsl:if test="not(contains($excluded-tag-names, ./name/text()))">
+ <xsl:call-template name="tag" />
+ </xsl:if>
+ </xsl:for-each>
+ </chapter>
+ </xsl:template>
+
+ <xsl:template name="tag">
+ <section role="NotInToc">
+ <xsl:variable name="tag_name">
+ <xsl:choose>
+ <xsl:when test="javaee:name">
+ <xsl:value-of select="javaee:name" />
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="./name/text()" />
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+ <xsl:attribute name="id"><xsl:value-of select="$tag_name"/></xsl:attribute>
+ <title><<xsl:value-of select="concat('a4j:', $tag_name)" />></title>
+ <xsl:for-each select="document(concat($lang, '/included/',$tag_name, '.desc.xml'))/*">
+ <xsl:copy-of select="./*"/>
+ </xsl:for-each>
+ <table>
+ <title>a4j:<xsl:value-of select="javaee:name"/><xsl:value-of select="name"/> attributes</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Attribute Name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <xsl:for-each select="javaee:attribute | attribute">
+ <row>
+ <entry>
+ <xsl:value-of select="javaee:name"/>
+ <xsl:value-of select="name"/>
+ </entry>
+ <entry>
+ <xsl:value-of select="javaee:description" disable-output-escaping="yes"/>
+ <xsl:value-of select="description" disable-output-escaping="yes"/>
+ </entry>
+ </row>
+ </xsl:for-each>
+ </tbody>
+ </tgroup>
+ </table>
+ <xsl:for-each select="document(concat($lang,'/included/',$tag_name, '.xml'))/*">
+ <xsl:copy-of select="./*"/>
+ </xsl:for-each>
+ </section>
+ </xsl:template>
+</xsl:transform>
\ No newline at end of file
17 years, 6 months
JBoss Ajax4JSF SVN: r240 - in trunk/docs: userguide and 7 other directories.
by ajax4jsf-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-06-05 18:03:41 -0400 (Tue, 05 Jun 2007)
New Revision: 240
Added:
trunk/docs/pom.xml
trunk/docs/userguide/en-US/
trunk/docs/userguide/en-US/pom.xml
trunk/docs/xslt/pom.xml
trunk/docs/xslt/src/
trunk/docs/xslt/src/main/
trunk/docs/xslt/src/main/resources/
trunk/docs/xslt/src/main/resources/en/
trunk/docs/xslt/support/support.properties
trunk/docs/xslt/support/support.xml
Removed:
trunk/docs/userguide/en/
trunk/docs/xslt/styles/en/
trunk/docs/xslt/support.properties
trunk/docs/xslt/support.xml
Modified:
trunk/docs/userguide/pom.xml
Log:
reorganize projects for a Maven documentation build
Added: trunk/docs/pom.xml
===================================================================
--- trunk/docs/pom.xml (rev 0)
+++ trunk/docs/pom.xml 2007-06-05 22:03:41 UTC (rev 240)
@@ -0,0 +1,13 @@
+<?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/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.ajax4jsf</groupId>
+ <artifactId>docs</artifactId>
+ <version>1.1.2-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>xslt</module>
+ <module>userguide</module>
+ </modules>
+</project>
+
Copied: trunk/docs/userguide/en-US (from rev 238, trunk/docs/userguide/en)
Added: trunk/docs/userguide/en-US/pom.xml
===================================================================
--- trunk/docs/userguide/en-US/pom.xml (rev 0)
+++ trunk/docs/userguide/en-US/pom.xml 2007-06-05 22:03:41 UTC (rev 240)
@@ -0,0 +1,20 @@
+<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>
+
+ <parent>
+ <groupId>org.ajax4jsf.docs</groupId>
+ <artifactId>userguide</artifactId>
+ <version>1.1.2-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <artifactId>userguide-${translation}</artifactId>
+ <packaging>pom</packaging>
+ <name>Ajax4jsf Manual (${translation})</name>
+
+ <properties>
+ <translation>en-US</translation>
+ </properties>
+
+</project>
Modified: trunk/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2007-06-05 21:49:31 UTC (rev 239)
+++ trunk/docs/userguide/pom.xml 2007-06-05 22:03:41 UTC (rev 240)
@@ -3,50 +3,49 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
- <artifactId>master</artifactId>
+ <artifactId>docs</artifactId>
<groupId>org.ajax4jsf</groupId>
<version>1.1.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>org.ajax4jsf</groupId>
- <artifactId>docs</artifactId>
- <version>1.1.2-SNAPSHOT</version>
- <description>Project documentation</description>
+ <groupId>org.ajax4jsf.docs</groupId>
+ <artifactId>userguide</artifactId>
+ <version>1.1.2-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <description>Ajax4jsf user guide</description>
<build>
- <resources>
- <resource>
- <directory>resources</directory>
- </resource>
- </resources>
<plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>xml-maven-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>transform</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <transformationSets>
- <transformationSet>
- <dir>${project.build.directory}/tld</dir>
- <includes>*.tld</includes>
- <outputDir>build/generated/en/</outputDir>
- <stylesheet>userguide/f.xsl</stylesheet>
- <fileMappers>
- <fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
- <targetExtension>_table.xml</targetExtension>
- </fileMapper>
- </fileMappers>
- </transformationSet>
- </transformationSets>
- </configuration>
- </plugin>
-
<plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>xml-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>transform</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <transformationSets>
+ <transformationSet>
+ <dir>${project.build.directory}/tld</dir>
+ <includes>*.tld</includes>
+ <outputDir>build/generated/en/</outputDir>
+ <stylesheet>userguide/f.xsl</stylesheet>
+ <fileMappers>
+ <fileMapper
+ implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
+ <targetExtension>
+ _table.xml
+ </targetExtension>
+ </fileMapper>
+ </fileMappers>
+ </transformationSet>
+ </transformationSets>
+ </configuration>
+ </plugin>
+
+ <plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jboss-docbook-plugin</artifactId>
<version>1.0</version>
@@ -121,6 +120,9 @@
<masterTranslation>en-US</masterTranslation>
</properties>
+ <modules>
+ <module>en-US</module>
+ </modules>
</project>
Added: trunk/docs/xslt/pom.xml
===================================================================
--- trunk/docs/xslt/pom.xml (rev 0)
+++ trunk/docs/xslt/pom.xml 2007-06-05 22:03:41 UTC (rev 240)
@@ -0,0 +1,9 @@
+<?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/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.ajax4jsf.docs</groupId>
+ <artifactId>xslt</artifactId>
+ <version>1.1.2-SNAPSHOT</version>
+ <description>Docbook documentation stylesheets</description>
+</project>
+
Copied: trunk/docs/xslt/src/main/resources/en (from rev 239, trunk/docs/xslt/styles/en)
Copied: trunk/docs/xslt/support/support.properties (from rev 239, trunk/docs/xslt/support.properties)
===================================================================
--- trunk/docs/xslt/support/support.properties (rev 0)
+++ trunk/docs/xslt/support/support.properties 2007-06-05 22:03:41 UTC (rev 240)
@@ -0,0 +1,2 @@
+#Wed Apr 11 15:30:36 EEST 2007
+ajax4jsf.location=E:\\poligon\\SVNLocation\\ajax4jsf\\trunk
Copied: trunk/docs/xslt/support/support.xml (from rev 239, trunk/docs/xslt/support.xml)
===================================================================
--- trunk/docs/xslt/support/support.xml (rev 0)
+++ trunk/docs/xslt/support/support.xml 2007-06-05 22:03:41 UTC (rev 240)
@@ -0,0 +1,259 @@
+<project name="DocSupport" default="all.doc" basedir=".">
+
+ <dirname property="support.startdir" file="${ant.file.DocSupport}"/>
+
+ <property name="support.basedir" value="${support.startdir}"/>
+
+ <property file="${support.startdir}/support.properties" />
+
+ <!-- Set build directories for all formats. -->
+ <property name="build.dir" value="${basedir}/build"/>
+
+ <!-- Support files for build process. -->
+ <property name="support.dir" value="${support.basedir}/support"/>
+ <property name="styles.dir" value="${support.basedir}/styles"/>
+
+ <!-- Set DocBook stylesheets. -->
+ <property name="db.style.fopdf" value="fopdf.xsl"/>
+ <property name="db.style.html" value="html_chunk.xsl"/>
+ <property name="db.style.htmlsingle" value="html.xsl"/>
+
+ <property name="maxmem" value="1024m" />
+
+ <xmlcatalog id="docbook.catalog">
+ <catalogpath path="${support.basedir}/docbook-dtd/catalog.xml" />
+ </xmlcatalog>
+
+
+ <!-- Classpath for the build tools. -->
+ <path id="lib.classpath">
+ <fileset dir="${support.dir}/lib">
+ <include name="**/saxon1.jar" />
+ </fileset>
+ <dirset dir="." />
+ <fileset dir="${support.dir}/lib">
+ <include name="**/*.jar"/>
+ <exclude name="**/saxon1.jar"/>
+ </fileset>
+ </path>
+
+ <!-- ################################################################## -->
+
+ <target name="all.doc" depends="clean">
+ <antcall target="lang.all"><param name="lang" value="en"/></antcall>
+ </target>
+
+ <!-- ################################################################## -->
+
+ <target name="lang.all.bypass.check" unless="lang.all.bypass.disabled">
+ <uptodate property="lang.all.bypass.on" targetfile="${build.dir}/${lang}/pdf/${pdf.name}">
+ <srcfiles dir="${support.basedir}" includes="**"/>
+ <srcfiles dir="${basedir}/${lang}" includes="**"/>
+ <srcfiles dir="${basedir}" includes="build.xml"/>
+ </uptodate>
+ </target>
+
+ <target name="lang.all.run" depends="lang.all.bypass.check, lang.all.bypass.message" unless="lang.all.bypass.on">
+ <antcall target="clean"/>
+ <antcall target="lang.all"/>
+ </target>
+
+ <target name="lang.all.bypass.message" if="lang.all.bypass.on">
+ <echo>Already uptodate: ${build.dir}/${lang}/pdf/${pdf.name}</echo>
+ <echo>add -Dlang.all.bypass.disabled=true to force a rebuild</echo>
+ </target>
+
+ <!-- ################################################################## -->
+
+ <target name="lang.dochtml.bypass.check" unless="lang.dochtml.bypass.disabled">
+ <uptodate property="lang.dochtml.bypass.on" targetfile="${build.dir}/${lang}/html/index.html">
+ <srcfiles dir="${support.basedir}" includes="**"/>
+ <srcfiles dir="${basedir}/${lang}" includes="**"/>
+ <srcfiles dir="${basedir}" includes="build.xml"/>
+ </uptodate>
+ </target>
+
+ <target name="lang.dochtml.run" depends="lang.dochtml.bypass.check, lang.dochtml.bypass.message" unless="lang.dochtml.bypass.on">
+ <antcall target="clean.dochtml"/>
+ <antcall target="lang.dochtml"/>
+ <antcall target="lang.dochtmlsingle"/>
+ </target>
+
+ <target name="lang.dochtml.bypass.message" if="lang.dochtml.bypass.on">
+ <echo>Already uptodate: ${build.dir}/${lang}/html/index.html</echo>
+ <echo>add -Dlang.dochtml.bypass.disabled=true to force a rebuild</echo>
+ </target>
+
+ <!-- ################################################################## -->
+
+ <target name="clean">
+ <!-- Delete build directory. -->
+ <delete dir="${build.dir}"/>
+ </target>
+
+ <target name="clean.dochtml">
+ <!-- Delete build directory for single html -->
+ <delete dir="${build.dir}/${lang}/html"/>
+ <delete dir="${build.dir}/${lang}/html_single"/>
+ </target>
+
+ <target name="collect-tld">
+ <mkdir dir="../build/generated/${lang}" />
+ <copy flatten="yes" todir="../build/generated/${lang}">
+ <fileset dir="${ajax4jsf.location}">
+ <include name="framework/target/classes/META-INF/*.tld"/>
+ </fileset>
+
+ </copy>
+ <touch>
+ <fileset dir="../build/generated/${lang}">
+ <include name="*.tld" />
+ </fileset>
+ </touch>
+ </target>
+
+ <!-- - - - - - - - - - - - - - - - - -
+ target: tld2docbook
+ - - - - - - - - - - - - - - - - - -->
+ <target name="tld2docbook" depends="collect-tld">
+ <!--Target must be started for every component in library till
+ the one tld file for all the components isn't present-->
+ <xslt classpathref="lib.classpath" style="f.xsl" basedir="../build/generated/${lang}" destdir="../build/generated/${lang}">
+ <include name="*.tld"/>
+
+ <mapper type="glob" from="*.tld" to="*_table.xml" />
+
+ <param name="lang" expression="${lang}"/>
+ </xslt>
+ <!--End of the tld process-->
+ </target>
+
+
+
+ <!-- ################################################################## -->
+
+ <target name="lang.all">
+ <antcall target="lang.docpdf"/>
+ <antcall target="lang.dochtml"/>
+ <antcall target="lang.dochtmlsingle"/>
+ <!--
+ <antcall target="lang.htmlmisc"/>
+ -->
+ </target>
+
+ <target name="lang.docpdf" depends="tld2docbook">
+ <!-- Copy all the images to the output location,
+ will be removed later. -->
+ <copy todir="${build.dir}/${lang}/pdf/images">
+ <fileset dir="${basedir}/${lang}/images">
+ <include name="**/*.png"/>
+ <include name="**/*.svg"/>
+ <include name="**/*.gif"/>
+ <include name="**/*.jpg"/>
+ </fileset>
+ </copy>
+
+ <!-- Create the XSL/FO temporary file. -->
+
+ <java classname="com.icl.saxon.StyleSheet"
+ maxmemory="${maxmem}"
+ fork="true" dir="${basedir}">
+ <classpath refid="lib.classpath"/>
+ <arg value="-o" />
+ <arg value="${build.dir}/${lang}/pdf/docbook_fop.tmp"/>
+ <arg value="${basedir}/${lang}/master.xml"/>
+ <arg value="${styles.dir}/${lang}/${db.style.fopdf}"/>
+ </java>
+
+
+<!--
+ <xslt out="${build.dir}/${lang}/pdf/docbook_fop.tmp"
+ in="${basedir}/${lang}/master.xml"
+ style="${styles.dir}/${lang}/${db.style.fopdf}">
+ <xmlcatalog refid="docbook.catalog"/>
+ </xslt>
+-->
+ <!-- Create a PDF from the XSL/FO. -->
+ <java classname="org.apache.fop.apps.Fop"
+ maxmemory="${maxmem}"
+ fork="true" dir="${basedir}">
+ <classpath refid="lib.classpath"/>
+ <arg value="${build.dir}/${lang}/pdf/docbook_fop.tmp"/>
+ <arg value="${build.dir}/${lang}/pdf/${pdf.name}"/>
+ </java>
+
+ <!-- Delete temporary files. -->
+ <delete file="${build.dir}/${lang}/pdf/docbook_fop.tmp"/>
+ <delete dir="${build.dir}/${lang}/pdf/images"/>
+ </target>
+
+ <target name="lang.dochtml" depends="tld2docbook">
+ <mkdir dir="${build.dir}/${lang}/html/"/>
+
+ <!-- Copy all the images to the output location -->
+ <copy todir="${build.dir}/${lang}/html/images">
+ <fileset dir="${basedir}/${lang}/images">
+ <include name="**/*.png"/>
+ <include name="**/*.gif"/>
+ <include name="**/*.jpg"/>
+ </fileset>
+ </copy>
+ <copy todir="${build.dir}/${lang}/html/css">
+ <fileset dir="${styles.dir}/${lang}">
+ <include name="**/*.css"/>
+ </fileset>
+ </copy>
+
+ <java classname="com.icl.saxon.StyleSheet"
+ fork="true" dir="${build.dir}/${lang}/html">
+ <classpath refid="lib.classpath"/>
+ <arg value="${basedir}/${lang}/master.xml"/>
+ <arg value="${styles.dir}/${lang}/${db.style.html}"/>
+ </java>
+ </target>
+
+ <target name="lang.dochtmlsingle" depends="tld2docbook">
+ <mkdir dir="${build.dir}/${lang}/html_single/"/>
+
+ <!-- Copy all the images to the output location -->
+ <copy todir="${build.dir}/${lang}/html_single/images">
+ <fileset dir="${basedir}/${lang}/images">
+ <include name="**/*.png"/>
+ <include name="**/*.gif"/>
+ <include name="**/*.jpg"/>
+ </fileset>
+ </copy>
+ <copy todir="${build.dir}/${lang}/html_single/css">
+ <fileset dir="${styles.dir}/${lang}">
+ <include name="**/*.css"/>
+ </fileset>
+ </copy>
+
+ <java classname="com.icl.saxon.StyleSheet"
+ fork="true" dir="${basedir}">
+ <classpath refid="lib.classpath"/>
+ <arg value="-o"/>
+ <arg value="${build.dir}/${lang}/html_single/index.html"/>
+ <arg value="${basedir}/${lang}/master.xml"/>
+ <arg value="${styles.dir}/${lang}/${db.style.htmlsingle}"/>
+ </java>
+ </target>
+
+ <!-- I do not really like to have external dependency for HTML pages
+ So, I am not using this task ... -->
+ <target name="lang.htmlmisc" depends="tld2docbook">
+ <!-- Copy images and CSS for HTML documentation, language specific. -->
+ <copy todir="${build.dir}/${lang}/shared/images">
+ <fileset dir="${basedir}/${lang}/images">
+ <include name="**/*.png"/>
+ <include name="**/*.gif"/>
+ </fileset>
+ </copy>
+
+ <copy todir="${build.dir}/${lang}/shared/css">
+ <fileset dir="${styles.dir}/${lang}">
+ <include name="**/*.css"/>
+ </fileset>
+ </copy>
+ </target>
+</project>
Deleted: trunk/docs/xslt/support.properties
===================================================================
--- trunk/docs/xslt/support.properties 2007-06-05 21:49:31 UTC (rev 239)
+++ trunk/docs/xslt/support.properties 2007-06-05 22:03:41 UTC (rev 240)
@@ -1,2 +0,0 @@
-#Wed Apr 11 15:30:36 EEST 2007
-ajax4jsf.location=E:\\poligon\\SVNLocation\\ajax4jsf\\trunk
Deleted: trunk/docs/xslt/support.xml
===================================================================
--- trunk/docs/xslt/support.xml 2007-06-05 21:49:31 UTC (rev 239)
+++ trunk/docs/xslt/support.xml 2007-06-05 22:03:41 UTC (rev 240)
@@ -1,259 +0,0 @@
-<project name="DocSupport" default="all.doc" basedir=".">
-
- <dirname property="support.startdir" file="${ant.file.DocSupport}"/>
-
- <property name="support.basedir" value="${support.startdir}"/>
-
- <property file="${support.startdir}/support.properties" />
-
- <!-- Set build directories for all formats. -->
- <property name="build.dir" value="${basedir}/build"/>
-
- <!-- Support files for build process. -->
- <property name="support.dir" value="${support.basedir}/support"/>
- <property name="styles.dir" value="${support.basedir}/styles"/>
-
- <!-- Set DocBook stylesheets. -->
- <property name="db.style.fopdf" value="fopdf.xsl"/>
- <property name="db.style.html" value="html_chunk.xsl"/>
- <property name="db.style.htmlsingle" value="html.xsl"/>
-
- <property name="maxmem" value="1024m" />
-
- <xmlcatalog id="docbook.catalog">
- <catalogpath path="${support.basedir}/docbook-dtd/catalog.xml" />
- </xmlcatalog>
-
-
- <!-- Classpath for the build tools. -->
- <path id="lib.classpath">
- <fileset dir="${support.dir}/lib">
- <include name="**/saxon1.jar" />
- </fileset>
- <dirset dir="." />
- <fileset dir="${support.dir}/lib">
- <include name="**/*.jar"/>
- <exclude name="**/saxon1.jar"/>
- </fileset>
- </path>
-
- <!-- ################################################################## -->
-
- <target name="all.doc" depends="clean">
- <antcall target="lang.all"><param name="lang" value="en"/></antcall>
- </target>
-
- <!-- ################################################################## -->
-
- <target name="lang.all.bypass.check" unless="lang.all.bypass.disabled">
- <uptodate property="lang.all.bypass.on" targetfile="${build.dir}/${lang}/pdf/${pdf.name}">
- <srcfiles dir="${support.basedir}" includes="**"/>
- <srcfiles dir="${basedir}/${lang}" includes="**"/>
- <srcfiles dir="${basedir}" includes="build.xml"/>
- </uptodate>
- </target>
-
- <target name="lang.all.run" depends="lang.all.bypass.check, lang.all.bypass.message" unless="lang.all.bypass.on">
- <antcall target="clean"/>
- <antcall target="lang.all"/>
- </target>
-
- <target name="lang.all.bypass.message" if="lang.all.bypass.on">
- <echo>Already uptodate: ${build.dir}/${lang}/pdf/${pdf.name}</echo>
- <echo>add -Dlang.all.bypass.disabled=true to force a rebuild</echo>
- </target>
-
- <!-- ################################################################## -->
-
- <target name="lang.dochtml.bypass.check" unless="lang.dochtml.bypass.disabled">
- <uptodate property="lang.dochtml.bypass.on" targetfile="${build.dir}/${lang}/html/index.html">
- <srcfiles dir="${support.basedir}" includes="**"/>
- <srcfiles dir="${basedir}/${lang}" includes="**"/>
- <srcfiles dir="${basedir}" includes="build.xml"/>
- </uptodate>
- </target>
-
- <target name="lang.dochtml.run" depends="lang.dochtml.bypass.check, lang.dochtml.bypass.message" unless="lang.dochtml.bypass.on">
- <antcall target="clean.dochtml"/>
- <antcall target="lang.dochtml"/>
- <antcall target="lang.dochtmlsingle"/>
- </target>
-
- <target name="lang.dochtml.bypass.message" if="lang.dochtml.bypass.on">
- <echo>Already uptodate: ${build.dir}/${lang}/html/index.html</echo>
- <echo>add -Dlang.dochtml.bypass.disabled=true to force a rebuild</echo>
- </target>
-
- <!-- ################################################################## -->
-
- <target name="clean">
- <!-- Delete build directory. -->
- <delete dir="${build.dir}"/>
- </target>
-
- <target name="clean.dochtml">
- <!-- Delete build directory for single html -->
- <delete dir="${build.dir}/${lang}/html"/>
- <delete dir="${build.dir}/${lang}/html_single"/>
- </target>
-
- <target name="collect-tld">
- <mkdir dir="../build/generated/${lang}" />
- <copy flatten="yes" todir="../build/generated/${lang}">
- <fileset dir="${ajax4jsf.location}">
- <include name="framework/target/classes/META-INF/*.tld"/>
- </fileset>
-
- </copy>
- <touch>
- <fileset dir="../build/generated/${lang}">
- <include name="*.tld" />
- </fileset>
- </touch>
- </target>
-
- <!-- - - - - - - - - - - - - - - - - -
- target: tld2docbook
- - - - - - - - - - - - - - - - - - -->
- <target name="tld2docbook" depends="collect-tld">
- <!--Target must be started for every component in library till
- the one tld file for all the components isn't present-->
- <xslt classpathref="lib.classpath" style="f.xsl" basedir="../build/generated/${lang}" destdir="../build/generated/${lang}">
- <include name="*.tld"/>
-
- <mapper type="glob" from="*.tld" to="*_table.xml" />
-
- <param name="lang" expression="${lang}"/>
- </xslt>
- <!--End of the tld process-->
- </target>
-
-
-
- <!-- ################################################################## -->
-
- <target name="lang.all">
- <antcall target="lang.docpdf"/>
- <antcall target="lang.dochtml"/>
- <antcall target="lang.dochtmlsingle"/>
- <!--
- <antcall target="lang.htmlmisc"/>
- -->
- </target>
-
- <target name="lang.docpdf" depends="tld2docbook">
- <!-- Copy all the images to the output location,
- will be removed later. -->
- <copy todir="${build.dir}/${lang}/pdf/images">
- <fileset dir="${basedir}/${lang}/images">
- <include name="**/*.png"/>
- <include name="**/*.svg"/>
- <include name="**/*.gif"/>
- <include name="**/*.jpg"/>
- </fileset>
- </copy>
-
- <!-- Create the XSL/FO temporary file. -->
-
- <java classname="com.icl.saxon.StyleSheet"
- maxmemory="${maxmem}"
- fork="true" dir="${basedir}">
- <classpath refid="lib.classpath"/>
- <arg value="-o" />
- <arg value="${build.dir}/${lang}/pdf/docbook_fop.tmp"/>
- <arg value="${basedir}/${lang}/master.xml"/>
- <arg value="${styles.dir}/${lang}/${db.style.fopdf}"/>
- </java>
-
-
-<!--
- <xslt out="${build.dir}/${lang}/pdf/docbook_fop.tmp"
- in="${basedir}/${lang}/master.xml"
- style="${styles.dir}/${lang}/${db.style.fopdf}">
- <xmlcatalog refid="docbook.catalog"/>
- </xslt>
--->
- <!-- Create a PDF from the XSL/FO. -->
- <java classname="org.apache.fop.apps.Fop"
- maxmemory="${maxmem}"
- fork="true" dir="${basedir}">
- <classpath refid="lib.classpath"/>
- <arg value="${build.dir}/${lang}/pdf/docbook_fop.tmp"/>
- <arg value="${build.dir}/${lang}/pdf/${pdf.name}"/>
- </java>
-
- <!-- Delete temporary files. -->
- <delete file="${build.dir}/${lang}/pdf/docbook_fop.tmp"/>
- <delete dir="${build.dir}/${lang}/pdf/images"/>
- </target>
-
- <target name="lang.dochtml" depends="tld2docbook">
- <mkdir dir="${build.dir}/${lang}/html/"/>
-
- <!-- Copy all the images to the output location -->
- <copy todir="${build.dir}/${lang}/html/images">
- <fileset dir="${basedir}/${lang}/images">
- <include name="**/*.png"/>
- <include name="**/*.gif"/>
- <include name="**/*.jpg"/>
- </fileset>
- </copy>
- <copy todir="${build.dir}/${lang}/html/css">
- <fileset dir="${styles.dir}/${lang}">
- <include name="**/*.css"/>
- </fileset>
- </copy>
-
- <java classname="com.icl.saxon.StyleSheet"
- fork="true" dir="${build.dir}/${lang}/html">
- <classpath refid="lib.classpath"/>
- <arg value="${basedir}/${lang}/master.xml"/>
- <arg value="${styles.dir}/${lang}/${db.style.html}"/>
- </java>
- </target>
-
- <target name="lang.dochtmlsingle" depends="tld2docbook">
- <mkdir dir="${build.dir}/${lang}/html_single/"/>
-
- <!-- Copy all the images to the output location -->
- <copy todir="${build.dir}/${lang}/html_single/images">
- <fileset dir="${basedir}/${lang}/images">
- <include name="**/*.png"/>
- <include name="**/*.gif"/>
- <include name="**/*.jpg"/>
- </fileset>
- </copy>
- <copy todir="${build.dir}/${lang}/html_single/css">
- <fileset dir="${styles.dir}/${lang}">
- <include name="**/*.css"/>
- </fileset>
- </copy>
-
- <java classname="com.icl.saxon.StyleSheet"
- fork="true" dir="${basedir}">
- <classpath refid="lib.classpath"/>
- <arg value="-o"/>
- <arg value="${build.dir}/${lang}/html_single/index.html"/>
- <arg value="${basedir}/${lang}/master.xml"/>
- <arg value="${styles.dir}/${lang}/${db.style.htmlsingle}"/>
- </java>
- </target>
-
- <!-- I do not really like to have external dependency for HTML pages
- So, I am not using this task ... -->
- <target name="lang.htmlmisc" depends="tld2docbook">
- <!-- Copy images and CSS for HTML documentation, language specific. -->
- <copy todir="${build.dir}/${lang}/shared/images">
- <fileset dir="${basedir}/${lang}/images">
- <include name="**/*.png"/>
- <include name="**/*.gif"/>
- </fileset>
- </copy>
-
- <copy todir="${build.dir}/${lang}/shared/css">
- <fileset dir="${styles.dir}/${lang}">
- <include name="**/*.css"/>
- </fileset>
- </copy>
- </target>
-</project>
17 years, 6 months
JBoss Ajax4JSF SVN: r239 - in trunk/docs: userguide and 1 other directory.
by ajax4jsf-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-06-05 17:49:31 -0400 (Tue, 05 Jun 2007)
New Revision: 239
Added:
trunk/docs/userguide/pom.xml
trunk/docs/xslt/
Removed:
trunk/docs/pom.xml
trunk/docs/resources/
Log:
reorganize projects for a Maven documentation build
Deleted: trunk/docs/pom.xml
===================================================================
--- trunk/docs/pom.xml 2007-06-05 18:58:45 UTC (rev 238)
+++ trunk/docs/pom.xml 2007-06-05 21:49:31 UTC (rev 239)
@@ -1,79 +0,0 @@
-<?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/maven-v4_0_0.xsd">
- <parent>
- <artifactId>master</artifactId>
- <groupId>org.ajax4jsf</groupId>
- <version>1.1.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.ajax4jsf</groupId>
- <artifactId>docs</artifactId>
- <version>1.1.2-SNAPSHOT</version>
- <description>Project documentation</description>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jboss-docbook-plugin</artifactId>
- <version>1.0</version>
- <executions>
- <execution>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-docbook-xslt</artifactId>
- <version>0.1</version>
- </dependency>
- </dependencies>
- <configuration>
- <sourceDocumentName>master.xml</sourceDocumentName>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>/standard/fopdf.xsl</stylesheetResource>
- <finalName>hibernate_reference.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>/standard/html.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- <xincludeSupported>true</xincludeSupported>
- <options>
- <xincludeSupported>true</xincludeSupported>
- <xmlTransformerType>saxon</xmlTransformerType>
- <transformerParameters>
- <property>
- <name>custom.titlepage.img</name>
- <value>${basedir}/src/main/resources/shared/images/hibernate_logo_a.png</value>
- </property>
- </transformerParameters>
- </options>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
-<!-- report plugin is currently hosed
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugin</groupId>
- <artifactId>jboss-docbook-plugin</artifactId>
- </plugin>
- </plugins>
- </reporting>
--->
- <properties>
- <masterTranslation>en-US</masterTranslation>
- </properties>
-
-
-</project>
-
Copied: trunk/docs/userguide/pom.xml (from rev 238, trunk/docs/pom.xml)
===================================================================
--- trunk/docs/userguide/pom.xml (rev 0)
+++ trunk/docs/userguide/pom.xml 2007-06-05 21:49:31 UTC (rev 239)
@@ -0,0 +1,126 @@
+<?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/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>master</artifactId>
+ <groupId>org.ajax4jsf</groupId>
+ <version>1.1.2-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.ajax4jsf</groupId>
+ <artifactId>docs</artifactId>
+ <version>1.1.2-SNAPSHOT</version>
+ <description>Project documentation</description>
+ <build>
+ <resources>
+ <resource>
+ <directory>resources</directory>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>xml-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>transform</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <transformationSets>
+ <transformationSet>
+ <dir>${project.build.directory}/tld</dir>
+ <includes>*.tld</includes>
+ <outputDir>build/generated/en/</outputDir>
+ <stylesheet>userguide/f.xsl</stylesheet>
+ <fileMappers>
+ <fileMapper implementation="org.codehaus.plexus.components.io.filemappers.FileExtensionMapper">
+ <targetExtension>_table.xml</targetExtension>
+ </fileMapper>
+ </fileMappers>
+ </transformationSet>
+ </transformationSets>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jboss-docbook-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <!--
+ <dependencies>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-docbook-xslt</artifactId>
+ <version>0.1</version>
+ </dependency>
+ </dependencies>
+ -->
+ <configuration>
+ <sourceDirectory>
+ ${basedir}/userguide/en
+ </sourceDirectory>
+ <sourceDocumentName>master.xml</sourceDocumentName>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>
+ /styles/en/fopdf.xsl
+ </stylesheetResource>
+ <finalName>
+ ajax4jsf_reference.pdf
+ </finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>
+ /styles/en/html.xsl
+ </stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <xincludeSupported>true</xincludeSupported>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <transformerParameters>
+ <property>
+ <name>custom.titlepage.img</name>
+ <value>
+ ${basedir}/src/main/resources/shared/images/hibernate_logo_a.png
+ </value>
+ </property>
+ </transformerParameters>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <!-- report plugin is currently hosed
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugin</groupId>
+ <artifactId>jboss-docbook-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+ -->
+ <properties>
+ <masterTranslation>en-US</masterTranslation>
+ </properties>
+
+
+</project>
+
Copied: trunk/docs/xslt (from rev 238, trunk/docs/resources)
17 years, 6 months
JBoss Ajax4JSF SVN: r237 - trunk/cdk/generator/src/main/resources/META-INF/schema/entities.
by ajax4jsf-svn-commits@lists.jboss.org
Author: vkukharchuk
Date: 2007-06-05 11:32:29 -0400 (Tue, 05 Jun 2007)
New Revision: 237
Modified:
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_table_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_data_table_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_panel_grid_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_data_attributes.ent
Log:
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_table_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_table_attributes.ent 2007-06-05 14:20:48 UTC (rev 236)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_table_attributes.ent 2007-06-05 15:32:29 UTC (rev 237)
@@ -7,7 +7,7 @@
* left: The table is to the left of the document.
* center: The table is to the center of the document.
- * right: The table is to the right of the document.
+ * right: The table is to the right of the document
</description>
</property>
@@ -52,7 +52,7 @@
* lhs: The left-hand side only.
* rhs: The right-hand side only.
* box: All four sides.
- * border: All four sides.
+ * border: All four sides
</description>
</property>
@@ -65,7 +65,7 @@
* groups: Rules will appear between row groups (see THEAD, TFOOT, and TBODY) and column groups (see COLGROUP and COL) only.
* rows: Rules will appear between rows only.
* cols: Rules will appear between columns only.
- * all: Rules will appear between all rows and columns.
+ * all: Rules will appear between all rows and columns
</description>
</property>
<property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_data_table_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_data_table_attributes.ent 2007-06-05 14:20:48 UTC (rev 236)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_data_table_attributes.ent 2007-06-05 15:32:29 UTC (rev 237)
@@ -72,7 +72,7 @@
* left: The table is to the left of the document.
* center: The table is to the center of the document.
- * right: The table is to the right of the document.
+ * right: The table is to the right of the document
</description>
</property>
@@ -121,7 +121,7 @@
* lhs: The left-hand side only.
* rhs: The right-hand side only.
* box: All four sides.
- * border: All four sides.
+ * border: All four sides
</description>
</property>
@@ -132,7 +132,7 @@
* groups: Rules will appear between row groups (see THEAD, TFOOT, and TBODY) and column groups (see COLGROUP and COL) only.
* rows: Rules will appear between rows only.
* cols: Rules will appear between columns only.
- * all: Rules will appear between all rows and columns.
+ * all: Rules will appear between all rows and columns
</description>
</property>
<property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent 2007-06-05 14:20:48 UTC (rev 236)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent 2007-06-05 15:32:29 UTC (rev 237)
@@ -94,7 +94,7 @@
* left: The table is to the left of the document.
* center: The table is to the center of the document.
- * right: The table is to the right of the document.
+ * right: The table is to the right of the document
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_panel_grid_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_panel_grid_attributes.ent 2007-06-05 14:20:48 UTC (rev 236)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_panel_grid_attributes.ent 2007-06-05 15:32:29 UTC (rev 237)
@@ -69,7 +69,7 @@
* left: The table is to the left of the document.
* center: The table is to the center of the document.
- * right: The table is to the right of the document.
+ * right: The table is to the right of the document
</description>
</property>
@@ -113,7 +113,7 @@
* lhs: The left-hand side only.
* rhs: The right-hand side only.
* box: All four sides.
- * border: All four sides.
+ * border: All four sides
</description>
</property>
@@ -124,7 +124,7 @@
* groups: Rules will appear between row groups (see THEAD, TFOOT, and TBODY) and column groups (see COLGROUP and COL) only.
* rows: Rules will appear between rows only.
* cols: Rules will appear between columns only.
- * all: Rules will appear between all rows and columns.
+ * all: Rules will appear between all rows and columns
</description>
</property>
<property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_data_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_data_attributes.ent 2007-06-05 14:20:48 UTC (rev 236)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_data_attributes.ent 2007-06-05 15:32:29 UTC (rev 237)
@@ -19,7 +19,7 @@
<classname>java.lang.String</classname>
<description>
A request-scope attribute via which the data object for the
- current row will be used when iterating.
+ current row will be used when iterating
</description>
</property>
<property disabled="true">
17 years, 6 months
JBoss Ajax4JSF SVN: r235 - trunk/cdk/generator/src/main/resources/META-INF/schema/entities.
by ajax4jsf-svn-commits@lists.jboss.org
Author: vkukharchuk
Date: 2007-06-05 09:52:44 -0400 (Tue, 05 Jun 2007)
New Revision: 235
Modified:
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_component_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_dnd_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_region_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/draggable_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/dropzone_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/extended_command_link_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_anchor_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_control_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/spec_table_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_button_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_link_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_data_table_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_message_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_messages_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_output_label_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_checkbox_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_listbox_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_listbox_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_component_attributes.ent
Log:
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_component_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_component_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_component_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -15,7 +15,7 @@
<property >
<name>ajaxSingle</name>
<classname>boolean</classname>
- <description>if true , submits ONLY one field/link, instead of all form controls.</description>
+ <description>if true, submits ONLY one field/link, instead of all form controls</description>
</property>
<property >
@@ -27,7 +27,7 @@
<property >
<name>limitToList</name>
<classname>boolean</classname>
- <description>If "true", updates on client side ONLY elements from this 'reRender' property. If "false" (default) updates all rendered by ajax region components.</description>
+ <description>If "true", updates on client side ONLY elements from this 'reRender' property. If "false" (default) updates all rendered by ajax region components</description>
</property>
<property >
@@ -39,19 +39,19 @@
<property >
<name>status</name>
<classname>java.lang.String</classname>
- <description>ID (in format of call UIComponent.findComponent()) of Request status component.</description>
+ <description>ID (in format of call UIComponent.findComponent()) of Request status component</description>
</property>
<property >
<name>eventsQueue</name>
<classname>java.lang.String</classname>
- <description>Name of requests queue to avoid send next request before complete other from same event. Can be used to reduce number of requests of frequently events (key press, mouse move etc.). </description>
+ <description>Name of requests queue to avoid send next request before complete other from same event. Can be used to reduce number of requests of frequently events (key press, mouse move etc.)</description>
</property>
<property >
<name>requestDelay</name>
<classname>int</classname>
- <description> Delay (in ms.) for send ajax request on JavaScript event. In conjunction with events queue can reduce number of requests on keyboard or mouse move events. </description>
+ <description> Delay (in ms.) for send ajax request on JavaScript event. In conjunction with events queue can reduce number of requests on keyboard or mouse move events</description>
</property>
<property >
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_dnd_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_dnd_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_dnd_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -14,12 +14,12 @@
<property hidden="true">
<name>effectDepth</name>
<classname>java.lang.String</classname>
- <description>depth from 0 ( max ) to 1 ( none ) of visual effect ( zoom, opacity etc ). </description>
+ <description>depth from 0 ( max ) to 1 ( none ) of visual effect ( zoom, opacity etc )</description>
</property>
<property hidden="true">
<name>effectDuration</name>
<classname>java.lang.String</classname>
- <description>time in seconds for duration of visual effect ( zoom, opacity etc ). </description>
+ <description>time in seconds for duration of visual effect ( zoom, opacity etc )</description>
</property>
</properties>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_region_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_region_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ajax_region_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -4,7 +4,7 @@
<defaultvalue>null</defaultvalue>
<classname>javax.faces.el.MethodBinding</classname>
<methodargs>org.ajax4jsf.framework.ajax.AjaxEvent.class</methodargs>
- <description> MethodBinding representing an action listener method that will be notified when this component is activated by the ajax Request and handle it. The expression must evaluate to a public method that takes an AjaxEvent parameter, with a return type of void.</description>
+ <description> MethodBinding representing an action listener method that will be notified when this component is activated by the ajax Request and handle it. The expression must evaluate to a public method that takes an AjaxEvent parameter, with a return type of void</description>
</property>
<property hidden="true">
<name>submitted</name>
@@ -19,7 +19,7 @@
<property >
<name>immediate</name>
<classname>boolean</classname>
- <description>Flag indicating that, if this component is activated by ajaxrequest, notifications should be delivered to interested listeners and actions immediately (that is, during Apply Request Values phase) rather than waiting until Invoke Application phase.</description>
+ <description>Flag indicating that, if this component is activated by ajaxrequest, notifications should be delivered to interested listeners and actions immediately (that is, during Apply Request Values phase) rather than waiting until Invoke Application phase</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/draggable_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/draggable_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/draggable_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -17,12 +17,12 @@
<property >
<name>ondragstart</name>
<classname>java.lang.String</classname>
- <description>A JavaScript event handler called before drag object. </description>
+ <description>A JavaScript event handler called before drag object</description>
</property>
<property>
<name>ondragend</name>
<classname>java.lang.String</classname>
- <description>A JavaScript event handler called after a drag operation. </description>
+ <description>A JavaScript event handler called after a drag operation</description>
</property>
<property elonly="true" attachedstate="true">
<name>dragListener</name>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/dropzone_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/dropzone_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/dropzone_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -19,17 +19,17 @@
<property >
<name>ondragenter</name>
<classname>java.lang.String</classname>
- <description>A JavaScript event handler called on enter draggable object to zone. </description>
+ <description>A JavaScript event handler called on enter draggable object to zone</description>
</property>
<property>
<name>ondragexit</name>
<classname>java.lang.String</classname>
- <description>A JavaScript event handler called after a drag object leaves zone. </description>
+ <description>A JavaScript event handler called after a drag object leaves zone</description>
</property>
<property>
<name>ondrop</name>
<classname>java.lang.String</classname>
- <description>A JavaScript event handler called after a drag object is dropped to zone. </description>
+ <description>A JavaScript event handler called after a drag object is dropped to zone</description>
</property>
<property>
<name>ondropend</name>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/extended_command_link_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/extended_command_link_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/extended_command_link_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -74,10 +74,10 @@
<property>
- <name>accesskey</name><classname>java.lang.String</classname><description>This attribute assigns an access key to an element. An access key is a single character from the document character set. Note. Authors should consider the input method of the expected reader when specifying an accesskey.</description>
+ <name>accesskey</name><classname>java.lang.String</classname><description>This attribute assigns an access key to an element. An access key is a single character from the document character set. Note. Authors should consider the input method of the expected reader when specifying an accesskey</description>
</property>
<property>
- <name>charset</name><classname>java.lang.String</classname><description>The character encoding of the resource designated by this hyperlink.</description>
+ <name>charset</name><classname>java.lang.String</classname><description>The character encoding of the resource designated by this hyperlink</description>
</property>
<property>
<name>coords</name><classname>java.lang.String</classname><description>This attribute specifies the position and shape on the screen. The number and order of values depends on the shape being defined. Possible combinations:
@@ -95,10 +95,10 @@
</property>
<property>
- <name>rel</name><classname>java.lang.String</classname><description>The relationship from the current document to an anchor specified by this hyperlink. The value of this attribute is a space-separated list of link types.</description>
+ <name>rel</name><classname>java.lang.String</classname><description>The relationship from the current document to an anchor specified by this hyperlink. The value of this attribute is a space-separated list of link types</description>
</property>
<property>
- <name>rev</name><classname>java.lang.String</classname><description>A reverse link from an anchor specified by this hyperlink to the current document. The value of this attribute is a space-separated list of link types.</description>
+ <name>rev</name><classname>java.lang.String</classname><description>A reverse link from an anchor specified by this hyperlink to the current document. The value of this attribute is a space-separated list of link types</description>
</property>
<property>
<name>shape</name><classname>java.lang.String</classname><description>default|rect|circle|poly [CI]
@@ -112,14 +112,14 @@
</description>
</property>
<property>
- <name>tabindex</name><classname>java.lang.String</classname><description>This attribute specifies a position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros.</description>
+ <name>tabindex</name><classname>java.lang.String</classname><description>This attribute specifies a position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros</description>
</property>
<property>
- <name>type</name><classname>java.lang.String</classname><description> The content type of the resource designated by this hyperlink.</description>
+ <name>type</name><classname>java.lang.String</classname><description> The content type of the resource designated by this hyperlink</description>
</property>
<property>
- <name>onblur</name><classname>java.lang.String</classname><description> JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus.</description>
+ <name>onblur</name><classname>java.lang.String</classname><description> JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus</description>
</property>
<property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_anchor_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_anchor_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_anchor_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -70,7 +70,7 @@
<property>
<name>onfocus</name>
<classname>java.lang.String</classname>
- <description>JavaScript code. The onfocus event occurs when an element gets focus.</description>
+ <description>JavaScript code. The onfocus event occurs when an element gets focus</description>
</property>
<property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_control_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_control_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_control_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -12,7 +12,7 @@
<property>
<name>disabled</name>
<classname>boolean</classname>
- <description>When set for a form control, this boolean attribute disables the control for user input.</description>
+ <description>When set for a form control, this boolean attribute disables the control for user input</description>
</property>
<property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/spec_table_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/spec_table_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/spec_table_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -3,22 +3,22 @@
<property>
<name>columnClasses</name>
<classname>java.lang.String</classname>
- <description> Comma-delimited list of CSS style classes that are be applied to the columns of this table. A space separated list of classes may also be specified for any individual column. If the number of elements in this list is less than the number of columns specified in the "columns" attribute, no "class" attribute is output for each column greater than the number of elements in the list. If the number of elements in the list is greater than the number of columns specified in the "columns" attribute, the elements at the posisiton in the list after the value of the "columns" attribute are ignored. </description>
+ <description> Comma-delimited list of CSS style classes that are be applied to the columns of this table. A space separated list of classes may also be specified for any individual column. If the number of elements in this list is less than the number of columns specified in the "columns" attribute, no "class" attribute is output for each column greater than the number of elements in the list. If the number of elements in the list is greater than the number of columns specified in the "columns" attribute, the elements at the posisiton in the list after the value of the "columns" attribute are ignored</description>
</property>
<property>
<name>footerClass</name>
<classname>java.lang.String</classname>
- <description>Space-separated list of CSS style class(es) that are be applied to any footer generated for this table.</description>
+ <description>Space-separated list of CSS style class(es) that are be applied to any footer generated for this table</description>
</property>
<property>
<name>headerClass</name>
<classname>java.lang.String</classname>
- <description> Space-separated list of CSS style class(es) that are be applied to any header generated for this table.</description>
+ <description> Space-separated list of CSS style class(es) that are be applied to any header generated for this table</description>
</property>
<property>
<name>rowClasses</name>
<classname>java.lang.String</classname>
- <description> A comma-delimited list of CSS style classes that is applied to popup table rows. A space separated list of classes may also be specified for any individual row. Thes styles are applied, in turn, to each row in the table. For example, if the list has two elements, the first style class in the list is applied to the first row, the second to the second row, the first to the third row, the second to the fourth row, etc. In other words, we keep iterating through the list until we reach the end, and then we start at the beginning again. </description>
+ <description> A comma-delimited list of CSS style classes that is applied to popup table rows. A space separated list of classes may also be specified for any individual row. Thes styles are applied, in turn, to each row in the table. For example, if the list has two elements, the first style class in the list is applied to the first row, the second to the second row, the first to the third row, the second to the fourth row, etc. In other words, we keep iterating through the list until we reach the end, and then we start at the beginning again</description>
</property>
</properties>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_button_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_button_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_button_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -4,10 +4,10 @@
<property>
- <name>id</name><classname>java.lang.String</classname><description>Every component may have an unique id. Automatically created if omitted.</description>
+ <name>id</name><classname>java.lang.String</classname><description>Every component may have an unique id. Automatically created if omitted</description>
</property>
<property>
- <name>rendered</name><classname>java.lang.String</classname><description>If "false", this component will not be rendered.</description>
+ <name>rendered</name><classname>java.lang.String</classname><description>If "false", this component will not be rendered</description>
</property>
<property>
<name>binding</name><classname>java.lang.String</classname><description>The attribute takes a value-binding expression for a component property of
@@ -32,16 +32,16 @@
<name>dir</name><classname>java.lang.String</classname><description>Alternate textual description of the element rendered by this component</description>
</property>
<property>
- <name>lang</name><classname>java.lang.String</classname><description>Code describing the language used in the generated markup for this component.</description>
+ <name>lang</name><classname>java.lang.String</classname><description>Code describing the language used in the generated markup for this component</description>
</property>
<property>
- <name>style</name><classname>java.lang.String</classname><description>CSS style(s) is/are to be applied when this component is rendered.</description>
+ <name>style</name><classname>java.lang.String</classname><description>CSS style(s) is/are to be applied when this component is rendered</description>
</property>
<property>
- <name>title</name><classname>java.lang.String</classname><description>Advisory title information about markup elements generated for this component.</description>
+ <name>title</name><classname>java.lang.String</classname><description>Advisory title information about markup elements generated for this component</description>
</property>
<property>
- <name>styleClass</name><classname>java.lang.String</classname><description>Corresponds to the HTML class attribute.</description>
+ <name>styleClass</name><classname>java.lang.String</classname><description>Corresponds to the HTML class attribute</description>
</property>
@@ -78,7 +78,7 @@
<property>
- <name>accesskey</name><classname>java.lang.String</classname><description>This attribute assigns an access key to an element. An access key is a single character from the document character set. Note. Authors should consider the input method of the expected reader when specifying an accesskey.</description>
+ <name>accesskey</name><classname>java.lang.String</classname><description>This attribute assigns an access key to an element. An access key is a single character from the document character set. Note. Authors should consider the input method of the expected reader when specifying an accesskey</description>
</property>
<property>
<name>alt</name><classname>java.lang.String</classname><description>For user agents that cannot display images, forms, or applets, this attribute specifies alternate text. The
@@ -90,25 +90,25 @@
<name>disabled</name><classname>java.lang.String</classname><description>Disabled state of an element or button</description>
</property>
<property>
- <name>onblur</name><classname>java.lang.String</classname><description> JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus.</description>
+ <name>onblur</name><classname>java.lang.String</classname><description> JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus</description>
</property>
<property>
<name>onchange</name><classname>java.lang.String</classname><description>Element's value changes</description>
</property>
<property>
- <name>onfocus</name><classname>java.lang.String</classname><description>JavaScript code. </description>
+ <name>onfocus</name><classname>java.lang.String</classname><description>JavaScript code</description>
</property>
<property>
<name>onselect</name><classname>java.lang.String</classname><description>An element is selected</description>
</property>
<property>
- <name>size</name><classname>java.lang.String</classname><description>see JSF Spec.</description>
+ <name>size</name><classname>java.lang.String</classname><description>see JSF Spec</description>
</property>
<property>
- <name>tabindex</name><classname>java.lang.String</classname><description>This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros.</description>
+ <name>tabindex</name><classname>java.lang.String</classname><description>This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros</description>
</property>
<property>
- <name>type</name><classname>java.lang.String</classname><description> The content type of the resource designated by this component.</description>
+ <name>type</name><classname>java.lang.String</classname><description> The content type of the resource designated by this component</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_link_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_link_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_link_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -4,10 +4,10 @@
<property>
- <name>id</name><classname>java.lang.String</classname><description>Every component may have an unique id. Automatically created if omitted.</description>
+ <name>id</name><classname>java.lang.String</classname><description>Every component may have an unique id. Automatically created if omitted</description>
</property>
<property>
- <name>rendered</name><classname>java.lang.String</classname><description>If "false", this component will not be rendered.</description>
+ <name>rendered</name><classname>java.lang.String</classname><description>If "false", this component will not be rendered</description>
</property>
<property>
<name>binding</name><classname>java.lang.String</classname><description>The attribute takes a value-binding expression for a component property of
@@ -21,27 +21,27 @@
<name>actionListener</name><classname>java.lang.String</classname><description>MethodBinding pointing at a method accepting ActionEvent and returning type void</description>
</property>
<property>
- <name>immediate</name><classname>java.lang.String</classname><description>True means, that the default ActionListener should be executed immediately (i.e. during Apply Request Values phase of the request processing lifecycle), rather than waiting until the Invoke Application phase.</description>
+ <name>immediate</name><classname>java.lang.String</classname><description>True means, that the default ActionListener should be executed immediately (i.e. during Apply Request Values phase of the request processing lifecycle), rather than waiting until the Invoke Application phase</description>
</property>
<property>
- <name>value</name><classname>java.lang.String</classname><description>Initial value to set when rendered for the first time.</description>
+ <name>value</name><classname>java.lang.String</classname><description>Initial value to set when rendered for the first time</description>
</property>
<property>
- <name>dir</name><classname>java.lang.String</classname><description>Alternate textual description of the element rendered by this component.</description>
+ <name>dir</name><classname>java.lang.String</classname><description>Alternate textual description of the element rendered by this component</description>
</property>
<property>
- <name>lang</name><classname>java.lang.String</classname><description>Code describing the language used in the generated markup for this component.</description>
+ <name>lang</name><classname>java.lang.String</classname><description>Code describing the language used in the generated markup for this component</description>
</property>
<property>
- <name>style</name><classname>java.lang.String</classname><description>CSS style(s) is/are to be applied when this component is rendered.</description>
+ <name>style</name><classname>java.lang.String</classname><description>CSS style(s) is/are to be applied when this component is rendered</description>
</property>
<property>
- <name>title</name><classname>java.lang.String</classname><description>Advisory title information about markup elements generated for this component.</description>
+ <name>title</name><classname>java.lang.String</classname><description>Advisory title information about markup elements generated for this component</description>
</property>
<property>
- <name>styleClass</name><classname>java.lang.String</classname><description>Corresponds to the HTML class attribute.</description>
+ <name>styleClass</name><classname>java.lang.String</classname><description>Corresponds to the HTML class attribute</description>
</property>
@@ -78,10 +78,10 @@
<property>
- <name>accesskey</name><classname>java.lang.String</classname><description>This attribute assigns an access key to an element. An access key is a single character from the document character set. Note. Authors should consider the input method of the expected reader when specifying an accesskey.</description>
+ <name>accesskey</name><classname>java.lang.String</classname><description>This attribute assigns an access key to an element. An access key is a single character from the document character set. Note. Authors should consider the input method of the expected reader when specifying an accesskey</description>
</property>
<property>
- <name>charset</name><classname>java.lang.String</classname><description>The character encoding of the resource designated by this hyperlink.</description>
+ <name>charset</name><classname>java.lang.String</classname><description>The character encoding of the resource designated by this hyperlink</description>
</property>
<property>
<name>coords</name><classname>java.lang.String</classname><description>This attribute specifies the position and shape on the screen. The number and order of values depends on the shape being defined. Possible combinations:
@@ -91,26 +91,26 @@
</property>
<property>
- <name>rel</name><classname>java.lang.String</classname><description>The relationship from the current document to the anchor specified by this hyperlink. The value of this attribute is a space-separated list of link types.</description>
+ <name>rel</name><classname>java.lang.String</classname><description>The relationship from the current document to the anchor specified by this hyperlink. The value of this attribute is a space-separated list of link types</description>
</property>
<property>
- <name>rev</name><classname>java.lang.String</classname><description>A reverse link from the anchor specified by this hyperlink to the current document. The value of this attribute is a space-separated list of link types.</description>
+ <name>rev</name><classname>java.lang.String</classname><description>A reverse link from the anchor specified by this hyperlink to the current document. The value of this attribute is a space-separated list of link types</description>
</property>
<property>
<name>shape</name><classname>java.lang.String</classname><description>default|rect|circle|poly [CI]
<property>
- <name>tabindex</name><classname>java.lang.String</classname><description>This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros.</description>
+ <name>tabindex</name><classname>java.lang.String</classname><description>This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros</description>
</property>
<property>
- <name>type</name><classname>java.lang.String</classname><description> The content type of the resource designated by this hyperlink.</description>
+ <name>type</name><classname>java.lang.String</classname><description> The content type of the resource designated by this hyperlink</description>
</property>
<property>
- <name>onblur</name><classname>java.lang.String</classname><description> JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus.</description>
+ <name>onblur</name><classname>java.lang.String</classname><description> JavaScript code. The onblur event occurs when an element loses focus either by the pointing device or by tabbing navigation. It may be used with the same elements as onfocus</description>
</property>
<property>
- <name>onfocus</name><classname>java.lang.String</classname><description>JavaScript code. </description>
+ <name>onfocus</name><classname>java.lang.String</classname><description>JavaScript code</description>
</property>
<property>
<name>target</name><classname>java.lang.String</classname><description> This attribute specifies the name of a frame where a document is to be opened.
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_data_table_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_data_table_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_data_table_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -4,10 +4,10 @@
<property>
- <name>id</name><classname>java.lang.String</classname><description>Every component may have an unique id. Automatically created if omitted.</description>
+ <name>id</name><classname>java.lang.String</classname><description>Every component may have an unique id. Automatically created if omitted</description>
</property>
<property>
- <name>rendered</name><classname>java.lang.String</classname><description>If "false", this component will not be rendered.</description>
+ <name>rendered</name><classname>java.lang.String</classname><description>If "false", this component will not be rendered</description>
</property>
<property>
<name>binding</name><classname>java.lang.String</classname><description>The attribute takes a value-binding expression for a component property of
@@ -17,19 +17,19 @@
<property>
- <name>dir</name><classname>java.lang.String</classname><description>Alternate textual description of the element rendered by this component.</description>
+ <name>dir</name><classname>java.lang.String</classname><description>Alternate textual description of the element rendered by this component</description>
</property>
<property>
- <name>lang</name><classname>java.lang.String</classname><description> Code describing the language used in the generated markup for this component.</description>
+ <name>lang</name><classname>java.lang.String</classname><description> Code describing the language used in the generated markup for this component</description>
</property>
<property>
- <name>style</name><classname>java.lang.String</classname><description>CSS style(s)is/are to be applied when this component is rendered.</description>
+ <name>style</name><classname>java.lang.String</classname><description>CSS style(s)is/are to be applied when this component is rendered</description>
</property>
<property>
- <name>title</name><classname>java.lang.String</classname><description> Advisory title information about markup elements generated for this component.</description>
+ <name>title</name><classname>java.lang.String</classname><description> Advisory title information about markup elements generated for this component</description>
</property>
<property>
- <name>styleClass</name><classname>java.lang.String</classname><description>Corresponds to the HTML class attribute.</description>
+ <name>styleClass</name><classname>java.lang.String</classname><description>Corresponds to the HTML class attribute</description>
</property>
@@ -136,7 +136,7 @@
</description>
</property>
<property>
- <name>summary</name><classname>java.lang.String</classname><description>This attribute provides a summary of the table's purpose and structure for user agents rendering to non-visual media such as speech and Braille.</description>
+ <name>summary</name><classname>java.lang.String</classname><description>This attribute provides a summary of the table's purpose and structure for user agents rendering to non-visual media such as speech and Braille</description>
</property>
<property>
<name>width</name><classname>java.lang.String</classname><description>This attribute specifies the desired width of the entire table and is intended for visual user agents. When the value is percentage value, the value is relative to the user agent's available horizontal space. In the absence of any width specification, table width is determined by the user agent</description>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -86,7 +86,7 @@
<property>
- <name>accesskey</name><classname>java.lang.String</classname><description>This attribute assigns an access key to an element. An access key is a single character from the document character set. Note. Authors should consider the input method of the expected reader when specifying an accesskey.</description>
+ <name>accesskey</name><classname>java.lang.String</classname><description>This attribute assigns an access key to an element. An access key is a single character from the document character set. Note. Authors should consider the input method of the expected reader when specifying an accesskey</description>
</property>
<property>
<name>align</name><classname>java.lang.String</classname><description>left|center|right [CI]
@@ -128,7 +128,7 @@
</description>
</property>
<property>
- <name>size</name><classname>java.lang.String</classname><description>see JSF Spec.</description>
+ <name>size</name><classname>java.lang.String</classname><description>see JSF Spec</description>
</property>
<property>
<name>tabindex</name><classname>java.lang.String</classname><description>This attribute specifies the position of the current element in the tabbing order for the current document. This value must be a number between 0 and 32767. User agents should ignore leading zeros</description>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_message_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_message_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_message_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -83,7 +83,7 @@
<name>infoClass</name><classname>java.lang.String</classname><description>CSS class to be used for messages with severity "INFO"</description>
</property>
<property>
- <name>infoStyle</name><classname>java.lang.String</classname><description>CSS style(s) is/are to be used for messages with severity "INFO".</description>
+ <name>infoStyle</name><classname>java.lang.String</classname><description>CSS style(s) is/are to be used for messages with severity "INFO"</description>
</property>
<property>
<name>warnClass</name><classname>java.lang.String</classname><description>CSS class is to be used for messages with severity "WARN"</description>
@@ -95,7 +95,7 @@
<name>errorClass</name><classname>java.lang.String</classname><description>CSS class is to be used for messages with severity "ERROR"</description>
</property>
<property>
- <name>errorStyle</name><classname>java.lang.String</classname><description>CSS style is to be used for messages with severity "ERROR".</description>
+ <name>errorStyle</name><classname>java.lang.String</classname><description>CSS style is to be used for messages with severity "ERROR"</description>
</property>
<property>
<name>fatalClass</name><classname>java.lang.String</classname><description>CSS class is to be used for messages with severity "FATAL"</description>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_messages_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_messages_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_messages_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -41,7 +41,7 @@
<name>style</name><classname>java.lang.String</classname><description>CSS style(s) to be applied when this component is rendere</description>
</property>
<property>
- <name>title</name><classname>java.lang.String</classname><description> Advisory title information about markup elements generated for this component.</description>
+ <name>title</name><classname>java.lang.String</classname><description> Advisory title information about markup elements generated for this component</description>
</property>
<property>
<name>styleClass</name><classname>java.lang.String</classname><description>Corresponds to the HTML class attribute</description>
@@ -81,7 +81,7 @@
<property>
- <name>infoClass</name><classname>java.lang.String</classname><description>CSS class to be used for messages with severity "INFO".</description>
+ <name>infoClass</name><classname>java.lang.String</classname><description>CSS class to be used for messages with severity "INFO"</description>
</property>
<property>
<name>infoStyle</name><classname>java.lang.String</classname><description>CSS style(s) is/are to be used for messages with severity "INFO"</description>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_output_label_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_output_label_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_output_label_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -35,7 +35,7 @@
<name>title</name><classname>java.lang.String</classname><description> Advisory title information about markup elements generated for this component</description>
</property>
<property>
- <name>styleClass</name><classname>java.lang.String</classname><description>Corresponds to the HTML class attribute.</description>
+ <name>styleClass</name><classname>java.lang.String</classname><description>Corresponds to the HTML class attribute</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_checkbox_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_checkbox_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_checkbox_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -103,7 +103,7 @@
<name>datasrc</name><classname>java.lang.String</classname><description>Retrieves the source of the data for data binding</description>
</property>
<property>
- <name>dataformatas</name><classname>java.lang.String</classname><description>Indicates whether the bound data is plain text or HTML.</description>
+ <name>dataformatas</name><classname>java.lang.String</classname><description>Indicates whether the bound data is plain text or HTML</description>
</property>
<property>
<name>disabled</name><classname>java.lang.String</classname><description>Disabled state of an element or button</description>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_listbox_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_listbox_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_listbox_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -121,7 +121,7 @@
</property>
<property>
- <name>size</name><classname>java.lang.String</classname><description>see JSF Spec.</description>
+ <name>size</name><classname>java.lang.String</classname><description>see JSF Spec</description>
</property>
<property>
<name>enabledClass</name><classname>java.lang.String</classname><description>CSS class is for enabled elements</description>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_listbox_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_listbox_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_listbox_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -121,7 +121,7 @@
</property>
<property>
- <name>size</name><classname>java.lang.String</classname><description>see JSF Spec.</description>
+ <name>size</name><classname>java.lang.String</classname><description>see JSF Spec</description>
</property>
<property>
<name>enabledClass</name><classname>java.lang.String</classname><description>CSS class for enabled elements</description>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_component_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_component_attributes.ent 2007-06-05 00:28:12 UTC (rev 234)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_component_attributes.ent 2007-06-05 13:52:44 UTC (rev 235)
@@ -4,15 +4,14 @@
<name>id</name>
<classname>java.lang.String</classname>
<description>
- Every component may have a unique id that is automatically created if
- omitted
+ Every component may have a unique id that is automatically created if omitted
</description>
</property>
<property>
<name>rendered</name>
<classname>boolean</classname>
<description>
- If "false", this component is not rendered.
+ If "false", this component is not rendered
</description>
</property>
<property existintag="true" exist="true" el="true" elonly="true">
17 years, 6 months
JBoss Ajax4JSF SVN: r234 - in trunk: src/main/assembly and 1 other directory.
by ajax4jsf-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-06-04 20:28:12 -0400 (Mon, 04 Jun 2007)
New Revision: 234
Added:
trunk/docs/pom.xml
Modified:
trunk/src/main/assembly/distribution.xml
trunk/src/main/assembly/src.xml
Log:
Start coding to generate project documentation in Maven build
Added: trunk/docs/pom.xml
===================================================================
--- trunk/docs/pom.xml (rev 0)
+++ trunk/docs/pom.xml 2007-06-05 00:28:12 UTC (rev 234)
@@ -0,0 +1,79 @@
+<?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/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>master</artifactId>
+ <groupId>org.ajax4jsf</groupId>
+ <version>1.1.2-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.ajax4jsf</groupId>
+ <artifactId>docs</artifactId>
+ <version>1.1.2-SNAPSHOT</version>
+ <description>Project documentation</description>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jboss-docbook-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-docbook-xslt</artifactId>
+ <version>0.1</version>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDocumentName>master.xml</sourceDocumentName>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>/standard/fopdf.xsl</stylesheetResource>
+ <finalName>hibernate_reference.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>/standard/html.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <xincludeSupported>true</xincludeSupported>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <transformerParameters>
+ <property>
+ <name>custom.titlepage.img</name>
+ <value>${basedir}/src/main/resources/shared/images/hibernate_logo_a.png</value>
+ </property>
+ </transformerParameters>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+<!-- report plugin is currently hosed
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugin</groupId>
+ <artifactId>jboss-docbook-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+-->
+ <properties>
+ <masterTranslation>en-US</masterTranslation>
+ </properties>
+
+
+</project>
+
Modified: trunk/src/main/assembly/distribution.xml
===================================================================
--- trunk/src/main/assembly/distribution.xml 2007-06-04 18:36:27 UTC (rev 233)
+++ trunk/src/main/assembly/distribution.xml 2007-06-05 00:28:12 UTC (rev 234)
@@ -2,6 +2,7 @@
<id>bin</id>
<formats>
<format>zip</format>
+ <format>tar.gz</format>
</formats>
<moduleSets>
<moduleSet>
@@ -37,7 +38,7 @@
</includes>
<binaries>
<includeDependencies>false</includeDependencies>
- <outputDirectory>cdk/${artifactId}/lib</outputDirectory>
+ <outputDirectory>cdk/lib</outputDirectory>
<unpack>false</unpack>
</binaries>
</moduleSet>
@@ -103,6 +104,14 @@
<include>tlddoc/**</include>
</includes>
</fileSet>
+ <fileSet>
+ <directory>a4j-portlet/target</directory>
+ <outputDirectory>a4j-portlet</outputDirectory>
+ <includes>
+ <include>apidocs/**</include>
+ <include>tlddoc/**</include>
+ </includes>
+ </fileSet>
</fileSets>
<dependencySets>
<dependencySet>
Modified: trunk/src/main/assembly/src.xml
===================================================================
--- trunk/src/main/assembly/src.xml 2007-06-04 18:36:27 UTC (rev 233)
+++ trunk/src/main/assembly/src.xml 2007-06-05 00:28:12 UTC (rev 234)
@@ -2,6 +2,7 @@
<id>src</id>
<formats>
<format>zip</format>
+ <format>tar.gz</format>
</formats>
<fileSets>
<fileSet>
17 years, 7 months
JBoss Ajax4JSF SVN: r233 - tags/ajax4jsf_1_1_1.
by ajax4jsf-svn-commits@lists.jboss.org
Author: ishabalov
Date: 2007-06-04 14:36:27 -0400 (Mon, 04 Jun 2007)
New Revision: 233
Added:
tags/ajax4jsf_1_1_1/release notes.txt
Log:
Tagged for release 1.1.1
Copied: tags/ajax4jsf_1_1_1/release notes.txt (from rev 232, trunk/release notes.txt)
===================================================================
--- tags/ajax4jsf_1_1_1/release notes.txt (rev 0)
+++ tags/ajax4jsf_1_1_1/release notes.txt 2007-06-04 18:36:27 UTC (rev 233)
@@ -0,0 +1,64 @@
+Changes from 1.0.x to 1.1.0
+ -
+ - Completely new build structure based on Maven2
+ - Added new components:
+ + jsFunction
+ + loadScript
+ + loadStyle
+ - New CDK core, based on template compiler and Maven2 plug-ins
+ - The default value for a4j:region renderRegionOnly is false now
+ - forceparse set to false by default in the web.xml
+ - drag-n-drop API is added
+
+
+Release Notes - Ajax4jsf - Version 1.1.1
+
+** Bug
+ * [AJSF-2] - a4j:commandButton, submitted in IE7, don't call action method
+ * [AJSF-9] - a4j:support does not work corrently inside the form with prependId
+ * [AJSF-10] - ajaxSingle="true" causes the Conversation scope started over
+ * [AJSF-11] - UIInput components ignore changes in user beans inside <a4j:repeat > and all richfaces iterable components.
+ * [AJSF-14] - Wrong exception message
+ * [AJSF-15] - CDK: Use of <property el="false"> results in error in Tag file
+ * [AJSF-16] - Problem with IE 6 and a4j:form - t:tree2
+ * [AJSF-18] - Getting a NullPointerException in Seam ConversationEntry when the session is exired
+ * [AJSF-20] - repeat: make rowKey attribute invisible
+ * [AJSF-21] - reRender located inside the t:dataList does not see the component outside of it
+ * [AJSF-24] - CDK: library.description and taglib.displayName is not written to xxx.tld file
+ * [AJSF-25] - CDK: Put javadoc on getters and setters instead/as well as fields
+ * [AJSF-27] - verifyObjects paramater set to true causes problem with application startup with p01 release of jsf ri 1.2.04
+ * [AJSF-29] - a4j:form does not work correctly in ajax mode on IE
+ * [AJSF-31] - cookies are lost during the redirect
+ * [AJSF-35] - Resource exception message lost.
+ * [AJSF-36] - rowKeyVar from data table - lost after ajax request
+ * [AJSF-38] - There are no included links to *.ent files for some componets.
+ * [AJSF-40] - Upgrade commons-collections and commons-beanutils to newer versions
+ * [AJSF-42] - taglib version mismatch
+ * [AJSF-43] - actionparam is not setting the value on the bean property.
+ * [AJSF-44] - CDK: component.vm has reference to Exadel VCP trial keys
+ * [AJSF-45] - jsFunction: wrong interpritation for two dimentional array
+ * [AJSF-48] - Maven assembly: resources-config.xml
+ * [AJSF-53] - <a4j:support> component ignore 'rendered' attribute at RENDER_RESPONSE phase .
+ * [AJSF-58] - resources-config.xml mises the aleases
+ * [AJSF-60] - Memory leak at the resource data encrypt/decript.
+ * [AJSF-62] - a4j:poll desn't encodes onsubmit attribute
+ * [AJSF-63] - "href has no properties" in Mozilla
+ * [AJSF-66] - Aajx4jsf with Apache server
+ * [AJSF-75] - View Sate cannot be restored error
+
+
+** Feature Request
+ * [AJSF-5] - add rowIndexVar to a4j:repeat
+ * [AJSF-12] - CDK support for JSF Converters and Validators
+ * [AJSF-46] - find component by id enhancement
+
+** Patch
+ * [AJSF-61] - Fix expires/last modified caching control for a resources renderer
+
+
+** Task
+ * [AJSF-6] - Work of EL during earlier phases in Seam environment
+ * [AJSF-7] - Need to verify Trinidad compatibility pack
+ * [AJSF-39] - Remove Oscache dependency
+ * [AJSF-56] - Dinamic a4j:commandLink not working
+
17 years, 7 months
JBoss Ajax4JSF SVN: r232 - trunk.
by ajax4jsf-svn-commits@lists.jboss.org
Author: ishabalov
Date: 2007-06-04 14:24:03 -0400 (Mon, 04 Jun 2007)
New Revision: 232
Added:
trunk/release notes.txt
Log:
Added release notes document
Added: trunk/release notes.txt
===================================================================
--- trunk/release notes.txt (rev 0)
+++ trunk/release notes.txt 2007-06-04 18:24:03 UTC (rev 232)
@@ -0,0 +1,64 @@
+Changes from 1.0.x to 1.1.0
+ -
+ - Completely new build structure based on Maven2
+ - Added new components:
+ + jsFunction
+ + loadScript
+ + loadStyle
+ - New CDK core, based on template compiler and Maven2 plug-ins
+ - The default value for a4j:region renderRegionOnly is false now
+ - forceparse set to false by default in the web.xml
+ - drag-n-drop API is added
+
+
+Release Notes - Ajax4jsf - Version 1.1.1
+
+** Bug
+ * [AJSF-2] - a4j:commandButton, submitted in IE7, don't call action method
+ * [AJSF-9] - a4j:support does not work corrently inside the form with prependId
+ * [AJSF-10] - ajaxSingle="true" causes the Conversation scope started over
+ * [AJSF-11] - UIInput components ignore changes in user beans inside <a4j:repeat > and all richfaces iterable components.
+ * [AJSF-14] - Wrong exception message
+ * [AJSF-15] - CDK: Use of <property el="false"> results in error in Tag file
+ * [AJSF-16] - Problem with IE 6 and a4j:form - t:tree2
+ * [AJSF-18] - Getting a NullPointerException in Seam ConversationEntry when the session is exired
+ * [AJSF-20] - repeat: make rowKey attribute invisible
+ * [AJSF-21] - reRender located inside the t:dataList does not see the component outside of it
+ * [AJSF-24] - CDK: library.description and taglib.displayName is not written to xxx.tld file
+ * [AJSF-25] - CDK: Put javadoc on getters and setters instead/as well as fields
+ * [AJSF-27] - verifyObjects paramater set to true causes problem with application startup with p01 release of jsf ri 1.2.04
+ * [AJSF-29] - a4j:form does not work correctly in ajax mode on IE
+ * [AJSF-31] - cookies are lost during the redirect
+ * [AJSF-35] - Resource exception message lost.
+ * [AJSF-36] - rowKeyVar from data table - lost after ajax request
+ * [AJSF-38] - There are no included links to *.ent files for some componets.
+ * [AJSF-40] - Upgrade commons-collections and commons-beanutils to newer versions
+ * [AJSF-42] - taglib version mismatch
+ * [AJSF-43] - actionparam is not setting the value on the bean property.
+ * [AJSF-44] - CDK: component.vm has reference to Exadel VCP trial keys
+ * [AJSF-45] - jsFunction: wrong interpritation for two dimentional array
+ * [AJSF-48] - Maven assembly: resources-config.xml
+ * [AJSF-53] - <a4j:support> component ignore 'rendered' attribute at RENDER_RESPONSE phase .
+ * [AJSF-58] - resources-config.xml mises the aleases
+ * [AJSF-60] - Memory leak at the resource data encrypt/decript.
+ * [AJSF-62] - a4j:poll desn't encodes onsubmit attribute
+ * [AJSF-63] - "href has no properties" in Mozilla
+ * [AJSF-66] - Aajx4jsf with Apache server
+ * [AJSF-75] - View Sate cannot be restored error
+
+
+** Feature Request
+ * [AJSF-5] - add rowIndexVar to a4j:repeat
+ * [AJSF-12] - CDK support for JSF Converters and Validators
+ * [AJSF-46] - find component by id enhancement
+
+** Patch
+ * [AJSF-61] - Fix expires/last modified caching control for a resources renderer
+
+
+** Task
+ * [AJSF-6] - Work of EL during earlier phases in Seam environment
+ * [AJSF-7] - Need to verify Trinidad compatibility pack
+ * [AJSF-39] - Remove Oscache dependency
+ * [AJSF-56] - Dinamic a4j:commandLink not working
+
17 years, 7 months