JBoss Rich Faces SVN: r12230 - trunk/ui/assembly.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-01-12 12:49:53 -0500 (Mon, 12 Jan 2009)
New Revision: 12230
Modified:
trunk/ui/assembly/pom.xml
Log:
Fixed wrong excludedModules declaration
Modified: trunk/ui/assembly/pom.xml
===================================================================
--- trunk/ui/assembly/pom.xml 2009-01-12 17:29:37 UTC (rev 12229)
+++ trunk/ui/assembly/pom.xml 2009-01-12 17:49:53 UTC (rev 12230)
@@ -30,16 +30,14 @@
<displayName>
RichFaces ( Legacy URL )
</displayName>
- <excludeModules>core</excludeModules>
- <excludeModules>state</excludeModules>
+ <excludeModules>core,state</excludeModules>
</taglib>
<taglib>
<shortName>rich</shortName>
<taglib>rich</taglib>
<uri>http://richfaces.org/rich</uri>
<displayName>RichFaces</displayName>
- <excludeModules>core</excludeModules>
- <excludeModules>state</excludeModules>
+ <excludeModules>core,state</excludeModules>
</taglib>
<taglib>
<shortName>a4j</shortName>
16 years, 11 months
JBoss Rich Faces SVN: r12229 - trunk/docs.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2009-01-12 12:29:37 -0500 (Mon, 12 Jan 2009)
New Revision: 12229
Modified:
trunk/docs/pom.xml
Log:
RF-4494: Tutorial about developing this sample application
Modified: trunk/docs/pom.xml
===================================================================
--- trunk/docs/pom.xml 2009-01-12 17:29:15 UTC (rev 12228)
+++ trunk/docs/pom.xml 2009-01-12 17:29:37 UTC (rev 12229)
@@ -63,6 +63,7 @@
<module>cdkguide</module>
<module>faq</module>
<module>migrationguide</module>
+ <module>realworld_app_guide</module>
</modules>
</profile>
<profile>
16 years, 11 months
JBoss Rich Faces SVN: r12228 - trunk/docs/realworld_app_guide/en.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2009-01-12 12:29:15 -0500 (Mon, 12 Jan 2009)
New Revision: 12228
Modified:
trunk/docs/realworld_app_guide/en/pom.xml
Log:
RF-4494: Tutorial about developing this sample application
Modified: trunk/docs/realworld_app_guide/en/pom.xml
===================================================================
--- trunk/docs/realworld_app_guide/en/pom.xml 2009-01-12 17:20:38 UTC (rev 12227)
+++ trunk/docs/realworld_app_guide/en/pom.xml 2009-01-12 17:29:15 UTC (rev 12228)
@@ -8,7 +8,7 @@
<version>3.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
- <groupId>org.richfaces.docs.migration</groupId>
+ <groupId>org.richfaces.docs.realworld</groupId>
<artifactId>${translation}</artifactId>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
16 years, 11 months
JBoss Rich Faces SVN: r12227 - in trunk/test-applications/seleniumTest/richfaces/src: main/webapp/WEB-INF and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2009-01-12 12:20:38 -0500 (Mon, 12 Jan 2009)
New Revision: 12227
Added:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/tree/TreeNodesAdaptorTestBean.java
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/treeNodesAdaptor/
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/treeNodesAdaptor/treeNodesAdaptor.xhtml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/TreeNodesAdaptorTest.java
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml
Log:
RF-5581
Added: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/tree/TreeNodesAdaptorTestBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/tree/TreeNodesAdaptorTestBean.java (rev 0)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/tree/TreeNodesAdaptorTestBean.java 2009-01-12 17:20:38 UTC (rev 12227)
@@ -0,0 +1,23 @@
+package org.ajax4jsf.bean.tree;
+
+public class TreeNodesAdaptorTestBean {
+
+ private String[] nodes = {"1", "2", "3"};
+ private String[] roots = {"A", "B", "C"};
+
+ public void setNodes(String[] nodes) {
+ this.nodes = nodes;
+ }
+
+ public String[] getNodes() {
+ return nodes;
+ }
+
+ public void setRoots(String[] roots) {
+ this.roots = roots;
+ }
+
+ public String[] getRoots() {
+ return roots;
+ }
+}
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml 2009-01-12 16:37:26 UTC (rev 12226)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml 2009-01-12 17:20:38 UTC (rev 12227)
@@ -293,6 +293,11 @@
<managed-bean-class>org.ajax4jsf.bean.tree.TreeTestBean</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
+ <managed-bean>
+ <managed-bean-name>treeNodesAdaptor</managed-bean-name>
+ <managed-bean-class>org.ajax4jsf.bean.tree.TreeNodesAdaptorTestBean</managed-bean-class>
+ <managed-bean-scope>session</managed-bean-scope>
+ </managed-bean>
<managed-bean>
<managed-bean-name>effectBean</managed-bean-name>
<managed-bean-class>org.ajax4jsf.bean.EffectBean</managed-bean-class>
Added: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/treeNodesAdaptor/treeNodesAdaptor.xhtml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/treeNodesAdaptor/treeNodesAdaptor.xhtml (rev 0)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/treeNodesAdaptor/treeNodesAdaptor.xhtml 2009-01-12 17:20:38 UTC (rev 12227)
@@ -0,0 +1,27 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:rich="http://richfaces.org/rich"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets">
+
+<ui:composition template="#{templateBean.template}">
+ <ui:define name="component">
+ <h:form id="mainForm">
+ <rich:tree id="tree">
+ <rich:treeNodesAdaptor nodes="#{treeNodesAdaptor.roots}" var="root">
+ <rich:treeNode>
+ <h:outputText value="#{root}"></h:outputText>
+ </rich:treeNode>
+ <rich:treeNodesAdaptor nodes="#{treeNodesAdaptor.nodes}" var="node">
+ <rich:treeNode>
+ <h:outputText value="#{root}#{node}"></h:outputText>
+ </rich:treeNode>
+ </rich:treeNodesAdaptor>
+ </rich:treeNodesAdaptor>
+ </rich:tree>
+ </h:form>
+ </ui:define>
+</ui:composition>
+</html>
\ No newline at end of file
Added: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/TreeNodesAdaptorTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/TreeNodesAdaptorTest.java (rev 0)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/TreeNodesAdaptorTest.java 2009-01-12 17:20:38 UTC (rev 12227)
@@ -0,0 +1,66 @@
+/**
+ * License Agreement.
+ *
+ * JBoss RichFaces - Ajax4jsf Component Library
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+package org.richfaces.testng;
+
+import org.ajax4jsf.template.Template;
+import org.richfaces.SeleniumTestBase;
+import org.testng.Assert;
+import org.testng.annotations.Test;
+
+
+public class TreeNodesAdaptorTest extends SeleniumTestBase {
+
+ private String[] nodes = {"1", "2", "3"};
+ private String[] roots = {"A", "B", "C"};
+
+ private String tree;
+
+ private void init(Template template) {
+ renderPage(template);
+ String mainForm = getParentId() + "mainForm";
+ tree = mainForm + ":tree";
+ }
+
+ /**
+ * component builds right tree structure: data is fetched from nodes collection
+ * and assigned to var variable
+ */
+ @Test
+ public void testTreeStructure(Template template) {
+ init(template);
+ String locator = "xpath=id('"+ tree + "')/div";
+ for (int i = 0; i < roots.length; i++) {
+ String rootLocator = locator + "/table[" + (i + 1) + "]/tbody/tr";
+ Assert.assertEquals(selenium.getText(rootLocator), roots[i]);
+ clickAjaxCommandAndWait(rootLocator + "/td[1]/div/a");
+ String nodesLocator = locator + "/div[" + (i + 1) + "]";
+ for (int j = 0; j < nodes.length; j++) {
+ Assert.assertEquals(selenium.getText(nodesLocator + "/table[" + (j + 1) + "]/tbody/tr"), roots[i] + nodes[j]);
+ }
+ }
+ }
+
+ @Override
+ public String getTestUrl() {
+ return "pages/treeNodesAdaptor/treeNodesAdaptor.xhtml";
+ }
+
+}
16 years, 11 months
JBoss Rich Faces SVN: r12226 - in trunk/test-applications/seleniumTest/richfaces/src: main/webapp/pages/tabPanel and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: andrei_exadel
Date: 2009-01-12 11:37:26 -0500 (Mon, 12 Jan 2009)
New Revision: 12226
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/RichPanelTestBean.java
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/tabPanel/tabPanelTest.xhtml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/TabPanelTest.java
Log:
RF-5546
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/RichPanelTestBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/RichPanelTestBean.java 2009-01-12 15:32:50 UTC (rev 12225)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/RichPanelTestBean.java 2009-01-12 16:37:26 UTC (rev 12226)
@@ -39,13 +39,19 @@
private String content;
private String switchType = "server";
+
+ private String selectedTab;
public RichPanelTestBean() {
- value = "";
- value2 = 0;
- rendered = true;
- content = "content";
+ reset();
}
+
+ public void reset() {
+ value = "";
+ value2 = 0;
+ rendered = true;
+ content = "content";
+ }
/**
* Gets value of switchType field.
@@ -201,4 +207,20 @@
rendered = true;
content = "content";
}
+
+ /**
+ * @return the selectedTab
+ */
+ public String getSelectedTab() {
+ return selectedTab;
+ }
+
+ /**
+ * @param selectedTab the selectedTab to set
+ */
+ public void setSelectedTab(String selectedTab) {
+ this.selectedTab = selectedTab;
+ }
+
+
}
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/tabPanel/tabPanelTest.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/TabPanelTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/TabPanelTest.java 2009-01-12 15:32:50 UTC (rev 12225)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/TabPanelTest.java 2009-01-12 16:37:26 UTC (rev 12226)
@@ -28,63 +28,47 @@
import com.thoughtworks.selenium.SeleniumException;
public class TabPanelTest extends SeleniumTestBase {
+
+ static final String RESET_METHOD = "#{panelBean.reset}";
@Test
public void testRichTabPanelComponent(Template template) {
- renderPage(template);
+ renderPage(template, RESET_METHOD);
String parentId = getParentId() + "_form:";
String linkId = parentId + "tab2_lbl";
String tabId1 = parentId + "tab1";
String tabId2 = parentId + "tab2";
String tabId4 = parentId + "tab4";
String inputId = parentId + "_value";
- String outputId = parentId + "_value2";
+ //String outputId = parentId + "_value2";
- writeStatus("Click on tab1");
+ writeStatus("Click on tab2");
clickById(linkId);
waitForAjaxCompletion();
AssertValueEquals(inputId, "tab2");
- AssertTextEquals(outputId, "2");
- Assert.assertTrue(isVisibleById(tabId2));
- Assert.assertFalse(isVisibleById(tabId4));
- try {
- getTextById(tabId1);
- Assert.fail("Both of 'tab1' and 'tab2' tabs were rendered for tab panel.");
- } catch (SeleniumException se) {
-
- }
-
- writeStatus("Click on tab2");
+ AssertTextEquals(tabId2, "Tab two");
+ AssertVisible(tabId2);
+ AssertNotVisible(tabId4);
+
+ writeStatus("Click on tab1");
linkId = parentId + "tab1_lbl";
clickCommandAndWait(linkId);
AssertValueEquals(inputId, "tab1");
- AssertTextEquals(outputId, "1");
- Assert.assertTrue(isVisibleById(tabId1));
- Assert.assertFalse(isVisibleById(tabId4));
- try {
- getTextById(tabId2);
- Assert.fail("Both of 'tab1' and 'tab2' tabs were rendered for tab panel.");
- } catch (SeleniumException se) {
-
- }
-
+ AssertTextEquals(tabId1, "Tab one");
+ AssertVisible(tabId1);
+ AssertNotVisible(tabId4);
+
writeStatus("Click on tab3");
linkId = parentId + "tab3_lbl";
clickById(linkId);
AssertValueEquals(inputId, "tab1");
- Assert.assertTrue(isVisibleById(tabId1));
+ AssertVisible(tabId1);
writeStatus("Click on tab4");
linkId = parentId + "tab4_lbl";
clickById(linkId);
- Assert.assertTrue(isVisibleById(tabId4));
- Assert.assertFalse(isVisibleById(tabId1));
- try {
- getTextById(tabId2);
- Assert.fail("Both of 'tab1' and 'tab2' tabs were rendered for tab panel.");
- } catch (SeleniumException se) {
-
- }
+ AssertVisible(tabId4);
+ AssertNotVisible(tabId1);
}
@Override
16 years, 11 months
JBoss Rich Faces SVN: r12225 - in trunk/test-applications/seleniumTest/richfaces/src: test/java/org/richfaces/testng and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: andrei_exadel
Date: 2009-01-12 10:32:50 -0500 (Mon, 12 Jan 2009)
New Revision: 12225
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/contextMenu/contextMenu.xhtml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/DataScrollerTest.java
Log:
Refactor failed tests
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/contextMenu/contextMenu.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/DataScrollerTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/DataScrollerTest.java 2009-01-12 15:17:12 UTC (rev 12224)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/DataScrollerTest.java 2009-01-12 15:32:50 UTC (rev 12225)
@@ -142,8 +142,7 @@
@Override
public String[] getReRendersId() {
- return new String [] {AutoTester.COMPONENT_ID,
- (getTemplate().equals(Template.DATA_TABLE)) ? "tbl:0" : "tbl"};
+ return new String [] {AutoTester.COMPONENT_ID, "tbl"};
}
@Override
16 years, 11 months
JBoss Rich Faces SVN: r12224 - in trunk/test-applications/seleniumTest/richfaces/src: main/webapp/pages/calendar and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alevkovsky
Date: 2009-01-12 10:17:12 -0500 (Mon, 12 Jan 2009)
New Revision: 12224
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/calendarTest.xhtml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
Log:
Fix Calendar selenium tests
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2009-01-12 14:17:15 UTC (rev 12223)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2009-01-12 15:17:12 UTC (rev 12224)
@@ -538,6 +538,7 @@
}
public void initRequiredTest() {
+ reset();
required = true;
selectedDate = null;
isPopup = false;
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/calendarTest.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2009-01-12 14:17:15 UTC (rev 12223)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2009-01-12 15:17:12 UTC (rev 12224)
@@ -516,16 +516,19 @@
renderPage(template, RESET_METHOD);
initIds(getParentId());
- setPopup(true);
- String changeLocaleButtonId = getParentId() + CONTROLS_FORM_ID + "testLocale";
- clickCommandAndWait(changeLocaleButtonId);
+ // Failed due to bug https://jira.jboss.org/jira/browse/RF-5330
+ Assert.fail("https://jira.jboss.org/jira/browse/RF-5330");
+
+// setPopup(true);
+// String changeLocaleButtonId = getParentId() + CONTROLS_FORM_ID + "testLocale";
+// clickCommandAndWait(changeLocaleButtonId);
+//
+// showPopup();
+// showTimeSelectionWindow();
+//
+// testInternatialization("_ru");
+// testWeekDays();
- showPopup();
- showTimeSelectionWindow();
-
- testInternatialization("_ru");
- testWeekDays();
-
}
@Test
@@ -718,16 +721,19 @@
public void testInternationalization(Template template) {
renderPage(template, RESET_METHOD);
initIds(getParentId());
-
- setPopup(true);
- String changeLocaleButtonId = getParentId() + CONTROLS_FORM_ID + "testLocale";
- clickCommandAndWait(changeLocaleButtonId);
- showPopup();
- showTimeSelectionWindow();
+ // Failed due to bug https://jira.jboss.org/jira/browse/RF-5330
+ Assert.fail("https://jira.jboss.org/jira/browse/RF-5330");
- testInternatialization("_ru");
- testWeekDays();
+// setPopup(true);
+// String changeLocaleButtonId = getParentId() + CONTROLS_FORM_ID + "testLocale";
+// clickCommandAndWait(changeLocaleButtonId);
+//
+// showPopup();
+// showTimeSelectionWindow();
+//
+// testInternatialization("_ru");
+// testWeekDays();
}
@@ -1608,7 +1614,7 @@
@Test
public void testLabelAttribute(Template template) {
- renderPage(template, null);
+ renderPage(template, RESET_METHOD);
initIds(getParentId());
String label = "Calendar";
16 years, 11 months
JBoss Rich Faces SVN: r12223 - in trunk/samples/richfaces-demo/src/main/webapp: richfaces/editor/examples and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2009-01-12 09:17:15 -0500 (Mon, 12 Jan 2009)
New Revision: 12223
Modified:
trunk/samples/richfaces-demo/src/main/webapp/images/cn_componentControl.gif
trunk/samples/richfaces-demo/src/main/webapp/images/cn_contextMenu.gif
trunk/samples/richfaces-demo/src/main/webapp/images/cn_listShuttle.gif
trunk/samples/richfaces-demo/src/main/webapp/images/cn_orderingList.gif
trunk/samples/richfaces-demo/src/main/webapp/images/cn_recursiveTreeNodesAdaptor.gif
trunk/samples/richfaces-demo/src/main/webapp/images/cn_treeNodesAdaptor.gif
trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-5621
Modified: trunk/samples/richfaces-demo/src/main/webapp/images/cn_componentControl.gif
===================================================================
(Binary files differ)
Modified: trunk/samples/richfaces-demo/src/main/webapp/images/cn_contextMenu.gif
===================================================================
(Binary files differ)
Modified: trunk/samples/richfaces-demo/src/main/webapp/images/cn_listShuttle.gif
===================================================================
(Binary files differ)
Modified: trunk/samples/richfaces-demo/src/main/webapp/images/cn_orderingList.gif
===================================================================
(Binary files differ)
Modified: trunk/samples/richfaces-demo/src/main/webapp/images/cn_recursiveTreeNodesAdaptor.gif
===================================================================
(Binary files differ)
Modified: trunk/samples/richfaces-demo/src/main/webapp/images/cn_treeNodesAdaptor.gif
===================================================================
(Binary files differ)
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml 2009-01-12 14:09:59 UTC (rev 12222)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml 2009-01-12 14:17:15 UTC (rev 12223)
@@ -34,11 +34,11 @@
<a4j:support event="onclick" reRender="editor" requestDelay="500"
eventsQueue="settingsQueue" similarityGroupingId="settings" />
</h:selectOneRadio>
- <h:outputText value="Toggle Modes(Disables Preview)" escape="false"/>
+ <h:outputText value="Toggle Modes" escape="false"/>
<h:selectOneRadio value="#{editorBean.viewMode}"
layout="pageDirection">
<f:selectItem itemLabel="WYSIWYG mode" itemValue="visual" />
- <f:selectItem itemLabel="Simple Text Area" itemValue="source" />
+ <f:selectItem itemLabel="Text Area(Disables Preview)" itemValue="source" />
<a4j:support event="onclick" reRender="editor" requestDelay="500"
eventsQueue="settingsQueue" similarityGroupingId="settings" />
</h:selectOneRadio>
16 years, 11 months
JBoss Rich Faces SVN: r12222 - in trunk/docs/realworld_app_guide/en: src/main/resources/images and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2009-01-12 09:09:59 -0500 (Mon, 12 Jan 2009)
New Revision: 12222
Added:
trunk/docs/realworld_app_guide/en/src/main/resources/images/rw_its_mess.png
trunk/docs/realworld_app_guide/en/src/main/resources/images/rw_its_pers.png
Modified:
trunk/docs/realworld_app_guide/en/
Log:
RF-4494: Tutorial about developing this sample application
Property changes on: trunk/docs/realworld_app_guide/en
___________________________________________________________________
Name: svn:ignore
+ target
Added: trunk/docs/realworld_app_guide/en/src/main/resources/images/rw_its_mess.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/realworld_app_guide/en/src/main/resources/images/rw_its_mess.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/realworld_app_guide/en/src/main/resources/images/rw_its_pers.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/realworld_app_guide/en/src/main/resources/images/rw_its_pers.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 11 months
JBoss Rich Faces SVN: r12221 - trunk/docs/userguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-01-12 08:49:27 -0500 (Mon, 12 Jan 2009)
New Revision: 12221
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
Log:
https://jira.jboss.org/jira/browse/RF-4664
correct a snippet
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-01-12 13:23:42 UTC (rev 12220)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-01-12 13:49:27 UTC (rev 12221)
@@ -445,8 +445,8 @@
<para>Form-based default queue</para>
</listitem>
</itemizedlist>
- <para>In this section we will take a closer look at the listed above types of the queue
- and see in more detail how they differ.</para>
+ <para>In this section we will take a closer look at the listed above types of the queue
+ and see in more detail how they differ. Usage details are alos covered in the <link linkend="queue"><a4j:queue></link>chapter.</para>
<section>
<title>Global default queue, defined in the web.xml file</title>
16 years, 11 months