JBoss Rich Faces SVN: r10378 - in trunk/samples/richfaces-demo/src/main: webapp/images/tree and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-09-09 10:14:51 -0400 (Tue, 09 Sep 2008)
New Revision: 10378
Added:
trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/
trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/favorites.gif
trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/image.gif
trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/trash.gif
trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/trash_full.gif
Modified:
trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/tree/DemoTreeNodeImpl.java
trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/tree/SimpleTreeDndBean.java
trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree/examples/simple-tree-data-dnd.properties
trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree/examples/simpleDnd.xhtml
Log:
Modified: trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/tree/DemoTreeNodeImpl.java
===================================================================
--- trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/tree/DemoTreeNodeImpl.java 2008-09-09 12:52:34 UTC (rev 10377)
+++ trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/tree/DemoTreeNodeImpl.java 2008-09-09 14:14:51 UTC (rev 10378)
@@ -15,7 +15,10 @@
*/
public class DemoTreeNodeImpl<T> extends TreeNodeImpl<T>{
- private String type;
+ private String icon;
+ private String leafIcon;
+
+ private String type;
/**
* @return the type
@@ -29,6 +32,22 @@
*/
public void setType(String type) {
this.type = type;
- }
+ }
+
+ public String getIcon() {
+ return icon;
+ }
+
+ public void setIcon(String icon) {
+ this.icon = icon;
+ }
+
+ public String getLeafIcon() {
+ return leafIcon;
+ }
+
+ public void setLeafIcon(String leafIcon) {
+ this.leafIcon = leafIcon;
+ }
}
Modified: trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/tree/SimpleTreeDndBean.java
===================================================================
--- trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/tree/SimpleTreeDndBean.java 2008-09-09 12:52:34 UTC (rev 10377)
+++ trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/tree/SimpleTreeDndBean.java 2008-09-09 14:14:51 UTC (rev 10378)
@@ -52,6 +52,8 @@
private String nodeTitle;
+ private static final String ICONS_PATH = "/images/tree/dnd/";
+
private static final String DATA_PATH = "/richfaces/tree/examples/simple-tree-data-dnd.properties";
private void addNodes(String path, TreeNode node, Properties properties) {
@@ -68,6 +70,13 @@
if (splittedValue.length > 1) {
nodeImpl.setData(splittedValue[0]);
nodeImpl.setType(splittedValue[1]);
+ if (splittedValue.length>2){
+ nodeImpl.setIcon(ICONS_PATH+splittedValue[2]);
+ nodeImpl.setLeafIcon(ICONS_PATH+splittedValue[2]);
+ }
+ if (splittedValue.length>3){
+ nodeImpl.setLeafIcon(ICONS_PATH+splittedValue[3]);
+ }
node.addChild(new Integer(counter), nodeImpl);
}
addNodes(key, nodeImpl, properties);
Added: trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/favorites.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/favorites.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/image.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/image.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/trash.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/trash.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/trash_full.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/tree/dnd/trash_full.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree/examples/simple-tree-data-dnd.properties
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree/examples/simple-tree-data-dnd.properties 2008-09-09 12:52:34 UTC (rev 10377)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree/examples/simple-tree-data-dnd.properties 2008-09-09 14:14:51 UTC (rev 10378)
@@ -1,5 +1,5 @@
-#path=name - type
-1=Unsorted - node
+#path=name - type - icon
+1=Unsorted - node - image.gif
1.1=pic1.jpg - leaf
1.2=pic2.jpg - leaf
1.3=pic3.jpg - leaf
@@ -8,5 +8,5 @@
1.6=pic6.jpg - leaf
1.7=pic7.jpg - leaf
1.8=pic8.jpg - leaf
-2 = Favorites - node
-3 = Trash - node
\ No newline at end of file
+2=Favorites - node - favorites.gif
+3=Trash - node - trash_full.gif - trash.gif
\ No newline at end of file
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree/examples/simpleDnd.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree/examples/simpleDnd.xhtml 2008-09-09 12:52:34 UTC (rev 10377)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/tree/examples/simpleDnd.xhtml 2008-09-09 14:14:51 UTC (rev 10378)
@@ -31,7 +31,7 @@
reRender="selectedNode" ajaxSubmitSelection="true" switchType="client" dragIndicator="indicator2"
value="#{simpleTreeDndBean.treeNode}" var="item" id="tree" treeNodeVar="treeNode"
dropListener="#{simpleTreeDndBean.dropListener}" nodeFace="#{treeNode.parent.parent == null ? 'node' : 'leaf'}">
- <rich:treeNode type="node" acceptedTypes="pic">
+ <rich:treeNode type="node" acceptedTypes="pic" icon="#{treeNode.icon}" iconLeaf="#{treeNode.leafIcon}">
<h:outputText value="#{item}"/>
</rich:treeNode>
<rich:treeNode type="leaf" dragType="pic">
16 years, 3 months
JBoss Rich Faces SVN: r10377 - in trunk/ui/extendedDataTable/src/main: javascript/ClientUI/controls/datatable and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: pkawiak
Date: 2008-09-09 08:52:34 -0400 (Tue, 09 Sep 2008)
New Revision: 10377
Modified:
trunk/ui/extendedDataTable/src/main/java/org/richfaces/renderkit/AbstractExtendedTableRenderer.java
trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js
trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js
trunk/ui/extendedDataTable/src/main/resources/org/richfaces/renderkit/html/css/extendedDataTable.xcss
Log:
RF-4285 fixing a problem with collapsed rows under safari + improving looks of the component in IE
Modified: trunk/ui/extendedDataTable/src/main/java/org/richfaces/renderkit/AbstractExtendedTableRenderer.java
===================================================================
--- trunk/ui/extendedDataTable/src/main/java/org/richfaces/renderkit/AbstractExtendedTableRenderer.java 2008-09-09 12:20:21 UTC (rev 10376)
+++ trunk/ui/extendedDataTable/src/main/java/org/richfaces/renderkit/AbstractExtendedTableRenderer.java 2008-09-09 12:52:34 UTC (rev 10377)
@@ -151,20 +151,22 @@
String headerClass = (String) table.getAttributes().get(
"headerClass");
// String menuId = (String) table.getAttributes().get(MENU_ID);
+
+ writer.startElement("tr", header);
+ encodeStyleClass(writer, null,
+ "extdt-header rich-extdt-header", headerClass, null);
+ writer.writeAttribute(HTML.id_ATTRIBUTE, table
+ .getBaseClientId(context)
+ + ":fakeIeRow", null);
+ for (int i = 0; i < numberOfColumns; i++) {
+ writer.startElement("th", header);
+ encodeStyleClass(writer, null,
+ "extdt-headercell extdt-fakeierow rich-extdt-headercell",
+ headerClass, null);
+ writer.endElement("th");
+ }
+
if (header != null) {
- writer.startElement("tr", header);
- encodeStyleClass(writer, null,
- "extdt-header rich-extdt-header", headerClass, null);
- writer.writeAttribute(HTML.id_ATTRIBUTE, table
- .getBaseClientId(context)
- + ":fakeIeRow", null);
- for (int i = 0; i < numberOfColumns; i++) {
- writer.startElement("th", header);
- encodeStyleClass(writer, null,
- "extdt-headercell extdt-fakeierow rich-extdt-headercell",
- headerClass, null);
- writer.endElement("th");
- }
writer.endElement("tr");
encodeTableHeaderFacet(context, numberOfColumns, writer,
@@ -589,10 +591,10 @@
boolean first = true;
int currentColumn = 0;
UIColumn column = null;
+ if (holder.isFirstRow()) {
+ encodeFakeIeRow(context, table, holder);
+ }
if (holder.isGroupingOn() && (rowGroupChanged(context, holder))) {
- if (holder.isFirstRow()) {
- encodeFakeIeRow(context, table, holder);
- }
encodeGroupRow(context, table, holder);
}
holder.setFirstRow(false);
Modified: trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js
===================================================================
--- trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js 2008-09-09 12:20:21 UTC (rev 10376)
+++ trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js 2008-09-09 12:52:34 UTC (rev 10377)
@@ -31,7 +31,7 @@
function(){
grid.update(true);
},
- Utils.Condition.ElementPresent(id+':od'), 5);
+ Utils.Condition.ElementPresent(id+':od'), 100);
},
destroy: function() {
@@ -295,14 +295,14 @@
var sd = this.scrollingDiv.getElement();
return sd.offsetWidth - sd.clientWidth;
},
- validateColumnsWidth: function(columns,excessWidth) {
+ validateColumnsWidth: function(columns,excessWidth) {
var i=1;
var endIndex = columns.length-1;
while ((i < endIndex) && (excessWidth > 0)) {
if (ClientUILib.isIE) {
var colWidth = parseInt(this.getColumns()[i].width) - 1;
}else{
- var colWidth = this.getColumnWidth(i);
+ var colWidth = this.header.getColumnWidth(i);
}
var spareWidth = colWidth - this.minColumnWidth;
var dW;
@@ -392,7 +392,7 @@
this.tableB.deleteRow(this.fakeIeBodyRow.rowIndex);
this.fakeIeBodyRow = null;
}
- }
+ };
this.selectionManager.refreshEvents();
this.updateLayout();
this.selectionManager.restoreState();
Modified: trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js
===================================================================
--- trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js 2008-09-09 12:20:21 UTC (rev 10376)
+++ trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js 2008-09-09 12:52:34 UTC (rev 10377)
@@ -276,10 +276,6 @@
}
if (delta > this.maxDelta) {
delta = this.maxDelta;
- }
- if (ClientUILib.isIE) {
- // sep span width
- delta -= 6;
}
var columnIndex = this.dragColumnInfo.srcElement.columnIndex;
var newWidth = this.getColumnWidth(columnIndex) + delta;
@@ -320,10 +316,12 @@
}
},
_redrawTable: function(table) {
+ table.hide(); //this is for opera < 9.5
var tr = table.insertRow(0);
var td = tr.insertCell(0);
td.setAttribute("colspan", 5);
td.innerHTML = "safari-must-have-something-inserted-to-redraw-table";
table.deleteRow(tr.rowIndex);
+ table.show();
}
});
\ No newline at end of file
Modified: trunk/ui/extendedDataTable/src/main/resources/org/richfaces/renderkit/html/css/extendedDataTable.xcss
===================================================================
--- trunk/ui/extendedDataTable/src/main/resources/org/richfaces/renderkit/html/css/extendedDataTable.xcss 2008-09-09 12:20:21 UTC (rev 10376)
+++ trunk/ui/extendedDataTable/src/main/resources/org/richfaces/renderkit/html/css/extendedDataTable.xcss 2008-09-09 12:52:34 UTC (rev 10377)
@@ -10,6 +10,7 @@
.extdt-table-layout {
table-layout: fixed;
+ border-spacing: 0;
}
.extdt-table-filterrow {
@@ -32,6 +33,7 @@
}
.extdt-fakeierow {
+ display: none;
}
.extdt-thead {
16 years, 3 months
JBoss Rich Faces SVN: r10376 - trunk/docs/userguide/en/src/main/resources/images.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-09-09 08:20:21 -0400 (Tue, 09 Sep 2008)
New Revision: 10376
Modified:
trunk/docs/userguide/en/src/main/resources/images/message_oc.png
Log:
Replasing an image with another one with correct resolution
Modified: trunk/docs/userguide/en/src/main/resources/images/message_oc.png
===================================================================
(Binary files differ)
16 years, 3 months
JBoss Rich Faces SVN: r10375 - in branches/3.2.x/samples/richfaces-demo/src/main: webapp/richfaces/calendar/examples and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2008-09-09 07:13:23 -0400 (Tue, 09 Sep 2008)
New Revision: 10375
Modified:
branches/3.2.x/samples/richfaces-demo/src/main/java/org/richfaces/demo/calendar/modelImpl/CalendarDataModelImpl.java
branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml
Log:
Fix RF-4154 bug
Modified: branches/3.2.x/samples/richfaces-demo/src/main/java/org/richfaces/demo/calendar/modelImpl/CalendarDataModelImpl.java
===================================================================
--- branches/3.2.x/samples/richfaces-demo/src/main/java/org/richfaces/demo/calendar/modelImpl/CalendarDataModelImpl.java 2008-09-09 11:04:31 UTC (rev 10374)
+++ branches/3.2.x/samples/richfaces-demo/src/main/java/org/richfaces/demo/calendar/modelImpl/CalendarDataModelImpl.java 2008-09-09 11:13:23 UTC (rev 10375)
@@ -110,6 +110,12 @@
* @param valueChangeEvent handling
*/
public void valueChanged(ValueChangeEvent event) {
+ try {
+ Thread.currentThread().sleep(500);
+ } catch (InterruptedException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
System.out.println(event.getNewValue()+"selected");
setCurrentDate((Date)event.getNewValue());
Calendar calendar = Calendar.getInstance();
Modified: branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml 2008-09-09 11:04:31 UTC (rev 10374)
+++ branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml 2008-09-09 11:13:23 UTC (rev 10375)
@@ -10,11 +10,12 @@
}
.rich-calendar-header{
text-align:center;
- }
+ }
</style>
<h:form id="form">
<rich:messages/>
+ <a4j:jsFunction name="ajaxSubmit" oncomplete="#{rich:component('panel')}.show()" reRender="editContent" />
<rich:calendar value="#{calendarBean.selectedDate}"
popup="false" showApplyButton="false"
cellWidth="100px" cellHeight="100px"
@@ -25,14 +26,14 @@
<h:outputText value="Current Month" styleClass="header"/>
</h:panelGroup>
</f:facet>
- <a4j:outputPanel layout="block" id="cell">
+ <a4j:outputPanel layout="block" id="cell" onclick="ajaxSubmit()" style="height: 100%;">
<h:panelGrid columns="1">
<h:outputText value="{day}" style="align:center"/>
<h:outputText value="{data.shortDescription}"/>
<h:outputText value="{data.description}"/>
</h:panelGrid>
</a4j:outputPanel>
- <a4j:support event="onchanged" oncomplete="#{rich:component('panel')}.show()" reRender="editContent"/>
+ <a4j:support event="onchanged" reRender="editContent" />
</rich:calendar>
</h:form>
<rich:modalPanel id="panel" resizeable="false">
16 years, 3 months
JBoss Rich Faces SVN: r10374 - in trunk/samples/richfaces-demo/src/main: webapp/richfaces/calendar/examples and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2008-09-09 07:04:31 -0400 (Tue, 09 Sep 2008)
New Revision: 10374
Modified:
trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/calendar/modelImpl/CalendarDataModelImpl.java
trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml
Log:
Fix 4154 bug
Modified: trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/calendar/modelImpl/CalendarDataModelImpl.java
===================================================================
--- trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/calendar/modelImpl/CalendarDataModelImpl.java 2008-09-09 10:55:41 UTC (rev 10373)
+++ trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/calendar/modelImpl/CalendarDataModelImpl.java 2008-09-09 11:04:31 UTC (rev 10374)
@@ -26,6 +26,7 @@
import java.util.HashMap;
import java.util.Map;
+import javax.faces.event.ActionEvent;
import javax.faces.event.ValueChangeEvent;
import org.richfaces.model.CalendarDataModel;
@@ -110,6 +111,12 @@
* @param valueChangeEvent handling
*/
public void valueChanged(ValueChangeEvent event) {
+ try {
+ Thread.currentThread().sleep(500);
+ } catch (InterruptedException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
System.out.println(event.getNewValue()+"selected");
setCurrentDate((Date)event.getNewValue());
Calendar calendar = Calendar.getInstance();
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml 2008-09-09 10:55:41 UTC (rev 10373)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml 2008-09-09 11:04:31 UTC (rev 10374)
@@ -15,6 +15,7 @@
<h:form id="form">
<rich:messages/>
+ <a4j:jsFunction name="ajaxSubmit" oncomplete="#{rich:component('panel')}.show()" reRender="editContent" />
<rich:calendar value="#{calendarBean.selectedDate}"
popup="false" showApplyButton="false"
cellWidth="100px" cellHeight="100px"
@@ -25,14 +26,14 @@
<h:outputText value="Current Month" styleClass="header"/>
</h:panelGroup>
</f:facet>
- <a4j:outputPanel layout="block" id="cell">
+ <a4j:outputPanel layout="block" id="cell" onclick="ajaxSubmit()" style="height: 100%;">
<h:panelGrid columns="1">
<h:outputText value="{day}" style="align:center"/>
<h:outputText value="{data.shortDescription}"/>
<h:outputText value="{data.description}"/>
</h:panelGrid>
</a4j:outputPanel>
- <a4j:support event="onchanged" oncomplete="#{rich:component('panel')}.show()" reRender="editContent"/>
+ <a4j:support event="onchanged" reRender="editContent" />
</rich:calendar>
</h:form>
<rich:modalPanel id="panel" resizeable="false">
16 years, 3 months
JBoss Rich Faces SVN: r10373 - in trunk/samples/richfaces-demo/src/main/webapp/richfaces: stateAPI and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: alevkovsky
Date: 2008-09-09 06:55:41 -0400 (Tue, 09 Sep 2008)
New Revision: 10373
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/graphValidator/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-4424
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/graphValidator/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/graphValidator/usage.xhtml 2008-09-09 10:54:30 UTC (rev 10372)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/graphValidator/usage.xhtml 2008-09-09 10:55:41 UTC (rev 10373)
@@ -28,7 +28,7 @@
<ui:include src="/templates/include/sourceview.xhtml">
<ui:param name="openlabel" value="Validation Bean Code" />
<ui:param name="sourcetype" value="java" />
- <ui:param name="sourcepath" value="/richfaces/beanValidator/snippets/validationBean.java"/>
+ <ui:param name="sourcepath" value="/WEB-INF/src/org/richfaces/demo/validation/ValidationBean.java" />
</ui:include>
</div>
</fieldset>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml 2008-09-09 10:54:30 UTC (rev 10372)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml 2008-09-09 10:55:41 UTC (rev 10373)
@@ -92,7 +92,7 @@
<ui:include src="/templates/include/sourceview.xhtml">
<ui:param name="sourcetype" value="xml" />
<ui:param name="openlabel" value="faces-config beans definitions" />
- <ui:param name="sourcepath" value="/richfaces/stateAPI/examples/cfg.xhtml"/>
+ <ui:param name="sourcepath" value="/richfaces/stateAPI/snippets/cfg.xml"/>
</ui:include>
</div>
</fieldset>
16 years, 3 months
JBoss Rich Faces SVN: r10372 - in branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces: stateAPI and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: alevkovsky
Date: 2008-09-09 06:54:30 -0400 (Tue, 09 Sep 2008)
New Revision: 10372
Modified:
branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/graphValidator/usage.xhtml
branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-4424
Modified: branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/graphValidator/usage.xhtml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/graphValidator/usage.xhtml 2008-09-09 10:51:39 UTC (rev 10371)
+++ branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/graphValidator/usage.xhtml 2008-09-09 10:54:30 UTC (rev 10372)
@@ -28,7 +28,7 @@
<ui:include src="/templates/include/sourceview.xhtml">
<ui:param name="openlabel" value="Validation Bean Code" />
<ui:param name="sourcetype" value="java" />
- <ui:param name="sourcepath" value="/richfaces/beanValidator/snippets/validationBean.java"/>
+ <ui:param name="sourcepath" value="/WEB-INF/src/org/richfaces/demo/validation/ValidationBean.java" />
</ui:include>
</div>
</fieldset>
Modified: branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml 2008-09-09 10:51:39 UTC (rev 10371)
+++ branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml 2008-09-09 10:54:30 UTC (rev 10372)
@@ -92,7 +92,7 @@
<ui:include src="/templates/include/sourceview.xhtml">
<ui:param name="sourcetype" value="xml" />
<ui:param name="openlabel" value="faces-config beans definitions" />
- <ui:param name="sourcepath" value="/richfaces/stateAPI/examples/cfg.xhtml"/>
+ <ui:param name="sourcepath" value="/richfaces/stateAPI/snippets/cfg.xml"/>
</ui:include>
</div>
</fieldset>
16 years, 3 months
JBoss Rich Faces SVN: r10371 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: cluts
Date: 2008-09-09 06:51:39 -0400 (Tue, 09 Sep 2008)
New Revision: 10371
Modified:
trunk/docs/userguide/en/src/main/docbook/included/effect.xml
trunk/docs/userguide/en/src/main/docbook/included/poll.xml
Log:
RF-4060 - added links and information for <rich:effect> and <a4j:poll>.
Modified: trunk/docs/userguide/en/src/main/docbook/included/effect.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/effect.xml 2008-09-09 09:27:48 UTC (rev 10370)
+++ trunk/docs/userguide/en/src/main/docbook/included/effect.xml 2008-09-09 10:51:39 UTC (rev 10371)
@@ -195,16 +195,16 @@
url="http://jboss.com/index.html?module=bb&op=viewtopic&t=119044">RichFaces
Users Forum</ulink>.</para>
</section>
-
+
<section>
<title>Look-and-Feel Customization</title>
-
+
<para><emphasis role="bold">
<property><rich:effect></property>
</emphasis> has no skin parameters and custom <property>style classes</property>, as the
component isn't visual.</para>
</section>
-
+
<section>
<title>Relevant Resources Links</title>
<para>
@@ -229,6 +229,16 @@
how to create a HTML banner.
</para>
<para>
+ <ulink url="http://wiki.jboss.org/auth/wiki/RichFacesCookbook/SlideShow">Here</ulink>
+ you can find information how to make a Slide Show with help of the
+ <emphasis role="bold">
+ <property><rich:effect></property>
+ </emphasis>
+ and <emphasis role="bold">
+ <property><a4j:poll></property>
+ </emphasis> components.
+ </para>
+ <para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/effect.jsf?c=effect"
>Here</ulink> you can see the example of <emphasis role="bold">
<property><rich:effect></property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/poll.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/poll.xml 2008-09-09 09:27:48 UTC (rev 10370)
+++ trunk/docs/userguide/en/src/main/docbook/included/poll.xml 2008-09-09 10:51:39 UTC (rev 10371)
@@ -124,7 +124,7 @@
</a4j:commandButton>
</h:panelGrid>
<h:outputText id="serverDate" style="font-size:16px" value="Server Date: #{userBean.date}"/>
- </h:panelGrid>
+ </h:panelGrid>
</h:form>
...
]]></programlisting>
@@ -140,7 +140,7 @@
of <emphasis>
<property>"enabled"</property>
</emphasis> attribute.</para>
-
+
<note><title>Note:</title><para> The form around the <emphasis role="bold">
<property><a4j:poll></property>
</emphasis> component is required.</para></note>
@@ -195,6 +195,15 @@
</ulink>
how to create a HTML banner.
</para>
+ <para>
+ <ulink url="http://wiki.jboss.org/auth/wiki/RichFacesCookbook/SlideShow">Here</ulink>
+ you can find information how to make a Slide Show with help of the
+ <emphasis role="bold">
+ <property><rich:effect></property></emphasis>
+ and <emphasis role="bold">
+ <property><a4j:poll></property>
+ </emphasis> components.
+ </para>
<para>
<ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/poll.jsf?c=poll">
16 years, 3 months
JBoss Rich Faces SVN: r10370 - branches/3.2.x/docs/cdkguide/en/src/main/resources/script.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-09-09 05:27:48 -0400 (Tue, 09 Sep 2008)
New Revision: 10370
Modified:
branches/3.2.x/docs/cdkguide/en/src/main/resources/script/toggle.js
Log:
Removing "Nightly builds" mark for release version
Modified: branches/3.2.x/docs/cdkguide/en/src/main/resources/script/toggle.js
===================================================================
--- branches/3.2.x/docs/cdkguide/en/src/main/resources/script/toggle.js 2008-09-09 09:26:55 UTC (rev 10369)
+++ branches/3.2.x/docs/cdkguide/en/src/main/resources/script/toggle.js 2008-09-09 09:27:48 UTC (rev 10370)
@@ -1,4 +1,4 @@
-document.write('<div id="overlay"> </div>');
+//sdocument.write('<div id="overlay"> </div>');
function dbToggle(node, expandText, collapseText) {
var dt = node.parentNode;
16 years, 3 months
JBoss Rich Faces SVN: r10369 - branches/3.2.x/docs/faq/en/src/main/resources/script.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-09-09 05:26:55 -0400 (Tue, 09 Sep 2008)
New Revision: 10369
Modified:
branches/3.2.x/docs/faq/en/src/main/resources/script/toggle.js
Log:
Removing "Nightly builds" mark for release version
Modified: branches/3.2.x/docs/faq/en/src/main/resources/script/toggle.js
===================================================================
--- branches/3.2.x/docs/faq/en/src/main/resources/script/toggle.js 2008-09-09 09:26:24 UTC (rev 10368)
+++ branches/3.2.x/docs/faq/en/src/main/resources/script/toggle.js 2008-09-09 09:26:55 UTC (rev 10369)
@@ -1,4 +1,4 @@
-document.write('<div id="overlay"> </div>');
+//document.write('<div id="overlay"> </div>');
function dbToggle(node, expandText, collapseText) {
var dt = node.parentNode;
16 years, 3 months