JBoss Rich Faces SVN: r5946 - in trunk/ui/pickList/src/test/java/org/richfaces: component and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-02-08 09:34:02 -0500 (Fri, 08 Feb 2008)
New Revision: 5946
Added:
trunk/ui/pickList/src/test/java/org/richfaces/component/PickListComponentTest.java
trunk/ui/pickList/src/test/java/org/richfaces/renderkit/
trunk/ui/pickList/src/test/java/org/richfaces/renderkit/PickListRendererTest.java
Removed:
trunk/ui/pickList/src/test/java/org/richfaces/component/JSFComponentTest.java
Log:
add Junits
Deleted: trunk/ui/pickList/src/test/java/org/richfaces/component/JSFComponentTest.java
===================================================================
--- trunk/ui/pickList/src/test/java/org/richfaces/component/JSFComponentTest.java 2008-02-08 12:37:41 UTC (rev 5945)
+++ trunk/ui/pickList/src/test/java/org/richfaces/component/JSFComponentTest.java 2008-02-08 14:34:02 UTC (rev 5946)
@@ -1,53 +0,0 @@
-/**
- * License Agreement.
- *
- * Rich Faces - Natural Ajax for Java Server Faces (JSF)
- *
- * 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.component;
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-import javax.faces.component.UIComponent;
-
-/**
- * Unit test for simple Component.
- */
-public class JSFComponentTest
- extends TestCase
-{
- /**
- * Create the test case
- *
- * @param testName name of the test case
- */
- public JSFComponentTest( String testName )
- {
- super( testName );
- }
-
-
- /**
- * Rigourous Test :-)
- */
- public void testComponent()
- {
- assertTrue( true );
- }
-}
Added: trunk/ui/pickList/src/test/java/org/richfaces/component/PickListComponentTest.java
===================================================================
--- trunk/ui/pickList/src/test/java/org/richfaces/component/PickListComponentTest.java (rev 0)
+++ trunk/ui/pickList/src/test/java/org/richfaces/component/PickListComponentTest.java 2008-02-08 14:34:02 UTC (rev 5946)
@@ -0,0 +1,153 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * 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.component;
+
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Set;
+
+import javax.faces.component.UIForm;
+import javax.faces.component.UISelectItem;
+import javax.faces.component.UISelectItems;
+import javax.faces.component.html.HtmlForm;
+import javax.faces.model.SelectItem;
+
+import org.ajax4jsf.tests.AbstractAjax4JsfTestCase;
+import org.apache.commons.lang.StringUtils;
+
+import com.gargoylesoftware.htmlunit.html.HtmlPage;
+import com.gargoylesoftware.htmlunit.html.HtmlScript;
+
+public class PickListComponentTest extends AbstractAjax4JsfTestCase{
+
+ UIForm form;
+
+ UIPickList pickList;
+
+ String [] selected = new String [] {"District of Columbia,Illinois,Maryland,New Hampshire,New Jersey"};
+
+ private static Set javaScripts = new HashSet();
+
+ List selectItems = new ArrayList();
+
+ static {
+ javaScripts.add("a4j_3_2_0-SNAPSHOTorg.ajax4jsf.javascript.PrototypeScript");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/ShuttleUtils.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/SelectItem.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/PickListSI.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/LayoutManager.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/Control.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/ListBase.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/OrderingList.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/ListShuttle.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/PickList.js");
+ }
+
+ public PickListComponentTest(String name) {
+ super(name);
+ }
+
+ public void setUp() throws Exception {
+ super.setUp();
+
+ form = new HtmlForm();
+ form.setId("form");
+ facesContext.getViewRoot().getChildren().add(form);
+
+ pickList = (UIPickList)application.createComponent("org.richfaces.PickList");
+ pickList.setValue(selected);
+
+ selectItems.add(new SelectItem("District of Columbia"));
+ selectItems.add(new SelectItem("Illinois"));
+ selectItems.add(new SelectItem("Maryland"));
+ selectItems.add(new SelectItem("Nevada"));
+ selectItems.add(new SelectItem("New Hampshire"));
+ selectItems.add(new SelectItem("New Jersey"));
+
+ UISelectItem item1 = new UISelectItem();
+ item1.setValue(new SelectItem("Oregon"));
+
+ UISelectItem item2 = new UISelectItem();
+ item2.setValue(new SelectItem("Pennsylvania"));
+
+ UISelectItem item3 = new UISelectItem();
+ item3.setValue(new SelectItem("Rhode Island"));
+
+ UISelectItem item4 = new UISelectItem();
+ item4.setValue(new SelectItem("South Carolina"));
+
+ pickList.getChildren().add(item1);
+ pickList.getChildren().add(item2);
+ pickList.getChildren().add(item3);
+ pickList.getChildren().add(item4);
+
+ UISelectItems items = new UISelectItems();
+ items.setValue(selectItems);
+ form.getChildren().add(pickList);
+ }
+
+ public void testRender() throws Exception {
+ HtmlPage page = renderView();
+ assertNotNull(page);
+ }
+
+ public void testComboBoxScripts() throws Exception {
+ HtmlPage page = renderView();
+ assertNotNull(page);
+
+ List scripts = page.getDocumentElement().getHtmlElementsByTagName("script");
+ for (Iterator it = scripts.iterator(); it.hasNext();) {
+ HtmlScript item = (HtmlScript) it.next();
+ String srcAttr = item.getSrcAttribute();
+ if (item.getFirstChild() != null) {
+ String scriptBodyString = item.getFirstChild().toString();
+ assert(scriptBodyString.contains("Richfaces.PickList"));
+ }
+
+ if (StringUtils.isNotBlank(srcAttr)) {
+ boolean found = false;
+ for (Iterator srcIt = javaScripts.iterator(); srcIt.hasNext();) {
+ String src = (String) srcIt.next();
+ found = srcAttr.contains(src);
+ if (found) {
+ break;
+ }
+ }
+ assertTrue(found);
+ }
+ }
+ }
+
+ public void tearDown() throws Exception {
+ // TODO Auto-generated method stub
+ form = null;
+ pickList = null;
+ super.tearDown();
+ }
+
+ public void testComponent() {
+ assertTrue( true );
+ }
+
+}
Added: trunk/ui/pickList/src/test/java/org/richfaces/renderkit/PickListRendererTest.java
===================================================================
--- trunk/ui/pickList/src/test/java/org/richfaces/renderkit/PickListRendererTest.java (rev 0)
+++ trunk/ui/pickList/src/test/java/org/richfaces/renderkit/PickListRendererTest.java 2008-02-08 14:34:02 UTC (rev 5946)
@@ -0,0 +1,151 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * 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.renderkit;
+
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Set;
+
+import javax.faces.component.UIForm;
+import javax.faces.component.UISelectItem;
+import javax.faces.component.UISelectItems;
+import javax.faces.component.html.HtmlForm;
+import javax.faces.model.SelectItem;
+
+import org.ajax4jsf.tests.AbstractAjax4JsfTestCase;
+import org.richfaces.component.UIPickList;
+import org.richfaces.renderkit.html.PickListRendererGen;
+
+import com.gargoylesoftware.htmlunit.html.HtmlElement;
+import com.gargoylesoftware.htmlunit.html.HtmlPage;
+
+/**
+ * @author Anton Belevich
+ *
+ */
+public class PickListRendererTest extends AbstractAjax4JsfTestCase {
+
+ private UIForm form;
+ private UIPickList pickList;
+ private UIPickList pickList2;
+ private String [] selected = new String [] {"District of Columbia,Illinois,Maryland,New Hampshire,New Jersey"};
+ private List selectedList = new ArrayList();
+ private static Set javaScripts = new HashSet();
+ private PickListRendererGen renderer;
+
+ List selectItems = new ArrayList();
+
+
+ static {
+ javaScripts.add("a4j_3_2_0-SNAPSHOTorg.ajax4jsf.javascript.PrototypeScript");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/ShuttleUtils.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/SelectItem.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/PickListSI.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/LayoutManager.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/Control.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/ListBase.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/OrderingList.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/ListShuttle.js");
+ javaScripts.add("a4j_3_2_0-SNAPSHOTscripts/PickList.js");
+ }
+
+ public PickListRendererTest(String name) {
+ super(name);
+ selectedList.add("District of Columbia");
+ selectedList.add("Illinois");
+ selectedList.add("Maryland");
+ selectedList.add("New Hampshire");
+ selectedList.add("New Jersey");
+ }
+
+ public void setUp() throws Exception {
+ super.setUp();
+ renderer = new PickListRendererGen();
+ form = new HtmlForm();
+ form.setId("form");
+ facesContext.getViewRoot().getChildren().add(form);
+
+ pickList = (UIPickList)application.createComponent("org.richfaces.PickList");
+ pickList.setValue(selected);
+
+ selectItems.add(new SelectItem("District of Columbia"));
+ selectItems.add(new SelectItem("Illinois"));
+ selectItems.add(new SelectItem("Maryland"));
+ selectItems.add(new SelectItem("Nevada"));
+ selectItems.add(new SelectItem("New Hampshire"));
+ selectItems.add(new SelectItem("New Jersey"));
+
+ UISelectItem item1 = new UISelectItem();
+ item1.setValue(new SelectItem("Oregon"));
+
+ UISelectItem item2 = new UISelectItem();
+ item2.setValue(new SelectItem("Pennsylvania"));
+
+ UISelectItem item3 = new UISelectItem();
+ item3.setValue(new SelectItem("Rhode Island"));
+
+ UISelectItem item4 = new UISelectItem();
+ item4.setValue(new SelectItem("South Carolina"));
+
+ pickList.getChildren().add(item1);
+ pickList.getChildren().add(item2);
+ pickList.getChildren().add(item3);
+ pickList.getChildren().add(item4);
+
+ UISelectItems items = new UISelectItems();
+ items.setValue(selectItems);
+ form.getChildren().add(pickList);
+
+ pickList2 = (UIPickList)application.createComponent("org.richfaces.PickList");
+ pickList2.setValue(selectedList);
+ pickList2.getChildren().add(item1);
+ pickList2.getChildren().add(item2);
+ pickList2.getChildren().add(item3);
+ pickList2.getChildren().add(item4);
+ form.getChildren().add(pickList2);
+ }
+
+ public void testRender(){
+
+ try {
+ HtmlPage page = renderView();
+ assertNotNull(page);
+ HtmlElement elem = page.getHtmlElementById(pickList.getClientId(facesContext));
+ assertNotNull(elem);
+ assertEquals(elem.getTagName(), "table");
+ renderer.doEncodeEnd(writer, facesContext, pickList);
+
+ HtmlElement elem2 = page.getHtmlElementById(pickList2.getClientId(facesContext));
+ assertNotNull(elem2);
+ assertEquals(elem.getTagName(), "table");
+ renderer.doEncodeEnd(writer, facesContext, pickList);
+
+ } catch (Exception e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ fail();
+ }
+ }
+
+
+}
18 years, 2 months
JBoss Rich Faces SVN: r5945 - management/design/inplaceInput.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-02-08 07:37:41 -0500 (Fri, 08 Feb 2008)
New Revision: 5945
Modified:
management/design/inplaceInput/FuncSpec - InplaceInput.doc
Log:
Modified: management/design/inplaceInput/FuncSpec - InplaceInput.doc
===================================================================
(Binary files differ)
18 years, 2 months
JBoss Rich Faces SVN: r5944 - trunk/ui/message/src/main/java/org/richfaces/renderkit/html.
by richfaces-svn-commits@lists.jboss.org
Author: akushunin
Date: 2008-02-08 07:27:28 -0500 (Fri, 08 Feb 2008)
New Revision: 5944
Modified:
trunk/ui/message/src/main/java/org/richfaces/renderkit/html/HtmlRichMessageRenderer.java
Log:
http://jira.jboss.com/jira/browse/RF-2197
adjusted rich:message behavior to h:massage
Modified: trunk/ui/message/src/main/java/org/richfaces/renderkit/html/HtmlRichMessageRenderer.java
===================================================================
--- trunk/ui/message/src/main/java/org/richfaces/renderkit/html/HtmlRichMessageRenderer.java 2008-02-08 12:24:05 UTC (rev 5943)
+++ trunk/ui/message/src/main/java/org/richfaces/renderkit/html/HtmlRichMessageRenderer.java 2008-02-08 12:27:28 UTC (rev 5944)
@@ -160,15 +160,17 @@
}
}
+ if(showSummary && !isTooltip){
+ writer.writeText(summary, null);
+ writer.writeText("\t", null);
+ }
+
if(showDetail){
writer.writeText(detail, null);
writer.writeText("\t", null);
}
- if(showSummary){
- writer.writeText(summary, null);
- writer.writeText("\t", null);
- }
+
}else {
if(passLabel != null){
18 years, 2 months
JBoss Rich Faces SVN: r5943 - management/design/inplaceInput.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-02-08 07:24:05 -0500 (Fri, 08 Feb 2008)
New Revision: 5943
Modified:
management/design/inplaceInput/FuncSpec - InplaceInput.doc
Log:
Modified: management/design/inplaceInput/FuncSpec - InplaceInput.doc
===================================================================
(Binary files differ)
18 years, 2 months
JBoss Rich Faces SVN: r5942 - in trunk/test-applications: facelets/src/main/webapp/ListShuttle and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2008-02-08 06:50:53 -0500 (Fri, 08 Feb 2008)
New Revision: 5942
Modified:
trunk/test-applications/facelets/src/main/java/rich/RichBean.java
trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml
trunk/test-applications/jsp/src/main/java/rich/RichBean.java
trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttle.jsp
Log:
Modified: trunk/test-applications/facelets/src/main/java/rich/RichBean.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/rich/RichBean.java 2008-02-08 11:14:41 UTC (rev 5941)
+++ trunk/test-applications/facelets/src/main/java/rich/RichBean.java 2008-02-08 11:50:53 UTC (rev 5942)
@@ -64,7 +64,8 @@
map.add("ListShuttle", add("/ListShuttle/ListShuttle", new boolean [] {true, true}));
map.add("ComponentControl", add("/ComponentControl/ComponentControl", new boolean [] {false, false}));
map.add("Columns", add("/Columns/Columns", new boolean [] {true, false}));
- map.add("A_PickList", add("/PickList/PickList", new boolean [] {false, false}));
+ map.add("PickList", add("/PickList/PickList", new boolean [] {false, false}));
+ map.add("Combobox", add("/Combobox/Combobox", new boolean [] {false, false}));
}
public String getSrc() {
Modified: trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml 2008-02-08 11:14:41 UTC (rev 5941)
+++ trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml 2008-02-08 11:50:53 UTC (rev 5942)
@@ -12,7 +12,9 @@
targetListWidth="#{listShuttle.targetListWidth}" sourceListWidth="#{listShuttle.sourceListWidth}"
listsHeight="#{listShuttle.listsHeight}" sourceCaptionLabel="#{listShuttle.sourceCaptionLabel}"
targetCaptionLabel="#{listShuttle.targetCaptionLabel}"
- topControlLabel="#{listShuttle.topControlLabel}" upControlLabel="#{listShuttle.upControlLabel}">
+ topControlLabel="#{listShuttle.topControlLabel}" upControlLabel="#{listShuttle.upControlLabel}" onclick="showEvent('onclickInputID', 'onclick work!')"
+ ondblclick="showEvent('ondblclickInputID', 'ondblclick work!')" onmouseout="showEvent('onmouseoutInputID', 'onmouseout work!')"
+ onmouseover="showEvent('onmouseoverInputID', 'onmouseover work!')" onorderchanged="showEvent('onorderchangedInputID', 'onorderchanged work!')" ontopclick="showEvent('ontopclickInputID', 'ontopclick work!')" onupclick="showEvent('onupclickInputID', 'onupclick work!')" ondownclick="showEvent('ondownclickInputID', 'ondownclick work!')" onbottomclick="showEvent('onbottomclickInputID', 'onbottomclick work!')" >
<h:column>
<f:facet name="header">
Modified: trunk/test-applications/jsp/src/main/java/rich/RichBean.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/rich/RichBean.java 2008-02-08 11:14:41 UTC (rev 5941)
+++ trunk/test-applications/jsp/src/main/java/rich/RichBean.java 2008-02-08 11:50:53 UTC (rev 5942)
@@ -13,7 +13,6 @@
private String version = VersionBean.SCM_REVISION;
private String src;
private MapComponent map;
- private List<SelectItem> list;
private boolean reComponent;
private boolean reProperty;
private boolean reStraightforward;
@@ -21,7 +20,6 @@
//private String [] menu = {"Blank", "Calendar", "DataFilterSlider", "DataScroller", "DataTable", "DragAndDrop", "DropDownMenu", "Effect", "Gmap", "InputNumberSlider", "InputNumberSpinner", "Insert", "Message", "ModalPanel", "Paint2D", "Panel", "Panel2", "PanelBar", "PanelMenu", "Separator", "SimpleTogglePanel", "Spacer", "SuggestionBox", "TabPanel", "TogglePanel", "ToolBar", "Tooltip", "Tree", "VirtualEarth", "ScrollableDataTable", "jQuery", "OrderingList"};
public RichBean() {
- list = new ArrayList<SelectItem>();
src = "Blank";
reComponent = true;
reProperty = true;
@@ -68,10 +66,6 @@
map.add("Columns", add("/Columns/Columns", new boolean [] {true, false}));
map.add("PickList", add("/PickList/PickList", new boolean [] {false, false}));
map.add("Combobox", add("/Combobox/Combobox", new boolean [] {false, false}));
- Iterator<String> iterator = map.getSet().iterator();
- while(iterator.hasNext()){
- list.add(new SelectItem(iterator.next()));
- }
}
public String getSrc() {
@@ -142,8 +136,12 @@
this.log = log;
}
- @SuppressWarnings("unchecked")
public List<SelectItem> getList(){
+ Iterator<String> iterator = map.getSet().iterator();
+ List<SelectItem> list = new ArrayList<SelectItem>();
+ while(iterator.hasNext()){
+ list.add(new SelectItem(iterator.next()));
+ }
return list;
}
Modified: trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttle.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttle.jsp 2008-02-08 11:14:41 UTC (rev 5941)
+++ trunk/test-applications/jsp/src/main/webapp/ListShuttle/ListShuttle.jsp 2008-02-08 11:50:53 UTC (rev 5942)
@@ -16,7 +16,9 @@
targetListWidth="#{listShuttle.targetListWidth}" sourceListWidth="#{listShuttle.sourceListWidth}"
listsHeight="#{listShuttle.listsHeight}" sourceCaptionLabel="#{listShuttle.sourceCaptionLabel}"
targetCaptionLabel="#{listShuttle.targetCaptionLabel}"
- topControlLabel="#{listShuttle.topControlLabel}" upControlLabel="#{listShuttle.upControlLabel}">
+ topControlLabel="#{listShuttle.topControlLabel}" upControlLabel="#{listShuttle.upControlLabel}"onclick="showEvent('onclickInputID', 'onclick work!')"
+ ondblclick="showEvent('ondblclickInputID', 'ondblclick work!')" onmouseout="showEvent('onmouseoutInputID', 'onmouseout work!')"
+ onmouseover="showEvent('onmouseoverInputID', 'onmouseover work!')" onorderchanged="showEvent('onorderchangedInputID', 'onorderchanged work!')" ontopclick="showEvent('ontopclickInputID', 'ontopclick work!')" onupclick="showEvent('onupclickInputID', 'onupclick work!')" ondownclick="showEvent('ondownclickInputID', 'ondownclick work!')" onbottomclick="showEvent('onbottomclickInputID', 'onbottomclick work!')" >
<h:column>
<f:facet name="header">
18 years, 2 months
JBoss Rich Faces SVN: r5941 - management/design/inplaceSelect.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-02-08 06:14:41 -0500 (Fri, 08 Feb 2008)
New Revision: 5941
Added:
management/design/inplaceSelect/vision.doc
Log:
Added: management/design/inplaceSelect/vision.doc
===================================================================
(Binary files differ)
Property changes on: management/design/inplaceSelect/vision.doc
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
18 years, 2 months
JBoss Rich Faces SVN: r5940 - management/design/inplaceInput.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-02-08 05:51:11 -0500 (Fri, 08 Feb 2008)
New Revision: 5940
Modified:
management/design/inplaceInput/FuncSpec - InplaceInput.doc
Log:
Modified: management/design/inplaceInput/FuncSpec - InplaceInput.doc
===================================================================
(Binary files differ)
18 years, 2 months
JBoss Rich Faces SVN: r5939 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: cluts
Date: 2008-02-08 05:24:23 -0500 (Fri, 08 Feb 2008)
New Revision: 5939
Modified:
trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml
Log:
http://jira.jboss.com/jira/browse/RF-2158 - listShuttle
Modified: trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml 2008-02-08 10:24:08 UTC (rev 5938)
+++ trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml 2008-02-08 10:24:23 UTC (rev 5939)
@@ -12,7 +12,7 @@
</emphasis> component is used for moving chosen items
from one list into another with their optional reordering there.</para>
<figure>
- <title><rich:ListShuttle> component</title>
+ <title><emphasis role="bold"><property><rich:ListShuttle></property></emphasis> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/listShuttle1.png"/>
18 years, 2 months
JBoss Rich Faces SVN: r5938 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: cluts
Date: 2008-02-08 05:24:08 -0500 (Fri, 08 Feb 2008)
New Revision: 5938
Modified:
trunk/docs/userguide/en/src/main/docbook/included/insert.xml
Log:
http://jira.jboss.com/jira/browse/RF-2158 - insert
Modified: trunk/docs/userguide/en/src/main/docbook/included/insert.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/insert.xml 2008-02-08 10:23:53 UTC (rev 5937)
+++ trunk/docs/userguide/en/src/main/docbook/included/insert.xml 2008-02-08 10:24:08 UTC (rev 5938)
@@ -111,9 +111,9 @@
</figure>
<para>The <emphasis role="bold">
<property><rich:insert></property>
- </emphasis> component provides the same functionalitity as <ulink
+ </emphasis> component provides the same functionality as <ulink
url="https://jhighlight.dev.java.net/">JHighlight</ulink>. Thus, all names of highlight
- style classes for source code of particular language could be changed to your names, wich are
+ style classes for source code of particular language could be changed to your names, which are
used by the <ulink url="https://jhighlight.dev.java.net/">JHighlight</ulink> library.</para>
</section>
18 years, 2 months
JBoss Rich Faces SVN: r5937 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: cluts
Date: 2008-02-08 05:23:53 -0500 (Fri, 08 Feb 2008)
New Revision: 5937
Modified:
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml
Log:
http://jira.jboss.com/jira/browse/RF-2158 - inputNumberSpinner
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml 2008-02-08 10:23:44 UTC (rev 5936)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml 2008-02-08 10:23:53 UTC (rev 5937)
@@ -2,7 +2,7 @@
<section>
<sectioninfo>
<keywordset>
- <keyword>unput field</keyword>
+ <keyword>input field</keyword>
<keyword>rich:inputNumberSpinner</keyword>
<keyword>HtmlInputNumberSpinner</keyword>
</keywordset>
@@ -88,7 +88,7 @@
]]></programlisting>
<para>It generates on a page:</para>
<figure>
- <title>Generated <rich:inputNumberSpinner></title>
+ <title>Generated <emphasis role="bold"><property><rich:InputNumberSpinner></property></emphasis></title>
<mediaobject>
<imageobject>
<imagedata fileref="images/inputNumberSpinner2.png"/>
@@ -134,7 +134,7 @@
</emphasis></para>
<para>There are two ways to redefine the appearance of all <emphasis role="bold">
- <property><rich:imputNumberSpinner></property>
+ <property><rich:inputNumberSpinner></property>
</emphasis> components at once:</para>
<itemizedlist>
@@ -300,7 +300,7 @@
<para>This is a result:</para>
<figure>
- <title>Redefinition styles with own classes and styleClass attributes</title>
+ <title>Redefinition styles with own classes and <emphasis><property> styleClass</property></emphasis> attributes</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/inputNumberSpinner_CS2.png"/>
18 years, 2 months