JBoss Rich Faces SVN: r13053 - in trunk/test-applications/realworld2/web/src/main: webapp/includes/image and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2009-03-20 07:13:11 -0400 (Fri, 20 Mar 2009)
New Revision: 13053
Modified:
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ImageManager.java
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageAdditionalInfo.xhtml
Log:
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ImageManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ImageManager.java 2009-03-20 11:04:43 UTC (rev 13052)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ImageManager.java 2009-03-20 11:13:11 UTC (rev 13053)
@@ -37,7 +37,6 @@
import org.richfaces.realworld.util.DirectLinkHelper;
import org.richfaces.realworld.util.FlushStrategy;
-
@Name("imageManager")
@Scope(ScopeType.CONVERSATION)
public class ImageManager {
@@ -98,5 +97,4 @@
public String getImageDirectLink(Image image) {
return directLink.getDirectImageLink(image.getId());
}
-
}
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageAdditionalInfo.xhtml
===================================================================
(Binary files differ)
15 years, 10 months
JBoss Rich Faces SVN: r13052 - in trunk/test-applications/facelets/src/main/webapp: ColorPicker and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2009-03-20 07:04:43 -0400 (Fri, 20 Mar 2009)
New Revision: 13052
Added:
trunk/test-applications/facelets/src/main/webapp/ColorPicker/
trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPicker.xhtml
trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPickerProperty.xhtml
trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPickerStraightforward.xhtml
Log:
Added: trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPicker.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPicker.xhtml (rev 0)
+++ trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPicker.xhtml 2009-03-20 11:04:43 UTC (rev 13052)
@@ -0,0 +1,25 @@
+<f:subview xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:rich="http://richfaces.org/rich" id="calendarSubviewID">
+ <rich:colorPicker binding="#{colorPicker.component}"
+ colorMode="hex" converter="colorPickerConverter"
+ converterMessage="#{colorPicker.converterMessage}"
+ flat="#{colorPicker.flat}"
+ id="colorPickerID" immediate="#{colorPicker.immediate}"
+ localValueSet="#{colorPicker.localValueSet}"
+ onclick="#{event.onclick}" ondblclick="#{event.ondblclick}"
+ onkeydown="#{event.onkeydown}" onkeypress="#{event.onkeypress}"
+ onkeyup="#{event.onkeyup}" onmousedown="#{event.onmousedown}"
+ onmousemove="#{event.onmousemove}" onmouseout="#{event.onmouseout}"
+ onmouseover="#{event.onmouseover}" onmouseup="#{event.onmouseup}"
+ rendered="#{colorPicker.rendered}" required="#{colorPicker.required}"
+ requiredMessage="#{colorPicker.requiredMessage}"
+ showEvent="onmouseover" valid="#{colorPicker.valid}"
+ validator="#{colorPicker.validate}"
+ validatorMessage="#{colorPicker.validatorMessage}"
+ value="#ffffff"
+ valueChangeListener="#{colorPicker.changeValue}">
+ </rich:colorPicker>
+</f:subview>
\ No newline at end of file
Added: trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPickerProperty.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPickerProperty.xhtml (rev 0)
+++ trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPickerProperty.xhtml 2009-03-20 11:04:43 UTC (rev 13052)
@@ -0,0 +1,63 @@
+<f:subview xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:rich="http://richfaces.org/rich" id="calendarPropertySubviewID">
+ <h:commandButton value="add test"
+ action="#{colorPicker.addColorPicker}"></h:commandButton>
+ <h:panelGrid columns="2">
+ <h:outputText value="colorMode" />
+ <h:selectOneRadio value="#{colorPicker.colorMode}"
+ onchange="submit">
+ <f:selectItem itemLabel="rgb" itemValue="rgb" />
+ <f:selectItem itemLabel="hex" itemValue="hex" />
+ </h:selectOneRadio>
+
+ <h:outputText value="converterMessage: "></h:outputText>
+ <h:inputText value="#{colorPicker.converterMessage}"
+ onchange="submit"></h:inputText>
+
+ <h:outputText value="disabled" />
+ <h:selectBooleanCheckbox value="#{colorPicker.disabled}"
+ onclick="submit" />
+
+ <h:outputText value="flat" />
+ <h:selectBooleanCheckbox value="#{colorPicker.flat}"
+ onclick="submit" />
+
+ <h:outputText value="immediate" />
+ <h:selectBooleanCheckbox value="#{colorPicker.immediate}"
+ onclick="submit" />
+
+ <h:outputText value="localValueSet" />
+ <h:selectBooleanCheckbox value="#{colorPicker.localValueSet}"
+ onclick="submit" />
+
+ <h:outputText value="rendered" />
+ <h:selectBooleanCheckbox value="#{colorPicker.rendered}"
+ onclick="submit" />
+
+ <h:outputText value="required" />
+ <h:selectBooleanCheckbox value="#{colorPicker.required}"
+ onclick="submit" />
+
+ <h:outputText value="requiredMessage: "></h:outputText>
+ <h:inputText value="#{colorPicker.requiredMessage}"
+ onchange="submit"></h:inputText>
+
+ <h:outputText value="valid" />
+ <h:selectBooleanCheckbox value="#{colorPicker.valid}"
+ onclick="submit" />
+
+ <h:outputText value="validatorMessage: "></h:outputText>
+ <h:inputText value="#{colorPicker.validatorMessage}"
+ onchange="submit;"></h:inputText>
+
+ <h:commandButton actionListener="#{colorPicker.checkBinding}"
+ value="Binding">
+ <a4j:support event="onclick" reRender="bindLabelID"></a4j:support>
+ </h:commandButton>
+ <h:outputText value="#{colorPicker.bindLabel}" id="bindLabelID" />
+
+ </h:panelGrid>
+</f:subview>
\ No newline at end of file
Added: trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPickerStraightforward.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPickerStraightforward.xhtml (rev 0)
+++ trunk/test-applications/facelets/src/main/webapp/ColorPicker/ColorPickerStraightforward.xhtml 2009-03-20 11:04:43 UTC (rev 13052)
@@ -0,0 +1,8 @@
+<f:subview xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:rich="http://richfaces.org/rich"
+ id="calendarStraightforwardSubviewID">
+
+</f:subview>
\ No newline at end of file
15 years, 10 months
JBoss Rich Faces SVN: r13051 - trunk/test-applications/jsp/src/main/java/colorPicker.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2009-03-20 06:39:34 -0400 (Fri, 20 Mar 2009)
New Revision: 13051
Modified:
trunk/test-applications/jsp/src/main/java/colorPicker/ColorPicker.java
Log:
REMOVE DISABLED ATTRIBUTE
Modified: trunk/test-applications/jsp/src/main/java/colorPicker/ColorPicker.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/colorPicker/ColorPicker.java 2009-03-20 10:38:34 UTC (rev 13050)
+++ trunk/test-applications/jsp/src/main/java/colorPicker/ColorPicker.java 2009-03-20 10:39:34 UTC (rev 13051)
@@ -17,8 +17,7 @@
public class ColorPicker implements Validator, Converter {
private HtmlColorPicker component;
private String colorMode;// hex, rgb
- private String converterMessage;
- private boolean disabled;
+ private String converterMessage;
private boolean flat;
private boolean immediate;
private boolean localValueSet;
@@ -32,8 +31,7 @@
public ColorPicker() {
colorMode = "rgb";
- converterMessage = "custom converter message";
- disabled = false;
+ converterMessage = "custom converter message";
flat = false;
immediate = false;
localValueSet = true;
@@ -115,16 +113,8 @@
public void setConverterMessage(String converterMessage) {
this.converterMessage = converterMessage;
- }
+ }
- public boolean isDisabled() {
- return disabled;
- }
-
- public void setDisabled(boolean disabled) {
- this.disabled = disabled;
- }
-
public boolean isFlat() {
return flat;
}
15 years, 10 months
JBoss Rich Faces SVN: r13050 - trunk/test-applications/jsp/src/main/webapp/ColorPicker.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2009-03-20 06:38:34 -0400 (Fri, 20 Mar 2009)
New Revision: 13050
Modified:
trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.jsp
trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.jsp
Log:
remove disabled attribute
Modified: trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.jsp 2009-03-20 10:35:41 UTC (rev 13049)
+++ trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.jsp 2009-03-20 10:38:34 UTC (rev 13050)
@@ -7,7 +7,7 @@
<rich:colorPicker binding="#{colorPicker.component}"
colorMode="hex" converter="colorPickerConverter"
converterMessage="#{colorPicker.converterMessage}"
- disabled="#{colorPicker.disabled}" flat="#{colorPicker.flat}"
+ flat="#{colorPicker.flat}"
id="colorPickerID" immediate="#{colorPicker.immediate}"
localValueSet="#{colorPicker.localValueSet}"
onclick="#{event.onclick}" ondblclick="#{event.ondblclick}"
Modified: trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.jsp 2009-03-20 10:35:41 UTC (rev 13049)
+++ trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.jsp 2009-03-20 10:38:34 UTC (rev 13050)
@@ -17,11 +17,7 @@
<h:outputText value="converterMessage: "></h:outputText>
<h:inputText value="#{colorPicker.converterMessage}"
onchange="submit"></h:inputText>
-
- <h:outputText value="disabled" />
- <h:selectBooleanCheckbox value="#{colorPicker.disabled}"
- onclick="submit" />
-
+
<h:outputText value="flat" />
<h:selectBooleanCheckbox value="#{colorPicker.flat}"
onclick="submit" />
15 years, 10 months
JBoss Rich Faces SVN: r13049 - trunk/test-applications/jsp/src/main/webapp/ColorPicker.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2009-03-20 06:35:41 -0400 (Fri, 20 Mar 2009)
New Revision: 13049
Added:
trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.jsp
trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.jsp
trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerStraightforward.jsp
Removed:
trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.xhtml
trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.xhtml
trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerStraightforward.xhtml
Log:
Added: trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.jsp (rev 0)
+++ trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.jsp 2009-03-20 10:35:41 UTC (rev 13049)
@@ -0,0 +1,26 @@
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
+<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+
+<f:subview id="colorPickerSubviewID">
+ <rich:colorPicker binding="#{colorPicker.component}"
+ colorMode="hex" converter="colorPickerConverter"
+ converterMessage="#{colorPicker.converterMessage}"
+ disabled="#{colorPicker.disabled}" flat="#{colorPicker.flat}"
+ id="colorPickerID" immediate="#{colorPicker.immediate}"
+ localValueSet="#{colorPicker.localValueSet}"
+ onclick="#{event.onclick}" ondblclick="#{event.ondblclick}"
+ onkeydown="#{event.onkeydown}" onkeypress="#{event.onkeypress}"
+ onkeyup="#{event.onkeyup}" onmousedown="#{event.onmousedown}"
+ onmousemove="#{event.onmousemove}" onmouseout="#{event.onmouseout}"
+ onmouseover="#{event.onmouseover}" onmouseup="#{event.onmouseup}"
+ rendered="#{colorPicker.rendered}" required="#{colorPicker.required}"
+ requiredMessage="#{colorPicker.requiredMessage}"
+ showEvent="onmouseover" valid="#{colorPicker.valid}"
+ validator="#{colorPicker.validate}"
+ validatorMessage="#{colorPicker.validatorMessage}"
+ value="#{colorPicker.value}"
+ valueChangeListener="#{colorPicker.changeValue}">
+ </rich:colorPicker>
+</f:subview>
Deleted: trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.xhtml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.xhtml 2009-03-19 23:54:25 UTC (rev 13048)
+++ trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPicker.xhtml 2009-03-20 10:35:41 UTC (rev 13049)
@@ -1,25 +0,0 @@
-<f:subview xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:a4j="http://richfaces.org/a4j"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:rich="http://richfaces.org/rich" id="calendarSubviewID">
- <rich:colorPicker binding="#{colorPicker.component}"
- colorMode="#{colorPicker.colorMode}" converter="colorPickerConverter"
- converterMessage="#{colorPicker.converterMessage}"
- disabled="#{colorPicker.disabled}" flat="#{colorPicker.flat}"
- id="colorPickerID" immediate="#{colorPicker.immediate}"
- localValueSet="#{colorPicker.localValueSet}"
- onclick="#{event.onclick}" ondblclick="#{event.ondblclick}"
- onkeydown="#{event.onkeydown}" onkeypress="#{event.onkeypress}"
- onkeyup="#{event.onkeyup}" onmousedown="#{event.onmousedown}"
- onmousemove="#{event.onmousemove}" onmouseout="#{event.onmouseout}"
- onmouseover="#{event.onmouseover}" onmouseup="#{event.onmouseup}"
- rendered="#{colorPicker.rendered}" required="#{colorPicker.required}"
- requiredMessage="#{colorPicker.requiredMessage}"
- showEvent="onmouseover" valid="#{colorPicker.valid}"
- validator="#{colorPicker.validate}"
- validatorMessage="#{colorPicker.validatorMessage}"
- value="#{colorPicker.value}"
- valueChangeListener="#{colorPicker.changeValue}">
- </rich:colorPicker>
-</f:subview>
\ No newline at end of file
Added: trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.jsp (rev 0)
+++ trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.jsp 2009-03-20 10:35:41 UTC (rev 13049)
@@ -0,0 +1,64 @@
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
+<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+
+<f:subview id="colorPickerPropertySubviewID">
+ <h:commandButton value="add test"
+ action="#{colorPicker.addColorPicker}"></h:commandButton>
+ <h:panelGrid columns="2">
+ <h:outputText value="colorMode" />
+ <h:selectOneRadio value="#{colorPicker.colorMode}"
+ onchange="submit">
+ <f:selectItem itemLabel="rgb" itemValue="rgb" />
+ <f:selectItem itemLabel="hex" itemValue="hex" />
+ </h:selectOneRadio>
+
+ <h:outputText value="converterMessage: "></h:outputText>
+ <h:inputText value="#{colorPicker.converterMessage}"
+ onchange="submit"></h:inputText>
+
+ <h:outputText value="disabled" />
+ <h:selectBooleanCheckbox value="#{colorPicker.disabled}"
+ onclick="submit" />
+
+ <h:outputText value="flat" />
+ <h:selectBooleanCheckbox value="#{colorPicker.flat}"
+ onclick="submit" />
+
+ <h:outputText value="immediate" />
+ <h:selectBooleanCheckbox value="#{colorPicker.immediate}"
+ onclick="submit" />
+
+ <h:outputText value="localValueSet" />
+ <h:selectBooleanCheckbox value="#{colorPicker.localValueSet}"
+ onclick="submit" />
+
+ <h:outputText value="rendered" />
+ <h:selectBooleanCheckbox value="#{colorPicker.rendered}"
+ onclick="submit" />
+
+ <h:outputText value="required" />
+ <h:selectBooleanCheckbox value="#{colorPicker.required}"
+ onclick="submit" />
+
+ <h:outputText value="requiredMessage: "></h:outputText>
+ <h:inputText value="#{colorPicker.requiredMessage}"
+ onchange="submit"></h:inputText>
+
+ <h:outputText value="valid" />
+ <h:selectBooleanCheckbox value="#{colorPicker.valid}"
+ onclick="submit" />
+
+ <h:outputText value="validatorMessage: "></h:outputText>
+ <h:inputText value="#{colorPicker.validatorMessage}"
+ onchange="submit;"></h:inputText>
+
+ <h:commandButton actionListener="#{colorPicker.checkBinding}"
+ value="Binding">
+ <a4j:support event="onclick" reRender="bindLabelID"></a4j:support>
+ </h:commandButton>
+ <h:outputText value="#{colorPicker.bindLabel}" id="bindLabelID" />
+
+ </h:panelGrid>
+</f:subview>
\ No newline at end of file
Deleted: trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.xhtml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.xhtml 2009-03-19 23:54:25 UTC (rev 13048)
+++ trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerProperty.xhtml 2009-03-20 10:35:41 UTC (rev 13049)
@@ -1,63 +0,0 @@
-<f:subview xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:a4j="http://richfaces.org/a4j"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:rich="http://richfaces.org/rich" id="calendarPropertySubviewID">
- <h:commandButton value="add test"
- action="#{colorPicker.addColorPicker}"></h:commandButton>
- <h:panelGrid columns="2">
- <h:outputText value="colorMode" />
- <h:selectOneRadio value="#{colorPicker.colorMode}"
- onchange="submit">
- <f:selectItem itemLabel="rgb" itemValue="rgb" />
- <f:selectItem itemLabel="hex" itemValue="hex" />
- </h:selectOneRadio>
-
- <h:outputText value="converterMessage: "></h:outputText>
- <h:inputText value="#{colorPicker.converterMessage}"
- onchange="submit"></h:inputText>
-
- <h:outputText value="disabled" />
- <h:selectBooleanCheckbox value="#{colorPicker.disabled}"
- onclick="submit" />
-
- <h:outputText value="flat" />
- <h:selectBooleanCheckbox value="#{colorPicker.flat}"
- onclick="submit" />
-
- <h:outputText value="immediate" />
- <h:selectBooleanCheckbox value="#{colorPicker.immediate}"
- onclick="submit" />
-
- <h:outputText value="localValueSet" />
- <h:selectBooleanCheckbox value="#{colorPicker.localValueSet}"
- onclick="submit" />
-
- <h:outputText value="rendered" />
- <h:selectBooleanCheckbox value="#{colorPicker.rendered}"
- onclick="submit" />
-
- <h:outputText value="required" />
- <h:selectBooleanCheckbox value="#{colorPicker.required}"
- onclick="submit" />
-
- <h:outputText value="requiredMessage: "></h:outputText>
- <h:inputText value="#{colorPicker.requiredMessage}"
- onchange="submit"></h:inputText>
-
- <h:outputText value="valid" />
- <h:selectBooleanCheckbox value="#{colorPicker.valid}"
- onclick="submit" />
-
- <h:outputText value="validatorMessage: "></h:outputText>
- <h:inputText value="#{colorPicker.validatorMessage}"
- onchange="submit;"></h:inputText>
-
- <h:commandButton actionListener="#{colorPicker.checkBinding}"
- value="Binding">
- <a4j:support event="onclick" reRender="bindLabelID"></a4j:support>
- </h:commandButton>
- <h:outputText value="#{colorPicker.bindLabel}" id="bindLabelID" />
-
- </h:panelGrid>
-</f:subview>
\ No newline at end of file
Added: trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerStraightforward.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerStraightforward.jsp (rev 0)
+++ trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerStraightforward.jsp 2009-03-20 10:35:41 UTC (rev 13049)
@@ -0,0 +1,8 @@
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
+<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+
+<f:subview id="colorPickerStraightforwardSubviewID">
+<div>ColorPicker straightforward...</div>
+</f:subview>
\ No newline at end of file
Deleted: trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerStraightforward.xhtml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerStraightforward.xhtml 2009-03-19 23:54:25 UTC (rev 13048)
+++ trunk/test-applications/jsp/src/main/webapp/ColorPicker/ColorPickerStraightforward.xhtml 2009-03-20 10:35:41 UTC (rev 13049)
@@ -1,8 +0,0 @@
-<f:subview xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:a4j="http://richfaces.org/a4j"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:rich="http://richfaces.org/rich"
- id="calendarStraightforwardSubviewID">
-
-</f:subview>
\ No newline at end of file
15 years, 10 months
JBoss Rich Faces SVN: r13048 - trunk/ui/assembly/src/main/assembly.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-03-19 19:54:25 -0400 (Thu, 19 Mar 2009)
New Revision: 13048
Modified:
trunk/ui/assembly/src/main/assembly/src.xml
Log:
Assembly descriptor updated
Modified: trunk/ui/assembly/src/main/assembly/src.xml
===================================================================
--- trunk/ui/assembly/src/main/assembly/src.xml 2009-03-19 23:12:15 UTC (rev 13047)
+++ trunk/ui/assembly/src/main/assembly/src.xml 2009-03-19 23:54:25 UTC (rev 13048)
@@ -20,6 +20,9 @@
<exclude>**/.*/**</exclude>
<exclude>**/*.log</exclude>
<exclude>www/**</exclude>
+ <exclude>**/test-applications/qa/**</exclude>
+ <exclude>**/test-applications/*realworld*/**/upload.tgz</exclude>
+ <exclude>**/test-applications/*realworld*/**/WEB-INF/Upload/**/*.jpg</exclude>
</excludes>
</fileSet>
<!-- fileSet>
15 years, 10 months
JBoss Rich Faces SVN: r13047 - in trunk/sandbox: ui and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-03-19 19:12:15 -0400 (Thu, 19 Mar 2009)
New Revision: 13047
Removed:
trunk/sandbox/samples/layout-sample/
trunk/sandbox/ui/layout/
Modified:
trunk/sandbox/ui/pom.xml
Log:
layout module moved into main build
Modified: trunk/sandbox/ui/pom.xml
===================================================================
--- trunk/sandbox/ui/pom.xml 2009-03-19 23:10:24 UTC (rev 13046)
+++ trunk/sandbox/ui/pom.xml 2009-03-19 23:12:15 UTC (rev 13047)
@@ -18,6 +18,5 @@
<module>rex-messageBox</module>
<!--module>rex-button</module-->
<module>sortableHeader</module>
- <module>layout</module>
</modules>
</project>
\ No newline at end of file
15 years, 10 months
JBoss Rich Faces SVN: r13046 - trunk/samples.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-03-19 19:10:24 -0400 (Thu, 19 Mar 2009)
New Revision: 13046
Added:
trunk/samples/layout-sample/
Modified:
trunk/samples/pom.xml
Log:
layout module moved into main build
Copied: trunk/samples/layout-sample (from rev 13044, trunk/sandbox/samples/layout-sample)
Modified: trunk/samples/pom.xml
===================================================================
--- trunk/samples/pom.xml 2009-03-19 23:09:56 UTC (rev 13045)
+++ trunk/samples/pom.xml 2009-03-19 23:10:24 UTC (rev 13046)
@@ -487,6 +487,7 @@
<module>editor-sample</module>
<module>editorSeam-sample</module>
<module>colorPickerDemo</module>
+ <module>layout-sample</module>
</modules>
</profile>
</profiles>
15 years, 10 months
JBoss Rich Faces SVN: r13045 - trunk/ui.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-03-19 19:09:56 -0400 (Thu, 19 Mar 2009)
New Revision: 13045
Added:
trunk/ui/layout/
Modified:
trunk/ui/pom.xml
Log:
layout module moved into main build
Copied: trunk/ui/layout (from rev 13044, trunk/sandbox/ui/layout)
Modified: trunk/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2009-03-19 22:39:50 UTC (rev 13044)
+++ trunk/ui/pom.xml 2009-03-19 23:09:56 UTC (rev 13045)
@@ -132,6 +132,7 @@
<module>state</module>
<module>extendedDataTable</module>
<module>editor</module>
+ <module>layout</module>
</modules>
<dependencies>
<dependency>
15 years, 10 months