Author: nbelaevski
Date: 2010-06-01 19:29:06 -0400 (Tue, 01 Jun 2010)
New Revision: 17458
Modified:
root/dist/trunk/readme-examples.txt
root/dist/trunk/readme-ui.txt
Log:
https://jira.jboss.org/browse/RFPL-607
Modified: root/dist/trunk/readme-examples.txt
===================================================================
--- root/dist/trunk/readme-examples.txt 2010-06-01 21:08:43 UTC (rev 17457)
+++ root/dist/trunk/readme-examples.txt 2010-06-01 23:29:06 UTC (rev 17458)
@@ -8,13 +8,17 @@
-------------------------------
The core-demo and richfaces-showcase demo applications should be built using Maven 2.1.0
-tomcat6/jetty targetted build:
+tomcat6/jetty targeted build:
-1) execute "mvn install" in root application folder(examples/richfaces-showcase
or examples/core-demo)
-2) Deploy to tomcat 6.x or just run using maven on jetty using "mvn
jetty:run-war"
+1) execute "mvn clean package" in root application
folder(examples/richfaces-showcase or examples/core-demo)
+2) Deploy to tomcat 6.x (built .war file is located in the 'target' folder) or
just run using maven on jetty using "mvn clean jetty:run-war"
-Type
http://localhost:8080/richfaces-showcase http://localhost:8080/core-demo in your
browser command line after starting server.
+JEE6 (GlassFish 3, JBoss AS 6) server targeted build:
+1) execute "mvn clean package -Pjee6" in root application
folder(examples/richfaces-showcase or examples/core-demo)
+2) Deploy built application (built .war file is located in the 'target' folder)
to application server
+Type
http://localhost:8080/richfaces-showcase http://localhost:8080/core-demo in your
browser address bar after starting server.
+
Learn more
----------
RichFaces Project -
http://www.jboss.org/richfaces
Modified: root/dist/trunk/readme-ui.txt
===================================================================
--- root/dist/trunk/readme-ui.txt 2010-06-01 21:08:43 UTC (rev 17457)
+++ root/dist/trunk/readme-ui.txt 2010-06-01 23:29:06 UTC (rev 17458)
@@ -1,6 +1,6 @@
RichFaces - Ajax enabled JSF 2.0 component library
=========================================================
-Version 4.0.0.ALPHA1
+Version 4.0.0.ALPHA2
This software is distributed under the terms of the FSF Lesser Gnu Public License (see
lgpl.txt).
@@ -11,29 +11,28 @@
1.1) richfaces-commons-api-4.0.0-ALPHA2.jar
1.2) richfaces-core-api-4.0.0-ALPHA2.jar
1.3) richfaces-core-impl-4.0.0-ALPHA2.jar
- 1.4) richfaces-ui-core-ui-4.0.0-ALPHA2.jar
- 1.5) richfaces-ui-iteration-api-4.0.0-ALPHA2.jar
- 1.6) richfaces-ui-iteration-impl-4.0.0-ALPHA2.jar
- 1.7) richfaces-ui-iteration-ui-4.0.0-ALPHA2.jar
- 1.8) richfaces-ui-misc-ui-4.0.0-ALPHA2.jar
- 1.9) slf4j-api
- 1.10) slf4j-log4j12 (or whatever else - select the implementation according to logging
framework that you use)
+ 1.4) richfaces-components-api-4.0.0-ALPHA2.jar
+ 1.5) richfaces-components-impl-4.0.0-ALPHA2.jar
+ 1.6) richfaces-components-ui-4.0.0-ALPHA2.jar
+ 1.7) slf4j-api
+ 1.8) slf4j-log4j12 (or whatever else - select the implementation according to logging
framework that you use)
+For optimal performance it's recommended to add one of these caching frameworks to
aplication classpath: EhCache, JBoss Cache, OsCache.
+
2) As opposed to the previous 3.x.y versions of RichFaces, no special configuration steps
are necessary.
You don't need to modify web.xml or faces-config.xml
3) Add RichFaces namespaces/taglibs declaration to your VDL/XHTML pages which will use
RichFaces components
Use
xmlns:a4j="http://richfaces.org/a4j" namespace for core components
- Use
xmlns:it="http://richfaces.org/iteration" namespace for Iteration
components
- Use
xmlns:m="http://richfaces.org/misc"namespace for Misc components
+ Use
xmlns:rich="http://richfaces.org/rich" namespace for rich components
-4) Add one of the available RichFaces 4.0.A1 components to your page and try it!
- 4.1) Take a look at the RichFaces examples distribution for assistance with
usage.
+4) Add one of the available RichFaces 4.0.A2 components to your page and try it!
+ 4.1) Take a look at the RichFaces examples for assistance with usage.
Available Components/Behaviors/Tags/Functions
---------------------------------
-Core module:
+Core:
---------------------------------
a4j:ajax
@@ -53,25 +52,26 @@
a4j:region
---------------------------------
-Iteration Module
+Iteration:
---------------------------------
-it:dataTable
-it:extendedDataTablesubTable
-it:dataScroller
-it:subTableToggleControl
-it:columnGroup
-it:column
+rich:dataTable
+rich:extendedDataTable
+rich:subTable
+rich:dataScroller
+rich:subTableToggleControl
+rich:columnGroup
+rich:column
---------------------------------
-Misc Module
+Miscellanous:
---------------------------------
-m:clientId
-m:element
-m:component
-m:isUserInRole
-m:findComponent
-m:componentControl
-m:hashParam
+rich:clientId
+rich:element
+rich:component
+rich:isUserInRole
+rich:findComponent
+rich:componentControl
+rich:hashParam
Learn more
----------