[richfaces-svn-commits] JBoss Rich Faces SVN: r2325 - trunk/docs/userguide/en/src/main/docbook/included.
richfaces-svn-commits at lists.jboss.org
richfaces-svn-commits at lists.jboss.org
Fri Aug 17 13:04:46 EDT 2007
Author: vkorluzhenko
Date: 2007-08-17 13:04:45 -0400 (Fri, 17 Aug 2007)
New Revision: 2325
Modified:
trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml
trunk/docs/userguide/en/src/main/docbook/included/calendar.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/dropDownMenu.xml
trunk/docs/userguide/en/src/main/docbook/included/form.xml
trunk/docs/userguide/en/src/main/docbook/included/include.xml
trunk/docs/userguide/en/src/main/docbook/included/insert.xml
trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml
trunk/docs/userguide/en/src/main/docbook/included/loadScript.xml
trunk/docs/userguide/en/src/main/docbook/included/loadStyle.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/menuGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/menuItem.xml
trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml
trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/page.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml
trunk/docs/userguide/en/src/main/docbook/included/poll.xml
trunk/docs/userguide/en/src/main/docbook/included/push.xml
trunk/docs/userguide/en/src/main/docbook/included/region.xml
trunk/docs/userguide/en/src/main/docbook/included/repeat.xml
trunk/docs/userguide/en/src/main/docbook/included/status.xml
trunk/docs/userguide/en/src/main/docbook/included/support.xml
Log:
http://jira.jboss.com/jira/browse/RF-623
Modified: trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,7 +13,7 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.ActionParameter</entry>
+ <entry>org.ajax4jsf.ActionParameter</entry>
</row>
<row>
<entry>component-family</entry>
@@ -21,7 +21,7 @@
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlActionParameter</entry>
+ <entry>org.ajax4jsf.component.html.HtmlActionParameter</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -44,7 +44,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlActionParameter;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlActionParameter;
...
HtmlActionParameter myActionParameter = new HtmlActionParameter();
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/calendar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/calendar.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/calendar.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -72,9 +72,11 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="java">...
- org.richfaces.component.html.HtmlCalendar myCalendar = new org.richfaces.component.html.HtmlCalendar ();
-...</programlisting>
+ <programlisting role="java"><![CDATA[import org.richfaces.component.html.HtmlCalendar;
+...
+HtmlCalendar myCalendar = new HtmlCalendar();
+...
+]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/commandButton.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/commandButton.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/commandButton.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -12,19 +12,19 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.CommandButton</entry>
+ <entry>org.ajax4jsf.CommandButton</entry>
</row>
<row>
<entry>component-family</entry>
- <entry>javax.faces.Command </entry>
+ <entry>javax.faces.Command</entry>
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlCommandButton</entry>
+ <entry>org.ajax4jsf.component.html.HtmlAjaxCommandButton</entry>
</row>
<row>
<entry>renderer-type</entry>
- <entry>org.ajax4jsf.components.AjaxCommandButtonRenderer </entry>
+ <entry>org.ajax4jsf.components.AjaxCommandButtonRenderer</entry>
</row>
</tbody>
</tgroup>
@@ -41,7 +41,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlAjaxCommandButton;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlAjaxCommandButton;
...
HtmlAjaxCommandButton myButton = new HtmlAjaxCommandButton();
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/commandLink.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,7 +13,7 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.CommandLink</entry>
+ <entry>org.ajax4jsf.CommandLink</entry>
</row>
<row>
<entry>component-family</entry>
@@ -21,7 +21,7 @@
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlCommandLink</entry>
+ <entry>org.ajax4jsf.component.html.HtmlAjaxCommandLink</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -45,7 +45,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlAjaxCommandLink;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlAjaxCommandLink;
...
HtmlAjaxCommandLink myLink = new HtmlAjaxCommandLink();
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropDownMenu.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropDownMenu.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropDownMenu.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -76,9 +76,11 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="java">...
- org.richfaces.component.html.HtmlDropDownMenu myMenu = new org.richfaces.component.html.HtmlDropDownMenu();
-...</programlisting>
+ <programlisting role="java"><![CDATA[import org.richfaces.component.html.HtmlDropDownMenu;
+...
+HtmlDropDownMenu myDropDownMenu = new HtmlDropDownMenu();
+...
+]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/form.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/form.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/form.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,7 +13,7 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.Form</entry>
+ <entry>org.ajax4jsf.Form</entry>
</row>
<row>
<entry>component-family</entry>
@@ -21,7 +21,7 @@
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.AjaxForm</entry>
+ <entry>org.ajax4jsf.component.html.AjaxForm</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -45,7 +45,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.AjaxForm;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.AjaxForm;
...
AjaxForm myForm = new AjaxForm();
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/include.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/include.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/include.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,19 +13,19 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.Include</entry>
+ <entry>org.ajax4jsf.Include</entry>
</row>
<row>
<entry>component-family</entry>
- <entry>org.ajax4jsf.ajax.Output</entry>
+ <entry>javax.faces.Output</entry>
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.Include</entry>
+ <entry>org.ajax4jsf.component.html.Include</entry>
</row>
<row>
<entry>renderer-type</entry>
- <entry>org.ajax4jsf.AjaxIncludeRenderer</entry>
+ <entry>org.ajax4jsf.components.AjaxIncludeRenderer</entry>
</row>
</tbody>
</tgroup>
@@ -69,9 +69,10 @@
</section>
<section>
<title>Dynamical creation of a component from Java code</title>
- <programlisting role="XML"><![CDATA[<a4j:outputPanel ajaxRendered="true">
- <a4j:include viewId="/pages/include/first.xhtml"/>
-</a4j:outputPanel>
+ <programlisting role="JAVA"><![CDATA[<import org.ajax4jsf.component.html.Include;
+...
+Include myInclude = new Include();
+...
]]></programlisting>
<para>If <emphasis role="bold">
<property><a4j:include></property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/insert.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/insert.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/insert.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -72,9 +72,11 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="java">...
- org.richfaces.ui.component.html.HtmlInsert myInsert = new org.richfaces.ui.component.html.HtmlInsert ();
-...</programlisting>
+ <programlisting role="java"><![CDATA[import org.richfaces.ui.component.html.HtmlInsert;
+...
+HtmlInsert myInsert = new HtmlInsert();
+...
+]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,7 +13,7 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.Function</entry>
+ <entry>org.ajax4jsf.Function</entry>
</row>
<row>
<entry>component-family</entry>
@@ -21,7 +21,7 @@
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlAjaxFunction</entry>
+ <entry>org.ajax4jsf.component.html.HtmlAjaxFunction</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -59,7 +59,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlAjaxFunction;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlAjaxFunction;
...
HtmlAjaxFunction myFunction = new HtmlAjaxFunction();
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/loadScript.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/loadScript.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/loadScript.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -20,7 +20,7 @@
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlLoadScript</entry>
+ <entry>org.ajax4jsf.component.html.HtmlLoadScript</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -46,7 +46,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlLoadScript;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlLoadScript;
...
HtmlLoadScript myScript = new HtmlLoadScript();
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -20,7 +20,7 @@
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlLoadStyle</entry>
+ <entry>org.ajax4jsf.component.html.HtmlLoadStyle</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -46,7 +46,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlLoadStyle;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlLoadStyle;
...
HtmlLoadScript myStyle = new HtmlLoadStyle();
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/log.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/log.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/log.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,15 +13,15 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.Log</entry>
+ <entry>org.ajax4jsf.Log</entry>
</row>
<row>
<entry>component-family</entry>
- <entry>org.ajax4jsf.ajax.Log</entry>
+ <entry>org.ajax4jsf.Log</entry>
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.AjaxLog</entry>
+ <entry>org.ajax4jsf.component.html.AjaxLog</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -42,7 +42,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.AjaxLog;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.AjaxLog;
...
AjaxLog myLog = new AjaxLog();
...]]></programlisting>
Modified: trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/mediaOutput.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -20,7 +20,7 @@
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.MediaOutput</entry>
+ <entry>org.ajax4jsf.component.html.MediaOutput</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -73,7 +73,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.MediaOutput;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.MediaOutput;
...
MediaOutput myMedia = new MediaOutput ();
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/menuGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/menuGroup.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/menuGroup.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -22,7 +22,7 @@
</row>
<row>
<entry>component-class</entry>
- <entry>oorg.richfaces.component.html.HtmlMenuGroup</entry>
+ <entry>org.richfaces.component.html.HtmlMenuGroup</entry>
</row>
<row>
<entry>component-family</entry>
@@ -65,9 +65,10 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="java"><![CDATA[...
-org.richfaces.component.html.HtmlMenuGroup myGroup = new org.richfaces.component.html.HtmlMenuGroup ();
+ <programlisting role="java"><![CDATA[import org.richfaces.component.html.HtmlMenuGroup;
...
+HtmlMenuGroup myMenuGroup = new HtmlMenuGroup();
+...
]]></programlisting>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/menuItem.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/menuItem.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/menuItem.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -63,9 +63,11 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="java"><![CDATA[...
-org.richfaces.component.html.HtmlMenuItem myItem = new org.richfaces.component.html.HtmlMenuItem ();
-...]]></programlisting>
+ <programlisting role="java"><![CDATA[import org.richfaces.component.html.HtmlMenuItem;
+...
+HtmlMenuItem myMenuItem = new HtmlMenuItem();
+...
+]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -63,9 +63,11 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="java"><![CDATA[...
-org.richfaces.component.html.HtmlMenuSeparator mySep = new org.richfaces.component.html.HtmlMenuSeparator ();
-...]]></programlisting>
+ <programlisting role="java"><![CDATA[import org.richfaces.component.html.HtmlMenuSeparator;
+...
+HtmlMenuSeparator myMenuSeparator = new HtmlMenuSeparator();
+...
+]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/outputPanel.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,7 +13,7 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.OutputPanel</entry>
+ <entry>org.ajax4jsf.OutputPanel</entry>
</row>
<row>
<entry>component-family</entry>
@@ -25,7 +25,7 @@
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlAjaxOutputPanel</entry>
+ <entry>org.ajax4jsf.component.html.HtmlAjaxOutputPanel</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -53,7 +53,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlAjaxOutputPanel;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlAjaxOutputPanel;
...
HtmlAjaxOutputPanel myPanel = new HtmlAjaxOutputPanel();
]]></programlisting>
Modified: trunk/docs/userguide/en/src/main/docbook/included/page.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/page.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/page.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -17,15 +17,15 @@
</row>
<row>
<entry>component-family</entry>
- <entry>org.ajax4jsf.components.AjaxRegion.</entry>
+ <entry>org.ajax4jsf.components.AjaxRegion</entry>
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.components.Page</entry>
+ <entry>org.ajax4jsf.component.html.HtmlPage</entry>
</row>
<row>
<entry>renderer-type</entry>
- <entry>org.ajax4jsf.components.PageRenderer</entry>
+ <entry>org.ajax4jsf.components.AjaxPageRenderer</entry>
</row>
</tbody>
</tgroup>
@@ -65,9 +65,9 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.components.Page;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlPage;
...
-Page myPage = new Page();
+HtmlPage myPage = new HtmlPage();
...
]]></programlisting>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -74,9 +74,11 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="java">...
- org.richfaces.component.html.HtmlpanelMenu mypanelMenu = new org.richfaces.component.html.HtmlpanelMenu();
-...</programlisting>
+ <programlisting role="java"><![CDATA[import org.richfaces.component.html.HtmlPanelMenu;
+...
+HtmlPanelMenu myPanelMenu = new HtmlPanelMenu();
+...
+]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -76,9 +76,11 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="java">...
- org.richfaces.component.html.HtmlPanelMenuGroup mypanelMenuGroup = new org.richfaces.component.html.HtmlPanelMenuGroup();
-...</programlisting>
+ <programlisting role="java"><![CDATA[import org.richfaces.component.html.HtmlPanelMenuGroup;
+...
+HtmlPanelMenuGroup myPanelMenuGroup = new HtmlPanelMenuGroup();
+...
+]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -76,9 +76,11 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="java">...
- org.richfaces.component.html.HtmlPanelMenuItem mypanelMenuItem = new org.richfaces.component.html.HtmlPanelMenuItem();
-...</programlisting>
+ <programlisting role="java"><![CDATA[import org.richfaces.component.html.HtmlPanelMenuItem;
+...
+HtmlPanelMenuItem myPanelMenuItem = new HtmlPanelMenuItem();
+...
+]]></programlisting>
</section>
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/poll.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/poll.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/poll.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,7 +13,7 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.components.Poll</entry>
+ <entry>org.ajax4jsf.Poll</entry>
</row>
<row>
<entry>component-family</entry>
@@ -21,7 +21,7 @@
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.components.AjaxPoll</entry>
+ <entry>org.ajax4jsf.component.html.AjaxPoll</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -52,7 +52,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.AjaxPoll;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.AjaxPoll;
...
AjaxPoll myPoll = new AjaxPoll();
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/push.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/push.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/push.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,7 +13,7 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.components.Push</entry>
+ <entry>org.ajax4jsf.Push</entry>
</row>
<row>
<entry>component-family</entry>
@@ -21,7 +21,7 @@
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.components.AjaxPush</entry>
+ <entry>org.ajax4jsf.component.html.AjaxPush</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -39,8 +39,7 @@
<section>
<title>Dynamical creation of a component from Java code</title>
- <programlisting role="JAVA"><![CDATA[
-import org.ajax4jsf.ajax.html.AjaxPush;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.AjaxPush;
...
AjaxPush myPush = new AjaxPush();
...]]></programlisting>
Modified: trunk/docs/userguide/en/src/main/docbook/included/region.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/region.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/region.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,15 +13,15 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.AjaxRegion</entry>
+ <entry>org.ajax4jsf.AjaxRegion</entry>
</row>
<row>
<entry>component-family</entry>
- <entry>org.ajax4jsf.components.AjaxRegion.</entry>
+ <entry>org.ajax4jsf.AjaxRegion</entry>
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlAjaxRegion</entry>
+ <entry>org.ajax4jsf.component.html.HtmlAjaxRegion</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -44,7 +44,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlAjaxRegion;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlAjaxRegion;
...
HtmlAjaxRegion newRegion = new HtmlAjaxRegion();
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/repeat.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/repeat.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/repeat.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,19 +13,19 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.Repeat </entry>
+ <entry>org.ajax4jsf.Repeat</entry>
</row>
<row>
<entry>component-family</entry>
- <entry>javax.faces.Data </entry>
+ <entry>javax.faces.Data</entry>
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlAjaxRepeat </entry>
+ <entry>org.ajax4jsf.component.html.HtmlAjaxRepeat</entry>
</row>
<row>
<entry>renderer-type</entry>
- <entry>org.ajax4jsf.components.RepeatRenderer </entry>
+ <entry>org.ajax4jsf.components.RepeatRenderer</entry>
</row>
</tbody>
</tgroup>
@@ -49,7 +49,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlAjaxRepeat;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlAjaxRepeat;
...
HtmlAjaxRepeat repeater = new HtmlAjaxRepeat ();
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/status.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/status.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/status.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,19 +13,19 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.Status </entry>
+ <entry>org.ajax4jsf.Status</entry>
</row>
<row>
<entry>component-family</entry>
- <entry>javax.faces.Panel </entry>
+ <entry>javax.faces.Panel</entry>
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlAjaxStatus </entry>
+ <entry>org.ajax4jsf.component.html.HtmlAjaxStatus</entry>
</row>
<row>
<entry>renderer-type</entry>
- <entry>org.ajax4jsf.components.AjaxStatusRenderer </entry>
+ <entry>org.ajax4jsf.components.AjaxStatusRenderer</entry>
</row>
</tbody>
</tgroup>
@@ -64,7 +64,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlAjaxStatus;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlAjaxStatus;
...
HtmlAjaxStatus myStatus = new HtmlAjaxStatus();
...]]></programlisting>
Modified: trunk/docs/userguide/en/src/main/docbook/included/support.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/support.xml 2007-08-17 16:01:48 UTC (rev 2324)
+++ trunk/docs/userguide/en/src/main/docbook/included/support.xml 2007-08-17 17:04:45 UTC (rev 2325)
@@ -13,15 +13,15 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.ajax4jsf.ajax.Support</entry>
+ <entry>org.ajax4jsf.Support</entry>
</row>
<row>
<entry>component-family</entry>
- <entry>org.ajax4jsf.components.AjaxSupport</entry>
+ <entry>org.ajax4jsf.AjaxSupport</entry>
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.ajax.html.HtmlAjaxSupport</entry>
+ <entry>org.ajax4jsf.component.html.HtmlAjaxSupport</entry>
</row>
<row>
<entry>renderer-type</entry>
@@ -53,7 +53,7 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.ajax.html.HtmlAjaxSupport;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlAjaxSupport;
...
HtmlAjaxSupport mySupport = new HtmlAjaxSupport();>]]></programlisting>
</section>
More information about the richfaces-svn-commits
mailing list