JBoss Rich Faces SVN: r17492 - root/docs/trunk/Component_Reference/en-US.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-06-03 12:46:33 -0400 (Thu, 03 Jun 2010)
New Revision: 17492
Modified:
root/docs/trunk/Component_Reference/en-US/Component_Reference.xml
root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Actions.xml
root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Common_Ajax_attributes.xml
root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Containers.xml
root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Resources.xml
Log:
Updated component guide to represent what is in Alpha2
Modified: root/docs/trunk/Component_Reference/en-US/Component_Reference.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/Component_Reference.xml 2010-06-03 16:45:54 UTC (rev 17491)
+++ root/docs/trunk/Component_Reference/en-US/Component_Reference.xml 2010-06-03 16:46:33 UTC (rev 17492)
@@ -5,7 +5,8 @@
<xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<!--
<xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- --><xi:include href="chap-Component_Reference-Introduction.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ -->
+ <xi:include href="chap-Component_Reference-Introduction.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="chap-Component_Reference-Common_Ajax_attributes.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="chap-Component_Reference-Common_features.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<part id="part-Component_Reference-a4j_tag_library">
@@ -13,7 +14,8 @@
<xi:include href="chap-Component_Reference-Actions.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="chap-Component_Reference-Resources.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="chap-Component_Reference-Containers.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="chap-Component_Reference-Validation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+<!-- FIXME NOT IN A2 -->
+<!-- <xi:include href="chap-Component_Reference-Validation.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />-->
<xi:include href="chap-Component_Reference-Processing_management.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
</part>
<part id="part-Component_Reference-rich_tag_library">
Modified: root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Actions.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Actions.xml 2010-06-03 16:45:54 UTC (rev 17491)
+++ root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Actions.xml 2010-06-03 16:46:33 UTC (rev 17492)
@@ -73,37 +73,38 @@
Variables from JavaScript functions can be used for the <varname>value</varname> attribute. In such an implementation, the <varname>noEscape</varname> attribute should be set to <literal>true</literal>. Using <code>noEscape="true"</code>, the <varname>value</varname> attribute can contain any JavaScript expression or JavaScript function invocation, and the result will be sent to the server as the <varname>value</varname> attribute.
</para>
</section>
+
+<!-- TODO NOT IN A2 -->
+<!-- <section id="sect-Component_Reference-Actions-a4jajaxListener">-->
+<!-- <title><sgmltag><a4j:ajaxListener></sgmltag></title>-->
+<!-- <itemizedlist>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- listener-class: <classname>org.ajax4jsf.event.AjaxListener</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- event-class: <classname>org.ajax4jsf.event.AjaxEvent</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- tag-class: <classname>org.ajax4jsf.taglib.html.jsp.AjaxListenerTag</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- </itemizedlist>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:ajaxListener></sgmltag> component adds an action listener to a parent component. It works similar to the JavaServer Faces <sgmltag><f:actionListener></sgmltag> or <sgmltag><f:valueChangeListener></sgmltag> components, except that the invocation of <sgmltag><a4j:ajaxListener></sgmltag> is not canceled if validation of the <emphasis>Update Model</emphasis> phase fails. The <sgmltag><a4j:ajaxListener></sgmltag> component is guaranteed to be invoked with each Ajax response.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- Basic usage requires only the <varname>type</varname> attribute, which defines the fully-qualified Java class name for the listener. This Java class should implement the <classname>org.ajax4jsf.event.AjaxListener</classname> interface, which is a base listener for all listeners and is capable of receiving Ajax events. The object from which the event originated could be accessed using the <methodname>java.util.EventObject.getSource()</methodname> method.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:ajaxListener></sgmltag> component is not invoked for non-Ajax requests, or when the RichFaces works in the <emphasis>Ajax request generates non-Ajax response</emphasis> mode, so the <sgmltag><a4j:ajaxListener></sgmltag> invocation is a good indicator that an Ajax response is going to be processed.-->
+<!-- </para>-->
+<!-- </section>-->
- <section id="sect-Component_Reference-Actions-a4jajaxListener">
- <title><sgmltag><a4j:ajaxListener></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- listener-class: <classname>org.ajax4jsf.event.AjaxListener</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- event-class: <classname>org.ajax4jsf.event.AjaxEvent</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- tag-class: <classname>org.ajax4jsf.taglib.html.jsp.AjaxListenerTag</classname>
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><a4j:ajaxListener></sgmltag> component adds an action listener to a parent component. It works similar to the JavaServer Faces <sgmltag><f:actionListener></sgmltag> or <sgmltag><f:valueChangeListener></sgmltag> components, except that the invocation of <sgmltag><a4j:ajaxListener></sgmltag> is not canceled if validation of the <emphasis>Update Model</emphasis> phase fails. The <sgmltag><a4j:ajaxListener></sgmltag> component is guaranteed to be invoked with each Ajax response.
- </para>
- <para>
- Basic usage requires only the <varname>type</varname> attribute, which defines the fully-qualified Java class name for the listener. This Java class should implement the <classname>org.ajax4jsf.event.AjaxListener</classname> interface, which is a base listener for all listeners and is capable of receiving Ajax events. The object from which the event originated could be accessed using the <methodname>java.util.EventObject.getSource()</methodname> method.
- </para>
- <para>
- The <sgmltag><a4j:ajaxListener></sgmltag> component is not invoked for non-Ajax requests, or when the RichFaces works in the <emphasis>Ajax request generates non-Ajax response</emphasis> mode, so the <sgmltag><a4j:ajaxListener></sgmltag> invocation is a good indicator that an Ajax response is going to be processed.
- </para>
- </section>
-
<section id="sect-Component_Reference-Actions-a4jcommandButton">
<title><sgmltag><a4j:commandButton></sgmltag></title>
<itemizedlist>
@@ -200,8 +201,9 @@
</para>
</section>
+ <!-- FIXME this is really rich:componentControl -->
<section id="sect-Component_Reference-Actions-a4jcomponentControl">
- <title><sgmltag><a4j:componentControl></sgmltag></title>
+ <title><sgmltag><rich:componentControl></sgmltag></title>
<remark>The following reference data is taken from the old <sgmltag><rich:componentControl></sgmltag> reference. The details may be different now that the component is part of the <classname>a4j</classname> tag library.</remark>
<itemizedlist>
<listitem>
@@ -231,17 +233,17 @@
</listitem>
</itemizedlist>
<para>
- The <sgmltag><a4j:componentControl></sgmltag> allows JavaScript API functions to be called on components after defined events. Initialization variants and activation events can be customized, and parameters can be passed to the target component.
+ The <sgmltag><rich:componentControl></sgmltag> allows JavaScript API functions to be called on components after defined events. Initialization variants and activation events can be customized, and parameters can be passed to the target component.
</para>
<para>
The <varname>event</varname>, <varname>for</varname>, and <varname>operation</varname> attributes are all that is required to attach JavaScript functions to the parent component. The <varname>event</varname> attribute specifies the event that triggers the JavaScript API function call. The <varname>for</varname> attribute defines the target component, and the <varname>operation</varname> attribute specifies the JavaScript function to perform.
</para>
<example id="exam-Component_Reference-a4jcomponentControl-a4jcomponentControl_basic_usage">
- <title>a4j:componentControl basic usage</title>
+ <title>rich:componentControl basic usage</title>
<programlisting language="XML" role="XML"><h:commandButton value="Show Modal Panel">
<!--componentControl is attached to the commandButton-->
- <a4j:componentControl for="ccModalPanelID" event="onclick" operation="show"/>
+ <rich:componentControl for="ccModalPanelID" event="onclick" operation="show"/>
</h:commandButton>
</programlisting>
<para>
@@ -249,10 +251,10 @@
</para>
</example>
<para>
- The <varname>attachTo</varname> attribute can be used to attach the event to a component other than the parent component. If no <varname>attachTo</varname> attribute is supplied, the <sgmltag><a4j:componentControl></sgmltag> component's parent is used, as in <xref linkend="exam-Component_Reference-a4jcomponentControl-a4jcomponentControl_basic_usage" />.
+ The <varname>attachTo</varname> attribute can be used to attach the event to a component other than the parent component. If no <varname>attachTo</varname> attribute is supplied, the <sgmltag><rich:componentControl></sgmltag> component's parent is used, as in <xref linkend="exam-Component_Reference-a4jcomponentControl-a4jcomponentControl_basic_usage" />.
</para>
<example id="exam-Component_Reference-a4jcomponentControl-Attaching_a4jcomponentControl_to_a_component">
- <title>Attaching <sgmltag><a4j:componentControl></sgmltag> to a component</title>
+ <title>Attaching <sgmltag><rich:componentControl></sgmltag> to a component</title>
<programlisting language="XML" role="XML"><rich:componentControl attachTo="doExpandCalendarID" event="onclick" operation="Expand" for="ccCalendarID" />
</programlisting>
@@ -290,7 +292,7 @@
The <varname>name</varname> attribute can be used to define a normal JavaScript function that triggers the specified operation on the target component.
</para>
<para>
- The <varname>attachTiming</varname> attribute can determine the page loading phase during which the <sgmltag><a4j:componentControl></sgmltag> is attached to the source component:
+ The <varname>attachTiming</varname> attribute can determine the page loading phase during which the <sgmltag><rich:componentControl></sgmltag> is attached to the source component:
</para>
<variablelist>
<varlistentry>
@@ -327,37 +329,38 @@
</para>
</section>
- <section id="sect-Component_Reference-Actions-a4jhtmlCommandLink">
- <title><sgmltag><a4j:htmlCommandLink></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- component-type: <classname>org.ajax4jsf.HtmlCommandLink</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-family: <classname>javax.faces.Command</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-class: <classname>org.ajax4jsf.component.html.HtmlCommandLink</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- renderer-type: <classname>org.ajax4jsf.HtmlCommandLinkRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><a4j:htmlCommandLink></sgmltag> component functions similarly to the standard <sgmltag><h:commandLink></sgmltag> component, but addresses some of the potential issues that can occur.
- </para>
- <para>
- When using the standard component, hidden fields were not rendered to child elements if they were deemed unnecessary, so command links relating to content on the initial page could become broken if they were later updated through Ajax. The <sgmltag><a4j:htmlCommandLink></sgmltag> component addresses this by always rendering all hidden fields.
- </para>
- </section>
+<!-- FIXME NOT IS A2 -->
+<!-- <section id="sect-Component_Reference-Actions-a4jhtmlCommandLink">-->
+<!-- <title><sgmltag><a4j:htmlCommandLink></sgmltag></title>-->
+<!-- <itemizedlist>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-type: <classname>org.ajax4jsf.HtmlCommandLink</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-family: <classname>javax.faces.Command</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-class: <classname>org.ajax4jsf.component.html.HtmlCommandLink</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- renderer-type: <classname>org.ajax4jsf.HtmlCommandLinkRenderer</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- </itemizedlist>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:htmlCommandLink></sgmltag> component functions similarly to the standard <sgmltag><h:commandLink></sgmltag> component, but addresses some of the potential issues that can occur.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- When using the standard component, hidden fields were not rendered to child elements if they were deemed unnecessary, so command links relating to content on the initial page could become broken if they were later updated through Ajax. The <sgmltag><a4j:htmlCommandLink></sgmltag> component addresses this by always rendering all hidden fields.-->
+<!-- </para>-->
+<!-- </section>-->
<section id="sect-Component_Reference-Actions-a4jjsFunction">
<title><sgmltag><a4j:jsFunction></sgmltag></title>
@@ -501,8 +504,9 @@
</para>
</listitem>
</itemizedlist>
+ <!-- FIXME Move a4j:repeat -->
<para>
- The <sgmltag><a4j:repeat></sgmltag> component is used to iterate changes through a repeated collection of components. It allows specific rows of items to be updated without sending Ajax requests for the entire collection. The <sgmltag><a4j:repeat></sgmltag> component forms the basis for many of the tabular components detailed in <xref linkend="chap-Component_Reference-Tables_and_grids" />.
+ REVIEW COMMENT - a4j:repeat is not an action, should be moved. The <sgmltag><a4j:repeat></sgmltag> component is used to iterate changes through a repeated collection of components. It allows specific rows of items to be updated without sending Ajax requests for the entire collection. The <sgmltag><a4j:repeat></sgmltag> component forms the basis for many of the tabular components detailed in <xref linkend="chap-Component_Reference-Tables_and_grids" />.
</para>
<para>
The contents of the collection are determined using Expression Language (<acronym>EL</acronym>). The data model for the contents is specified with the <varname>value</varname> attribute. The <varname>var</varname> attribute names the object to use when iterating through the collection. This object is then referenced in the relevant child components. After an Ajax request, only the rows specified with the <varname>ajaxKeys</varname> attribute are updated rather than the entire collection. <xref linkend="exam-Component_Reference-Tables_and_grids-a4jrepeat_example" /> shows how to use <sgmltag><a4j:repeat></sgmltag> to maintain a simple table.
@@ -519,17 +523,18 @@
</para>
</section>
+ <!-- FIXME - a4j:support is now a4j:ajax in 4.0 -->
<section id="sect-Component_Reference-Actions-a4jsupport">
- <title><sgmltag><a4j:support></sgmltag></title>
+ <title><sgmltag><a4j:ajax></sgmltag></title>
<itemizedlist>
<listitem>
<para>
- component-type: <classname>org.ajax4jsf.Support</classname>
+ component-type: <classname>org.ajax4jsf.Ajax</classname>
</para>
</listitem>
<listitem>
<para>
- component-family: <classname>org.ajax4jsf.AjaxSupport</classname>
+ component-family: <classname>org.ajax4jsf.Ajax</classname>
</para>
</listitem>
<listitem>
@@ -544,20 +549,20 @@
</listitem>
</itemizedlist>
<para>
- The <sgmltag><a4j:support></sgmltag> component allows Ajax capability to be added to any non-Ajax component. It is placed as a direct child to the component that requires Ajax support. The <sgmltag><a4j:support></sgmltag> component uses the common attributes listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />.
+ REVIEW COMMENT: a4j:support is a4j:ajax in 4.0, paths need to be updated. The <sgmltag><a4j:ajax></sgmltag> component allows Ajax capability to be added to any non-Ajax component. It is placed as a direct child to the component that requires Ajax support. The <sgmltag><a4j:ajax></sgmltag> component uses the common attributes listed in <xref linkend="chap-Component_Reference-Common_Ajax_attributes" />.
</para>
<note>
<title>Attaching JavaScript functions</title>
<para>
- When attaching the <sgmltag><a4j:support></sgmltag> component to non-Ajax JavaServer Faces command components, such as <sgmltag><h:commandButton></sgmltag> and <sgmltag><h:commandLink></sgmltag>, it is important to set <code>disabledDefault="true"</code>. If this attribute is not set, a non-Ajax request is sent after the Ajax request and the page is refreshed unexpectedly.
+ When attaching the <sgmltag><a4j:ajax></sgmltag> component to non-Ajax JavaServer Faces command components, such as <sgmltag><h:commandButton></sgmltag> and <sgmltag><h:commandLink></sgmltag>, it is important to set <code>disabledDefault="true"</code>. If this attribute is not set, a non-Ajax request is sent after the Ajax request and the page is refreshed unexpectedly.
</para>
</note>
<example id="exam-Component_Reference-a4jsupport-a4jsupport_example">
- <title><sgmltag><a4j:support></sgmltag> example</title>
+ <title><sgmltag><a4j:ajax></sgmltag> example</title>
<programlisting language="XML" role="XML"><h:panelGrid columns="2">
<h:inputText id="myinput" value="#{userBean.name}">
- <a4j:support event="onkeyup" reRender="outtext" />
+ <a4j:ajax event="onkeyup" reRender="outtext" />
</h:inputText>
<h:outputText id="outtext" value="#{userBean.name}" />
</h:panelGrid>
Modified: root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Common_Ajax_attributes.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Common_Ajax_attributes.xml 2010-06-03 16:45:54 UTC (rev 17491)
+++ root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Common_Ajax_attributes.xml 2010-06-03 16:46:33 UTC (rev 17492)
@@ -124,9 +124,9 @@
RichFaces uses a form-based approach for sending Ajax requests. As such, each time a request is sent the data from the requesting component's parent <acronym>JSF</acronym> form is submitted along with the <acronym>XMLHTTPRequest</acronym> object. The form data contains values from the input element and auxiliary information such as state-saving data.
</para>
<section id="sect-Component_Reference-Data_processing-process">
- <title><varname>process</varname></title>
+ <title><varname>execute</varname></title>
<para>
- The <varname>process</varname> attribute allows <acronym>JSF</acronym> processing to be limited to defined components. To only process the requesting component, <code>process="@this"</code> can be used.
+ The <varname>execute</varname> attribute allows <acronym>JSF</acronym> processing to be limited to defined components. To only process the requesting component, <code>execute="@this"</code> can be used.
</para>
</section>
Modified: root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Containers.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Containers.xml 2010-06-03 16:45:54 UTC (rev 17491)
+++ root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Containers.xml 2010-06-03 16:46:33 UTC (rev 17492)
@@ -6,109 +6,110 @@
<para>
This chapter details those components in the <classname>a4j</classname> tag library which define an area used as a container or wrapper for other components.
</para>
- <section id="sect-Component_Reference-Containers-a4jform">
- <title><sgmltag><a4j:form></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- component-type: <classname>org.ajax4jsf.Form</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-family: <classname>javax.faces.Form</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-class: <classname>org.ajax4jsf.component.html.AjaxForm</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- renderer-type: <classname>org.ajax4jsf.FormRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><a4j:form></sgmltag> builds on the functionality of the JavaServer Faces (<acronym>JSF</acronym>) component <sgmltag><h:form></sgmltag>, adding Ajax capabilities to the form.
- </para>
- <note>
- <title>Command link rendering fixed</title>
- <para>
- The <acronym>JSF</acronym> component <sgmltag><h:form></sgmltag>, on which the <sgmltag><a4j:form></sgmltag> component is based, had an issue whereby the <sgmltag><h:commandLink></sgmltag> component could not be re-rendered without re-rendering the entire form. <sgmltag><a4j:form></sgmltag> and <sgmltag><a4j:commandLink></sgmltag> fix this issue.
- </para>
- </note>
- <para>
- The <sgmltag><a4j:form></sgmltag> component can add indirect Ajax support to non-Ajax components on the form by setting <code>ajaxSubmit="true"</code>. It then uses the standard Ajax component attributes and updates components specified with the <varname>render</varname> attribute.
- </para>
- <important>
- <title><varname>ajaxSubmit</varname></title>
- <para>
- <sgmltag><a4j:form></sgmltag> should not use <code>ajaxSubmit="true"</code> if it contains other Ajax-capable components.
- </para>
- <para>
- Additionally, due to security reasons the file upload form element cannot be indirectly made Ajax-capable with <sgmltag><a4j:form></sgmltag>.
- </para>
- </important>
- </section>
+<!-- FIXME NOT IN A2 -->
+<!-- <section id="sect-Component_Reference-Containers-a4jform">-->
+<!-- <title><sgmltag><a4j:form></sgmltag></title>-->
+<!-- <itemizedlist>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-type: <classname>org.ajax4jsf.Form</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-family: <classname>javax.faces.Form</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-class: <classname>org.ajax4jsf.component.html.AjaxForm</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- renderer-type: <classname>org.ajax4jsf.FormRenderer</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- </itemizedlist>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:form></sgmltag> builds on the functionality of the JavaServer Faces (<acronym>JSF</acronym>) component <sgmltag><h:form></sgmltag>, adding Ajax capabilities to the form.-->
+<!-- </para>-->
+<!-- <note>-->
+<!-- <title>Command link rendering fixed</title>-->
+<!-- <para>-->
+<!-- The <acronym>JSF</acronym> component <sgmltag><h:form></sgmltag>, on which the <sgmltag><a4j:form></sgmltag> component is based, had an issue whereby the <sgmltag><h:commandLink></sgmltag> component could not be re-rendered without re-rendering the entire form. <sgmltag><a4j:form></sgmltag> and <sgmltag><a4j:commandLink></sgmltag> fix this issue.-->
+<!-- </para>-->
+<!-- </note>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:form></sgmltag> component can add indirect Ajax support to non-Ajax components on the form by setting <code>ajaxSubmit="true"</code>. It then uses the standard Ajax component attributes and updates components specified with the <varname>render</varname> attribute.-->
+<!-- </para>-->
+<!-- <important>-->
+<!-- <title><varname>ajaxSubmit</varname></title>-->
+<!-- <para>-->
+<!-- <sgmltag><a4j:form></sgmltag> should not use <code>ajaxSubmit="true"</code> if it contains other Ajax-capable components.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- Additionally, due to security reasons the file upload form element cannot be indirectly made Ajax-capable with <sgmltag><a4j:form></sgmltag>.-->
+<!-- </para>-->
+<!-- </important>-->
+<!-- </section>-->
+<!-- -->
+<!-- <section id="sect-Component_Reference-Containers-a4jinclude">-->
+<!-- <title><sgmltag><a4j:include></sgmltag></title>-->
+<!-- <itemizedlist>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-type: <classname>org.ajax4jsf.Include</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-family: <classname>javax.faces.Output</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-class: <classname>org.ajax4jsf.component.html.Include</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- renderer-type: <classname>org.ajax4jsf.components.AjaxIncludeRenderer</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- </itemizedlist>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:include></sgmltag> component allows one view to be included as part of another page. This is useful for applications where multiple views might appear on the one page, with navigation between the views. Views can use partial page navigation in Ajax mode, or standard <acronym>JSF</acronym> navigation for navigation between views.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- The <varname>viewId</varname> attribute is required to reference the resource that will be included as a view on the page. It uses a full context-relative path to point to the resource, similar to the paths used for the <sgmltag><from-view-id></sgmltag> and <sgmltag><to-view-id></sgmltag> tags in the <filename>faces-config.xml</filename> <acronym>JSF</acronym> navigation rules.-->
+<!-- </para>-->
+<!-- <example id="exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude">-->
+<!-- <title>A wizard using <sgmltag><a4j:include></sgmltag></title>-->
+<!-- <para>-->
+<!-- The page uses <sgmltag><a4j:include></sgmltag> to include the first step of the wizard:-->
+<!-- </para>-->
+<!-- -->
+<!--<programlisting language="XML" role="XML">-->
+<!--<xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />-->
+<!--</programlisting>-->
+<!-- <para>-->
+<!-- The first step is fully contained in a separate file, <filename>wstep1.xhtml</filename>. Subsequent steps are set up similarly with additional <guibutton>Previous</guibutton> buttons.-->
+<!-- </para>-->
+<!-- -->
+<!--<programlisting language="XML" role="XML">-->
+<!--<xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-1.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />-->
+<!--</programlisting>-->
+<!-- <para>-->
+<!-- The navigation is defined in the <filename>faces-config.xml</filename> configuration file:-->
+<!-- </para>-->
+<!-- -->
+<!--<programlisting language="XML" role="XML">-->
+<!--<xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-2.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />-->
+<!--</programlisting>-->
+<!-- </example>-->
+<!-- </section>-->
- <section id="sect-Component_Reference-Containers-a4jinclude">
- <title><sgmltag><a4j:include></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- component-type: <classname>org.ajax4jsf.Include</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-family: <classname>javax.faces.Output</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-class: <classname>org.ajax4jsf.component.html.Include</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- renderer-type: <classname>org.ajax4jsf.components.AjaxIncludeRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><a4j:include></sgmltag> component allows one view to be included as part of another page. This is useful for applications where multiple views might appear on the one page, with navigation between the views. Views can use partial page navigation in Ajax mode, or standard <acronym>JSF</acronym> navigation for navigation between views.
- </para>
- <para>
- The <varname>viewId</varname> attribute is required to reference the resource that will be included as a view on the page. It uses a full context-relative path to point to the resource, similar to the paths used for the <sgmltag><from-view-id></sgmltag> and <sgmltag><to-view-id></sgmltag> tags in the <filename>faces-config.xml</filename> <acronym>JSF</acronym> navigation rules.
- </para>
- <example id="exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude">
- <title>A wizard using <sgmltag><a4j:include></sgmltag></title>
- <para>
- The page uses <sgmltag><a4j:include></sgmltag> to include the first step of the wizard:
- </para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <para>
- The first step is fully contained in a separate file, <filename>wstep1.xhtml</filename>. Subsequent steps are set up similarly with additional <guibutton>Previous</guibutton> buttons.
- </para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-1.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <para>
- The navigation is defined in the <filename>faces-config.xml</filename> configuration file:
- </para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-a4jinclude-A_wizard_using_a4jinclude-2.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- </example>
- </section>
-
<section id="sect-Component_Reference-Containers-a4joutputPanel">
<title><sgmltag><a4j:outputPanel></sgmltag></title>
<itemizedlist>
@@ -161,92 +162,93 @@
</para>
</section>
- <section id="sect-Component_Reference-Containers-a4jpage">
- <title><sgmltag><a4j:page></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- component-type: <classname>org.ajax4jsf.components.Page</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-family: <classname>org.ajax4jsf.components.AjaxRegion</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-class: <classname>org.ajax4jsf.component.html.HtmlPage</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- renderer-type: <classname>org.ajax4jsf.components.AjaxPageRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><a4j:page></sgmltag> component encodes a full HTML-page structure using only one tag. It renders complete <sgmltag><!DOCTYPE></sgmltag>, <sgmltag><html></sgmltag>, <sgmltag><head></sgmltag>, <sgmltag><title></sgmltag>, and <sgmltag><body></sgmltag> tags using the specified attributes and facets. Additionally, the <sgmltag><a4j:page></sgmltag> component solves an incompatibility issue between early versions of <productname>MyFaces</productname>
- and the <productname>Ajax4jsf</productname>
- framework.
- </para>
- <para>
- The <varname>pageTitle</varname> attribute is rendered as a <sgmltag><title></sgmltag> element. The component uses the <literal>head</literal> facet to define the contents of the HTML <sgmltag><head></sgmltag> element. The <literal>format</literal> facet defines the page layout format for encoding the <sgmltag><!DOCTYPE></sgmltag> element. There rest of the contents of the <sgmltag><a4j:page></sgmltag> component are rendered as part of the <sgmltag><body></sgmltag> element.
- </para>
- <example id="exam-Component_Reference-a4jpage-a4jpage_rendering">
- <title><sgmltag><a4j:page></sgmltag> rendering</title>
- <para>
- An <sgmltag><a4j:page></sgmltag> component can be defined as follows:
- </para>
-
-<programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jpage-a4jpage_rendering-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <para>
- This definition will render on an XHTML page as follows:
- </para>
-
-<programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jpage-a4jpage_rendering-1.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- </example>
- <para>
- When using the <productname>Ajax4jsf</productname>
- framework with <productname>MyFaces</productname>
- version 1.2.2 and lower, the <sgmltag><f:view></sgmltag> JSP tag does not receive control for encoding contents during the <literal>RENDER_RESPONSE</literal> phase. As a result, Ajax fails to receive control and send responses. The <sgmltag><a4j:page></sgmltag> component solves this problem by wrapping the Ajax areas to be updated. Later versions of <productname>MyFaces</productname>
- do not have this problem, and as such do not require the use of the <sgmltag><a4j:page></sgmltag> component.
- </para>
- </section>
-
- <section id="sect-Component_Reference-Containers-a4jregion">
- <title><sgmltag><a4j:region></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- component-type: <classname>org.ajax4jsf.AjaxRegion</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-family: <classname>org.ajax4jsf.AjaxRegion</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-class: <classname>org.ajax4jsf.component.html.HtmlAjaxRegion</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- renderer-type: <classname>org.ajax4jsf.components.AjaxRegionRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><a4j:region></sgmltag> component specifies a part of the document object model (<acronym>DOM</acronym>) tree to be processed on the server. The processing includes data handling during decoding, conversion, validation, and model updating. When not using <sgmltag><a4j:region></sgmltag>, the entire view functions as a region.
- </para>
- <para>
- The whole form is still submitted to the server, but only the specified region is processed. Regions can be nested, in which case only the immediate region of the component initiating the request will be processed.
- </para>
- </section>
+<!-- FIXME NOT IN A2 -->
+<!-- <section id="sect-Component_Reference-Containers-a4jpage">-->
+<!-- <title><sgmltag><a4j:page></sgmltag></title>-->
+<!-- <itemizedlist>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-type: <classname>org.ajax4jsf.components.Page</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-family: <classname>org.ajax4jsf.components.AjaxRegion</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-class: <classname>org.ajax4jsf.component.html.HtmlPage</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- renderer-type: <classname>org.ajax4jsf.components.AjaxPageRenderer</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- </itemizedlist>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:page></sgmltag> component encodes a full HTML-page structure using only one tag. It renders complete <sgmltag><!DOCTYPE></sgmltag>, <sgmltag><html></sgmltag>, <sgmltag><head></sgmltag>, <sgmltag><title></sgmltag>, and <sgmltag><body></sgmltag> tags using the specified attributes and facets. Additionally, the <sgmltag><a4j:page></sgmltag> component solves an incompatibility issue between early versions of <productname>MyFaces</productname>-->
+<!-- and the <productname>Ajax4jsf</productname>-->
+<!-- framework.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- The <varname>pageTitle</varname> attribute is rendered as a <sgmltag><title></sgmltag> element. The component uses the <literal>head</literal> facet to define the contents of the HTML <sgmltag><head></sgmltag> element. The <literal>format</literal> facet defines the page layout format for encoding the <sgmltag><!DOCTYPE></sgmltag> element. There rest of the contents of the <sgmltag><a4j:page></sgmltag> component are rendered as part of the <sgmltag><body></sgmltag> element.-->
+<!-- </para>-->
+<!-- <example id="exam-Component_Reference-a4jpage-a4jpage_rendering">-->
+<!-- <title><sgmltag><a4j:page></sgmltag> rendering</title>-->
+<!-- <para>-->
+<!-- An <sgmltag><a4j:page></sgmltag> component can be defined as follows:-->
+<!-- </para>-->
+<!-- -->
+<!--<programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jpage-a4jpage_rendering-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />-->
+<!--</programlisting>-->
+<!-- <para>-->
+<!-- This definition will render on an XHTML page as follows:-->
+<!-- </para>-->
+<!-- -->
+<!--<programlisting language="XML" role="XML"><xi:include href="extras/exam-Component_Reference-a4jpage-a4jpage_rendering-1.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />-->
+<!--</programlisting>-->
+<!-- </example>-->
+<!-- <para>-->
+<!-- When using the <productname>Ajax4jsf</productname>-->
+<!-- framework with <productname>MyFaces</productname>-->
+<!-- version 1.2.2 and lower, the <sgmltag><f:view></sgmltag> JSP tag does not receive control for encoding contents during the <literal>RENDER_RESPONSE</literal> phase. As a result, Ajax fails to receive control and send responses. The <sgmltag><a4j:page></sgmltag> component solves this problem by wrapping the Ajax areas to be updated. Later versions of <productname>MyFaces</productname>-->
+<!-- do not have this problem, and as such do not require the use of the <sgmltag><a4j:page></sgmltag> component.-->
+<!-- </para>-->
+<!-- </section>-->
+<!-- -->
+<!-- <section id="sect-Component_Reference-Containers-a4jregion">-->
+<!-- <title><sgmltag><a4j:region></sgmltag></title>-->
+<!-- <itemizedlist>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-type: <classname>org.ajax4jsf.AjaxRegion</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-family: <classname>org.ajax4jsf.AjaxRegion</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-class: <classname>org.ajax4jsf.component.html.HtmlAjaxRegion</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- renderer-type: <classname>org.ajax4jsf.components.AjaxRegionRenderer</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- </itemizedlist>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:region></sgmltag> component specifies a part of the document object model (<acronym>DOM</acronym>) tree to be processed on the server. The processing includes data handling during decoding, conversion, validation, and model updating. When not using <sgmltag><a4j:region></sgmltag>, the entire view functions as a region.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- The whole form is still submitted to the server, but only the specified region is processed. Regions can be nested, in which case only the immediate region of the component initiating the request will be processed.-->
+<!-- </para>-->
+<!-- </section>-->
</chapter>
Modified: root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Resources.xml
===================================================================
--- root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Resources.xml 2010-06-03 16:45:54 UTC (rev 17491)
+++ root/docs/trunk/Component_Reference/en-US/chap-Component_Reference-Resources.xml 2010-06-03 16:46:33 UTC (rev 17492)
@@ -6,219 +6,220 @@
<para>
This chapter covers those components used to handle and manage resources and beans.
</para>
- <section id="sect-Component_Reference-Resources-a4jloadBundle">
- <title><sgmltag><a4j:loadBundle></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- component-type: <classname>org.ajax4jsf.Bundle</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-family: <classname>org.ajax4jsf.Bundle</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-class: <classname>org.ajax4jsf.component.html.AjaxLoadBundle</classname>
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><a4j:loadBundle></sgmltag> component is used to load resource bundles to aid in localization of an application. The bundles are localized to the locale of the current view, and properties are stored as a map in the current request attributes.
- </para>
- <para>
- The <sgmltag><a4j:loadBundle></sgmltag> component allows bundles to be accessed by Ajax requests working in their own address scopes. This solves the problem of using the <acronym>JSF</acronym> <sgmltag><h:loadBundle></sgmltag> component with Ajax, where bundle information loaded with the page was unavailable for later Ajax requests.
- </para>
- <para>
- Resource bundles are registered in the Faces configuration file, <filename>faces-config.xml</filename>.
- </para>
- <example id="exam-Component_Reference-a4jloadBundle-a4jloadBundle_example">
- <title><sgmltag><a4j:loadBundle></sgmltag> example</title>
- <para>
- This example shows a simple application capable of switching between different localized languages.
- </para>
- <procedure>
- <step id="step-Component_Reference-a4jloadBundle_example-Create_resource_bundles">
- <title>Create resource bundles</title>
- <para>
- String resource bundles are contained in files with a <filename class="extension">.properties</filename> extension. The files consist of a list of entries, each with a unique name and a corresponding value. A seperate file is required for each language. Append the filename with the locale identifier (<literal>en</literal> for English, for example).
- </para>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/figu-Component_Reference-a4jloadBundle-Create_resource_bundles.png" format="PNG" width="444" />
- </imageobject>
- <textobject>
- <para>
- Resource bundles for English (<literal>en</literal>), German (<literal>de</literal>), and Italian (<literal>it</literal>). A single entry (<literal>greeting</literal>) has been localized for each bundle.
- </para>
- </textobject>
- </mediaobject>
- </step>
- <step id="step-Component_Reference-a4jloadBundle_example-Register_bundles_in_Faces_configuration_file">
- <title>Register bundles in Faces configuration file</title>
- <para>
- The resource bundles need to be registered in the Faces configuration file, <filename>faces-config.xml</filename>. The filename is defined with the <sgmltag><message-bundle></sgmltag> tag, without the locale code and without the extension. The supported locale codes are listed with <sgmltag><supported-locale></sgmltag> tags.
- </para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-a4jloadBundle-a4jloadBundle_example-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- </step>
- <step id="step-Component_Reference-a4jloadBundle_example-Create_method_to_set_locale">
- <title>Create method to set locale</title>
- <para>
- The <acronym>JSF</acronym> <methodname>javax.faces.component.UIViewRoot.setLocale()</methodname> method can be used to update the locale through a Java class:
- </para>
-
-<programlisting language="Java" role="JAVA">
-<xi:include href="extras/exam-Component_Reference-a4jloadBundle-a4jloadBundle_example-1.js" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- </step>
- <step id="step-Component_Reference-a4jloadBundle_example-Add_a4jloadBundle_to_the_JSP_page">
- <title>Add <sgmltag><a4j:loadBundle></sgmltag> to the <acronym>JSP</acronym> page</title>
- <para>
- The <sgmltag><a4j:loadBundle></sgmltag> component is added to the application, and links to change the locale will update the displayed text.
- </para>
-
-<programlisting language="XML" role="XML">
-<xi:include href="extras/exam-Component_Reference-a4jloadBundle-a4jloadBundle_example-2.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/figu-Component_Reference-a4jloadBundle-Add_a4jloadBundle_to_the_JSP_page.png" format="PNG" />
- </imageobject>
- <textobject>
- <para>
- The output text displayed on a page. It can be changed by clicking the command link for either German, English, or Italian.
- </para>
- </textobject>
- </mediaobject>
- </step>
- </procedure>
-
- <para>
- Clicking on the different links will render the localized string as appropriate.
- </para>
- </example>
- </section>
+<!-- FIXME NOT IN A2 -->
+<!-- <section id="sect-Component_Reference-Resources-a4jloadBundle">-->
+<!-- <title><sgmltag><a4j:loadBundle></sgmltag></title>-->
+<!-- <itemizedlist>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-type: <classname>org.ajax4jsf.Bundle</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-family: <classname>org.ajax4jsf.Bundle</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-class: <classname>org.ajax4jsf.component.html.AjaxLoadBundle</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- </itemizedlist>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:loadBundle></sgmltag> component is used to load resource bundles to aid in localization of an application. The bundles are localized to the locale of the current view, and properties are stored as a map in the current request attributes.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:loadBundle></sgmltag> component allows bundles to be accessed by Ajax requests working in their own address scopes. This solves the problem of using the <acronym>JSF</acronym> <sgmltag><h:loadBundle></sgmltag> component with Ajax, where bundle information loaded with the page was unavailable for later Ajax requests.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- Resource bundles are registered in the Faces configuration file, <filename>faces-config.xml</filename>.-->
+<!-- </para>-->
+<!-- <example id="exam-Component_Reference-a4jloadBundle-a4jloadBundle_example">-->
+<!-- <title><sgmltag><a4j:loadBundle></sgmltag> example</title>-->
+<!-- <para>-->
+<!-- This example shows a simple application capable of switching between different localized languages.-->
+<!-- </para>-->
+<!-- <procedure>-->
+<!-- <step id="step-Component_Reference-a4jloadBundle_example-Create_resource_bundles">-->
+<!-- <title>Create resource bundles</title>-->
+<!-- <para>-->
+<!-- String resource bundles are contained in files with a <filename class="extension">.properties</filename> extension. The files consist of a list of entries, each with a unique name and a corresponding value. A seperate file is required for each language. Append the filename with the locale identifier (<literal>en</literal> for English, for example).-->
+<!-- </para>-->
+<!-- <mediaobject>-->
+<!-- <imageobject>-->
+<!-- <imagedata fileref="images/figu-Component_Reference-a4jloadBundle-Create_resource_bundles.png" format="PNG" width="444" />-->
+<!-- </imageobject>-->
+<!-- <textobject>-->
+<!-- <para>-->
+<!-- Resource bundles for English (<literal>en</literal>), German (<literal>de</literal>), and Italian (<literal>it</literal>). A single entry (<literal>greeting</literal>) has been localized for each bundle.-->
+<!-- </para>-->
+<!-- </textobject>-->
+<!-- </mediaobject>-->
+<!-- </step>-->
+<!-- <step id="step-Component_Reference-a4jloadBundle_example-Register_bundles_in_Faces_configuration_file">-->
+<!-- <title>Register bundles in Faces configuration file</title>-->
+<!-- <para>-->
+<!-- The resource bundles need to be registered in the Faces configuration file, <filename>faces-config.xml</filename>. The filename is defined with the <sgmltag><message-bundle></sgmltag> tag, without the locale code and without the extension. The supported locale codes are listed with <sgmltag><supported-locale></sgmltag> tags.-->
+<!-- </para>-->
+<!-- -->
+<!--<programlisting language="XML" role="XML">-->
+<!--<xi:include href="extras/exam-Component_Reference-a4jloadBundle-a4jloadBundle_example-0.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />-->
+<!--</programlisting>-->
+<!-- </step>-->
+<!-- <step id="step-Component_Reference-a4jloadBundle_example-Create_method_to_set_locale">-->
+<!-- <title>Create method to set locale</title>-->
+<!-- <para>-->
+<!-- The <acronym>JSF</acronym> <methodname>javax.faces.component.UIViewRoot.setLocale()</methodname> method can be used to update the locale through a Java class:-->
+<!-- </para>-->
+<!-- -->
+<!--<programlisting language="Java" role="JAVA">-->
+<!--<xi:include href="extras/exam-Component_Reference-a4jloadBundle-a4jloadBundle_example-1.js" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />-->
+<!--</programlisting>-->
+<!-- </step>-->
+<!-- <step id="step-Component_Reference-a4jloadBundle_example-Add_a4jloadBundle_to_the_JSP_page">-->
+<!-- <title>Add <sgmltag><a4j:loadBundle></sgmltag> to the <acronym>JSP</acronym> page</title>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:loadBundle></sgmltag> component is added to the application, and links to change the locale will update the displayed text.-->
+<!-- </para>-->
+<!-- -->
+<!--<programlisting language="XML" role="XML">-->
+<!--<xi:include href="extras/exam-Component_Reference-a4jloadBundle-a4jloadBundle_example-2.xml_sample" parse="text" xmlns:xi="http://www.w3.org/2001/XInclude" />-->
+<!--</programlisting>-->
+<!-- <mediaobject>-->
+<!-- <imageobject>-->
+<!-- <imagedata fileref="images/figu-Component_Reference-a4jloadBundle-Add_a4jloadBundle_to_the_JSP_page.png" format="PNG" />-->
+<!-- </imageobject>-->
+<!-- <textobject>-->
+<!-- <para>-->
+<!-- The output text displayed on a page. It can be changed by clicking the command link for either German, English, or Italian.-->
+<!-- </para>-->
+<!-- </textobject>-->
+<!-- </mediaobject>-->
+<!-- </step>-->
+<!-- </procedure>-->
+<!-- -->
+<!-- <para>-->
+<!-- Clicking on the different links will render the localized string as appropriate.-->
+<!-- </para>-->
+<!-- </example>-->
+<!-- </section>-->
+<!-- -->
+<!-- <section id="sect-Component_Reference-Resources-a4jloadScript">-->
+<!-- <title><sgmltag><a4j:loadScript></sgmltag></title>-->
+<!-- <itemizedlist>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-type: <classname>org.ajax4jsf.LoadScript</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-family: <classname>org.ajax4jsf.LoadScript</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-class: <classname>org.ajax4jsf.component.html.HtmlLoadScript</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- renderer-type: <classname>org.ajax4jsf.LoadScriptRenderer</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- </itemizedlist>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:loadScript></sgmltag> component allows scripts to be loaded from external sources such as <filename>jar</filename> files.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- The required <varname>src</varname> attribute defines the path to the script. A leading slash (<literal>/</literal>) represents the root of the web context. The <code>resource://</code> prefix can be used to access a file in the RichFaces resource framework. The path is passed to the <methodname>getResourceURL()</methodname> method of the application's <classname>ViewHandler</classname>, with the result then being passed through the <methodname>encodeResourceURL()</methodname> method of <classname>ExternalContext</classname>.-->
+<!-- </para>-->
+<!-- <example id="exam-Component_Reference-a4jloadScript-a4jloadScript_example">-->
+<!-- <title><sgmltag><a4j:loadScript></sgmltag> example</title>-->
+<!-- -->
+<!--<programlisting language="XML" role="XML">-->
+<!--<a4j:loadScript src="resource:///org/mycompany/assets/script/focus.js" />-->
+<!--</programlisting>-->
+<!-- </example>-->
+<!-- </section>-->
+<!-- -->
+<!-- <section id="sect-Component_Reference-Resources-a4jloadStyle">-->
+<!-- <title><sgmltag><a4j:loadStyle></sgmltag></title>-->
+<!-- <itemizedlist>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-type: <classname>org.ajax4jsf.LoadStyle</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-family: <classname>org.ajax4jsf.LoadStyle</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-class: <classname>org.ajax4jsf.component.html.HtmlLoadStyle</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- renderer-type: <classname>org.ajax4jsf.LoadStyleRenderer</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- </itemizedlist>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:loadStyle></sgmltag> component allows a style sheet to be loaded from an external source, such as a <filename>jar</filename> file. The style sheet links are inserted into the head element.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- The required <varname>src</varname> attribute defines the path to the script. A leading slash (<literal>/</literal>) represents the root of the web context. The <code>resource://</code> prefix can be used to access a file in the RichFaces resource framework. The path is passed to the <methodname>getResourceURL()</methodname> method of the application's <classname>ViewHandler</classname>, with the result then being passed through the <methodname>encodeResourceURL()</methodname> method of <classname>ExternalContext</classname>.-->
+<!-- </para>-->
+<!-- <example id="exam-Component_Reference-a4jloadStyle-a4jloadStyle_example">-->
+<!-- <title><sgmltag><a4j:loadStyle></sgmltag> example</title>-->
+<!-- -->
+<!--<programlisting language="XML" role="XML">-->
+<!--<a4j:loadStyle src="resource:///org/mycompany/assets/script/focus.js" />-->
+<!--</programlisting>-->
+<!-- </example>-->
+<!-- </section>-->
+<!-- -->
+<!-- <section id="sect-Component_Reference-Resources-a4jkeepAlive">-->
+<!-- <title><sgmltag><a4j:keepAlive></sgmltag></title>-->
+<!-- <itemizedlist>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-type: <classname>org.ajax4jsf.components.KeepAlive</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-family: <classname>org.ajax4jsf.components.AjaxKeepAlive</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- <listitem>-->
+<!-- <para>-->
+<!-- component-class: <classname>org.ajax4jsf.components.AjaxKeepAlive</classname>-->
+<!-- </para>-->
+<!-- </listitem>-->
+<!-- </itemizedlist>-->
+<!-- <para>-->
+<!-- The <sgmltag><a4j:keepAlive></sgmltag> component allows the state of a managed bean to be retained between Ajax requests.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- Managed beans can be declared with the <literal>request</literal> scope in the <filename>faces-config.xml</filename> configuration file, using the <sgmltag><managed-bean-scope></sgmltag> tag. Any references to the bean instance after the request has ended will cause the server to throw an illegal argument exception. The <sgmltag><a4j:keepAlive></sgmltag> component avoids this be maintaining the state of the whole bean object for subsequent requests.-->
+<!-- </para>-->
+<!-- <para>-->
+<!-- The <varname>beanName</varname> attribute uses JSF Expression Language (<acronym>EL</acronym>) to define the request scope bean name to keep alive. The expression must resolve to a managed bean instance. The <varname>ajaxOnly</varname> attribute determines whether or not the value of the bean should be available during non-Ajaxx requests; if <code>ajaxOnly="true"</code>, the request-scope bean keeps its value during Ajax requests, but any non-Ajax requests will re-create the bean as a regular request-scope bean.-->
+<!-- </para>-->
+<!-- <example id="exam-Component_Reference-a4jkeepAlive-a4jkeepAlive_example">-->
+<!-- <title><sgmltag><a4j:keepAlive></sgmltag> example</title>-->
+<!-- -->
+<!--<programlisting language="XML" role="XML">-->
+<!--<a4j:keepAlive beanName="#{myClass.testBean}" />-->
+<!--</programlisting>-->
+<!-- </example>-->
+<!-- </section>-->
- <section id="sect-Component_Reference-Resources-a4jloadScript">
- <title><sgmltag><a4j:loadScript></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- component-type: <classname>org.ajax4jsf.LoadScript</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-family: <classname>org.ajax4jsf.LoadScript</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-class: <classname>org.ajax4jsf.component.html.HtmlLoadScript</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- renderer-type: <classname>org.ajax4jsf.LoadScriptRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><a4j:loadScript></sgmltag> component allows scripts to be loaded from external sources such as <filename>jar</filename> files.
- </para>
- <para>
- The required <varname>src</varname> attribute defines the path to the script. A leading slash (<literal>/</literal>) represents the root of the web context. The <code>resource://</code> prefix can be used to access a file in the RichFaces resource framework. The path is passed to the <methodname>getResourceURL()</methodname> method of the application's <classname>ViewHandler</classname>, with the result then being passed through the <methodname>encodeResourceURL()</methodname> method of <classname>ExternalContext</classname>.
- </para>
- <example id="exam-Component_Reference-a4jloadScript-a4jloadScript_example">
- <title><sgmltag><a4j:loadScript></sgmltag> example</title>
-
-<programlisting language="XML" role="XML">
-<a4j:loadScript src="resource:///org/mycompany/assets/script/focus.js" />
-</programlisting>
- </example>
- </section>
-
- <section id="sect-Component_Reference-Resources-a4jloadStyle">
- <title><sgmltag><a4j:loadStyle></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- component-type: <classname>org.ajax4jsf.LoadStyle</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-family: <classname>org.ajax4jsf.LoadStyle</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-class: <classname>org.ajax4jsf.component.html.HtmlLoadStyle</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- renderer-type: <classname>org.ajax4jsf.LoadStyleRenderer</classname>
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><a4j:loadStyle></sgmltag> component allows a style sheet to be loaded from an external source, such as a <filename>jar</filename> file. The style sheet links are inserted into the head element.
- </para>
- <para>
- The required <varname>src</varname> attribute defines the path to the script. A leading slash (<literal>/</literal>) represents the root of the web context. The <code>resource://</code> prefix can be used to access a file in the RichFaces resource framework. The path is passed to the <methodname>getResourceURL()</methodname> method of the application's <classname>ViewHandler</classname>, with the result then being passed through the <methodname>encodeResourceURL()</methodname> method of <classname>ExternalContext</classname>.
- </para>
- <example id="exam-Component_Reference-a4jloadStyle-a4jloadStyle_example">
- <title><sgmltag><a4j:loadStyle></sgmltag> example</title>
-
-<programlisting language="XML" role="XML">
-<a4j:loadStyle src="resource:///org/mycompany/assets/script/focus.js" />
-</programlisting>
- </example>
- </section>
-
- <section id="sect-Component_Reference-Resources-a4jkeepAlive">
- <title><sgmltag><a4j:keepAlive></sgmltag></title>
- <itemizedlist>
- <listitem>
- <para>
- component-type: <classname>org.ajax4jsf.components.KeepAlive</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-family: <classname>org.ajax4jsf.components.AjaxKeepAlive</classname>
- </para>
- </listitem>
- <listitem>
- <para>
- component-class: <classname>org.ajax4jsf.components.AjaxKeepAlive</classname>
- </para>
- </listitem>
- </itemizedlist>
- <para>
- The <sgmltag><a4j:keepAlive></sgmltag> component allows the state of a managed bean to be retained between Ajax requests.
- </para>
- <para>
- Managed beans can be declared with the <literal>request</literal> scope in the <filename>faces-config.xml</filename> configuration file, using the <sgmltag><managed-bean-scope></sgmltag> tag. Any references to the bean instance after the request has ended will cause the server to throw an illegal argument exception. The <sgmltag><a4j:keepAlive></sgmltag> component avoids this be maintaining the state of the whole bean object for subsequent requests.
- </para>
- <para>
- The <varname>beanName</varname> attribute uses JSF Expression Language (<acronym>EL</acronym>) to define the request scope bean name to keep alive. The expression must resolve to a managed bean instance. The <varname>ajaxOnly</varname> attribute determines whether or not the value of the bean should be available during non-Ajaxx requests; if <code>ajaxOnly="true"</code>, the request-scope bean keeps its value during Ajax requests, but any non-Ajax requests will re-create the bean as a regular request-scope bean.
- </para>
- <example id="exam-Component_Reference-a4jkeepAlive-a4jkeepAlive_example">
- <title><sgmltag><a4j:keepAlive></sgmltag> example</title>
-
-<programlisting language="XML" role="XML">
-<a4j:keepAlive beanName="#{myClass.testBean}" />
-</programlisting>
- </example>
- </section>
-
<section id="sect-Component_Reference-Resources-a4jmediaOutput">
<title><sgmltag><a4j:mediaOutput></sgmltag></title>
<itemizedlist>
14 years, 7 months
JBoss Rich Faces SVN: r17491 - root.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-06-03 12:45:54 -0400 (Thu, 03 Jun 2010)
New Revision: 17491
Modified:
root/pom.xml
Log:
Updated for new modules
Modified: root/pom.xml
===================================================================
--- root/pom.xml 2010-06-03 16:43:41 UTC (rev 17490)
+++ root/pom.xml 2010-06-03 16:45:54 UTC (rev 17491)
@@ -15,10 +15,11 @@
<!-- These trunk settings, and this pom.xml will be removed -->
<!-- Added bom, parent, for temp integration -->
<!--<module>build/parent/tags/richfaces-parent-5</module>-->
- <module>build/bom/trunk</module>
<!--<module>build/resources/trunk/checkstyle</module>-->
<!--<module>build/resources/trunk/faces-shade-transformers</module>-->
- <module>commons/trunk</module>
+
+ <module>build/bom/trunk</module>
+ <module>commons/trunk</module>
<module>cdk/trunk</module>
<module>core/trunk</module>
@@ -27,11 +28,13 @@
<module>ui/iteration/trunk</module>
<module>ui/misc/trunk</module>
<module>ui/dist/trunk</module>
-
- <!--<module>ui-sandbox</module>-->
- <module>examples</module>
- <!--<module>doc/${doc.svn.dir}</module>-->
- <module>archetypes</module>
+
+ <!-- Remaining -->
+ <module>archetypes/richfaces-archetype-simpleapp</module>
+ <module>examples/core-demo/trunk</module>
+ <module>examples/richfaces-showcase/trunk</module>
+ <module>doc/trunk</module>
+ <module>dist/trunk</module>
</modules>
<profiles>
14 years, 7 months
JBoss Rich Faces SVN: r17490 - root/build/resources/trunk.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-06-03 12:43:41 -0400 (Thu, 03 Jun 2010)
New Revision: 17490
Modified:
root/build/resources/trunk/clean_install.sh
root/build/resources/trunk/release.sh
Log:
Updated for new structures
Modified: root/build/resources/trunk/clean_install.sh
===================================================================
--- root/build/resources/trunk/clean_install.sh 2010-06-03 16:36:26 UTC (rev 17489)
+++ root/build/resources/trunk/clean_install.sh 2010-06-03 16:43:41 UTC (rev 17490)
@@ -97,9 +97,11 @@
# Listing of all modules to be checked out
# $1 = path to module ( before trunk/tag/branch )
MAIN_MODULE_ARRAY=(
- "build/parent/trunk"
+ # Non-Released Modules
+ #"build/parent/trunk"
+ #"build/resources/trunk/checkstyle"
+ #"build/resources/trunk/faces-shade-transformers"
"build/bom/trunk"
- "build/resources/trunk/checkstyle"
"commons/trunk"
"cdk/trunk"
"core/trunk"
@@ -107,8 +109,11 @@
"ui/misc/trunk"
"ui/iteration/trunk"
"ui/dist/trunk"
- # other ui modules when in place
- # TODO NOT SURE WHAT TO DO WITH /DISTS
+ "archetypes/richfaces-archetype-simpleapp/trunk"
+ "examples/core-demo/trunk"
+ "examples/richfaces-showcase/trunk"
+ "docs/trunk"
+ "dist/trunk"
)
DOC_QE_MODULE_ARRAY=(
Modified: root/build/resources/trunk/release.sh
===================================================================
--- root/build/resources/trunk/release.sh 2010-06-03 16:36:26 UTC (rev 17489)
+++ root/build/resources/trunk/release.sh 2010-06-03 16:43:41 UTC (rev 17490)
@@ -170,10 +170,12 @@
"ui/core 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-ui-core org.richfaces.ui.core"
"ui/misc 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-ui-misc org.richfaces.ui.misc"
"ui/iteration 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-ui-iteration org.richfaces.ui.iteration"
- # TODO Needs to be updated after merge
- #"ui/dist 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-ui-dist org.richfaces.ui.dist"
- #"archetypes/richfaces-archetype-simpleapp/ 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-archetype-simpleapp org.richfaces.archetypes.richfaces-archetype-simpleapp"
- #"archetypes/richfaces-archetype-simpleapp/ 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-archetype-simpleapp org.richfaces.archetypes richfaces-archetype-simpleapp"
+ "ui/dist 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-ui-dist org.richfaces.ui"
+ "archetypes/richfaces-archetype-simpleapp 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-archetype-simpleapp org.richfaces.archetypes.richfaces-archetype-simpleapp"
+ "examples/core-demo 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-core-demo org.richfaces.examples.core-demo"
+ "examples/richfaces-showcase 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-showcase org.richfaces.examples.richfaces-showcase"
+ "docs 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-docs org.richfaces.docs"
+ "dist 4.0.0.Alpha2 4.0.0-SNAPSHOT richfaces-dist org.richfaces.dist"
)
while getopts "hb:x" OPTION
14 years, 7 months
JBoss Rich Faces SVN: r17489 - in root/ui/dist/trunk: richfaces-components-api and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-06-03 12:36:26 -0400 (Thu, 03 Jun 2010)
New Revision: 17489
Modified:
root/ui/dist/trunk/parent/pom.xml
root/ui/dist/trunk/richfaces-components-api/pom.xml
root/ui/dist/trunk/richfaces-components-impl/pom.xml
root/ui/dist/trunk/richfaces-components-ui/pom.xml
Log:
Changes richfaces-ui-parent artifact id
Modified: root/ui/dist/trunk/parent/pom.xml
===================================================================
--- root/ui/dist/trunk/parent/pom.xml 2010-06-03 16:34:28 UTC (rev 17488)
+++ root/ui/dist/trunk/parent/pom.xml 2010-06-03 16:36:26 UTC (rev 17489)
@@ -31,7 +31,7 @@
</parent>
<groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-dist-parent</artifactId>
+ <artifactId>richfaces-ui-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<name>Richfaces UI Components: Parent</name>
<packaging>pom</packaging>
Modified: root/ui/dist/trunk/richfaces-components-api/pom.xml
===================================================================
--- root/ui/dist/trunk/richfaces-components-api/pom.xml 2010-06-03 16:34:28 UTC (rev 17488)
+++ root/ui/dist/trunk/richfaces-components-api/pom.xml 2010-06-03 16:36:26 UTC (rev 17489)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-dist-parent</artifactId>
+ <artifactId>richfaces-ui-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: root/ui/dist/trunk/richfaces-components-impl/pom.xml
===================================================================
--- root/ui/dist/trunk/richfaces-components-impl/pom.xml 2010-06-03 16:34:28 UTC (rev 17488)
+++ root/ui/dist/trunk/richfaces-components-impl/pom.xml 2010-06-03 16:36:26 UTC (rev 17489)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-dist-parent</artifactId>
+ <artifactId>richfaces-ui-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: root/ui/dist/trunk/richfaces-components-ui/pom.xml
===================================================================
--- root/ui/dist/trunk/richfaces-components-ui/pom.xml 2010-06-03 16:34:28 UTC (rev 17488)
+++ root/ui/dist/trunk/richfaces-components-ui/pom.xml 2010-06-03 16:36:26 UTC (rev 17489)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-dist-parent</artifactId>
+ <artifactId>richfaces-ui-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
14 years, 7 months
JBoss Rich Faces SVN: r17488 - root/ui/iteration/trunk/tables/ui/src/main/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-06-03 12:34:28 -0400 (Thu, 03 Jun 2010)
New Revision: 17488
Modified:
root/ui/iteration/trunk/tables/ui/src/main/java/org/richfaces/renderkit/ExtendedDataTableRenderer.java
Log:
patch of problem of calling jQuery.ready before loading of stylesheets in WebKit-based browsers
Modified: root/ui/iteration/trunk/tables/ui/src/main/java/org/richfaces/renderkit/ExtendedDataTableRenderer.java
===================================================================
--- root/ui/iteration/trunk/tables/ui/src/main/java/org/richfaces/renderkit/ExtendedDataTableRenderer.java 2010-06-03 15:51:34 UTC (rev 17487)
+++ root/ui/iteration/trunk/tables/ui/src/main/java/org/richfaces/renderkit/ExtendedDataTableRenderer.java 2010-06-03 16:34:28 UTC (rev 17488)
@@ -59,10 +59,10 @@
* @author Konstantin Mishin
*
*/
-@ResourceDependencies({ @ResourceDependency(library = "javax.faces", name = "jsf.js"),
- @ResourceDependency(name = "jquery.js"), @ResourceDependency(name = "jquery.position.js"),
- @ResourceDependency(name = "richfaces.js"), @ResourceDependency(name = "extendedDataTable.js"),
- @ResourceDependency(name = "extendedDataTable.ecss") })
+@ResourceDependencies({@ResourceDependency(name = "extendedDataTable.ecss"),
+ @ResourceDependency(library = "javax.faces", name = "jsf.js"), @ResourceDependency(name = "jquery.js"),
+ @ResourceDependency(name = "jquery.position.js"), @ResourceDependency(name = "richfaces.js"),
+ @ResourceDependency(name = "extendedDataTable.js") })
public class ExtendedDataTableRenderer extends SortingFilteringRowsRenderer implements MetaComponentRenderer {
private static enum PartName {
14 years, 7 months
JBoss Rich Faces SVN: r17486 - in root/docs/trunk: Developer_Guide and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-06-03 11:27:31 -0400 (Thu, 03 Jun 2010)
New Revision: 17486
Modified:
root/docs/trunk/Component_Reference/pom.xml
root/docs/trunk/Developer_Guide/pom.xml
root/docs/trunk/Migration_Guide/pom.xml
root/docs/trunk/parent/pom.xml
Log:
Final updates to docs for release, and centralization of configuration
Modified: root/docs/trunk/Component_Reference/pom.xml
===================================================================
--- root/docs/trunk/Component_Reference/pom.xml 2010-06-03 15:22:46 UTC (rev 17485)
+++ root/docs/trunk/Component_Reference/pom.xml 2010-06-03 15:27:31 UTC (rev 17486)
@@ -21,118 +21,6 @@
<bookname>Component Reference</bookname>
</properties>
- <profiles>
- <!-- mvn compile -->
- <profile>
- <id>all</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Phtml -->
- <profile>
- <id>html</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Phtml-single -->
- <profile>
- <id>html-single</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Ppdf -->
- <profile>
- <id>pdf</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
<build>
<plugins>
<plugin>
Modified: root/docs/trunk/Developer_Guide/pom.xml
===================================================================
--- root/docs/trunk/Developer_Guide/pom.xml 2010-06-03 15:22:46 UTC (rev 17485)
+++ root/docs/trunk/Developer_Guide/pom.xml 2010-06-03 15:27:31 UTC (rev 17486)
@@ -21,119 +21,6 @@
<bookname>Developer Guide</bookname>
</properties>
- <profiles>
-
- <!-- mvn compile -->
- <profile>
- <id>all</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Phtml -->
- <profile>
- <id>html</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Phtml-single -->
- <profile>
- <id>html-single</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Ppdf -->
- <profile>
- <id>pdf</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
<build>
<plugins>
<plugin>
Modified: root/docs/trunk/Migration_Guide/pom.xml
===================================================================
--- root/docs/trunk/Migration_Guide/pom.xml 2010-06-03 15:22:46 UTC (rev 17485)
+++ root/docs/trunk/Migration_Guide/pom.xml 2010-06-03 15:27:31 UTC (rev 17486)
@@ -21,119 +21,6 @@
<bookname>Migration Guide</bookname>
</properties>
- <profiles>
-
- <!-- mvn compile -->
- <profile>
- <id>all</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Phtml -->
- <profile>
- <id>html</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Phtml-single -->
- <profile>
- <id>html-single</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Ppdf -->
- <profile>
- <id>pdf</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
<build>
<plugins>
<plugin>
Modified: root/docs/trunk/parent/pom.xml
===================================================================
--- root/docs/trunk/parent/pom.xml 2010-06-03 15:22:46 UTC (rev 17485)
+++ root/docs/trunk/parent/pom.xml 2010-06-03 15:27:31 UTC (rev 17486)
@@ -86,7 +86,119 @@
</plugins>
</pluginManagement>
</build>
+
+ <profiles>
+ <!-- mvn compile -->
+ <profile>
+ <id>all</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <!-- mvn compile -Phtml -->
+ <profile>
+ <id>html</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml-single -->
+ <profile>
+ <id>html-single</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Ppdf -->
+ <profile>
+ <id>pdf</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/docs/trunk/parent</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/docs/trunk/parent</developerConnection>
14 years, 7 months
JBoss Rich Faces SVN: r17485 - in root/docs/trunk: Developer_Guide and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-06-03 11:22:46 -0400 (Thu, 03 Jun 2010)
New Revision: 17485
Modified:
root/docs/trunk/Component_Reference/pom.xml
root/docs/trunk/Developer_Guide/pom.xml
root/docs/trunk/Migration_Guide/pom.xml
root/docs/trunk/parent/pom.xml
Log:
Fixed need for doc profile, and centralized plugin config
Modified: root/docs/trunk/Component_Reference/pom.xml
===================================================================
--- root/docs/trunk/Component_Reference/pom.xml 2010-06-03 14:55:17 UTC (rev 17484)
+++ root/docs/trunk/Component_Reference/pom.xml 2010-06-03 15:22:46 UTC (rev 17485)
@@ -1,243 +1,147 @@
-<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>
+<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.richfaces.docs</groupId>
+ <artifactId>docs-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
<groupId>org.richfaces.docs</groupId>
- <artifactId>docs-parent</artifactId>
+ <artifactId>Component_Reference-en-US</artifactId>
<version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.docs</groupId>
- <artifactId>Component_Reference-en-US</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>jdocbook</packaging>
- <name>Component Reference-(en-US})</name>
-
- <properties>
- <translation>en-US</translation>
- <docname>Component_Reference</docname>
- <bookname>Component Reference</bookname>
- </properties>
+ <packaging>jdocbook</packaging>
+ <name>Component Reference-(en-US)</name>
- <profiles>
- <!-- mvn compile -->
- <profile>
- <id>all</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ <properties>
+ <translation>en-US</translation>
+ <docname>Component_Reference</docname>
+ <bookname>Component Reference</bookname>
+ </properties>
- <!-- mvn compile -Phtml -->
- <profile>
- <id>html</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ <profiles>
+ <!-- mvn compile -->
+ <profile>
+ <id>all</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
- <!-- mvn compile -Phtml-single -->
- <profile>
- <id>html-single</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ <!-- mvn compile -Phtml -->
+ <profile>
+ <id>html</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
- <!-- mvn compile -Ppdf -->
- <profile>
- <id>pdf</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
+ <!-- mvn compile -Phtml-single -->
+ <profile>
+ <id>html-single</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Ppdf -->
+ <profile>
+ <id>pdf</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+ <build>
<plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ </plugin>
</plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Pdocs -->
- <!-- For compiling from parent pom.xml -->
- <profile>
- <id>docs</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- <imageResource>
- <directory>${docname}/${translation}</directory>
- <includes>
- <include>images/*</include>
- </includes>
- </imageResource>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ </build>
- </profiles>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <dependencies>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jbossorg-docbook-xslt</artifactId>
- <version>1.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jbossorg-jdocbook-style</artifactId>
- <version>1.1.0</version>
- <type>jdocbook-style</type>
- </dependency>
- </dependencies>
- <configuration>
- <sourceDocumentName>${docname}.xml</sourceDocumentName>
- <sourceDirectory>.</sourceDirectory>
- <imageResource>
- <directory>${translation}</directory>
- <includes>
- <include>images/*</include>
- </includes>
- </imageResource>
- <options>
- <xincludeSupported>true</xincludeSupported>
- <xmlTransformerType>saxon</xmlTransformerType>
- <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
- <!-- could also locate the docbook dependency and inspect its version... -->
- <docbookVersion>1.72.0</docbookVersion>
- <transformerParameters>
- <property>
- <name>javax.xml.parsers.DocumentBuilderFactory</name>
- <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
- </property>
- <property>
- <name>javax.xml.parsers.SAXParserFactory</name>
- <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
- </property>
- </transformerParameters>
- </options>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/docs/trunk/Componen...</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/docs/trunk/Component_R...</developerConnection>
Modified: root/docs/trunk/Developer_Guide/pom.xml
===================================================================
--- root/docs/trunk/Developer_Guide/pom.xml 2010-06-03 14:55:17 UTC (rev 17484)
+++ root/docs/trunk/Developer_Guide/pom.xml 2010-06-03 15:22:46 UTC (rev 17485)
@@ -1,244 +1,148 @@
-<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>
+<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.richfaces.docs</groupId>
+ <artifactId>docs-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
<groupId>org.richfaces.docs</groupId>
- <artifactId>docs-parent</artifactId>
+ <artifactId>Developer_Guide-en-US</artifactId>
<version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.docs</groupId>
- <artifactId>Developer_Guide-en-US</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>jdocbook</packaging>
- <name>Developer Guide-(en-US)</name>
-
- <properties>
- <translation>en-US</translation>
- <docname>Developer_Guide</docname>
- <bookname>Developer Guide</bookname>
- </properties>
+ <packaging>jdocbook</packaging>
+ <name>Developer Guide-(en-US)</name>
- <profiles>
+ <properties>
+ <translation>en-US</translation>
+ <docname>Developer_Guide</docname>
+ <bookname>Developer Guide</bookname>
+ </properties>
- <!-- mvn compile -->
- <profile>
- <id>all</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ <profiles>
- <!-- mvn compile -Phtml -->
- <profile>
- <id>html</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ <!-- mvn compile -->
+ <profile>
+ <id>all</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
- <!-- mvn compile -Phtml-single -->
- <profile>
- <id>html-single</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ <!-- mvn compile -Phtml -->
+ <profile>
+ <id>html</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
- <!-- mvn compile -Ppdf -->
- <profile>
- <id>pdf</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
+ <!-- mvn compile -Phtml-single -->
+ <profile>
+ <id>html-single</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Ppdf -->
+ <profile>
+ <id>pdf</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+ <build>
<plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ </plugin>
</plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Pdocs -->
- <!-- For compiling from parent pom.xml -->
- <profile>
- <id>docs</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- <imageResource>
- <directory>${docname}/${translation}</directory>
- <includes>
- <include>images/*</include>
- </includes>
- </imageResource>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ </build>
- </profiles>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
- <extensions>true</extensions>
- <dependencies>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jbossorg-docbook-xslt</artifactId>
- <version>1.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jbossorg-jdocbook-style</artifactId>
- <version>1.1.0</version>
- <type>jdocbook-style</type>
- </dependency>
- </dependencies>
- <configuration>
- <sourceDocumentName>${docname}.xml</sourceDocumentName>
- <sourceDirectory>.</sourceDirectory>
- <imageResource>
- <directory>${translation}</directory>
- <includes>
- <include>images/*</include>
- </includes>
- </imageResource>
- <options>
- <xincludeSupported>true</xincludeSupported>
- <xmlTransformerType>saxon</xmlTransformerType>
- <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
- <!-- could also locate the docbook dependency and inspect its version... -->
- <docbookVersion>1.72.0</docbookVersion>
- <transformerParameters>
- <property>
- <name>javax.xml.parsers.DocumentBuilderFactory</name>
- <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
- </property>
- <property>
- <name>javax.xml.parsers.SAXParserFactory</name>
- <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
- </property>
- </transformerParameters>
- </options>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/docs/trunk/Develope...</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/docs/trunk/Developer_G...</developerConnection>
Modified: root/docs/trunk/Migration_Guide/pom.xml
===================================================================
--- root/docs/trunk/Migration_Guide/pom.xml 2010-06-03 14:55:17 UTC (rev 17484)
+++ root/docs/trunk/Migration_Guide/pom.xml 2010-06-03 15:22:46 UTC (rev 17485)
@@ -1,244 +1,148 @@
-<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.richfaces.docs</groupId>
- <artifactId>docs-parent</artifactId>
+<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.richfaces.docs</groupId>
+ <artifactId>docs-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.jboss.richfaces</groupId>
+ <artifactId>Migration_Guide-en-US</artifactId>
<version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.jboss.richfaces</groupId>
- <artifactId>Migration_Guide-en-US</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>jdocbook</packaging>
- <name>Migration Guide-(en-US)</name>
-
- <properties>
- <translation>en-US</translation>
- <docname>Migration_Guide</docname>
- <bookname>Migration Guide</bookname>
- </properties>
-
- <profiles>
+ <packaging>jdocbook</packaging>
+ <name>Migration Guide-(en-US)</name>
- <!-- mvn compile -->
- <profile>
- <id>all</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ <properties>
+ <translation>en-US</translation>
+ <docname>Migration_Guide</docname>
+ <bookname>Migration Guide</bookname>
+ </properties>
- <!-- mvn compile -Phtml -->
- <profile>
- <id>html</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ <profiles>
- <!-- mvn compile -Phtml-single -->
- <profile>
- <id>html-single</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ <!-- mvn compile -->
+ <profile>
+ <id>all</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
- <!-- mvn compile -Ppdf -->
- <profile>
- <id>pdf</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
+ <!-- mvn compile -Phtml -->
+ <profile>
+ <id>html</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Phtml-single -->
+ <profile>
+ <id>html-single</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Ppdf -->
+ <profile>
+ <id>pdf</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+ <build>
<plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- </formats>
- </configuration>
- </plugin>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ </plugin>
</plugins>
- </build>
- </profile>
-
- <!-- mvn compile -Pdocs -->
- <!-- For compiling from parent pom.xml -->
- <profile>
- <id>docs</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <configuration>
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>${docname}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
- <imageResource>
- <directory>${docname}/${translation}</directory>
- <includes>
- <include>images/*</include>
- </includes>
- </imageResource>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
+ </build>
- </profiles>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
- <extensions>true</extensions>
- <dependencies>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jbossorg-docbook-xslt</artifactId>
- <version>1.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jbossorg-jdocbook-style</artifactId>
- <version>1.1.0</version>
- <type>jdocbook-style</type>
- </dependency>
- </dependencies>
- <configuration>
- <sourceDocumentName>${docname}.xml</sourceDocumentName>
- <sourceDirectory>.</sourceDirectory>
- <imageResource>
- <directory>${translation}</directory>
- <includes>
- <include>images/*</include>
- </includes>
- </imageResource>
- <options>
- <xincludeSupported>true</xincludeSupported>
- <xmlTransformerType>saxon</xmlTransformerType>
- <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
- <!-- could also locate the docbook dependency and inspect its version... -->
- <docbookVersion>1.72.0</docbookVersion>
- <transformerParameters>
- <property>
- <name>javax.xml.parsers.DocumentBuilderFactory</name>
- <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
- </property>
- <property>
- <name>javax.xml.parsers.SAXParserFactory</name>
- <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
- </property>
- </transformerParameters>
- </options>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/docs/trunk/Migratio...</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/docs/trunk/Migration_G...</developerConnection>
Modified: root/docs/trunk/parent/pom.xml
===================================================================
--- root/docs/trunk/parent/pom.xml 2010-06-03 14:55:17 UTC (rev 17484)
+++ root/docs/trunk/parent/pom.xml 2010-06-03 15:22:46 UTC (rev 17485)
@@ -33,7 +33,7 @@
<version>4.0.0-SNAPSHOT</version>
<name>Richfaces Docs: Parent</name>
<packaging>pom</packaging>
-
+
<build>
<pluginManagement>
<plugins>
@@ -58,12 +58,6 @@
<configuration>
<sourceDocumentName>${docname}.xml</sourceDocumentName>
<sourceDirectory>.</sourceDirectory>
- <imageResource>
- <directory>${translation}</directory>
- <includes>
- <include>images/*</include>
- </includes>
- </imageResource>
<options>
<xincludeSupported>true</xincludeSupported>
<xmlTransformerType>saxon</xmlTransformerType>
@@ -81,12 +75,18 @@
</property>
</transformerParameters>
</options>
+ <imageResource>
+ <directory>${basedir}/${translation}</directory>
+ <includes>
+ <include>images/*</include>
+ </includes>
+ </imageResource>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
-
+
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/docs/trunk/parent</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/docs/trunk/parent</developerConnection>
14 years, 7 months
JBoss Rich Faces SVN: r17484 - in root/docs/trunk: Component_Reference and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-06-03 10:55:17 -0400 (Thu, 03 Jun 2010)
New Revision: 17484
Added:
root/docs/trunk/parent/
root/docs/trunk/parent/pom.xml
Modified:
root/docs/trunk/Component_Reference/pom.xml
root/docs/trunk/Developer_Guide/pom.xml
root/docs/trunk/Migration_Guide/pom.xml
root/docs/trunk/pom.xml
Log:
Initial updates to docs to make releasable and consistent
Modified: root/docs/trunk/Component_Reference/pom.xml
===================================================================
--- root/docs/trunk/Component_Reference/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
+++ root/docs/trunk/Component_Reference/pom.xml 2010-06-03 14:55:17 UTC (rev 17484)
@@ -1,53 +1,28 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
<modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.richfaces</groupId>
- <artifactId>${docname}-${translation}</artifactId>
- <version>1.0</version>
- <packaging>jdocbook</packaging>
- <name>${bookname}-(${translation})</name>
<parent>
- <groupId>org.jboss.richfaces</groupId>
- <artifactId>docs</artifactId>
- <version>1.0</version>
+ <groupId>org.richfaces.docs</groupId>
+ <artifactId>docs-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
</parent>
-
+
+ <groupId>org.richfaces.docs</groupId>
+ <artifactId>Component_Reference-en-US</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>jdocbook</packaging>
+ <name>Component Reference-(en-US})</name>
+
<properties>
<translation>en-US</translation>
<docname>Component_Reference</docname>
<bookname>Component Reference</bookname>
</properties>
- <repositories>
- <repository>
- <id>jboss-public-repository-group</id>
- <name>JBoss Repository</name>
- <layout>default</layout>
- <url>https://repository.jboss.org/nexus/content/groups/public</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
-
- <pluginRepositories>
- <pluginRepository>
- <id>jboss-public-repository-group</id>
- <name>JBoss Repository</name>
- <layout>default</layout>
- <url>https://repository.jboss.org/nexus/content/groups/public</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
-
-
<profiles>
-
<!-- mvn compile -->
<profile>
<id>all</id>
@@ -262,6 +237,12 @@
</plugin>
</plugins>
</build>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/docs/trunk/Componen...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/docs/trunk/Component_R...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ </scm>
</project>
Modified: root/docs/trunk/Developer_Guide/pom.xml
===================================================================
--- root/docs/trunk/Developer_Guide/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
+++ root/docs/trunk/Developer_Guide/pom.xml 2010-06-03 14:55:17 UTC (rev 17484)
@@ -1,51 +1,27 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
<modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.richfaces</groupId>
- <artifactId>${docname}-${translation}</artifactId>
- <version>1.0</version>
- <packaging>jdocbook</packaging>
- <name>${bookname}-(${translation})</name>
<parent>
- <groupId>org.jboss.richfaces</groupId>
- <artifactId>docs</artifactId>
- <version>1.0</version>
+ <groupId>org.richfaces.docs</groupId>
+ <artifactId>docs-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
</parent>
-
+
+ <groupId>org.richfaces.docs</groupId>
+ <artifactId>Developer_Guide-en-US</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>jdocbook</packaging>
+ <name>Developer Guide-(en-US)</name>
+
<properties>
<translation>en-US</translation>
<docname>Developer_Guide</docname>
<bookname>Developer Guide</bookname>
</properties>
- <repositories>
- <repository>
- <id>jboss-public-repository-group</id>
- <name>JBoss Repository</name>
- <layout>default</layout>
- <url>https://repository.jboss.org/nexus/content/groups/public</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
-
- <pluginRepositories>
- <pluginRepository>
- <id>jboss-public-repository-group</id>
- <name>JBoss Repository</name>
- <layout>default</layout>
- <url>https://repository.jboss.org/nexus/content/groups/public</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
-
-
<profiles>
<!-- mvn compile -->
@@ -262,6 +238,12 @@
</plugin>
</plugins>
</build>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/docs/trunk/Develope...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/docs/trunk/Developer_G...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ </scm>
</project>
Modified: root/docs/trunk/Migration_Guide/pom.xml
===================================================================
--- root/docs/trunk/Migration_Guide/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
+++ root/docs/trunk/Migration_Guide/pom.xml 2010-06-03 14:55:17 UTC (rev 17484)
@@ -1,51 +1,27 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
<modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.richfaces</groupId>
- <artifactId>${docname}-${translation}</artifactId>
- <version>1.0</version>
- <packaging>jdocbook</packaging>
- <name>${bookname}-(${translation})</name>
<parent>
- <groupId>org.jboss.richfaces</groupId>
- <artifactId>docs</artifactId>
- <version>1.0</version>
+ <groupId>org.richfaces.docs</groupId>
+ <artifactId>docs-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
</parent>
-
+
+ <groupId>org.jboss.richfaces</groupId>
+ <artifactId>Migration_Guide-en-US</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>jdocbook</packaging>
+ <name>Migration Guide-(en-US)</name>
+
<properties>
<translation>en-US</translation>
<docname>Migration_Guide</docname>
<bookname>Migration Guide</bookname>
</properties>
-
- <repositories>
- <repository>
- <id>jboss-public-repository-group</id>
- <name>JBoss Repository</name>
- <layout>default</layout>
- <url>https://repository.jboss.org/nexus/content/groups/public</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>jboss-public-repository-group</id>
- <name>JBoss Repository</name>
- <layout>default</layout>
- <url>https://repository.jboss.org/nexus/content/groups/public</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
-
-
<profiles>
<!-- mvn compile -->
@@ -262,6 +238,12 @@
</plugin>
</plugins>
</build>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/docs/trunk/Migratio...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/docs/trunk/Migration_G...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ </scm>
</project>
Added: root/docs/trunk/parent/pom.xml
===================================================================
--- root/docs/trunk/parent/pom.xml (rev 0)
+++ root/docs/trunk/parent/pom.xml 2010-06-03 14:55:17 UTC (rev 17484)
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="utf-8"?>
+ <!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat, Inc.
+ and individual contributors by the @authors tag. See the copyright.txt
+ in the distribution for a full listing of individual contributors. This
+ is free software; you can redistribute it and/or modify it under the
+ terms of the GNU Lesser General Public License as published by the Free
+ Software Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the hope that
+ it will be useful, but WITHOUT ANY WARRANTY; without even the implied
+ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details. You should have
+ received a copy of the GNU Lesser General Public License along with this
+ software; if not, write to the Free Software Foundation, Inc., 51
+ Franklin St, Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF
+ site: http://www.fsf.org.
+ -->
+
+<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.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>7</version>
+ </parent>
+
+ <groupId>org.richfaces.docs</groupId>
+ <artifactId>docs-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <name>Richfaces Docs: Parent</name>
+ <packaging>pom</packaging>
+
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.2.0</version>
+ <extensions>true</extensions>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-docbook-xslt</artifactId>
+ <version>1.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.0</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDocumentName>${docname}.xml</sourceDocumentName>
+ <sourceDirectory>.</sourceDirectory>
+ <imageResource>
+ <directory>${translation}</directory>
+ <includes>
+ <include>images/*</include>
+ </includes>
+ </imageResource>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
+ <!-- could also locate the docbook dependency and inspect its version... -->
+ <docbookVersion>1.72.0</docbookVersion>
+ <transformerParameters>
+ <property>
+ <name>javax.xml.parsers.DocumentBuilderFactory</name>
+ <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
+ </property>
+ <property>
+ <name>javax.xml.parsers.SAXParserFactory</name>
+ <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
+ </property>
+ </transformerParameters>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/docs/trunk/parent</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/docs/trunk/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ </scm>
+</project>
Modified: root/docs/trunk/pom.xml
===================================================================
--- root/docs/trunk/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
+++ root/docs/trunk/pom.xml 2010-06-03 14:55:17 UTC (rev 17484)
@@ -1,16 +1,31 @@
-<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
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.richfaces</groupId>
- <version>1.0</version>
- <artifactId>docs</artifactId>
- <packaging>pom</packaging>
- <modules>
- <module>Component_Reference</module>
- <module>Developer_Guide</module>
- <module>Migration_Guide</module>
- </modules>
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>7</version>
+ </parent>
+
+ <groupId>org.richfaces.docs</groupId>
+ <artifactId>docs-aggregator</artifactId>
+ <version>4.0.0-SHAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>RichFaces Document Aggregator</name>
+
+ <modules>
+ <module>parent</module>
+ <module>Component_Reference</module>
+ <module>Developer_Guide</module>
+ <module>Migration_Guide</module>
+ </modules>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/docs/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/docs/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ </scm>
</project>
14 years, 7 months
JBoss Rich Faces SVN: r17483 - in root: dist/trunk and 7 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-06-03 10:33:53 -0400 (Thu, 03 Jun 2010)
New Revision: 17483
Modified:
root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml
root/dist/trunk/pom.xml
root/examples/richfaces-showcase/trunk/pom.xml
root/ui/dist/trunk/bom/pom.xml
root/ui/dist/trunk/parent/pom.xml
root/ui/dist/trunk/pom.xml
root/ui/dist/trunk/richfaces-components-api/pom.xml
root/ui/dist/trunk/richfaces-components-impl/pom.xml
root/ui/dist/trunk/richfaces-components-ui/pom.xml
Log:
rename org.richfaces.ui.dist to org.richface.ui
Modified: root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml
===================================================================
--- root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml 2010-06-03 14:06:31 UTC (rev 17482)
+++ root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
@@ -30,7 +30,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <org.richfaces.ui.dist.version>4.0.0-SNAPSHOT</org.richfaces.ui.dist.version>
+ <org.richfaces.ui.version>4.0.0-SNAPSHOT</org.richfaces.ui.version>
</properties>
<build>
@@ -128,9 +128,9 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-bom</artifactId>
- <version>${org.richfaces.ui.dist.version}</version>
+ <version>${org.richfaces.ui.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
@@ -139,7 +139,7 @@
<dependencies>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
</dependency>
Modified: root/dist/trunk/pom.xml
===================================================================
--- root/dist/trunk/pom.xml 2010-06-03 14:06:31 UTC (rev 17482)
+++ root/dist/trunk/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
@@ -38,7 +38,7 @@
<properties>
<org.richfaces.commons.version>4.0.0-SNAPSHOT</org.richfaces.commons.version>
<org.richfaces.core.version>4.0.0-SNAPSHOT</org.richfaces.core.version>
- <org.richfaces.ui.dist.version>4.0.0-SNAPSHOT</org.richfaces.ui.dist.version>
+ <org.richfaces.ui.version>4.0.0-SNAPSHOT</org.richfaces.ui.version>
<org.richfaces.examples.core-demo.version>4.0.0-SNAPSHOT</org.richfaces.examples.core-demo.version>
<org.richfaces.examples.richfaces-showcase.version>4.0.0-SNAPSHOT</org.richfaces.examples.richfaces-showcase.version>
<org.richfaces.archetypes.richfaces-archetype-simpleapp.version>4.0.0-SNAPSHOT</org.richfaces.archetypes.richfaces-archetype-simpleapp.version>
@@ -46,19 +46,19 @@
<dependencies>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-api</artifactId>
- <version>${org.richfaces.ui.dist.version}</version>
+ <version>${org.richfaces.ui.version}</version>
</dependency>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-impl</artifactId>
- <version>${org.richfaces.ui.dist.version}</version>
+ <version>${org.richfaces.ui.version}</version>
</dependency>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
- <version>${org.richfaces.ui.dist.version}</version>
+ <version>${org.richfaces.ui.version}</version>
</dependency>
<dependency>
@@ -112,7 +112,7 @@
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
- <includeGroupIds>org.richfaces.core,org.richfaces.commons,org.richfaces.ui.dist</includeGroupIds>
+ <includeGroupIds>org.richfaces.core,org.richfaces.commons,org.richfaces.ui</includeGroupIds>
</configuration>
<executions>
<execution>
Modified: root/examples/richfaces-showcase/trunk/pom.xml
===================================================================
--- root/examples/richfaces-showcase/trunk/pom.xml 2010-06-03 14:06:31 UTC (rev 17482)
+++ root/examples/richfaces-showcase/trunk/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
@@ -26,15 +26,15 @@
<jetty.port>8080</jetty.port>
<richfaces.checkstyle.version>1</richfaces.checkstyle.version>
- <org.richfaces.ui.dist.version>4.0.0-SNAPSHOT</org.richfaces.ui.dist.version>
+ <org.richfaces.ui.version>4.0.0-SNAPSHOT</org.richfaces.ui.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-bom</artifactId>
- <version>${org.richfaces.ui.dist.version}</version>
+ <version>${org.richfaces.ui.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
@@ -43,7 +43,7 @@
<dependencies>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
</dependency>
<dependency>
Modified: root/ui/dist/trunk/bom/pom.xml
===================================================================
--- root/ui/dist/trunk/bom/pom.xml 2010-06-03 14:06:31 UTC (rev 17482)
+++ root/ui/dist/trunk/bom/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
@@ -20,7 +20,7 @@
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.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-bom</artifactId>
<packaging>pom</packaging>
<version>4.0.0-SNAPSHOT</version>
@@ -86,17 +86,17 @@
</dependency>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
<version>${project.version}</version>
</dependency>
Modified: root/ui/dist/trunk/parent/pom.xml
===================================================================
--- root/ui/dist/trunk/parent/pom.xml 2010-06-03 14:06:31 UTC (rev 17482)
+++ root/ui/dist/trunk/parent/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
@@ -30,16 +30,16 @@
<version>7</version>
</parent>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-dist-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<name>Richfaces UI Components: Parent</name>
- <packaging>pom</packaging>
-
+ <packaging>pom</packaging>
+
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-bom</artifactId>
<version>${project.version}</version>
<scope>import</scope>
@@ -48,9 +48,9 @@
</dependencies>
</dependencyManagement>
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/ui/dist/trunk/parent</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/ui/dist/trunk/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
- </scm>
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/ui/dist/trunk/parent</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/ui/dist/trunk/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ </scm>
</project>
Modified: root/ui/dist/trunk/pom.xml
===================================================================
--- root/ui/dist/trunk/pom.xml 2010-06-03 14:06:31 UTC (rev 17482)
+++ root/ui/dist/trunk/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
@@ -27,7 +27,7 @@
<version>7</version>
</parent>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-assembler</artifactId>
<version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
Modified: root/ui/dist/trunk/richfaces-components-api/pom.xml
===================================================================
--- root/ui/dist/trunk/richfaces-components-api/pom.xml 2010-06-03 14:06:31 UTC (rev 17482)
+++ root/ui/dist/trunk/richfaces-components-api/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
@@ -24,13 +24,13 @@
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-dist-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-api</artifactId>
<version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
Modified: root/ui/dist/trunk/richfaces-components-impl/pom.xml
===================================================================
--- root/ui/dist/trunk/richfaces-components-impl/pom.xml 2010-06-03 14:06:31 UTC (rev 17482)
+++ root/ui/dist/trunk/richfaces-components-impl/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
@@ -24,13 +24,13 @@
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-dist-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-impl</artifactId>
<version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
@@ -48,7 +48,7 @@
</dependency>
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-api</artifactId>
</dependency>
Modified: root/ui/dist/trunk/richfaces-components-ui/pom.xml
===================================================================
--- root/ui/dist/trunk/richfaces-components-ui/pom.xml 2010-06-03 14:06:31 UTC (rev 17482)
+++ root/ui/dist/trunk/richfaces-components-ui/pom.xml 2010-06-03 14:33:53 UTC (rev 17483)
@@ -24,13 +24,13 @@
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-dist-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
<version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
@@ -58,7 +58,7 @@
<!-- for javadoc generation -->
<dependency>
- <groupId>org.richfaces.ui.dist</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-impl</artifactId>
</dependency>
14 years, 7 months