JBoss Rich Faces SVN: r8476 - trunk/samples/laguna/src/main/resources/org/richfaces/laguna.
by richfaces-svn-commits@lists.jboss.org
Author: admitriev
Date: 2008-05-07 09:48:34 -0400 (Wed, 07 May 2008)
New Revision: 8476
Modified:
trunk/samples/laguna/src/main/resources/org/richfaces/laguna/panelBar.xcss
Log:
Modified: trunk/samples/laguna/src/main/resources/org/richfaces/laguna/panelBar.xcss
===================================================================
--- trunk/samples/laguna/src/main/resources/org/richfaces/laguna/panelBar.xcss 2008-05-07 13:30:49 UTC (rev 8475)
+++ trunk/samples/laguna/src/main/resources/org/richfaces/laguna/panelBar.xcss 2008-05-07 13:48:34 UTC (rev 8476)
@@ -12,30 +12,16 @@
<u:style name="padding" value="4px 4px 4px 14px" />
<u:style name="border-bottom" value="1px solid" />
<u:style name="border-color" skin="generalBackgroundColor" />
- <u:style name="background-position" value="0% 50%" />
- <u:style name="background-image">
- <f:resource f:key="org.richfaces.renderkit.html.CustomizeableGradient">
- <f:attribute name="valign" value="middle" />
-
- <f:attribute name="gradientHeight" value="20px" />
- <f:attribute name="baseColor" skin="headerBackgroundColor" />
- </f:resource>
- </u:style>
+ <u:style name="background-image" value="none" />
+ <u:style name="background-color" skin="headerGradientColor" />
</u:selector>
<u:selector name=".rich-panelbar-header-act">
<u:style name="padding" value="4px 4px 4px 14px" />
<u:style name="border-bottom" value="1px solid" />
<u:style name="border-color" skin="panelBorderColor" />
- <u:style name="background-position" value="0% 50%" />
- <u:style name="background-image">
- <f:resource f:key="org.richfaces.renderkit.html.CustomizeableGradient">
- <f:attribute name="valign" value="middle" />
-
- <f:attribute name="gradientHeight" value="20px" />
- <f:attribute name="baseColor" skin="headerBackgroundColor" />
- </f:resource>
- </u:style>
+ <u:style name="background-image" value="none" />
+ <u:style name="background-color" skin="headerGradientColor" />
</u:selector>
<u:selector name=".rich-panelbar-content">
16 years, 8 months
JBoss Rich Faces SVN: r8475 - in trunk/ui/dataFilterSlider/src/main/java/org/richfaces: renderkit and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: vbaranov
Date: 2008-05-07 09:30:49 -0400 (Wed, 07 May 2008)
New Revision: 8475
Modified:
trunk/ui/dataFilterSlider/src/main/java/org/richfaces/component/UIDataFltrSlider.java
trunk/ui/dataFilterSlider/src/main/java/org/richfaces/renderkit/DataFilterSliderRendererBase.java
trunk/ui/dataFilterSlider/src/main/java/org/richfaces/taglib/DataFilterSliderTagBase.java
Log:
http://jira.jboss.com/jira/browse/RF-3322
Modified: trunk/ui/dataFilterSlider/src/main/java/org/richfaces/component/UIDataFltrSlider.java
===================================================================
--- trunk/ui/dataFilterSlider/src/main/java/org/richfaces/component/UIDataFltrSlider.java 2008-05-07 12:54:46 UTC (rev 8474)
+++ trunk/ui/dataFilterSlider/src/main/java/org/richfaces/component/UIDataFltrSlider.java 2008-05-07 13:30:49 UTC (rev 8475)
@@ -256,12 +256,6 @@
public abstract void setTrackStyleClass(String trackStyleClass);
- @Deprecated
- public abstract boolean isOnSlideSubmit();
-
- @Deprecated
- public abstract void setOnSlideSubmit(boolean value);
-
public abstract boolean isSubmitOnSlide();
public abstract void setSubmitOnSlide(boolean value);
Modified: trunk/ui/dataFilterSlider/src/main/java/org/richfaces/renderkit/DataFilterSliderRendererBase.java
===================================================================
--- trunk/ui/dataFilterSlider/src/main/java/org/richfaces/renderkit/DataFilterSliderRendererBase.java 2008-05-07 12:54:46 UTC (rev 8474)
+++ trunk/ui/dataFilterSlider/src/main/java/org/richfaces/renderkit/DataFilterSliderRendererBase.java 2008-05-07 13:30:49 UTC (rev 8475)
@@ -94,12 +94,12 @@
if(onchange != null){
options.append(", onchange: " + onchange);
}
-
- if(slider.isOnSlideSubmit()){
- options.append(",onSlideSubmit: function(event, v) { updateSlider1(event, v);}");
- }
+
+ if (slider.isSubmitOnSlide()) {
+ options.append(",onSlideSubmit: function(event, v) { updateSlider1(event, v);}");
+ }
options.append("}");
-
+
JSReference reference = new JSReference(options.toString());
JSFunction function = new JSFunction("Richfaces.DFSControl.Slider");
Modified: trunk/ui/dataFilterSlider/src/main/java/org/richfaces/taglib/DataFilterSliderTagBase.java
===================================================================
--- trunk/ui/dataFilterSlider/src/main/java/org/richfaces/taglib/DataFilterSliderTagBase.java 2008-05-07 12:54:46 UTC (rev 8474)
+++ trunk/ui/dataFilterSlider/src/main/java/org/richfaces/taglib/DataFilterSliderTagBase.java 2008-05-07 13:30:49 UTC (rev 8475)
@@ -49,12 +49,10 @@
* @param submitOnSlide - new value
*/
public void setSubmitOnSlide(ValueExpression submitOnSlide) {
- if (!isSubmitOnSlideSet) {
- this._submitOnSlide = submitOnSlide;
- } else {
+ if (isSubmitOnSlideSet) {
logValueDeprecation(this._submitOnSlide);
}
-
+ this._submitOnSlide = submitOnSlide;
}
private void logValueDeprecation(ValueExpression value) {
16 years, 8 months
JBoss Rich Faces SVN: r8473 - trunk/test-applications/facelets/src/main/webapp/InplaceInput.
by richfaces-svn-commits@lists.jboss.org
Author: gmaksimenko
Date: 2008-05-07 08:33:16 -0400 (Wed, 07 May 2008)
New Revision: 8473
Modified:
trunk/test-applications/facelets/src/main/webapp/InplaceInput/InplaceInput.xhtml
Log:
Add test for api-function
Modified: trunk/test-applications/facelets/src/main/webapp/InplaceInput/InplaceInput.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/InplaceInput/InplaceInput.xhtml 2008-05-07 12:32:57 UTC (rev 8472)
+++ trunk/test-applications/facelets/src/main/webapp/InplaceInput/InplaceInput.xhtml 2008-05-07 12:33:16 UTC (rev 8473)
@@ -6,7 +6,7 @@
This is because such an error can easily be made at programming level, <br />
and while invisible for the user who does not understand or cannot <br />
acquire the source code, many of those
-<rich:inplaceInput id = "inplaceInputId1"
+<rich:inplaceInput id = "inplaceInputId"
inputWidth="#{inplaceInput.inputWidth}"
maxInputWidth="#{inplaceInput.maxInputWidth}"
minInputWidth="#{inplaceInput.minInputWidth}"
@@ -52,7 +52,6 @@
onviewactivated="#{evant.onviewactivated}"
onviewactivation="#{event.onviewactivation}"
binding="#{inplaceInput.myInplaceInput}">
- <f:convertNumber pattern="###,###,##0.00"/>
</rich:inplaceInput>
are easy to exploit.
<h:panelGrid columns="2">
@@ -136,4 +135,12 @@
</h:inputText>
</h:panelGrid>
+
+ <a4j:commandLink onclick="$('formID:inplaceInputSubviewID:inplaceInputId').component.edit()" value="edit"></a4j:commandLink> <br/>
+ <a4j:commandLink onclick="$('formID:inplaceInputSubviewID:inplaceInputId').component.save()" value="save"></a4j:commandLink> <br/>
+ <a4j:commandLink onclick="$('formID:inplaceInputSubviewID:inplaceInputId').component.cancel()" value="cancel"></a4j:commandLink> <br/>
+ <a4j:commandLink onclick="$('formID:inplaceInputSubviewID:inplaceInputId').component.getValue()" value="getValue"></a4j:commandLink> <br/>
+ <a4j:commandLink onclick="$('formID:inplaceInputSubviewID:inplaceInputId').component.setValue('setValue')" value="setValuel"></a4j:commandLink>
+
+
</f:subview>
\ No newline at end of file
16 years, 8 months
JBoss Rich Faces SVN: r8472 - trunk/test-applications/jsp/src/main/webapp/InplaceInput.
by richfaces-svn-commits@lists.jboss.org
Author: gmaksimenko
Date: 2008-05-07 08:32:57 -0400 (Wed, 07 May 2008)
New Revision: 8472
Modified:
trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInput.jsp
Log:
Add test for api-function
Modified: trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInput.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInput.jsp 2008-05-07 12:27:03 UTC (rev 8471)
+++ trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInput.jsp 2008-05-07 12:32:57 UTC (rev 8472)
@@ -11,7 +11,7 @@
and while invisible for the user who does not understand or cannot <br />
acquire the source code, many of those
<rich:inplaceInput
- id = "inplaceInputId1"
+ id = "inplaceInputId"
valueChangeListener="#{inplaceInput.valueChangeListener}"
converter="inplaceInputConverter"
converterMessage="Can't convert"
@@ -144,4 +144,11 @@
</h:inputText>
</h:panelGrid>
+
+ <a4j:commandLink onclick="$('formID:inplaceInputSubviewID:inplaceInputId').component.edit()" value="edit"></a4j:commandLink> <br/>
+ <a4j:commandLink onclick="$('formID:inplaceInputSubviewID:inplaceInputId').component.save()" value="save"></a4j:commandLink> <br/>
+ <a4j:commandLink onclick="$('formID:inplaceInputSubviewID:inplaceInputId').component.cancel()" value="cancel"></a4j:commandLink> <br/>
+ <a4j:commandLink onclick="$('formID:inplaceInputSubviewID:inplaceInputId').component.getValue()" value="getValue"></a4j:commandLink> <br/>
+ <a4j:commandLink onclick="$('formID:inplaceInputSubviewID:inplaceInputId').component.setValue('setValue')" value="setValuel"></a4j:commandLink>
+
</f:subview>
\ No newline at end of file
16 years, 8 months
JBoss Rich Faces SVN: r8471 - in trunk/test-applications/qa: Plan/3.2.0 and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: tkuprevich
Date: 2008-05-07 08:27:03 -0400 (Wed, 07 May 2008)
New Revision: 8471
Added:
trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR2ayanul.xls
trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR2gmaksimenko.xls
trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR2mvitenkov.xls
trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR3tkuprevich.xls
Modified:
trunk/test-applications/qa/Test Plan/3.2.0/TestPlan-RF-3.2.0.doc
trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR2tkuprevich.xls
Log:
Modified: trunk/test-applications/qa/Test Plan/3.2.0/TestPlan-RF-3.2.0.doc
===================================================================
(Binary files differ)
Added: trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR2ayanul.xls
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR2ayanul.xls
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR2gmaksimenko.xls
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR2gmaksimenko.xls
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR2mvitenkov.xls
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR2mvitenkov.xls
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR2tkuprevich.xls
===================================================================
(Binary files differ)
Added: trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR3tkuprevich.xls
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/qa/Test Reports/3.2.1/DailyReportCR3tkuprevich.xls
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 8 months
JBoss Rich Faces SVN: r8470 - trunk/samples/richfaces-demo/src/main/webapp/richfaces/inplaceInput/examples.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-05-07 07:14:59 -0400 (Wed, 07 May 2008)
New Revision: 8470
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/inplaceInput/examples/blockInplace.xhtml
Log:
validation corrected at block table example.
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/inplaceInput/examples/blockInplace.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/inplaceInput/examples/blockInplace.xhtml 2008-05-07 10:40:13 UTC (rev 8469)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/inplaceInput/examples/blockInplace.xhtml 2008-05-07 11:14:59 UTC (rev 8470)
@@ -52,7 +52,7 @@
selectOnEdit="true" editEvent="ondblclick">
<a4j:support event="onviewactivated" reRender="table, messages"
- ajaxSingle="true" />
+ />
</rich:inplaceInput>
</rich:column>
@@ -65,7 +65,7 @@
<h:outputText value="Data Validation Results:"></h:outputText>
</f:facet>
<rich:messages style="color:red"/>
- <h:outputText value="All Prices Currently Valid"/>
+ <h:outputText value="All Prices Currently Valid" rendered="#{facesContext.maximumSeverity==null}"/>
</rich:panel>
</h:panelGrid>
</h:form>
16 years, 8 months
JBoss Rich Faces SVN: r8469 - trunk/framework/impl/src/main/javascript/prototype.
by richfaces-svn-commits@lists.jboss.org
Author: vbaranov
Date: 2008-05-07 06:40:13 -0400 (Wed, 07 May 2008)
New Revision: 8469
Modified:
trunk/framework/impl/src/main/javascript/prototype/prototype1.6.0.js
Log:
http://jira.jboss.com/jira/browse/RF-3290
Modified: trunk/framework/impl/src/main/javascript/prototype/prototype1.6.0.js
===================================================================
--- trunk/framework/impl/src/main/javascript/prototype/prototype1.6.0.js 2008-05-07 10:40:00 UTC (rev 8468)
+++ trunk/framework/impl/src/main/javascript/prototype/prototype1.6.0.js 2008-05-07 10:40:13 UTC (rev 8469)
@@ -387,7 +387,9 @@
var matchAll = new RegExp(Prototype.ScriptFragment, 'img');
var matchOne = new RegExp(Prototype.ScriptFragment, 'im');
return (this.match(matchAll) || []).map(function(scriptTag) {
- return (scriptTag.match(matchOne) || ['', ''])[1];
+ var result = (scriptTag.match(matchOne) || ['', ''])[1];
+ result = result.replace(/</,"<").replace(/\s*<!--[^\r\n]*/, "");
+ return result;
});
},
16 years, 8 months
JBoss Rich Faces SVN: r8468 - trunk/samples/richfaces-demo/src/main/webapp/richfaces/listShuttle/examples.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-05-07 06:40:00 -0400 (Wed, 07 May 2008)
New Revision: 8468
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/listShuttle/examples/toolBarCustomization.xhtml
Log:
links styles corrected
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/listShuttle/examples/toolBarCustomization.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/listShuttle/examples/toolBarCustomization.xhtml 2008-05-07 09:31:54 UTC (rev 8467)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/listShuttle/examples/toolBarCustomization.xhtml 2008-05-07 10:40:00 UTC (rev 8468)
@@ -17,9 +17,8 @@
<c:forEach items="#{toolBar.items}" var="item">
<h:panelGroup>
<h:graphicImage value="#{item.iconURI}" styleClass="pic" />
- <h:outputLink value="#">
- <h:outputText value="#{item.label}"
- style="color:#{a4jSkin.generalTextColor}; text-decoration:none;" />
+ <h:outputLink value="#" style="color:#{a4jSkin.generalTextColor}; text-decoration:none;" >
+ <h:outputText value="#{item.label}" />
</h:outputLink>
</h:panelGroup>
</c:forEach>
16 years, 8 months
JBoss Rich Faces SVN: r8467 - trunk/test-applications/facelets/src/main/webapp/WEB-INF.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2008-05-07 05:31:54 -0400 (Wed, 07 May 2008)
New Revision: 8467
Modified:
trunk/test-applications/facelets/src/main/webapp/WEB-INF/web.xml
Log:
+add context-param [org.jboss.jbossfaces.WAR_BUNDLES_JSF_IMPL
Modified: trunk/test-applications/facelets/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/WEB-INF/web.xml 2008-05-07 08:12:48 UTC (rev 8466)
+++ trunk/test-applications/facelets/src/main/webapp/WEB-INF/web.xml 2008-05-07 09:31:54 UTC (rev 8467)
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
- <description>RF Test-Application</description>
+ <description>RichFaces Test-Application</description>
<display-name>test-application</display-name>
<context-param>
<param-name>org.ajax4jsf.SKIN</param-name>
@@ -51,6 +51,10 @@
<param-name>org.ajax4jsf.xmlparser.ORDER</param-name>
<param-value>NONE</param-value>
</context-param>
+<context-param>
+ <param-name>org.jboss.jbossfaces.WAR_BUNDLES_JSF_IMPL</param-name>
+ <param-value>true</param-value>
+</context-param>
<filter>
<display-name>Ajax4jsf Filter</display-name>
<filter-name>ajax4jsf</filter-name>
16 years, 8 months