JBoss Rich Faces SVN: r2267 - trunk/framework/impl/src/main/javascript/prototype.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-08-15 09:34:33 -0400 (Wed, 15 Aug 2007)
New Revision: 2267
Modified:
trunk/framework/impl/src/main/javascript/prototype/patches.js
Log:
Event.unloadElementsCache(..) slightly optimized
Modified: trunk/framework/impl/src/main/javascript/prototype/patches.js
===================================================================
--- trunk/framework/impl/src/main/javascript/prototype/patches.js 2007-08-15 13:00:50 UTC (rev 2266)
+++ trunk/framework/impl/src/main/javascript/prototype/patches.js 2007-08-15 13:34:33 UTC (rev 2267)
@@ -65,14 +65,13 @@
if (!Prototype.Browser.IE) return;
var observers = Event.observers;
- for (var i = 0, length = observers.length; i < length; i++) {
+ for (var i = observers.length - 1; i >= 0; i--) {
var observer = observers[i];
var elt = observer[0];
if (Element.isUninitialized(elt)) {
Event.stopObserving.apply(Event, observer);
- observers.splice(i--, 1);
- length--;
+ observers.splice(i, 1);
}
}
};
\ No newline at end of file
18 years, 8 months
JBoss Rich Faces SVN: r2266 - in trunk/docs/ajaxguide/en/src/main/docbook: modules and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: vkukharchuk
Date: 2007-08-15 09:00:50 -0400 (Wed, 15 Aug 2007)
New Revision: 2266
Modified:
trunk/docs/ajaxguide/en/src/main/docbook/included/actionparam.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/ajaxListener.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/commandButton.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/commandLink.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/form.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/htmlCommandLink.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/include.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/jsFunction.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/keepAlive.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/loadBundle.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/loadScript.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/loadStyle.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/log.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/mediaOutput.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/outputPanel.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/page.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/poll.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/push.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/region.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/repeat.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/status.xml
trunk/docs/ajaxguide/en/src/main/docbook/included/support.xml
trunk/docs/ajaxguide/en/src/main/docbook/modules/a4jUGfaq.xml
Log:
http://jira.jboss.com/jira/browse/RF-597
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/actionparam.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/actionparam.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/actionparam.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -88,8 +88,11 @@
<section>
<title>Relevant resources links</title>
- <para>More information can be found on the <ulink
- url="http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063764"
+ <para>More information can be found on the <ulink url="http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063764"
>Ajax4JSF Users Forum</ulink>.</para>
+ <para>
+ To see how component works on practice, look at a4j-actionparam example from
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/actionparam.jsf?c=act...">RichFaces Live Demo</ulink>.
+ </para>
</section>
</chapter>
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/ajaxListener.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/ajaxListener.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/ajaxListener.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -103,5 +103,14 @@
}
]]></programlisting>
</section>
-
+
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/ajaxListener.jsf?c=aj...">here.
+ </ulink>
+ </para>
+ </section>
+
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/commandButton.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/commandButton.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/commandButton.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -60,4 +60,12 @@
<para>Common JSF navigation could be performed after an AJAX submit and partial rendering, but Navigation Case must be defined as <emphasis role="bold"><property><redirect/></property></emphasis> in order to avoid problems with some browsers.</para>
<para>As any Ajax4jsf component sending AJAX requests and processing server responses <emphasis role="bold"><property><a4j:commandButton></property></emphasis> has all attributes described above (see <emphasis role="bold"><property><a4j:support></property></emphasis> chapter) that provide the required behavior of requests sending (delay, limitation of submit area and rendering, and etc.)</para>
</section>
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/commandButton.jsf?c=c...">here.
+ </ulink>
+ </para>
+ </section>
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/commandLink.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/commandLink.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/commandLink.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -69,4 +69,14 @@
<para>Common JSF navigation could be performed after AJAX submit and partial rendering, but Navigation Case must be defined as <emphasis role="bold"><property><redirect/></property></emphasis> in order to avoid problems with some browsers.</para>
<para>As any Ajax4jsf component sending AJAX requests and processing server responses <emphasis role="bold"><property><a4j:commandLink></property></emphasis> has all attributes described above (see <emphasis role="bold"><property><a4j:support></property></emphasis> chapter) that provide the required behavior of requests sending (delay, limitation of submit area and rendering, etc.)</para>
</section>
+
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/commandLink.jsf?c=com...">here.
+ </ulink>
+ </para>
+ </section>
+
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/form.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/form.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/form.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -84,4 +84,12 @@
<property><a4j:support></property>
</emphasis>.</para>
</section>
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/form.jsf?c=form">here.
+ </ulink>
+ </para>
+ </section>
</chapter>
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/htmlCommandLink.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/htmlCommandLink.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/htmlCommandLink.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -76,4 +76,13 @@
<property><h:commandLink></property>
</emphasis>, but here hidden fields required for correct functionality are rendered before the first downloading of a page, though it doesn't happen if its attribute isn't set to "false".</para>
</section>
+ <!--
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/htmlCommandLink.jsf?c...">here.
+ </ulink>
+ </para>
+ </section> -->
</chapter>
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/include.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/include.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/include.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -97,6 +97,8 @@
<title>Relevant resources links</title>
<para>
Some additional information can be found on the <ulink url="http://jboss.com/index.html?module=bb&op=viewtopic&t=104158">Ajax4Jsf Users Forum.</ulink>
- </para>
+ </para><!--
+ To see how component works on practice, look at a4j-include example from
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/include.jsf?c=include">RichFaces Live Demo</ulink>. -->
</section>
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/jsFunction.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/jsFunction.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/jsFunction.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -116,6 +116,6 @@
<para> To see how <emphasis role="bold">
<property><a4j:jsFunction></property>
</emphasis> works on practice, look at a4j-jsFunction example from <ulink
- url="http://labs.jboss.com/jbossajax4jsf/demo/index.html">here</ulink>.</para>
+ url="http://livedemo.exadel.com/richfaces-demo/richfaces/jsFunction.jsf?c=jsFu...">here</ulink>.</para>
</section>
</chapter>
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/keepAlive.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/keepAlive.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/keepAlive.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -84,7 +84,7 @@
<section>
<title>Relevant resources links</title>
<para>
- Some additional information about usage of components can be found <ulink url="http://jboss.com/index.html?module=bb&op=viewtopic&t=104989">here.
+ Some additional information about usage of component can be found <ulink url="http://jboss.com/index.html?module=bb&op=viewtopic&t=104989">here.
</ulink>
</para>
</section>
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/loadBundle.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/loadBundle.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/loadBundle.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -82,4 +82,12 @@
</para>
</section>
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/bundle.jsf?c=loadBundle">here.
+ </ulink>
+ </para>
+ </section>
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/loadScript.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/loadScript.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/loadScript.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -68,4 +68,14 @@
page while using <property>facelets templates</property> .
</para>
</section>
+
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/script.jsf?c=loadScript">here.
+ </ulink>
+ </para>
+ </section>
+
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/loadStyle.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/loadStyle.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/loadStyle.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -68,5 +68,13 @@
page while using <property>facelets templates</property> .
</para>
</section>
-
+
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/log.jsf?c=log">here.
+ </ulink>
+ </para>
+ </section>
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/log.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/log.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/log.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -69,4 +69,13 @@
<para><emphasis role="bold"><a4j:log></emphasis> is getting renewed automatically after execution of ajax requests. Don't renew <emphasis role="bold"><a4j:log></emphasis> by using reRender!</para>
</note>
</section>
+ <!--
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/log.jsf?c=log">here.
+ </ulink>
+ </para>
+ </section> -->
</chapter>
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/mediaOutput.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/mediaOutput.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/mediaOutput.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -96,4 +96,13 @@
</note>
<para>Hence, when using the component it's possible to output user data of any type on a page with AJAX requests.</para>
</section>
+ <!--
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/mediaOutput.jsf?c=med...">here.
+ </ulink>
+ </para>
+ </section> -->
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/outputPanel.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/outputPanel.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/outputPanel.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -130,7 +130,11 @@
<section>
<title>Relevant resources links</title>
<para>
- Some additional information about usage of component can be found <ulink url="http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4052203#...">here</ulink>.
+ Some additional information about usage of component can be found
+ <ulink url="http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4052203#...">here</ulink>.
+ <!--
+ To see how component works on practice, look at a4j-outputPanel example from
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/outputPanel.jsf?c=out...">RichFaces Live Demo</ulink>. -->
</para>
</section>
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/page.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/page.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/page.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -93,7 +93,13 @@
<member>
<ulink url="http://webdownload.exadel.com/downloads/ajax4jsf/documentation/tldDoc/">here</ulink>.
</member>
- </para>
+ </para>
+ <!--
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/page.jsf?c=page">here.
+ </ulink>
+ </para> -->
</section>
</chapter>
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/poll.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/poll.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/poll.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -85,6 +85,11 @@
The aditional information about component usage you can find here:<ulink url="http://jboss.com/index.html?module=bb&op=viewtopic&t=103909">Ajax4Jsf Users Forum.
</ulink>
</para>
+
+ <para>
+ To see how component works on practice, look at a4j-poll example from
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/poll.jsf?c=poll">RichFaces Live Demo</ulink>.
+ </para>
</section>
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/push.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/push.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/push.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -61,7 +61,9 @@
'interval' - Interval (in ms) for call push requests. Default value 1000 (1 sec).
<!-- If "0" a connection is permanent. Also user can set different value for parameter 'timeout'. -->
</para>
+<para>
Code for registration of listener:
+</para>
<programlisting role="JAVA"><![CDATA[
public void addListener(EventListener listener) {
synchronized (listener) {
@@ -70,16 +72,26 @@
}
]]></programlisting>
-
+<para>
Component can get message using current code:
+</para>
<programlisting role="JAVA"><![CDATA[
System.out.println("event occurs");
synchronized (listener) {
listener.onEvent(new EventObject(this));
}
]]></programlisting>
-
+<para>
Thus, component 'push' uses asynchronous model instead of polls.
-
+</para>
</section>
+ <!--
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/push.jsf?c=push">here.
+ </ulink>
+ </para>
+ </section> -->
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/region.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/region.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/region.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -117,4 +117,12 @@
region and encode performance time is reduced. This optimization doesn't allow data update out of the
region and should be implemented very carefully. The data out of the region described with "renderRegionOnly"="false" is updated successfully.</para>
</section>
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/region.jsf?c=region">here.
+ </ulink>
+ </para>
+ </section>
</chapter>
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/repeat.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/repeat.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/repeat.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -115,4 +115,13 @@
<property><ui:repeat></property>
</emphasis>) and are used in the same way.</para>
</section>
+ <!--
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/repeat.jsf?c=repeat">here.
+ </ulink>
+ </para>
+ </section> -->
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/status.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/status.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/status.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -116,4 +116,12 @@
</emphasis>
attribute from "incline"(default) to "block".</para>
</section>
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/status.jsf?c=status">here.
+ </ulink>
+ </para>
+ </section>
</chapter>
Modified: trunk/docs/ajaxguide/en/src/main/docbook/included/support.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/included/support.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/included/support.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -151,4 +151,13 @@
</listitem>
</itemizedlist>
</section>
+
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/support.jsf?c=support">here.
+ </ulink>
+ </para>
+ </section>
</chapter>
\ No newline at end of file
Modified: trunk/docs/ajaxguide/en/src/main/docbook/modules/a4jUGfaq.xml
===================================================================
--- trunk/docs/ajaxguide/en/src/main/docbook/modules/a4jUGfaq.xml 2007-08-15 12:23:18 UTC (rev 2265)
+++ trunk/docs/ajaxguide/en/src/main/docbook/modules/a4jUGfaq.xml 2007-08-15 13:00:50 UTC (rev 2266)
@@ -287,7 +287,7 @@
<?dbhtml filename="SeveralStatusOnPage.html"?>
<title>Can I have several <a4j:status> components on one page?</title>
<para>Yes, you can. More information about this problem could be found on the <ulink
- url="http://livedemo.exadel.com/a4j-status/">JBoss Ajax4jsf Online Demos</ulink>.
+ url="http://livedemo.exadel.com/richfaces-demo/richfaces/status.jsf?c=status">JBoss RichFaces Online Demos</ulink>.
</para>
</section>
@@ -309,9 +309,14 @@
<title>How to reRender only particular row(s) of dataTable?</title>
<para> If you use dataTable then you may use ajaxKeys attribute to bind the rowKeys to be
reRendered there. After you need to point reRender on the whole table and only specified
- rows will be reRedered. Also the example of usage of <emphasis role="bold"
+ rows will be reRedered.
+ <!--
+ Also the example of usage of <emphasis role="bold"
><a4j:repeat></emphasis> component are available <ulink
- url="http://livedemo.exadel.com/a4j-repeat/">here</ulink>.</para>
+ url="http://livedemo.exadel.com/richfaces-demo/richfaces/repeat.jsf?c=repeat">here</ulink>.
+ -->
+ </para>
+
</section>
18 years, 8 months
JBoss Rich Faces SVN: r2265 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2007-08-15 08:23:18 -0400 (Wed, 15 Aug 2007)
New Revision: 2265
Modified:
trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/commandButton.xml
trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml
trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml
trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dropZone.xml
trunk/docs/userguide/en/src/main/docbook/included/form.xml
trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml
trunk/docs/userguide/en/src/main/docbook/included/include.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/include.xml
trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml
trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml
trunk/docs/userguide/en/src/main/docbook/included/log.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/log.xml
trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml
trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/outputPanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/poll.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/portlet.xml
trunk/docs/userguide/en/src/main/docbook/included/push.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/repeat.xml
trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
trunk/docs/userguide/en/src/main/docbook/included/status.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/status.xml
trunk/docs/userguide/en/src/main/docbook/included/subTable.xml
trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.xml
trunk/docs/userguide/en/src/main/docbook/included/support.xml
trunk/docs/userguide/en/src/main/docbook/included/tab.xml
trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml
trunk/docs/userguide/en/src/main/docbook/included/tree.xml
trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml
trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml
Log:
http://jira.jboss.com/jira/browse/RF-398
some spelling mistakes were corrected
Modified: trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -41,7 +41,7 @@
</table>
<section>
<title>Creating the Component with a Page Tag</title>
- <para>To create the simplest variant of <property>columnGroup</property> on a page which you can see at the screenshot, use the following syntax:</para>
+ <para>To create the simplest variant of <property>columnGroup</property> on a page, which you can see at the screenshot, use the following syntax:</para>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/commandButton.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/commandButton.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/commandButton.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -52,12 +52,12 @@
<para>The component <emphasis role="bold"><property><a4j:commandButton></property></emphasis> placed on a page generates the following HTML code:</para>
<programlisting role="XHTML"><![CDATA[<input type="submit" onclick="A4J.AJAX.Submit(...request parameters);return false;" value="sort"/>
]]></programlisting>
- <para>Hence, the utility method "A4J.AJAX.Submit" is called on a click, the method performs AJAX request as the <emphasis role="bold"><property><a4j:support></property></emphasis> component</para>
+ <para>Hence, the utility method "A4J.AJAX.Submit" is called on a click, the method performs Ajax request as the <emphasis role="bold"><property><a4j:support></property></emphasis> component</para>
<note>
<title>Note:</title>
<para>AJAX support is built in and it's not necessary to add nested <emphasis role="bold"><property><a4j:support></property></emphasis> to the component.</para>
</note>
<para>Common JSF navigation could be performed after an AJAX submit and partial rendering, but Navigation Case must be defined as <emphasis role="bold"><property><redirect/></property></emphasis> in order to avoid problems with some browsers.</para>
- <para>As any Ajax4jsf component sending AJAX requests and processing server responses <emphasis role="bold"><property><a4j:commandButton></property></emphasis> has all attributes described above (see <emphasis role="bold"><property><a4j:support></property></emphasis> chapter) that provide the required behavior of requests sending (delay, limitation of submit area and rendering, and etc.)</para>
+ <para>As any Ajax4jsf component sending Ajax requests and processing server responses <emphasis role="bold"><property><a4j:commandButton></property></emphasis> has all attributes described above (see <emphasis role="bold"><property><a4j:support></property></emphasis> chapter) that provide the required behavior of requests sending (delay, limitation of submit area and rendering, and etc.)</para>
</section>
</chapter>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -61,12 +61,12 @@
<span style="color: black;">Link Value</span>
</a>
]]></programlisting>
- <para>Hence, the utility method "A4J.AJAX.Submit" is called on a click, the method performs AJAX request as the <emphasis role="bold"><property><a4j:support></property></emphasis> component</para>
+ <para>Hence, the utility method "A4J.AJAX.Submit" is called on a click, the method performs Ajax request as the <emphasis role="bold"><property><a4j:support></property></emphasis> component</para>
<note>
<title>Note:</title>
<para>AJAX support is built in and it's not necessary to add nested <emphasis role="bold"><property><a4j:support></property></emphasis> to the component.</para>
</note>
<para>Common JSF navigation could be performed after AJAX submit and partial rendering, but Navigation Case must be defined as <emphasis role="bold"><property><redirect/></property></emphasis> in order to avoid problems with some browsers.</para>
- <para>As any Ajax4jsf component sending AJAX requests and processing server responses <emphasis role="bold"><property><a4j:commandLink></property></emphasis> has all attributes described above (see <emphasis role="bold"><property><a4j:support></property></emphasis> chapter) that provide the required behavior of requests sending (delay, limitation of submit area and rendering, etc.)</para>
+ <para>As any Ajax4jsf component sending Ajax requests and processing server responses <emphasis role="bold"><property><a4j:commandLink></property></emphasis> has all attributes described above (see <emphasis role="bold"><property><a4j:support></property></emphasis> chapter) that provide the required behavior of requests sending (delay, limitation of submit area and rendering, etc.)</para>
</section>
</chapter>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -76,7 +76,7 @@
<para>The <emphasis role="bold">
<property><rich:Datascroller></property>
</emphasis> component provides table scrolling functionality the same as tomahawk scroller but
- with AJAX requests usage.</para>
+ with Ajax requests usage.</para>
<para>The component should be placed into footer of the parent table or be bound to it with the <emphasis>
<property>"for"</property>
</emphasis> attribute.</para>
@@ -169,7 +169,7 @@
the dataScroller. These attributes are used for definition the names of variables, that wiil
be used in the facet with name<emphasis>
<property>"pages"</property>
- </emphasis>. An example can be found below: </para>
+ </emphasis>.An example can be found below: </para>
<para>
<emphasis role="bold">Example:</emphasis>
</para>
@@ -195,7 +195,7 @@
</section>
<section>
<title>Look-and-Feel Customization</title>
- <para>For skinnability implementation the components use a <emphasis><property>style class
+ <para>For skinnability implementation, the components use a <emphasis><property>style class
redefinition method</property>.</emphasis></para>
<para>Default style classes are mapped on <emphasis><property>skin
parameters</property>.</emphasis></para>
@@ -375,7 +375,7 @@
</tbody>
</tgroup>
</table>
- <para>To redefine an appearance of all scrollers on a page, just redefine one of this classes</para>
+ <para>To redefine an appearance of all scrollers on a page, just redefine one of these classes</para>
<para>And to redefine the appearance of the particular scroller, one may use corresponding class
attributes on the component.</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>This component transforms a parent component into a target zone for
drag-and-drop operations. When a draggable element is moved and dropped onto
- the area of the parent component, AJAX request processing for this event is
+ the area of the parent component, Ajax request processing for this event is
started.</para>
<figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -123,7 +123,7 @@
<para>In this example, dropping a draggable item of an "iconsDragged" type
will trigger the use a parameter named "DropIcon" in the event processing
- after a drop event. (Also, an AJAX request is sent, and the action and dropListener defined
+ after a drop event. (Also, an Ajax request is sent, and the action and dropListener defined
for the component are called.)</para>
<para>Here is an example of moving records between tables. The example describes all the pieces
@@ -214,13 +214,13 @@
<para>In this example, items are dragged element-by-element from the rendered list in the first
table and dropped on a panel in the middle. After each drop, a drop event is generated and a
- common AJAX request is performed that renders results in the third table.</para>
+ common Ajax request is performed that renders results in the third table.</para>
<para>As with every AJAX action component, <emphasis role="bold">
<property><rich:dropSupport></property>
</emphasis> has all the common attributes (<emphasis><property>"timeout"</property>,</emphasis>
<emphasis><property>"limitToList"</property>,</emphasis>
- <emphasis><property>"reRender"</property>,</emphasis> etc.) for AJAX request customization. To
+ <emphasis><property>"reRender"</property>,</emphasis> etc.) for Ajax request customization. To
get detailed information on these attributes, read the <ulink
url="http://labs.jboss.com/file-access/default/members/jbossajax4jsf/freezone/..."
>Ajax4jsf Developer Guide</ulink>.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -7,7 +7,7 @@
</sectioninfo>
<section>
<para>The "target zone" for a drag operation. When a draggable element is moved and
- dropped onto the area of this component, <property>dropZone</property> performs an AJAX request
+ dropped onto the area of this component, <property>dropZone</property> performs an Ajax request
processing this event.</para>
<figure>
<title>DropZone with dragged element</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropZone.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropZone.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropZone.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -100,7 +100,7 @@
]]></programlisting>
<para>Thus, here is a drag zone indicator of iconsDragged type that obtains DropIcon parameter
the same one as richParam gets. </para>
- <para>As any AJAX action, <property>dropZone</property> has all custom attributes of AJAX requests
+ <para>As any AJAX action, <property>dropZone</property> has all custom attributes of Ajax requests
customization (<emphasis ><property>"timeout"</property></emphasis>,
<emphasis ><property>"limitToList"</property></emphasis>,
<emphasis ><property>"reRender"</property></emphasis>, etc). To read more
Modified: trunk/docs/userguide/en/src/main/docbook/included/form.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/form.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/form.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -53,7 +53,7 @@
</section>
<section>
<title>Key attributes and ways of usage</title>
- <para>The difference with the original component is that all hidden fields required for command links are always rendered and it doesn't depend on links rendering on the initial page. It solves the problem with invalid links that weren't rendered on a page immediately, but after some AJAX request.</para>
+ <para>The difference with the original component is that all hidden fields required for command links are always rendered and it doesn't depend on links rendering on the initial page. It solves the problem with invalid links that weren't rendered on a page immediately, but after some Ajax request.</para>
<para>Beginning with release 1.0.5 additional attributes that make this form variant universal have appeared. With a new attribute definition as ajax=<emphasis >
<property>"true"</property>
</emphasis>, it becomes possible to set AJAX submission way for any components inside, i.e. not a page URL is used as an <emphasis >
Modified: trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/htmlCommandLink.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -57,7 +57,7 @@
<title>Key attributes and ways of usage</title>
<para>The difference with the original component is that all hidden fields required for command links with the child <emphasis role="bold">
<property><f:param></property>
- </emphasis> elements are always rendered and it doesn't depend on links rendering on the initial page. It solves the problem with invalid links that weren't rendered on a page immediately, but after some AJAX request.</para>
+ </emphasis> elements are always rendered and it doesn't depend on links rendering on the initial page. It solves the problem with invalid links that weren't rendered on a page immediately, but after some Ajax request.</para>
<para>
<emphasis role="bold">Example:</emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/include.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/include.desc.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/include.desc.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -4,6 +4,6 @@
<title>Description</title>
<para>The <emphasis role="bold">
<property><a4j:include></property>
- </emphasis> component is used for page areas update after an AJAX request according to the faces-config Navigation Rules and for implementation of wizard-like parts work in AJAX mode.</para>
+ </emphasis> component is used for page areas update after an Ajax request according to the faces-config Navigation Rules and for implementation of wizard-like parts work in AJAX mode.</para>
</section>
</chapter>
Modified: trunk/docs/userguide/en/src/main/docbook/included/include.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/include.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/include.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -42,7 +42,7 @@
<a4j:include viewId="/pages/include/first.xhtml" />
</h:panelGroup>
]]></programlisting>
-<para>For navigation inside a page defined in viewId any components responsible for AJAX requests to the server generation are used.</para>
+<para>For navigation inside a page defined in viewId any components responsible for Ajax requests to the server generation are used.</para>
<para>For example, the following component on the page "/pages/include/first.xhtml"</para>
<para>
@@ -65,7 +65,7 @@
</navigation-case>
</navigation-rule>
]]></programlisting>
-<para>In this case after a click on a button defined inside "first.xhtml" view, navigation is performed after an AJAX request (the same as standard JSF one) only inside this view.</para>
+<para>In this case after a click on a button defined inside "first.xhtml" view, navigation is performed after an Ajax request (the same as standard JSF one) only inside this view.</para>
</section>
<section>
<title>Dynamical creation of a component from Java code</title>
@@ -75,7 +75,7 @@
]]></programlisting>
<para>If <emphasis role="bold">
<property><a4j:include></property>
- </emphasis> is defined this way, any AJAX request returning outcome inside generates navigation with this <emphasis role="bold">
+ </emphasis> is defined this way, any Ajax request returning outcome inside generates navigation with this <emphasis role="bold">
<property><a4j:include></property>
</emphasis>.</para>
<para>Ajax Action for navigation implementation inside view must be placed inside <emphasis role="bold">
Modified: trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -72,9 +72,9 @@
the page fired after calling function. </para>
<para> When using the <emphasis role="bold">
<property><a4j:jsFunction></property>
- </emphasis> it's possible to initiate the AJAX request from the JavaScript and
+ </emphasis> it's possible to initiate the Ajax request from the JavaScript and
perform partial update of a page and/or invoke the JavaScript function with data returned by
- AJAX response. </para>
+ Ajax response. </para>
<programlisting role="XML"><![CDATA[...
<body onload="callScript()">
...
@@ -96,7 +96,7 @@
<property><a4j:actionparam></property>
</emphasis> or pure <emphasis role="bold">
<property><f:param></property>
- </emphasis> for passing any number of parameters of the JavaScript function into AJAX request.
+ </emphasis> for passing any number of parameters of the JavaScript function into Ajax request.
<emphasis role="bold">
<property><a4j:jsFunction></property>
</emphasis> is similar to <emphasis role="bold">
Modified: trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -55,7 +55,7 @@
<section>
<title>Key attributes and ways of usage</title>
<para>
- As it was mentioned <link linkend="loadStyle">before</link> this componment returns its value passing it to the
+ As it was mentioned <link linkend="loadStyle">before</link> this component returns its value passing it to the
getResourceUR() method of the ViewHandler for this application, and passing
the result via the encodeResourceURL() method of the ExternalContext.
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/log.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/log.desc.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/log.desc.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -4,6 +4,6 @@
<title>Description</title>
<para>The <emphasis role="bold">
<property><a4j:log ></property>
- </emphasis> component generates JavaScript for opening of the window with client-side debug information on an AJAX request.</para>
+ </emphasis> component generates JavaScript for opening of the window with client-side debug information on an Ajax request.</para>
</section>
</root>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/log.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/log.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/log.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -66,7 +66,7 @@
<para>The component defined this way is decoded on a page as <emphasis role="bold"><property><div></property></emphasis> inside a page, where all the information beginning with informational message is generated.</para>
<note>
<title>Note:</title>
- <para><emphasis role="bold"><a4j:log></emphasis> is getting renewed automatically after execution of ajax requests. Don't renew <emphasis role="bold"><a4j:log></emphasis> by using reRender!</para>
+ <para><emphasis role="bold"><a4j:log></emphasis> is getting renewed automatically after execution of Ajax requests. Don't renew <emphasis role="bold"><a4j:log></emphasis> by using reRender!</para>
</note>
</section>
</chapter>
Modified: trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -94,6 +94,6 @@
</itemizedlist>
<note><title>Note:</title>A bean class transmitted into value should implement Serializable interface.
</note>
- <para>Hence, when using the component it's possible to output user data of any type on a page with AJAX requests.</para>
+ <para>Hence, when using the component it's possible to output user data of any type on a page with Ajax requests.</para>
</section>
</chapter>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -21,7 +21,7 @@
<title>Key Features</title>
<itemizedlist>
<listitem>Highly customizable look and feel </listitem>
- <listitem>Track both traditional and ajax based requests</listitem>
+ <listitem>Track both traditional and Ajax based requests</listitem>
<listitem>Optional tooltip to display the detail portion of the message</listitem>
<listitem>Additionally customizable via attributes and facets</listitem>
<listitem>Additionally provides of two parts to be optionally defined: marker and
Modified: trunk/docs/userguide/en/src/main/docbook/included/outputPanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/outputPanel.desc.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/outputPanel.desc.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -2,6 +2,6 @@
<root>
<section>
<title>Description</title>
- <para>The component is used for components grouping in the AJAX output area, which offers several additional output opportunities such as inserting of non-present in tree components, saving of transient elements after AJAX request and some others.</para>
+ <para>The component is used for components grouping in the AJAX output area, which offers several additional output opportunities such as inserting of non-present in tree components, saving of transient elements after Ajax request and some others.</para>
</section>
</root>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -66,7 +66,7 @@
To speed up the performance, Ajax4jsf updates only a component tree. <emphasis role="bold">
<property><a4j:outputPanel></property>
- </emphasis> usage is recommended for wrapping components that aren't rendered during the primary non-ajax response, as the components don't present in a component tree.
+ </emphasis> usage is recommended for wrapping components that aren't rendered during the primary non-Ajax response, as the components don't present in a component tree.
</para>
<para><emphasis role="bold">Example:</emphasis></para>
<programlisting role="XML"><![CDATA[<a4j:support ... reRender="mypanel"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/poll.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/poll.desc.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/poll.desc.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -4,6 +4,6 @@
<title>Description</title>
<para>The <emphasis role="bold">
<property><a4j:poll></property>
- </emphasis> component allows periodical sending of AJAX requests to the server and is used for a page update according to a specified in milliseconds time interval.</para>
+ </emphasis> component allows periodical sending of Ajax requests to the server and is used for a page update according to a specified in milliseconds time interval.</para>
</section>
</root>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/portlet.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/portlet.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/portlet.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -1,4 +1,4 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?xml version='1.0' encoding='UTF-8'?>
<chapter>
<table>
@@ -56,7 +56,7 @@
<para>
Portal page can include some instances of the same portlet but clientId of elements should be different for each window.
In that case 'namespace' is used for each portlet. The <emphasis role="bold"><property><a4j:portlet></property></emphasis>
- implemets NaimingContainer interface and adds namespace to all componets on a page.
+ implements NaimingContainer interface and adds namespace to all components on a page.
All portlet content should be wrapped by <emphasis role="bold"><property><a4j:portlet></property></emphasis> for resolving problems mentioned
before.
</para>
@@ -65,7 +65,7 @@
<section>
<title>Relevant resources links</title>
<para>
- The aditional information about component usage you can find here:
+ The additional information about component usage you can find here:
<ulink url="http://www.jboss.com/index.html?module=bb&op=viewtopic&t=107325">Ajax4Jsf Users Forum.
</ulink>
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/push.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/push.desc.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/push.desc.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -4,6 +4,6 @@
<title>Description</title>
<para>The <emphasis role="bold">
<property><a4j:push></property>
- </emphasis>periodically perform AJAX request to server, to simulate 'push' data.</para>
+ </emphasis>periodically perform Ajax request to server, to simulate 'push' data.</para>
</section>
</root>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/repeat.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/repeat.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/repeat.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -59,7 +59,7 @@
<title>Key attributes and ways of usage</title>
<para>The main difference of this component from iterative components of other libraries is a special <emphasis >
<property>"ajaxKeys"</property>
- </emphasis> attribute. This attribute defines strings that are updated after an AJAX request. As a result it becomes easier to update several child components separately without updating the whole page.</para>
+ </emphasis> attribute. This attribute defines strings that are updated after an Ajax request. As a result it becomes easier to update several child components separately without updating the whole page.</para>
<programlisting role="JSP"><![CDATA[<a4j:poll intervall="1000" action="#{repeater.action}" reRender="list">
...
<table>
@@ -80,7 +80,7 @@
</emphasis> is output.</para>
<para>In the above-mentioned example the component <emphasis role="bold">
<property><a4j:poll></property>
- </emphasis> sends AJAX requests every second, calling the <emphasis >
+ </emphasis> sends Ajax requests every second, calling the <emphasis >
<property>"action"</property>
</emphasis> method of the <emphasis >
<property>"repeater"</property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -85,7 +85,7 @@
panel. Only one at a time panel is uploaded onto the client side.</para>
</listitem>
<listitem> Ajax<para>AJAX form submission is performed around the panel, content of the called
- panel is uploaded on AJAX request and additionally specified elements in the <emphasis>
+ panel is uploaded on Ajax request and additionally specified elements in the <emphasis>
<property>"reRender"</property>
</emphasis> attribute are rendered. Only one at a time panel is uploaded on the client
side.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/status.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/status.desc.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/status.desc.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -4,6 +4,6 @@
<title>Description</title>
<para>The <emphasis role="bold">
<property><a4j:status></property>
- </emphasis> component generates elements for displaying of the current AJAX requests status. There are two status modes: AJAX request is in process or finished.</para>
+ </emphasis> component generates elements for displaying of the current Ajax requests status. There are two status modes: Ajax request is in process or finished.</para>
</section>
</root>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/status.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/status.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/status.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -71,7 +71,7 @@
</section>
<section>
<title>Key attributes and ways of usage</title>
- <para>There are two ways for components or containers definition, which AJAX requests status is tracked by a component.<itemizedlist>
+ <para>There are two ways for components or containers definition, which Ajax requests status is tracked by a component.<itemizedlist>
<listitem>
Definition with the <emphasis >
<property>"for"</property>
@@ -95,7 +95,7 @@
</emphasis> component shows the status for the request fired from this action component.
</listitem>
</itemizedlist></para>
- <para>The component creates two <emphasis role="bold"><property><span></property></emphasis> elements with content defined for each status, one of the elements (start) is initially hidden. At the beginning of an AJAX request, elements state is inversed, hence the second element is shown and the first is hidden. At the end of a response processing, elements display states return to its initial values.</para>
+ <para>The component creates two <emphasis role="bold"><property><span></property></emphasis> elements with content defined for each status, one of the elements (start) is initially hidden. At the beginning of an Ajax request, elements state is inversed, hence the second element is shown and the first is hidden. At the end of a response processing, elements display states return to its initial values.</para>
<para>Example:</para>
<programlisting role="XML"><![CDATA[<a4j:status startText="Started" stopText="stopped" layout="block"/>]]></programlisting>
<para>is decoded on a page as:</para><programlisting role="XML"><![CDATA[<span id="j_id20:status.start" style="display: none">
@@ -104,7 +104,7 @@
<span id="j_id20:status.stop">
Stopped
</span>]]></programlisting>
- <para>And after the generation of an AJAX response is changed to:</para>
+ <para>And after the generation of an Ajax response is changed to:</para>
<programlisting role="XML"><![CDATA[<span id="j_id20:status.start">
Started
</span>
Modified: trunk/docs/userguide/en/src/main/docbook/included/subTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/subTable.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/subTable.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -96,7 +96,7 @@
<a4j:commandButton action="#{bean.someAction}" reRender="table"/>
...
]]></programlisting>
-<para>For such a table during someAction processing called with AJAX request when the key is pressed
+<para>For such a table during someAction processing called with Ajax request when the key is pressed
it's possible to fill in lot's of ajaxKeys with strings indices that are to be updated.
A resulting output on the client contains only required rows and they are updated in the tree, even
when update is specified for the whole table.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.desc.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.desc.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>The component adds on-keypress suggestions capabilities to any input text component
(like <emphasis role="bold"><property><h:inputText></property></emphasis>). When a key
- is pressed in the field AJAX request is sent to the server. When the suggestion action returns a
+ is pressed in the field Ajax request is sent to the server. When the suggestion action returns a
list of possible values, it pop ups them inside the
<emphasis role="bold"><property><div></property></emphasis> element bellow the input.</para>
<figure>
@@ -26,10 +26,10 @@
<itemizedlist>
<listitem>Fully skinnable component</listitem>
<listitem>Adds "onkeypress" suggestions capabilities to any input text component</listitem>
- <listitem>Performs suggestion via AJAX requests without any line of JavaScript code written
+ <listitem>Performs suggestion via Ajax requests without any line of JavaScript code written
by a user</listitem>
<listitem>Possible to render table as a popup suggestion</listitem>
- <listitem>Can be pointed to any AJAX request status indicator of the page</listitem>
+ <listitem>Can be pointed to any Ajax request status indicator of the page</listitem>
<listitem>Easily customizable size of suggestion popup</listitem>
<listitem>Setting rules that appear between cells within a table of popup values</listitem>
<listitem><emphasis
@@ -38,9 +38,9 @@
><property>"request delay"</property></emphasis> attributes present to divide
frequently requests</listitem>
- <listitem>Managing area of components submitted on AJAX request</listitem>
- <listitem>Flexible list of components to update after AJAX request managed by attributes</listitem>
- <listitem>Setting restriction to AJAX request generation</listitem>
+ <listitem>Managing area of components submitted on Ajax request</listitem>
+ <listitem>Flexible list of components to update after Ajax request managed by attributes</listitem>
+ <listitem>Setting restriction to Ajax request generation</listitem>
<listitem>Easily setting action to collect suggestion data</listitem>
<listitem>Keyboard navigation support</listitem>
</itemizedlist>
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -161,7 +161,7 @@
...
]]></programlisting>
<para>This example shows that when a city is chosen and a comma and first letter character
- are input, AJAX request is called again, but it submits a value starting from the last
+ are input, Ajax request is called again, but it submits a value starting from the last
token:</para>
<figure>
<title>SuggestionBox with chosen word</title>
@@ -186,7 +186,7 @@
attribute limiting requests (the <emphasis>
<property>"minChars"</property>
</emphasis> attribute). The attribute defines characters quantity inputted into a field
- after which AJAX requests are called to perform suggestion.</para>
+ after which Ajax requests are called to perform suggestion.</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/support.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/support.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/support.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -36,7 +36,7 @@
<para>To use a component, place <emphasis role="bold">
<property><a4j:support></property>
</emphasis> as nested to the component requesting AJAX functionality and specify an event of a
- parent component that generates AJAX request and the components to be rerendered after a response
+ parent component that generates Ajax request and the components to be rerendered after a response
from the server.</para>
<para><emphasis role="bold">Example:</emphasis></para>
<programlisting role="XML"><![CDATA[<h:inputText value="#{bean.text}">
@@ -85,7 +85,7 @@
</note>
<para>With the help of <emphasis >
<property>"onsubmit"</property></emphasis> and <emphasis >
- <property>"oncomplete"</property></emphasis> attributes the component allows using JavaScript before (for request sending conditions checking) and after an AJAX response processing termination (for performance of user-defined activities on the client) </para>
+ <property>"oncomplete"</property></emphasis> attributes the component allows using JavaScript before (for request sending conditions checking) and after an Ajax response processing termination (for performance of user-defined activities on the client) </para>
<para><emphasis role="bold">Example:</emphasis></para>
<programlisting role="XML"><![CDATA[<h:selectOneMenu value="#{bean.text}">
<f:selectItem itemValue="First Item " itemLabel="First Item"/>
@@ -95,7 +95,7 @@
{form.reset(); return false;}" oncomplete="alert('Value succesfully stored')"/>
</h:selectOneMenu>]]></programlisting>
<para>In example there is the condition checking (confirm) is used before request sending and message printing after the request processing is over. </para>
- <para>The components allows different AJAX request managing ways for its various optimization in particular conditions such as:
+ <para>The components allows different Ajax request managing ways for its various optimization in particular conditions such as:
<itemizedlist>
<listitem>
<emphasis role="bold">Limitation of the submit area and updating area for the request.</emphasis>
@@ -123,7 +123,7 @@
</h:inputText>
<h:outputText value="#{person.name}" id="test"/>
</form>]]></programlisting>
- <para>In this example the component "h:messages" is always updated (as it capturing all AJAX requests, located in ajaxRendered <emphasis role="bold"><property><a4j:outputPanel></property></emphasis>), except the case when a response is sent from the input component from the example. On sending this component marks that updating area is limited to the defined in it components, it means that on its usage with "limitToList"="true" the only component updated is the one with "d"="test".</para>
+ <para>In this example the component "h:messages" is always updated (as it capturing all Ajax requests, located in ajaxRendered <emphasis role="bold"><property><a4j:outputPanel></property></emphasis>), except the case when a response is sent from the input component from the example. On sending this component marks that updating area is limited to the defined in it components, it means that on its usage with "limitToList"="true" the only component updated is the one with "d"="test".</para>
<itemizedlist>
<listitem>
<emphasis role="bold">Limitation of requests frequency and updates quantity after the responses. </emphasis>
@@ -133,7 +133,7 @@
<para><emphasis ><property>"eventQueue"</property></emphasis> is an attribute for naming of the queue where the next response is kept in till its processing, but if the next event comes in till this time is over, the waiting event is taken away, replacing with a new one.
</para>
- <para><emphasis ><property>"ignoreDupResponces"</property></emphasis> is an attribute that allows to disable any updates on the client after an AJAX request if another AJAX request is already sent.
+ <para><emphasis ><property>"ignoreDupResponces"</property></emphasis> is an attribute that allows to disable any updates on the client after an Ajax request if another Ajax request is already sent.
</para>
<para><emphasis ><property>"timeout"</property></emphasis> is an attribute that allows to set a time interval in millisecond to define a maximum time period of response wait time. In case of the interval interaction, a new request is sent and the previous one is canceled. Postprocessing of a response isn't performed.
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tab.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -119,7 +119,7 @@
<para>Switching mode could be defined not only for the whole panel <property>tab</property>, but also
for each particular <property>tab</property>, i.e. switching onto one <property>tab</property> could be
performed right on the client with the corresponding JavaScript and onto another
- <property>tab</property> with an AJAX request on the server. <property>Tab</property> switching modes
+ <property>tab</property> with an Ajax request on the server. <property>Tab</property> switching modes
are the same as <property>tabPanel</property> ones.</para>
<para>Each <property>tab</property> also has an attribute name (alias for <emphasis ><property>"id"</property></emphasis> attribute). Using this attribute value it's possible e.g. to set an active <property>tab</property> on a model level specifying this name in the corresponding attribute of the whole <property>tab</property>.</para>
<para>Except the specific component attributes it has all necessary attributes for JavaScript event definition.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -90,7 +90,7 @@
</listitem>
<listitem> Ajax<para>AJAX form submission is performed around the
<property>tabPanel</property>, content of the called <property>tabPanel</property> is
- uploaded on AJAX request and additionally specified elements in the <emphasis>
+ uploaded on Ajax request and additionally specified elements in the <emphasis>
<property>"reRender"</property>
</emphasis> attribute are rendered. Only one at a time <property>tabPanel</property> is
uploaded on the client.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -44,7 +44,7 @@
<section>
<title>Creating the Component with a Page Tag</title>
- <para>Here is a simple example as it might be used in a page: </para>
+ <para>Here is a simple example as it could be used in a page: </para>
<para>
<emphasis role="bold">Example:</emphasis>
@@ -79,7 +79,7 @@
<section>
<title>Details of Usage</title>
<para>As it was mentioned above, <property>togglePanel</property> splits content into named
- facets that rendered and processed when a click performed on controls linked to this
+ facets that become rendered and processed when a click performed on controls linked to this
<property>togglePanel</property> (either switched on the client or send requests on the
server for switching).</para>
<para>The initial component state is defined with <emphasis>
@@ -94,12 +94,12 @@
<itemizedlist>
<listitem> Server (DEFAULT)<para>The common submission is performed around
<property>togglePanel</property> and a page is completely rendered on a called panel.
- Only one at a time panel is uploaded onto the client side.</para>
+ Only one at a time the panel is uploaded onto the client side.</para>
</listitem>
<listitem> Ajax<para>AJAX form submission is performed around the panel, content of the called
- panel is uploaded on an AJAX request and additionally specified elements in the <emphasis>
+ panel is uploaded on an Ajax request and additionally specified elements in the <emphasis>
<property>"reRender"</property>
- </emphasis> attribute are rendered. Only one at a time panel is uploaded on the client
+ </emphasis> attribute are rendered. Only one at a time the panel is uploaded on the client
side.</para>
</listitem>
<listitem> Client<para> All panels are uploaded on the client side. The switching from the
Modified: trunk/docs/userguide/en/src/main/docbook/included/tree.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -44,7 +44,7 @@
<section>
<title>Creating the Component with a Page Tag</title>
- <para>Here is a simple example as it might be used in a page: </para>
+ <para>Here is a simple example as it could be used in a page: </para>
<para>
<emphasis role="bold">Example:</emphasis>
@@ -79,7 +79,7 @@
XmlTreeDataBuilder are implemented in the tree component. Hence, in order to provide your own
class for TreeNode, it's necessary only to implement this interface, i.e. the <emphasis>
<property>"var"</property>
- </emphasis> attribute contains a name providing an access to data defined with value. </para>
+ </emphasis> attribute contains a name providing an access to data defined with a value. </para>
<para>For data output, named <property>tree</property> nodes elements are used. Each element,
for example depending on its definition, could be rendered with markup defined in one of
<property>tree</property> nodes. It's defined with the <emphasis>
@@ -91,7 +91,6 @@
<property>"nodeFace"</property>
</emphasis> is undefined the first node inside the tree will be use by default. </para>
-
<para>
<emphasis role="bold">Example:</emphasis>
</para>
@@ -101,7 +100,6 @@
following conditions.</para>
<figure>
<title>Different nodes of tree</title>
-
<mediaobject>
<imageobject>
<imagedata fileref="images/tree2.gif"/>
@@ -118,7 +116,7 @@
<listitem>Client - all data is uploaded onto the server, the switching is implemented with a
client script</listitem>
</itemizedlist>
- <para>Common selecting allows also to activate AJAX requests with the <emphasis>
+ <para>Common selecting allows also to activate Ajax requests with the <emphasis>
<property>"ajaxSubmitSelection"</property>
</emphasis> attribute (true/false).</para>
<para>To set a model saving during requests, use the <emphasis>
@@ -164,7 +162,7 @@
<title>Built-In Drag and Drop</title>
<para>The tree component functionality provides a built-in support for Drag and Drop operations.
The main usage principles are the same as for Rich Faces Drag and Drop wrapper components.
- Hence, to get additional information on the topic, read the corresponding chapters: <link
+ Hence, to get additional information on the topic, read the corresponding chapters:<link
linkend="dndParam">"rich:dndParam"</link>
<link linkend="dragSupport">"rich:dragSupport"</link>
<link linkend="dragIndicator">"rich:dragIndicator"</link>
@@ -240,7 +238,7 @@
<para> Also standart HTML event attributes like "onclick", "onmousedown", "onmouseover" and etc.
could be used. Event handlers of a tree component capture events occured on any tree part. But
- event handlers of treeNode capture events occured on treeNode only except for children events.
+ event handlers of treeNode capture events occured on treeNode only, except for children events.
</para>
</section>
<section>
@@ -263,7 +261,7 @@
<para>There is only one skin parameter for the <property>tree</property> since <emphasis
role="bold">
<property><rich:tree></property>
- </emphasis> itself is a wrapper component for <property>tree</property> nodes. Look and feel
+ </emphasis> is a wrapper component for <property>tree</property> nodes. Look and feel
is described in details in the <link linkend="treeNode">"treeNode"
chapter</link>.</para>
<table>
Modified: trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -140,7 +140,7 @@
<para>Switching between expanded/collapsed modes is also managed on the tree level and defined
in <link linkend="tree">the corresponding section</link>.</para>
<para>Default nodes of the tree level as well as ones defined with the
- <property>treeNodes</property> component could send AJAX requests when selected with the
+ <property>treeNodes</property> component could send Ajax requests when selected with the
mouse, it's managed with the <emphasis>
<property>"ajaxSubmitSelection"</property>
</emphasis> attribute (true/false).</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml 2007-08-15 12:05:34 UTC (rev 2264)
+++ trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml 2007-08-15 12:23:18 UTC (rev 2265)
@@ -7,7 +7,7 @@
</sectioninfo>
<section>
<title>Description</title>
- <para>Component that presents the Microsoft <property>Virtual Earth map</property> in the JSF applications.</para>
+ <para>The component that presents the Microsoft <property>Virtual Earth map</property> in the JSF applications.</para>
<figure>
<title>virtualEarth component</title>
<mediaobject>
@@ -20,9 +20,9 @@
<section>
<title>Key Features</title>
<itemizedlist>
- <listitem>Presents the Microsoft <property>Virtual Earth map</property> functional</listitem>
+ <listitem>Presents the Microsoft <property>Virtual Earth map</property> functionality</listitem>
<listitem>Highly customizable via attributes</listitem>
- <listitem>No developers JavaScript writing needed to use on the pages</listitem>
+ <listitem>No developers JavaScript writing is needed to use it on the pages</listitem>
</itemizedlist>
</section>
</section>
18 years, 8 months
JBoss Rich Faces SVN: r2264 - trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2007-08-15 08:05:34 -0400 (Wed, 15 Aug 2007)
New Revision: 2264
Modified:
trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
Log:
small fix
Modified: trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
===================================================================
--- trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2007-08-15 11:53:57 UTC (rev 2263)
+++ trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2007-08-15 12:05:34 UTC (rev 2264)
@@ -7,8 +7,9 @@
Richfaces.Calendar.setElementPosition = function(element, baseElement, jointPoint, direction, offset)
{
// parameters:
- // jointPoint: {x:,y:} or ('left-top','right-top','left-bottom','right-bottom')
- // direction: ('left-top','right-top','left-bottom','right-bottom', 'auto')
+ // jointPoint: {x:,y:} or ('top-left','top-right','bottom'-left,'bottom-right')
+ // direction: ('top-left','top-right','bottom'-left,'bottom-right', 'auto')
+ // offset: {x:,y:}
var elementDim = Richfaces.Calendar.getOffsetDimensions(element);
var baseElementDim = Richfaces.Calendar.getOffsetDimensions(baseElement);
@@ -23,7 +24,7 @@
var re = /^(top|bottom)-(left|right)$/;
var match;
- if (typeof jointPoint=='object') {ox = jointPoint.x; oy=jointPoint.y}
+ if (typeof jointPoint=='object') {ox = jointPoint.x; oy = jointPoint.y}
else if ( jointPoint && (match=jointPoint.toLowerCase().match(re))!=null )
{
if (match[2]=='right') ox+=baseElementDim.width;
@@ -43,7 +44,7 @@
{
// auto
var theBest = {square:0};
- // jointPoint: right-bottom, direction: left-bottom
+ // jointPoint: bottom-right, direction: bottom-left
var rect = {right: baseOffset[0] + baseElementDim.width, top: baseOffset[1] + baseElementDim.height};
rect.left = rect.right - elementDim.width;
rect.bottom = rect.top + elementDim.height;
@@ -52,7 +53,7 @@
if (s!=0)
{
if (ox>=0 && oy>=0 && theBest.square<s) theBest = {x:ox, y:oy, square:s};
- // jointPoint: right-top, direction: left-top
+ // jointPoint: top-right, direction: top-left
rect = {right: baseOffset[0] + baseElementDim.width, bottom: baseOffset[1]};
rect.left = rect.right - elementDim.width;
rect.top = rect.bottom - elementDim.height;
@@ -61,7 +62,7 @@
if (s!=0)
{
if (ox>=0 && oy>=0 && theBest.square<s) theBest = {x:ox, y:oy, square:s};
- // jointPoint: left-bottom, direction: right-bottom
+ // jointPoint: bottom-left, direction: bottom-right
rect = {left: baseOffset[0], top: baseOffset[1] + baseElementDim.height};
rect.right = rect.left + elementDim.width;
rect.bottom = rect.top + elementDim.height;
@@ -70,7 +71,7 @@
if (s!=0)
{
if (ox>=0 && oy>=0 && theBest.square<s) theBest = {x:ox, y:oy, square:s};
- // jointPoint: left-top, direction: right-top
+ // jointPoint: top-left, direction: top-right
rect = {left: baseOffset[0], bottom: baseOffset[1]};
rect.right = rect.left + elementDim.width;
rect.top = rect.bottom - elementDim.height;
@@ -1165,6 +1166,6 @@
previousMonthControl: CalendarView.previousMonthControl,
currentMonthControl: CalendarView.currentMonthControl,
todayControl: CalendarView.todayControl,
- selectedDateControl: CalendarView.selectedDateControl,
+ selectedDateControl: CalendarView.selectedDateControl
//resetSelectedDateControl: CalendarView.resetSelectedDateControl,
});
\ No newline at end of file
18 years, 8 months
JBoss Rich Faces SVN: r2263 - trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script.
by richfaces-svn-commits@lists.jboss.org
Author: a.izobov
Date: 2007-08-15 07:53:57 -0400 (Wed, 15 Aug 2007)
New Revision: 2263
Modified:
trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js
Log:
http://jira.jboss.com/jira/browse/RF-504
Modified: trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js
===================================================================
--- trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js 2007-08-15 09:06:03 UTC (rev 2262)
+++ trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js 2007-08-15 11:53:57 UTC (rev 2263)
@@ -228,7 +228,9 @@
var handle = Event.element(event);
var pointer = Event.pointerX(event);
var offsets = Position.cumulativeOffset(this.track);
+ this.updating = true;
this.setValue(this.translateToValue( ( pointer - offsets[0] ) -(this.handleLength/2)));
+ this.updating = false;
var offsets = Position.cumulativeOffset(this.handle);
this.offsetX = pointer - offsets[0];
}
18 years, 8 months
JBoss Rich Faces SVN: r2262 - trunk/docs/userguide/en/src/main/docbook.
by richfaces-svn-commits@lists.jboss.org
Author: vkorluzhenko
Date: 2007-08-15 05:06:03 -0400 (Wed, 15 Aug 2007)
New Revision: 2262
Modified:
trunk/docs/userguide/en/src/main/docbook/master.xml
Log:
Modified: trunk/docs/userguide/en/src/main/docbook/master.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/master.xml 2007-08-14 22:32:01 UTC (rev 2261)
+++ trunk/docs/userguide/en/src/main/docbook/master.xml 2007-08-15 09:06:03 UTC (rev 2262)
@@ -90,11 +90,11 @@
&dataTable_table;
&dnd_table;
&dropDownMenu_table;
+&menuComponents_table;
&gmap_table;
&virtualEarth_table;
&inputNumberSlider_table;
&inputNumberSpinner_table;
-&menuComponents_table;
&message_table;
&modalPanel_table;
&panelMenu_table;
18 years, 8 months
JBoss Rich Faces SVN: r2261 - trunk/ui/insert/src/main/java/org/richfaces/ui/component.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-08-14 18:32:01 -0400 (Tue, 14 Aug 2007)
New Revision: 2261
Added:
trunk/ui/insert/src/main/java/org/richfaces/ui/component/Highlight.java
Modified:
trunk/ui/insert/src/main/java/org/richfaces/ui/component/UIInsert.java
Log:
Remove mandatory dependency from jhighlight library. ( it's optional )
Added: trunk/ui/insert/src/main/java/org/richfaces/ui/component/Highlight.java
===================================================================
--- trunk/ui/insert/src/main/java/org/richfaces/ui/component/Highlight.java (rev 0)
+++ trunk/ui/insert/src/main/java/org/richfaces/ui/component/Highlight.java 2007-08-14 22:32:01 UTC (rev 2261)
@@ -0,0 +1,62 @@
+/**
+ *
+ */
+package org.richfaces.ui.component;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+
+import javax.faces.FacesException;
+
+import com.uwyn.jhighlight.renderer.Renderer;
+import com.uwyn.jhighlight.renderer.XhtmlRendererFactory;
+
+/**
+ * @author asmirnov
+ *
+ */
+public class Highlight {
+
+
+
+ private Renderer _renderer;
+
+ public Highlight(String type) {
+ _renderer = XhtmlRendererFactory.getRenderer(type);
+ if(null == _renderer){
+ throw new FacesException("Unknown type ["+type+"] to highlight source");
+ }
+ }
+
+ /**
+ * @param name
+ * @param in
+ * @param out
+ * @param encoding
+ * @param fragment
+ * @throws IOException
+ * @see com.uwyn.jhighlight.renderer.Renderer#highlight(java.lang.String, java.io.InputStream, java.io.OutputStream, java.lang.String, boolean)
+ */
+ public void highlight(String name, InputStream in, OutputStream out,
+ String encoding, boolean fragment) throws IOException {
+ _renderer.highlight(name, in, out, encoding, fragment);
+ }
+
+ /**
+ * @param name
+ * @param in
+ * @param encoding
+ * @param fragment
+ * @return
+ * @throws IOException
+ * @see com.uwyn.jhighlight.renderer.Renderer#highlight(java.lang.String, java.lang.String, java.lang.String, boolean)
+ */
+ public String highlight(String name, String in, String encoding,
+ boolean fragment) throws IOException {
+ return _renderer.highlight(name, in, encoding, fragment);
+ }
+
+
+
+}
Property changes on: trunk/ui/insert/src/main/java/org/richfaces/ui/component/Highlight.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Date Revision Author
Modified: trunk/ui/insert/src/main/java/org/richfaces/ui/component/UIInsert.java
===================================================================
--- trunk/ui/insert/src/main/java/org/richfaces/ui/component/UIInsert.java 2007-08-14 22:17:21 UTC (rev 2260)
+++ trunk/ui/insert/src/main/java/org/richfaces/ui/component/UIInsert.java 2007-08-14 22:32:01 UTC (rev 2261)
@@ -12,9 +12,6 @@
import javax.faces.FacesException;
import javax.faces.component.UIComponentBase;
-import com.uwyn.jhighlight.renderer.Renderer;
-import com.uwyn.jhighlight.renderer.XhtmlRendererFactory;
-
/**
* JSF component class
*
@@ -28,17 +25,19 @@
public String getContent() {
String content = null;
if (null != getSrc()) {
- InputStream inputStream = getFacesContext().getExternalContext().getResourceAsStream(getSrc());
- if(null != inputStream){
- if(null == getHighlight()){
+ InputStream inputStream = getFacesContext().getExternalContext()
+ .getResourceAsStream(getSrc());
+ if (null != inputStream) {
+ if (null == getHighlight()) {
StringBuffer buff = new StringBuffer(1024);
InputStreamReader in = new InputStreamReader(inputStream);
char[] temp = new char[1024];
try {
int bytes;
- while((bytes = in.read(temp))>0){
- buff.append(temp,0,bytes);
- };
+ while ((bytes = in.read(temp)) > 0) {
+ buff.append(temp, 0, bytes);
+ }
+ ;
} catch (IOException e) {
throw new FacesException(e);
} finally {
@@ -50,28 +49,31 @@
}
content = buff.toString();
} else {
- Renderer renderer = XhtmlRendererFactory.getRenderer(getHighlight());
- if(null != renderer){
- ByteArrayOutputStream out = new ByteArrayOutputStream();
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ try {
+ Highlight highlighter = new Highlight(getHighlight());
+ highlighter.highlight(getSrc(), inputStream, out, null,
+ true);
+ } catch (IOException e) {
+ throw new FacesException(e);
+ } finally {
try {
- renderer.highlight(getSrc(), inputStream, out, null, true);
+ inputStream.close();
} catch (IOException e) {
throw new FacesException(e);
- } finally {
- try {
- inputStream.close();
- } catch (IOException e) {
- throw new FacesException(e);
- }
}
- content = out.toString();
}
+ content = out.toString();
}
} else {
- throw new FacesException("Resource '"+getSrc()+"' for a component <rich:insert > "+getClientId(getFacesContext())+" not found");
+ throw new FacesException("Resource '" + getSrc()
+ + "' for a component <rich:insert > "
+ + getClientId(getFacesContext()) + " not found");
}
} else {
- throw new FacesException("Attribute 'scr' for a component <rich:insert > "+getClientId(getFacesContext())+" must be set");
+ throw new FacesException(
+ "Attribute 'scr' for a component <rich:insert > "
+ + getClientId(getFacesContext()) + " must be set");
}
return content;
18 years, 8 months
JBoss Rich Faces SVN: r2260 - in trunk: extensions/portlet/src/main/java/org/ajax4jsf/portlet/context and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-08-14 18:17:21 -0400 (Tue, 14 Aug 2007)
New Revision: 2260
Added:
trunk/samples/ajaxPortlet/src/main/webapp/WEB-INF/.faces-config.xml.jsfdia
Modified:
trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/application/PortletViewState.java
trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/FacesContextFactoryImpl.java
trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/PortletContextImpl.java
trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/ServletContextImpl.java
trunk/framework/impl/src/main/java/org/ajax4jsf/component/UIDataAdaptor.java
trunk/samples/ajaxPortlet/pom.xml
trunk/samples/ajaxPortlet/src/main/webapp/WEB-INF/faces-config.xml
Log:
Continue progress on the http://jira.jboss.com/jira/browse/RF-596 bug. Fix state saving.
Start progress to restore portal library.
Modified: trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/application/PortletViewState.java
===================================================================
--- trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/application/PortletViewState.java 2007-08-14 19:32:25 UTC (rev 2259)
+++ trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/application/PortletViewState.java 2007-08-14 22:17:21 UTC (rev 2260)
@@ -231,7 +231,7 @@
Entry element = (Entry) i.next();
UIComponent facet = ((TreeStrutureNode) element.getValue())
.restore(loader);
- component.getFacets().put(element.getKey(), facet);
+ component.getFacets().put((String) element.getKey(), facet);
}
for (Iterator i = children.iterator(); i.hasNext();) {
TreeStrutureNode node = (TreeStrutureNode) i.next();
Modified: trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/FacesContextFactoryImpl.java
===================================================================
--- trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/FacesContextFactoryImpl.java 2007-08-14 19:32:25 UTC (rev 2259)
+++ trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/FacesContextFactoryImpl.java 2007-08-14 22:17:21 UTC (rev 2260)
@@ -65,6 +65,10 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
+
/**
*
* @author shura Implementation of <code>FacesContextFactory</code> for
@@ -87,6 +91,7 @@
*/
// private FacesContextFactory defaultFacesContextFactory;
+ private static final Log _log = LogFactory.getLog(FacesContextFactoryImpl.class);
/**
*
@@ -102,6 +107,9 @@
// if (this.defaultFacesContextFactory == null) {
// this.defaultFacesContextFactory = defaultFactory;
// }
+ if(_log.isDebugEnabled()){
+ _log.debug("Portal - specific FacesContextFactory has initialised");
+ }
}
/*
@@ -127,10 +135,16 @@
&& (request instanceof PortletRequest)
&& (response instanceof PortletResponse)) {
externalContext = new PortletContextImpl((PortletContext)context, (PortletRequest)request, (PortletResponse)response);
+ if(_log.isDebugEnabled()){
+ _log.debug("Portal request - create portal version of the ExternalContext");
+ }
} else if ((context instanceof ServletContext)
&& (request instanceof HttpServletRequest)
&& (response instanceof HttpServletResponse)) {
externalContext = new ServletContextImpl((ServletContext)context, (HttpServletRequest)request, (HttpServletResponse)response);
+ if(_log.isDebugEnabled()){
+ _log.debug("Servlet request - create HttpServlet version of the ExternalContext");
+ }
} else {
throw new FacesException(
"Unsupported environment. Only servlet or portlet is allowed");
Modified: trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/PortletContextImpl.java
===================================================================
--- trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/PortletContextImpl.java 2007-08-14 19:32:25 UTC (rev 2259)
+++ trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/PortletContextImpl.java 2007-08-14 22:17:21 UTC (rev 2260)
@@ -5,6 +5,7 @@
import java.io.IOException;
import java.io.InputStream;
+import java.io.UnsupportedEncodingException;
import java.net.MalformedURLException;
import java.net.URL;
import java.security.Principal;
@@ -41,7 +42,56 @@
PortletResponse response) {
super(context, request, response);
}
+
+ public void setResponseCharacterEncoding(String encoding) {
+ // Do nothing
+ }
+
+ public String getResponseCharacterEncoding() {
+ PortletResponse portletResponse = getPortletResponse();
+ if (portletResponse instanceof RenderResponse) {
+ RenderResponse renderResponse = (RenderResponse) portletResponse;
+ return renderResponse.getCharacterEncoding();
+ }else {
+ return null;
+ }
+ }
+
+
+ public String getResponseContentType() {
+ PortletResponse portletResponse = getPortletResponse();
+ if (portletResponse instanceof RenderResponse) {
+ RenderResponse renderResponse = (RenderResponse) portletResponse;
+ return renderResponse.getContentType();
+ }else {
+ return null;
+ }
+ }
+ public void setRequestCharacterEncoding(String encoding)
+ throws UnsupportedEncodingException {
+ PortletRequest portletRequest = getPortletRequest();
+ if (portletRequest instanceof ActionRequest) {
+ ActionRequest actionRequest = (ActionRequest) portletRequest;
+ actionRequest.setCharacterEncoding(encoding);
+ }
+ }
+
+ public String getRequestCharacterEncoding() {
+ PortletRequest portletRequest = getPortletRequest();
+ if (portletRequest instanceof ActionRequest) {
+ ActionRequest actionRequest = (ActionRequest) portletRequest;
+ return actionRequest.getCharacterEncoding();
+ } else {
+ return null;
+ }
+ }
+
+
+ public String getRequestContentType() {
+ return null;
+ }
+
private PortletContext getPortletContext() {
return (PortletContext) getContext();
}
Modified: trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/ServletContextImpl.java
===================================================================
--- trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/ServletContextImpl.java 2007-08-14 19:32:25 UTC (rev 2259)
+++ trunk/extensions/portlet/src/main/java/org/ajax4jsf/portlet/context/ServletContextImpl.java 2007-08-14 22:17:21 UTC (rev 2260)
@@ -5,6 +5,7 @@
import java.io.IOException;
import java.io.InputStream;
+import java.io.UnsupportedEncodingException;
import java.net.MalformedURLException;
import java.net.URL;
import java.security.Principal;
@@ -48,7 +49,35 @@
public ServletContextImpl(ServletContext context, HttpServletRequest request, HttpServletResponse response) {
super(context, request, response);
}
+
+ public void setResponseCharacterEncoding(String encoding) {
+
+ getHttpResponse().setCharacterEncoding(encoding);
+ }
+
+ public String getResponseCharacterEncoding() {
+ return getHttpResponse().getCharacterEncoding();
+ }
+
+
+ public String getResponseContentType() {
+ return getHttpResponse().getContentType();
+ }
+ public void setRequestCharacterEncoding(String encoding)
+ throws UnsupportedEncodingException {
+ getHttpRequest().setCharacterEncoding(encoding);
+ }
+
+ public String getRequestCharacterEncoding() {
+ return getHttpRequest().getCharacterEncoding();
+ }
+
+
+ public String getRequestContentType() {
+ return getHttpRequest().getContentType();
+ }
+
private HttpServletRequest getHttpRequest() {
return (HttpServletRequest) getRequest();
}
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/component/UIDataAdaptor.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/component/UIDataAdaptor.java 2007-08-14 19:32:25 UTC (rev 2259)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/component/UIDataAdaptor.java 2007-08-14 22:17:21 UTC (rev 2260)
@@ -974,7 +974,7 @@
public void processUpdates(FacesContext faces) {
processUpdates(faces, null);
- resetComponent(faces);
+// resetComponent(faces);
}
protected void processValidators(FacesContext faces, Object argument) {
@@ -989,9 +989,9 @@
public void encodeBegin(FacesContext context) throws IOException {
resetDataModel();
- // if(!keepSaved(context)){
- // childState.remove(getBaseClientId(context));
- // }
+ if(!keepSaved(context)){
+ childState.remove(getBaseClientId(context));
+ }
// Mark component as used, if parent UIData change own range states not
// accessed at
// encode phase must be unsaved.
@@ -1287,6 +1287,8 @@
this._statesMap.put(key, compState);
this._modelsMap.put(key, idState.model);
}
+ this._currentState = (DataComponentState) _statesMap.get(getBaseClientId(faces));
+ this._currentModel = (ExtendedDataModel) _modelsMap.get(getBaseClientId(faces));
}
public Object saveState(FacesContext faces) {
@@ -1299,6 +1301,8 @@
Set encodedIds = getEncodedIds();
// Save all states of component and data model for all valies of
// clientId, encoded in this request.
+ this._statesMap.put(getBaseClientId(faces), this._currentState);
+ this._modelsMap.put(getBaseClientId(faces), this._currentModel);
for (Iterator iter = this._statesMap.entrySet().iterator(); iter
.hasNext();) {
Map.Entry stateEntry = (Map.Entry) iter.next();
Modified: trunk/samples/ajaxPortlet/pom.xml
===================================================================
--- trunk/samples/ajaxPortlet/pom.xml 2007-08-14 19:32:25 UTC (rev 2259)
+++ trunk/samples/ajaxPortlet/pom.xml 2007-08-14 22:17:21 UTC (rev 2260)
@@ -39,6 +39,11 @@
</exclusion>
</exclusions>
</dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ </dependency>
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
Added: trunk/samples/ajaxPortlet/src/main/webapp/WEB-INF/.faces-config.xml.jsfdia
===================================================================
--- trunk/samples/ajaxPortlet/src/main/webapp/WEB-INF/.faces-config.xml.jsfdia (rev 0)
+++ trunk/samples/ajaxPortlet/src/main/webapp/WEB-INF/.faces-config.xml.jsfdia 2007-08-14 22:17:21 UTC (rev 2260)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<PROCESS ENTITY="JSFProcess">
+ <PROCESS-ITEM ENTITY="JSFProcessGroup" NAME="rules:#jsf#start.xhtml"
+ PATH="/jsf/start.xhtml" SHAPE="32,17,0,0">
+ <PROCESS-ITEM ENTITY="JSFProcessItem" ID="rules:#jsf#start.xhtml:0"
+ NAME="item" PATH="/jsf/start.xhtml">
+ <PROCESS-ITEM-OUTPUT ENTITY="JSFProcessItemOutput"
+ ID="repeater::#jsf#repeater.xhtml" NAME="output"
+ PATH="/jsf/repeater.xhtml" TARGET="rules:#jsf#repeater.xhtml" TITLE="repeater"/>
+ </PROCESS-ITEM>
+ </PROCESS-ITEM>
+ <PROCESS-ITEM ENTITY="JSFProcessGroup" NAME="rules:#jsf#repeater.xhtml"
+ PATH="/jsf/repeater.xhtml" SHAPE="240,33,0,0">
+ <PROCESS-ITEM ENTITY="JSFProcessItem" ID="rules:#jsf#repeater.xhtml:0"
+ NAME="item" PATH="/jsf/repeater.xhtml">
+ <PROCESS-ITEM-OUTPUT ENTITY="JSFProcessItemOutput"
+ ID="start::#jsf#start.xhtml" NAME="output" PATH="/jsf/start.xhtml"
+ TARGET="rules:#jsf#start.xhtml" TITLE="start"/>
+ </PROCESS-ITEM>
+ </PROCESS-ITEM>
+</PROCESS>
Modified: trunk/samples/ajaxPortlet/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/samples/ajaxPortlet/src/main/webapp/WEB-INF/faces-config.xml 2007-08-14 19:32:25 UTC (rev 2259)
+++ trunk/samples/ajaxPortlet/src/main/webapp/WEB-INF/faces-config.xml 2007-08-14 22:17:21 UTC (rev 2260)
@@ -2,38 +2,58 @@
<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
"http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
<faces-config>
- <managed-bean>
- <managed-bean-name>bean</managed-bean-name>
- <managed-bean-class>portal.Bean</managed-bean-class>
- <managed-bean-scope>session</managed-bean-scope>
- </managed-bean>
- <navigation-rule>
- <from-view-id>/jsf/start.xhtml</from-view-id>
- <navigation-case>
- <from-outcome>repeater</from-outcome>
- <to-view-id>/jsf/repeater.xhtml</to-view-id>
- </navigation-case>
- </navigation-rule>
- <navigation-rule>
- <from-view-id>/jsf/repeater.xhtml</from-view-id>
- <navigation-case>
- <from-outcome>start</from-outcome>
- <to-view-id>/jsf/start.xhtml</to-view-id>
- </navigation-case>
- </navigation-rule>
- <render-kit>
- <renderer>
- <description>override the viewroot</description>
- <component-family>javax.faces.ViewRoot</component-family>
- <renderer-type>javax.faces.ViewRoot</renderer-type>
- <renderer-class>org.ajax4jsf.portlet.renderkit.portlet.PortletAjaxViewRootRenderer</renderer-class>
- </renderer>
- </render-kit>
- <application>
- <view-handler>org.ajax4jsf.portlet.application.PortletViewHandler</view-handler>
- <state-manager>org.ajax4jsf.portlet.application.PortalStateManager</state-manager>
- <!--
- <view-handler>com.sun.facelets.FaceletPortletViewHandler</view-handler>
- -->
- </application>
+ <managed-bean>
+ <managed-bean-name>bean</managed-bean-name>
+ <managed-bean-class>portal.Bean</managed-bean-class>
+ <managed-bean-scope>session</managed-bean-scope>
+ </managed-bean>
+ <navigation-rule>
+ <from-view-id>/jsf/start.xhtml</from-view-id>
+ <navigation-case>
+ <from-outcome>repeater</from-outcome>
+ <to-view-id>/jsf/repeater.xhtml</to-view-id>
+ </navigation-case>
+ </navigation-rule>
+ <navigation-rule>
+ <from-view-id>/jsf/repeater.xhtml</from-view-id>
+ <navigation-case>
+ <from-outcome>start</from-outcome>
+ <to-view-id>/jsf/start.xhtml</to-view-id>
+ </navigation-case>
+ </navigation-rule>
+ <render-kit>
+ <renderer>
+ <description>override the viewroot</description>
+ <component-family>javax.faces.ViewRoot</component-family>
+ <renderer-type>javax.faces.ViewRoot</renderer-type>
+ <renderer-class>
+ org.ajax4jsf.portlet.renderkit.portlet.PortletAjaxViewRootRenderer
+ </renderer-class>
+ </renderer>
+ </render-kit>
+ <application>
+ <view-handler>
+ org.ajax4jsf.portlet.application.PortletViewHandler
+ </view-handler>
+ <state-manager>
+ org.ajax4jsf.portlet.application.PortalStateManager
+ </state-manager>
+ <!--
+ <view-handler>com.sun.facelets.FaceletPortletViewHandler</view-handler>
+ -->
+ </application>
+ <factory>
+ <faces-context-factory>
+ org.ajax4jsf.portlet.context.FacesContextFactoryImpl
+ </faces-context-factory>
+ </factory>
+
+ <managed-bean>
+ <managed-bean-name>ajaxContext</managed-bean-name>
+ <managed-bean-class>
+ org.ajax4jsf.portlet.PortletAjaxContext
+ </managed-bean-class>
+ <managed-bean-scope>request</managed-bean-scope>
+ </managed-bean>
+
</faces-config>
18 years, 8 months
JBoss Rich Faces SVN: r2259 - in trunk: ui and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-08-14 15:32:25 -0400 (Tue, 14 Aug 2007)
New Revision: 2259
Modified:
trunk/samples/pom.xml
trunk/ui/pom.xml
Log:
scrollable-grid excluded from build
Modified: trunk/samples/pom.xml
===================================================================
--- trunk/samples/pom.xml 2007-08-14 16:55:33 UTC (rev 2258)
+++ trunk/samples/pom.xml 2007-08-14 19:32:25 UTC (rev 2259)
@@ -1,418 +1,418 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>root</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces</groupId>
- <artifactId>samples</artifactId>
- <packaging>pom</packaging>
- <name>RichFaces Components Examples</name>
- <version>3.1.0-SNAPSHOT</version>
- <url>http://labs.jboss.com/jbossrichfaces/samples</url>
- <properties>
- <!-- -->
- </properties>
- <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <!--
- -->
- <version>6.1.3</version>
- <configuration>
- <scanIntervalSeconds>10</scanIntervalSeconds>
- <connectors>
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
- <port>8080</port>
- <maxIdleTime>60000</maxIdleTime>
- </connector>
- </connectors>
- </configuration>
-
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- <executions>
- <execution>
- <id>surefire-it</id>
- <phase>integration-test</phase>
- <goals>
- <goal>test</goal>
- </goals>
- <configuration>
- <skip>false</skip>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>core</artifactId>
- <version>3.1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.sun.facelets</groupId>
- <artifactId>jsf-facelets</artifactId>
- <version>1.1.12</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>0.9.5</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>jsf1_1</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.1</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jsf1_2</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.2</value>
- </property>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_04</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_04</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat5</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_04</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_04</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat6</id>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_04</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_04</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jboss42</id>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_04</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_04</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>myfaces</id>
- <properties>
- <myfaces>1.1.5</myfaces>
- <tomahawk>1.1.5</tomahawk>
- </properties>
- <build>
- <plugins />
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.1.0-SNAPSHOT</version>
- <exclusions>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-api</artifactId>
- <version>${myfaces}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-impl</artifactId>
- <version>${myfaces}</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
- <modules>
- <module>skins</module>
- <module>separator-sample</module>
- <module>panel-sample</module>
- <module>gmap-sample</module>
- <module>togglePanel-sample</module>
- <module>tabPanelDemo</module>
- <module>simpleTogglePanel-sample</module>
- <module>inputNumberSpinnerDemo</module>
- <module>inputNumberSliderDemo</module>
- <module>panelbar-sample</module>
- <module>toolBarDemo</module>
- <module>tree-demo</module>
- <module>dataFilterSliderDemo</module>
- <module>suggestionbox-sample</module>
- <module>dragDropDemo</module>
- <module>dataTableDemo</module>
- <module>modalpanel-sample</module>
- <module>datascroller-sample</module>
- <module>richfaces-demo</module>
- <module>dropdownmenu-sample</module>
- <module>tooltip-sample</module>
- <module>calendar-sample</module>
- <module>treeModelDemo</module>
- <module>local-value-demo</module>
- <!--
- <module>ajaxPortlet</module>
- -->
- <module>panelmenu-sample</module>
- <module>rich-message-demo</module>
- <module>scrollable-grid-demo</module>
- </modules>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>root</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.1.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>samples</artifactId>
+ <packaging>pom</packaging>
+ <name>RichFaces Components Examples</name>
+ <version>3.1.0-SNAPSHOT</version>
+ <url>http://labs.jboss.com/jbossrichfaces/samples</url>
+ <properties>
+ <!-- -->
+ </properties>
+ <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <!--
+ -->
+ <version>6.1.3</version>
+ <configuration>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
+ <connectors>
+ <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>8080</port>
+ <maxIdleTime>60000</maxIdleTime>
+ </connector>
+ </connectors>
+ </configuration>
+
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ <executions>
+ <execution>
+ <id>surefire-it</id>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <skip>false</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>core</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.facelets</groupId>
+ <artifactId>jsf-facelets</artifactId>
+ <version>1.1.12</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>0.9.5</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ <profiles>
+ <profile>
+ <id>jsf1_1</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.1</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jsf1_2</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.2</value>
+ </property>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_04</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_04</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat5</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_04</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_04</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat6</id>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_04</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_04</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jboss42</id>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_04</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_04</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>myfaces</id>
+ <properties>
+ <myfaces>1.1.5</myfaces>
+ <tomahawk>1.1.5</tomahawk>
+ </properties>
+ <build>
+ <plugins />
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-api</artifactId>
+ <version>${myfaces}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-impl</artifactId>
+ <version>${myfaces}</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ </profiles>
+ <modules>
+ <module>skins</module>
+ <module>separator-sample</module>
+ <module>panel-sample</module>
+ <module>gmap-sample</module>
+ <module>togglePanel-sample</module>
+ <module>tabPanelDemo</module>
+ <module>simpleTogglePanel-sample</module>
+ <module>inputNumberSpinnerDemo</module>
+ <module>inputNumberSliderDemo</module>
+ <module>panelbar-sample</module>
+ <module>toolBarDemo</module>
+ <module>tree-demo</module>
+ <module>dataFilterSliderDemo</module>
+ <module>suggestionbox-sample</module>
+ <module>dragDropDemo</module>
+ <module>dataTableDemo</module>
+ <module>modalpanel-sample</module>
+ <module>datascroller-sample</module>
+ <module>richfaces-demo</module>
+ <module>dropdownmenu-sample</module>
+ <module>tooltip-sample</module>
+ <module>calendar-sample</module>
+ <module>treeModelDemo</module>
+ <module>local-value-demo</module>
+ <!--
+ <module>ajaxPortlet</module>
+ -->
+ <module>panelmenu-sample</module>
+ <module>rich-message-demo</module>
+ <!--module>scrollable-grid-demo</module-->
+ </modules>
</project>
\ No newline at end of file
Modified: trunk/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2007-08-14 16:55:33 UTC (rev 2258)
+++ trunk/ui/pom.xml 2007-08-14 19:32:25 UTC (rev 2259)
@@ -1,259 +1,259 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>root</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces</groupId>
- <artifactId>ui</artifactId>
- <packaging>pom</packaging>
- <name>RichFaces Components</name>
- <properties>
- <maven.test.failure.ignore>true</maven.test.failure.ignore>
- <!-- -->
- </properties>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-source</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <index>true</index>
- <manifest>
- <addDefaultSpecificationEntries>
- true
- </addDefaultSpecificationEntries>
- <addDefaultImplementationEntries>
- true
- </addDefaultImplementationEntries>
- </manifest>
- <manifestEntries>
- <mode>development</mode>
- <Build-Number>
- ${buildNumber}
- </Build-Number>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <modules>
- <module>core</module>
- <module>drag-drop</module>
- <module>effect</module>
- <module>panel</module>
- <module>panelbar</module>
- <module>dataFilterSlider</module>
- <module>gmap</module>
- <module>virtualEarth</module>
- <module>separator</module>
- <module>spacer</module>
- <module>paint2D</module>
- <module>togglePanel</module>
- <module>tabPanel</module>
- <module>simpleTogglePanel</module>
- <module>toolBar</module>
- <module>inputnumber-slider</module>
- <module>inputnumber-spinner</module>
- <module>tree</module>
- <module>suggestionbox</module>
- <module>dataTable</module>
- <module>modal-panel</module>
- <module>datascroller</module>
- <module>menu-components</module>
- <module>dropdown-menu</module>
- <module>tooltip</module>
- <module>panelmenu</module>
- <module>calendar</module>
- <module>treeModel</module>
- <module>message</module>
- <module>scrollable-grid</module>
- <module>insert</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.1_02</version>
- <exclusions>
- <exclusion>
- <artifactId>jsp-api</artifactId>
- <groupId>javax.servlet.jsp</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jstl</artifactId>
- <groupId>javax.servlet.jsp.jstl</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.1_02</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <artifactId>jsp-api</artifactId>
- <groupId>javax.servlet.jsp</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jstl</artifactId>
- <groupId>javax.servlet.jsp.jstl</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>htmlunit</groupId>
- <artifactId>htmlunit</artifactId>
- <version>1.10</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2</version>
- </dependency>
- <dependency>
- <groupId>com.sun.facelets</groupId>
- <artifactId>jsf-facelets</artifactId>
- <version>1.1.12</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <reporting>
- <plugins>
- <plugin>
- <artifactId>
- maven-project-info-reports-plugin
- </artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <quiet>true</quiet>
- </configuration>
- </plugin>
- <!--
- <plugin>
- <artifactId>maven-checkstyle-plugin</artifactId>
- </plugin>
- --><!--
- <plugin>
- <artifactId>maven-pmd-plugin</artifactId>
- </plugin>
- -->
- <plugin>
- <artifactId>maven-jxr-plugin</artifactId>
- <configuration>
- <aggregate>true</aggregate>
- </configuration>
- </plugin>
- <!--
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>jdepend-maven-plugin</artifactId>
- </plugin>
- -->
- <!--
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>changelog-maven-plugin</artifactId>
- </plugin>
- -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <configuration>
- <xmlOutput>false</xmlOutput>
- <threshold>Normal</threshold>
- <effort>Max</effort>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-report-plugin</artifactId>
- </plugin>
- </plugins>
- </reporting>
- <distributionManagement>
- <repository>
- <uniqueVersion>false</uniqueVersion>
- <id>release-repository</id>
- <url>${releaseRepository}</url>
- </repository>
- <snapshotRepository>
- <id>snap-repository</id>
- <url>${snapshotRepository}</url>
- </snapshotRepository>
- <site>
- <id>richfaces-site</id>
- <url>richfaces/</url>
- </site>
- <downloadUrl>
- http://labs.jboss.com/portal/jbossrichfaces/downloads
- </downloadUrl>
- </distributionManagement>
- <profiles>
- </profiles>
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>root</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.1.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>ui</artifactId>
+ <packaging>pom</packaging>
+ <name>RichFaces Components</name>
+ <properties>
+ <maven.test.failure.ignore>true</maven.test.failure.ignore>
+ <!-- -->
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-source</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <index>true</index>
+ <manifest>
+ <addDefaultSpecificationEntries>
+ true
+ </addDefaultSpecificationEntries>
+ <addDefaultImplementationEntries>
+ true
+ </addDefaultImplementationEntries>
+ </manifest>
+ <manifestEntries>
+ <mode>development</mode>
+ <Build-Number>
+ ${buildNumber}
+ </Build-Number>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ <modules>
+ <module>core</module>
+ <module>drag-drop</module>
+ <module>effect</module>
+ <module>panel</module>
+ <module>panelbar</module>
+ <module>dataFilterSlider</module>
+ <module>gmap</module>
+ <module>virtualEarth</module>
+ <module>separator</module>
+ <module>spacer</module>
+ <module>paint2D</module>
+ <module>togglePanel</module>
+ <module>tabPanel</module>
+ <module>simpleTogglePanel</module>
+ <module>toolBar</module>
+ <module>inputnumber-slider</module>
+ <module>inputnumber-spinner</module>
+ <module>tree</module>
+ <module>suggestionbox</module>
+ <module>dataTable</module>
+ <module>modal-panel</module>
+ <module>datascroller</module>
+ <module>menu-components</module>
+ <module>dropdown-menu</module>
+ <module>tooltip</module>
+ <module>panelmenu</module>
+ <module>calendar</module>
+ <module>treeModel</module>
+ <module>message</module>
+ <!--module>scrollable-grid</module-->
+ <module>insert</module>
+ </modules>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.1_02</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>jsp-api</artifactId>
+ <groupId>javax.servlet.jsp</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>jstl</artifactId>
+ <groupId>javax.servlet.jsp.jstl</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.1_02</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>jsp-api</artifactId>
+ <groupId>javax.servlet.jsp</groupId>
+ </exclusion>
+ <exclusion>
+ <artifactId>jstl</artifactId>
+ <groupId>javax.servlet.jsp.jstl</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-test</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>htmlunit</groupId>
+ <artifactId>htmlunit</artifactId>
+ <version>1.10</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.facelets</groupId>
+ <artifactId>jsf-facelets</artifactId>
+ <version>1.1.12</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>
+ maven-project-info-reports-plugin
+ </artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <quiet>true</quiet>
+ </configuration>
+ </plugin>
+ <!--
+ <plugin>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ </plugin>
+ --><!--
+ <plugin>
+ <artifactId>maven-pmd-plugin</artifactId>
+ </plugin>
+ -->
+ <plugin>
+ <artifactId>maven-jxr-plugin</artifactId>
+ <configuration>
+ <aggregate>true</aggregate>
+ </configuration>
+ </plugin>
+ <!--
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jdepend-maven-plugin</artifactId>
+ </plugin>
+ -->
+ <!--
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>changelog-maven-plugin</artifactId>
+ </plugin>
+ -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <configuration>
+ <xmlOutput>false</xmlOutput>
+ <threshold>Normal</threshold>
+ <effort>Max</effort>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+ <distributionManagement>
+ <repository>
+ <uniqueVersion>false</uniqueVersion>
+ <id>release-repository</id>
+ <url>${releaseRepository}</url>
+ </repository>
+ <snapshotRepository>
+ <id>snap-repository</id>
+ <url>${snapshotRepository}</url>
+ </snapshotRepository>
+ <site>
+ <id>richfaces-site</id>
+ <url>richfaces/</url>
+ </site>
+ <downloadUrl>
+ http://labs.jboss.com/portal/jbossrichfaces/downloads
+ </downloadUrl>
+ </distributionManagement>
+ <profiles>
+ </profiles>
</project>
\ No newline at end of file
18 years, 8 months
JBoss Rich Faces SVN: r2258 - trunk/test-applications/jsp/src/main/webapp/WEB-INF.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-08-14 12:55:33 -0400 (Tue, 14 Aug 2007)
New Revision: 2258
Added:
trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Message.xml
trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-VirtualEarth.xml
Modified:
trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config.xml
trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml
Log:
Added: trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Message.xml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Message.xml (rev 0)
+++ trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Message.xml 2007-08-14 16:55:33 UTC (rev 2258)
@@ -0,0 +1,14 @@
+<?xml version="1.0"?>
+<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
+ "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
+<faces-config>
+ <managed-bean>
+ <managed-bean-name>message</managed-bean-name>
+ <managed-bean-class>message.Message</managed-bean-class>
+ <managed-bean-scope>session</managed-bean-scope>
+ </managed-bean>
+ <validator>
+ <validator-id>MessageValidator</validator-id>
+ <validator-class>message.MessageValidator</validator-class>
+ </validator>
+</faces-config>
Added: trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-VirtualEarth.xml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-VirtualEarth.xml (rev 0)
+++ trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-VirtualEarth.xml 2007-08-14 16:55:33 UTC (rev 2258)
@@ -0,0 +1,17 @@
+<?xml version="1.0"?>
+<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
+ "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
+<faces-config>
+ <managed-bean>
+ <managed-bean-name>virtualEarth</managed-bean-name>
+ <managed-bean-class>
+ virtualEarth.VirtualEarth
+ </managed-bean-class>
+ <managed-bean-scope>session</managed-bean-scope>
+ <managed-property>
+ <property-name>zoom</property-name>
+ <property-class>java.lang.String</property-class>
+ <value>10</value>
+ </managed-property>
+ </managed-bean>
+</faces-config>
Modified: trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config.xml 2007-08-14 16:54:20 UTC (rev 2257)
+++ trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config.xml 2007-08-14 16:55:33 UTC (rev 2258)
@@ -96,6 +96,14 @@
<from-outcome>Gmap</from-outcome>
<to-view-id>/Gmap/Gmap.jsp</to-view-id>
</navigation-case>
+ <navigation-case>
+ <from-outcome>Message</from-outcome>
+ <to-view-id>/Message/Message.jsp</to-view-id>
+ </navigation-case>
+ <navigation-case>
+ <from-outcome>VirtualEarth</from-outcome>
+ <to-view-id>/VirtualEarth/VirtualEarth.jsp</to-view-id>
+ </navigation-case>
</navigation-rule>
<navigation-rule>
<from-view-id>*</from-view-id>
Modified: trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml 2007-08-14 16:54:20 UTC (rev 2257)
+++ trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml 2007-08-14 16:55:33 UTC (rev 2258)
@@ -12,7 +12,7 @@
</context-param>
<context-param>
<param-name>javax.faces.CONFIG_FILES</param-name>
- <param-value>/WEB-INF/faces-config-Panel.xml,/WEB-INF/faces-config-PanelBar.xml,/WEB-INF/faces-config-TabPanel.xml,/WEB-INF/faces-config-TogglePanel.xml,/WEB-INF/faces-config-Paint2D.xml,/WEB-INF/faces-config-InputNumberSlider.xml,/WEB-INF/faces-config-InputNumberSpinner.xml,/WEB-INF/faces-config-DDMenu.xml,/WEB-INF/faces-config-Tree.xml,/WEB-INF/faces-config-PanelMenu.xml,/WEB-INF/faces-config-Icon.xml,/WEB-INF/faces-config-tooltip.xml,/WEB-INF/faces-config-Skin.xml,/WEB-INF/faces-config-Calendar.xml,/WEB-INF/faces-config-Gmap.xml,/WEB-INF/faces-config-Separator.xml,/WEB-INF/faces-config-Spacer.xml,/WEB-INF/faces-config-SimpleTogglePanel.xml,/WEB-INF/faces-config-ToolBar.xml,/WEB-INF/faces-config-ModalPanel.xml,/WEB-INF/faces-config-SuggestionBox.xml,/WEB-INF/faces-config-DragAndDrop.xml,/WEB-INF/faces-config-DataScroller.xml,/WEB-INF/faces-config-DataTable.xml,/WEB-INF/faces-config-DataFilterSlider.xml</param-value>
+ <param-value>/WEB-INF/faces-config-Panel.xml,/WEB-INF/faces-config-PanelBar.xml,/WEB-INF/faces-config-TabPanel.xml,/WEB-INF/faces-config-TogglePanel.xml,/WEB-INF/faces-config-Paint2D.xml,/WEB-INF/faces-config-InputNumberSlider.xml,/WEB-INF/faces-config-InputNumberSpinner.xml,/WEB-INF/faces-config-DDMenu.xml,/WEB-INF/faces-config-Tree.xml,/WEB-INF/faces-config-PanelMenu.xml,/WEB-INF/faces-config-Icon.xml,/WEB-INF/faces-config-tooltip.xml,/WEB-INF/faces-config-Skin.xml,/WEB-INF/faces-config-Calendar.xml,/WEB-INF/faces-config-Gmap.xml,/WEB-INF/faces-config-Separator.xml,/WEB-INF/faces-config-Spacer.xml,/WEB-INF/faces-config-SimpleTogglePanel.xml,/WEB-INF/faces-config-ToolBar.xml,/WEB-INF/faces-config-ModalPanel.xml,/WEB-INF/faces-config-SuggestionBox.xml,/WEB-INF/faces-config-DragAndDrop.xml,/WEB-INF/faces-config-DataScroller.xml,/WEB-INF/faces-config-DataTable.xml,/WEB-INF/faces-config-DataFilterSlider.xml,/WEB-INF/faces-config-VirtualEarth.xml,/WEB-INF/faces-config-Message!
.xml</param-value>
</context-param>
<filter>
<display-name>Ajax4jsf Filter</display-name>
18 years, 8 months