JBoss Rich Faces SVN: r5194 - trunk/sandbox/ui/combobox/src/main/templates.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-01-08 13:41:13 -0500 (Tue, 08 Jan 2008)
New Revision: 5194
Modified:
trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx
Log:
rename classes
Modified: trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx
===================================================================
--- trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx 2008-01-08 17:57:58 UTC (rev 5193)
+++ trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx 2008-01-08 18:41:13 UTC (rev 5194)
@@ -51,16 +51,16 @@
]]>
</jsp:scriptlet>
- <div id="#{clientId}" class="rich_cb_width rich_cb_font rich_cb_shell">
- <input id="comboboxField#{clientId}" class="rich_cb_width rich_cb_font rich_cb_field" type="text" size="#{inputSize}" autocomplete="off">
+ <div id="#{clientId}" class="rich-cb-width rich-cb-font rich-cb-shell">
+ <input id="comboboxField#{clientId}" class="rich-cb-width rich-cb-font rich-cb-field" type="text" size="#{inputSize}" autocomplete="off">
</input>
- <input readonly="" type="text" value="" class="rich_cb_button rich_cb_font rich_cb_button_bg">
+ <input readonly="true" type="text" value="" class="rich-cb-button rich-cb-font rich-cb-button-bg">
</input>
- <input id="comboboxButton#{clientId}" readonly="" type="text" value="" class="rich_cb_button rich_cb_font rich_cb_button_arrow">
+ <input id="comboboxButton#{clientId}" readonly="true" type="text" value="" class="rich-cb-button rich-cb-font rich-cb-button-arrow">
</input>
- <input type="text" class="rich_cb_width rich_cb_strut rich_cb_font">
+ <input type="text" class="rich-cb-width rich-cb-strut rich-cb-font">
</input>
- <div id="listParent#{clientId}" class="cb_list_cord cb_list_scroll cb_list_decoration cb_list_position" style="display:none">
+ <div id="listParent#{clientId}" class="rich-cb-list-cord rich-cb-list-scroll rich-cb-list-decoration rich-cb-list-position" style="display:none">
<div id="list#{clientId}">
<f:call name="encodeItems"/>
</div>
17 years
JBoss Rich Faces SVN: r5193 - trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-01-08 12:57:58 -0500 (Tue, 08 Jan 2008)
New Revision: 5193
Modified:
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
Log:
component corrected
Modified: trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
--- trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-08 17:56:59 UTC (rev 5192)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-08 17:57:58 UTC (rev 5193)
@@ -443,5 +443,5 @@
Richfaces.ComboBoxList.CLASSES = {
ITEM : {NORMAL : "rich-combobox-item rich-combobox-item-normal", SELECTED : "rich-combobox-item rich-combobox-item-selected"},
- LIST : {},
+ LIST : {}
}
\ No newline at end of file
17 years
JBoss Rich Faces SVN: r5192 - trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-01-08 12:56:59 -0500 (Tue, 08 Jan 2008)
New Revision: 5192
Modified:
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
Log:
component corrected
Modified: trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
--- trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-08 17:49:04 UTC (rev 5191)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-08 17:56:59 UTC (rev 5192)
@@ -78,10 +78,10 @@
},
valueHandler : function(event) {
+ this.field.focus();
this.setValue(true);
this.comboList.hide();
- this.field.focus();
},
setValue : function(toSetOnly) {
@@ -142,9 +142,13 @@
dataUpdating : function(event) {
if (Richfaces.ComboBox.SPECIAL_KEYS.indexOf(event.keyCode) == -1) {
+ this.comboList.hide();
if (this.filterNewValue) {
this.comboList.dataFilter(this.field.value);
- this.comboList.show();
+ if (this.comboList.getItems() && this.comboList.getItems().length != 0) {
+ var isSearchSuccessful = true;
+ this.comboList.show();
+ }
} else {
if (!this.comboList.visible()) {
this.comboList.show();
@@ -156,7 +160,7 @@
}
}
- if (event.keyCode != Event.KEY_BACKSPACE ) {
+ if ((event.keyCode != Event.KEY_BACKSPACE) && isSearchSuccessful) {
this.setValue();
}
}
@@ -244,25 +248,33 @@
this.listParent.style.width = this.width;
var height = this.height;
- if (!this.height) {
- var item = this.list.childNodes[0];
- if (item) {
- //FIXME
- this.listParent.style.visibility = "hidden";
- this.listParent.show();
-
- var itemHeight = item.offsetHeight;
-
- this.listParent.hide();
- this.listParent.style.visibility = "visible";
-
- var rowsAmount = this.getItems().length;
- var k = this.defaultRowsAmount;
- if (rowsAmount < this.defaultRowsAmount) {
- k = rowsAmount;
- }
- height = k * itemHeight;
+
+ var currentItemsHeight;
+ var rowsAmount;
+ var item = this.getItems()[0];
+ if (item) {
+ //FIXME
+ this.listParent.style.visibility = "hidden";
+ this.listParent.show();
+
+ var itemHeight = item.offsetHeight;
+
+ this.listParent.hide();
+ this.listParent.style.visibility = "visible";
+ rowsAmount = this.getItems().length;
+ currentItemsHeight = itemHeight * rowsAmount;
+ }
+
+ if (this.height && (this.height < currentItemsHeight)) {
+ if (this.height < currentItemsHeight) {
+ height = currentItemsHeight;
}
+ } else {
+ if (rowsAmount < this.defaultRowsAmount) {
+ height = currentItemsHeight;
+ } else {
+ height = itemHeight * this.defaultRowsAmount;
+ }
}
this.listParent.style.height = height;
},
@@ -338,6 +350,9 @@
moveSelectedItem : function(event) {
var item = this.selectedItem;
+ if (!this.selectedItem) {
+ return;
+ }
if (event.keyCode == Event.KEY_UP) {
var prevItem = item.previousSibling;
if (prevItem) {
@@ -358,9 +373,9 @@
},
resetState : function() {
- if (this.selectedItem) {
- this.normalizeItem(this.selectedItem);
- }
+ var tempList = this.list.cloneNode(false);
+ this.listParent.replaceChild(tempList, this.listParent.firstChild);
+ this.list = this.listParent.firstChild;
this.selectedItem = null;
this.isList = false;
},
@@ -390,13 +405,9 @@
},
createNewList : function(items) {
- //TODO: write code for IE
- var tempList = this.list.cloneNode(false);
- this.listParent.removeChild(this.listParent.firstChild);
-
- tempList.innerHTML = items.join("");
- this.listParent.appendChild(tempList);
- this.list = this.listParent.firstChild;
+ //FIX for FF
+ this.list.innerHTML = items.join("");
+ //this.listParent.appendChild(tempList);
},
createItem : function(text, className) {
@@ -427,7 +438,7 @@
}
Richfaces.ComboBox.SPECIAL_KEYS = [
- Event.KEY_RETURN, Event.KEY_UP, Event.KEY_DOWN
+ Event.KEY_RETURN, Event.KEY_UP, Event.KEY_DOWN, Event.KEY_RIGHT, Event.KEY_LEFT
]
Richfaces.ComboBoxList.CLASSES = {
17 years
JBoss Rich Faces SVN: r5191 - in branches/3.1.x/framework/impl/src: main/java/org/ajax4jsf/resource and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-01-08 12:49:04 -0500 (Tue, 08 Jan 2008)
New Revision: 5191
Modified:
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/css/CssCompressor.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CountingOutputWriter.java
branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/css/CssCompressorTest.java
Log:
http://jira.jboss.com/jira/browse/RF-1843
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/css/CssCompressor.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/css/CssCompressor.java 2008-01-08 17:45:35 UTC (rev 5190)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/css/CssCompressor.java 2008-01-08 17:49:04 UTC (rev 5191)
@@ -15,6 +15,8 @@
import java.util.regex.Matcher;
import java.util.regex.Pattern;
+import org.ajax4jsf.resource.CountingOutputWriter;
+
public class CssCompressor {
private StringBuffer srcsb = null;
@@ -146,7 +148,7 @@
// Trim the final string (for any leading or trailing white spaces)
css = css.trim();
- bytesLength = css.length() * 2;
+ bytesLength = css.length(); // * CountingOutputWriter.sizeOfChar;
// Write the output...
out.write(css);
return bytesLength;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CountingOutputWriter.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CountingOutputWriter.java 2008-01-08 17:45:35 UTC (rev 5190)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CountingOutputWriter.java 2008-01-08 17:49:04 UTC (rev 5191)
@@ -20,10 +20,10 @@
private int written = 0;
/** Size of char type */
- private static final int sizeOfChar = 2;
+ public static final int sizeOfChar = 1;
/** Size of int type */
- private static final int sizeOfInt = 4;
+ public static final int sizeOfInt = 2;
/** Buffer to store bytes written */
private StringBuffer buffer;
@@ -32,6 +32,7 @@
* Default constructor
*/
public CountingOutputWriter() {
+
super();
this.buffer = new StringBuffer();
}
@@ -57,7 +58,7 @@
*/
public void write(char[] cbuf, int off, int len) throws IOException {
buffer.append(cbuf, off, len);
- written += len * sizeOfChar;
+ written += len; // * sizeOfChar;
}
/** Methods appends chars written to buffer
@@ -65,7 +66,7 @@
*/
public void write(char[] cbuf) throws IOException {
buffer.append(cbuf);
- written += cbuf.length * sizeOfChar;
+ written += cbuf.length; // * sizeOfChar;
}
/** Methods appends int written to buffer
@@ -83,7 +84,7 @@
*/
public void write(String str, int off, int len) throws IOException {
buffer.append(str, off, len);
- written += len * sizeOfChar;
+ written += len;// * sizeOfChar;
}
/** Methods appends string written to buffer
@@ -91,7 +92,7 @@
*/
public void write(String str) throws IOException {
buffer.append(str);
- written += str.length() * sizeOfChar;
+ written += str.length();// * sizeOfChar;
}
/** Methods gets written bytes count
Modified: branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/css/CssCompressorTest.java
===================================================================
--- branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/css/CssCompressorTest.java 2008-01-08 17:45:35 UTC (rev 5190)
+++ branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/css/CssCompressorTest.java 2008-01-08 17:49:04 UTC (rev 5191)
@@ -20,7 +20,7 @@
public class CssCompressorTest extends TestCase {
/** Length of correctly compressed css example */
- private static final int lengthCompressed = 610;
+ private static final int lengthCompressed = 305;
/** css example to be comressed */
private static final String cssExample =
17 years
JBoss Rich Faces SVN: r5190 - branches/3.1.x/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-01-08 12:45:35 -0500 (Tue, 08 Jan 2008)
New Revision: 5190
Modified:
branches/3.1.x/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridFooter.js
branches/3.1.x/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridHeader.js
Log:
RF-726
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridFooter.js
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridFooter.js 2008-01-08 17:18:23 UTC (rev 5189)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridFooter.js 2008-01-08 17:45:35 UTC (rev 5190)
@@ -102,12 +102,11 @@
this.helpObj = new ClientUI.common.box.Box(this.frozenContentBox.getElement(), null, true);
this.defaultWidth = this.grid.getHeader().defaultWidth;
+ this.defaultHeight = this.headerRow.getElement().rows[0].cells[0].offsetHeight;
if(ClientUILib.isGecko) {
this.defaultHeight -= this.getBorderWidth("tb") + this.getPadding("tb");
//this.defaultWidth -= this.getBorderWidth("lr") + this.getPadding("lr");
- } else {
- this.defaultHeight = this.headerRow.getElement().rows[0].cells[0].offsetHeight;
- }
+ }
this.frozenSubstrate = new ClientUI.common.box.Box(this.grid.getElement().id + ":fs", this.getElement());
this.frozenSubstrate.getElement().name = this.getElement().id + "FRFrm";
@@ -116,11 +115,10 @@
},
updateSize: function() {
this.defaultWidth = this.grid.getHeader().defaultWidth;
+ this.defaultHeight = this.headerRow.getElement().rows[0].cells[0].offsetHeight;
if(ClientUILib.isGecko) {
this.defaultHeight -= this.getBorderWidth("tb") + this.getPadding("tb");
//this.defaultWidth -= this.getBorderWidth("lr") + this.getPadding("lr");
- } else {
- this.defaultHeight = this.headerRow.getElement().rows[0].cells[0].offsetHeight;
}
this.setHeight(this.defaultHeight);
this.setWidth(this.defaultWidth);
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridHeader.js
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridHeader.js 2008-01-08 17:18:23 UTC (rev 5189)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/javascript/ClientUI/controls/grid/GridHeader.js 2008-01-08 17:45:35 UTC (rev 5190)
@@ -140,7 +140,7 @@
if(columns[j].sortable)
Event.observe(cell, 'click', eventCellMouseDown);
- h = cell.offsetHeigh;
+ h = cell.offsetHeight;
if(h > defaultHeight) defaultHeight = h;
defaultWidth += columns[j].width;
columns[j].object = new ClientUI.common.box.InlineBox(cell, null, true);
@@ -259,7 +259,7 @@
cells.each(function(cell) {
if(i<columns.length) {
columns[i].width = parseInt(cols[j].width);
- h = cell.offsetHeigh;
+ h = cell.offsetHeight;
if(h > defaultHeight) defaultHeight = h;
defaultWidth += columns[i].width;
}
@@ -273,7 +273,7 @@
if(i<columns.length) {
columns[i].width = parseInt(cols[j].width);
- h = cell.offsetHeigh;
+ h = cell.offsetHeight;
if(h > defaultHeight) defaultHeight = h;
defaultWidth += columns[i].width;
}
17 years
JBoss Rich Faces SVN: r5189 - in trunk: ui/listShuttle/src/main/java/org/richfaces/model and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-01-08 12:18:23 -0500 (Tue, 08 Jan 2008)
New Revision: 5189
Added:
trunk/framework/api/src/main/java/org/richfaces/model/ListShuttleDataModel.java
trunk/framework/api/src/main/java/org/richfaces/model/ListShuttleRowKey.java
trunk/framework/api/src/main/java/org/richfaces/model/OrderingListDataModel.java
Removed:
trunk/ui/listShuttle/src/main/java/org/richfaces/model/ListShuttleDataModel.java
trunk/ui/listShuttle/src/main/java/org/richfaces/model/ListShuttleRowKey.java
trunk/ui/orderingList/src/main/java/org/richfaces/model/OrderingListDataModel.java
Log:
http://jira.jboss.com/jira/browse/RF-1855
Copied: trunk/framework/api/src/main/java/org/richfaces/model/ListShuttleDataModel.java (from rev 5174, trunk/ui/listShuttle/src/main/java/org/richfaces/model/ListShuttleDataModel.java)
===================================================================
--- trunk/framework/api/src/main/java/org/richfaces/model/ListShuttleDataModel.java (rev 0)
+++ trunk/framework/api/src/main/java/org/richfaces/model/ListShuttleDataModel.java 2008-01-08 17:18:23 UTC (rev 5189)
@@ -0,0 +1,150 @@
+/**
+ *
+ */
+package org.richfaces.model;
+
+import java.io.IOException;
+import java.util.Iterator;
+import java.util.Map;
+import java.util.Map.Entry;
+
+import javax.faces.context.FacesContext;
+import javax.faces.model.DataModel;
+
+import org.ajax4jsf.model.DataVisitor;
+import org.ajax4jsf.model.ExtendedDataModel;
+import org.ajax4jsf.model.Range;
+import org.ajax4jsf.model.SequenceDataModel;
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public class ListShuttleDataModel extends ExtendedDataModel {
+
+ private ListShuttleRowKey rowKey;
+
+ private SequenceDataModel sourceModel;
+ private SequenceDataModel targetModel;
+
+ private Map data;
+
+ private Object wrappedData;
+
+ /* (non-Javadoc)
+ * @see org.ajax4jsf.model.ExtendedDataModel#getRowKey()
+ */
+ public Object getRowKey() {
+ return rowKey;
+ }
+
+ /* (non-Javadoc)
+ * @see org.ajax4jsf.model.ExtendedDataModel#setRowKey(java.lang.Object)
+ */
+ public void setRowKey(Object key) {
+ this.rowKey = (ListShuttleRowKey) key;
+ }
+
+ public void walk(final FacesContext context, final DataVisitor visitor, final Range range,
+ final Object argument) throws IOException {
+ if (data != null) {
+ Iterator iterator = data.entrySet().iterator();
+
+ while (iterator.hasNext()) {
+ Entry entry =(Map.Entry) iterator.next();
+
+ visitor.process(context, entry.getKey(), argument);
+ }
+
+ } else {
+ sourceModel.walk(context, new DataVisitor() {
+
+ public void process(FacesContext context, Object rowKey,
+ Object argument) throws IOException {
+
+ ListShuttleRowKey key = new ListShuttleRowKey(rowKey, true);
+ visitor.process(context, key, argument);
+ }
+ }, range, argument);
+
+ targetModel.walk(context, new DataVisitor() {
+
+ public void process(FacesContext context, Object rowKey,
+ Object argument) throws IOException {
+
+ ListShuttleRowKey key = new ListShuttleRowKey(rowKey, false);
+ visitor.process(context, key, argument);
+ }
+
+ }, range, argument);
+ }
+ }
+
+ public int getRowCount() {
+ if (data != null) {
+ return data.size();
+ } else {
+ return sourceModel.getRowCount() + targetModel.getRowCount();
+ }
+ }
+
+ public Object getRowData() {
+ if (data != null) {
+ return data.get(rowKey);
+ } else {
+ if (this.rowKey != null) {
+ if (this.rowKey.isSource()) {
+ return sourceModel.getRowData();
+ } else {
+ return targetModel.getRowData();
+ }
+ } else {
+ return null;
+ }
+ }
+ }
+
+ public int getRowIndex() {
+ // TODO Auto-generated method stub
+ return 0;
+ }
+
+ public Object getWrappedData() {
+ return wrappedData;
+ }
+
+ public boolean isRowAvailable() {
+ if (data != null) {
+ return data.containsKey(rowKey);
+ } else {
+ if (rowKey != null) {
+ if (rowKey.isSource()) {
+ return sourceModel.isRowAvailable();
+ } else {
+ return targetModel.isRowAvailable();
+ }
+ } else {
+ return false;
+ }
+ }
+ }
+
+ public void setRowIndex(int rowIndex) {
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setWrappedData(Object data) {
+ this.rowKey = null;
+ this.wrappedData = data;
+
+ if (data instanceof Map) {
+ this.data = (Map) data;
+ } else {
+ DataModel[] models = (DataModel[]) data;
+ this.sourceModel = new SequenceDataModel(models[0]);
+ this.targetModel = new SequenceDataModel(models[1]);
+ }
+ }
+
+}
Copied: trunk/framework/api/src/main/java/org/richfaces/model/ListShuttleRowKey.java (from rev 5174, trunk/ui/listShuttle/src/main/java/org/richfaces/model/ListShuttleRowKey.java)
===================================================================
--- trunk/framework/api/src/main/java/org/richfaces/model/ListShuttleRowKey.java (rev 0)
+++ trunk/framework/api/src/main/java/org/richfaces/model/ListShuttleRowKey.java 2008-01-08 17:18:23 UTC (rev 5189)
@@ -0,0 +1,80 @@
+/**
+ *
+ */
+package org.richfaces.model;
+
+import java.io.Serializable;
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public class ListShuttleRowKey implements Serializable {
+
+ /**
+ *
+ */
+ private static final long serialVersionUID = 3308741255288495879L;
+
+ private boolean source;
+
+ private boolean facadeSource;
+
+ private Object rowKey;
+
+ public boolean isSource() {
+ return source;
+ }
+
+ public boolean isFacadeSource() {
+ return facadeSource;
+ }
+
+ public Object getRowKey() {
+ return rowKey;
+ }
+
+ public int hashCode() {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((rowKey == null) ? 0 : rowKey.hashCode());
+ result = prime * result + (source ? 1231 : 1237);
+ return result;
+ }
+
+ public boolean equals(Object obj) {
+ if (this == obj)
+ return true;
+ if (obj == null)
+ return false;
+ if (getClass() != obj.getClass())
+ return false;
+ ListShuttleRowKey other = (ListShuttleRowKey) obj;
+ if (rowKey == null) {
+ if (other.rowKey != null)
+ return false;
+ } else if (!rowKey.equals(other.rowKey))
+ return false;
+ if (source != other.source)
+ return false;
+ return true;
+ }
+
+ public String toString() {
+ return (source ? "" : "t") + rowKey.toString();
+ }
+
+ public ListShuttleRowKey(Object rowKey, boolean source) {
+ super();
+ this.rowKey = rowKey;
+ this.source = source;
+ this.facadeSource = source;
+ }
+
+ public ListShuttleRowKey(Object rowKey, boolean source, boolean facadeSource) {
+ super();
+ this.rowKey = rowKey;
+ this.source = source;
+ this.facadeSource = facadeSource;
+ }
+}
Copied: trunk/framework/api/src/main/java/org/richfaces/model/OrderingListDataModel.java (from rev 5174, trunk/ui/orderingList/src/main/java/org/richfaces/model/OrderingListDataModel.java)
===================================================================
--- trunk/framework/api/src/main/java/org/richfaces/model/OrderingListDataModel.java (rev 0)
+++ trunk/framework/api/src/main/java/org/richfaces/model/OrderingListDataModel.java 2008-01-08 17:18:23 UTC (rev 5189)
@@ -0,0 +1,81 @@
+/**
+ *
+ */
+package org.richfaces.model;
+
+import java.io.IOException;
+import java.util.Iterator;
+import java.util.Map;
+import java.util.Set;
+
+import javax.faces.context.FacesContext;
+
+import org.ajax4jsf.model.DataVisitor;
+import org.ajax4jsf.model.ExtendedDataModel;
+import org.ajax4jsf.model.Range;
+
+/**
+ * @author Nick Belaevski
+ * mailto:nbelaevski@exadel.com
+ * created 07.11.2007
+ *
+ */
+public class OrderingListDataModel extends ExtendedDataModel {
+
+ private Map data;
+
+ private Object rowKey;
+
+ public Object getRowKey() {
+ return rowKey;
+ }
+
+ public void setRowKey(Object rowKey) {
+ this.rowKey = rowKey;
+ }
+
+ public void walk(FacesContext context, DataVisitor visitor, Range range,
+ Object argument) throws IOException {
+
+ Set entrySet = data.entrySet();
+ Iterator iterator = entrySet.iterator();
+
+ while (iterator.hasNext()) {
+ Map.Entry entry = (Map.Entry) iterator.next();
+
+ visitor.process(context, entry.getKey(), argument);
+ }
+ }
+
+ public int getRowCount() {
+ return data.size();
+ }
+
+ public Object getRowData() {
+ return data.get(rowKey);
+ }
+
+ public int getRowIndex() {
+ // TODO Auto-generated method stub
+ return 0;
+ }
+
+ public Object getWrappedData() {
+ return data;
+ }
+
+ public boolean isRowAvailable() {
+ return data.containsKey(rowKey);
+ }
+
+ public void setRowIndex(int rowIndex) {
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setWrappedData(Object data) {
+ this.rowKey = null;
+ this.data = (Map) data;
+ }
+
+}
Deleted: trunk/ui/listShuttle/src/main/java/org/richfaces/model/ListShuttleDataModel.java
===================================================================
--- trunk/ui/listShuttle/src/main/java/org/richfaces/model/ListShuttleDataModel.java 2008-01-08 16:49:55 UTC (rev 5188)
+++ trunk/ui/listShuttle/src/main/java/org/richfaces/model/ListShuttleDataModel.java 2008-01-08 17:18:23 UTC (rev 5189)
@@ -1,150 +0,0 @@
-/**
- *
- */
-package org.richfaces.model;
-
-import java.io.IOException;
-import java.util.Iterator;
-import java.util.Map;
-import java.util.Map.Entry;
-
-import javax.faces.context.FacesContext;
-import javax.faces.model.DataModel;
-
-import org.ajax4jsf.model.DataVisitor;
-import org.ajax4jsf.model.ExtendedDataModel;
-import org.ajax4jsf.model.Range;
-import org.ajax4jsf.model.SequenceDataModel;
-
-/**
- * @author Nick Belaevski
- *
- */
-public class ListShuttleDataModel extends ExtendedDataModel {
-
- private ListShuttleRowKey rowKey;
-
- private SequenceDataModel sourceModel;
- private SequenceDataModel targetModel;
-
- private Map data;
-
- private Object wrappedData;
-
- /* (non-Javadoc)
- * @see org.ajax4jsf.model.ExtendedDataModel#getRowKey()
- */
- public Object getRowKey() {
- return rowKey;
- }
-
- /* (non-Javadoc)
- * @see org.ajax4jsf.model.ExtendedDataModel#setRowKey(java.lang.Object)
- */
- public void setRowKey(Object key) {
- this.rowKey = (ListShuttleRowKey) key;
- }
-
- public void walk(final FacesContext context, final DataVisitor visitor, final Range range,
- final Object argument) throws IOException {
- if (data != null) {
- Iterator iterator = data.entrySet().iterator();
-
- while (iterator.hasNext()) {
- Entry entry =(Map.Entry) iterator.next();
-
- visitor.process(context, entry.getKey(), argument);
- }
-
- } else {
- sourceModel.walk(context, new DataVisitor() {
-
- public void process(FacesContext context, Object rowKey,
- Object argument) throws IOException {
-
- ListShuttleRowKey key = new ListShuttleRowKey(rowKey, true);
- visitor.process(context, key, argument);
- }
- }, range, argument);
-
- targetModel.walk(context, new DataVisitor() {
-
- public void process(FacesContext context, Object rowKey,
- Object argument) throws IOException {
-
- ListShuttleRowKey key = new ListShuttleRowKey(rowKey, false);
- visitor.process(context, key, argument);
- }
-
- }, range, argument);
- }
- }
-
- public int getRowCount() {
- if (data != null) {
- return data.size();
- } else {
- return sourceModel.getRowCount() + targetModel.getRowCount();
- }
- }
-
- public Object getRowData() {
- if (data != null) {
- return data.get(rowKey);
- } else {
- if (this.rowKey != null) {
- if (this.rowKey.isSource()) {
- return sourceModel.getRowData();
- } else {
- return targetModel.getRowData();
- }
- } else {
- return null;
- }
- }
- }
-
- public int getRowIndex() {
- // TODO Auto-generated method stub
- return 0;
- }
-
- public Object getWrappedData() {
- return wrappedData;
- }
-
- public boolean isRowAvailable() {
- if (data != null) {
- return data.containsKey(rowKey);
- } else {
- if (rowKey != null) {
- if (rowKey.isSource()) {
- return sourceModel.isRowAvailable();
- } else {
- return targetModel.isRowAvailable();
- }
- } else {
- return false;
- }
- }
- }
-
- public void setRowIndex(int rowIndex) {
- // TODO Auto-generated method stub
-
- }
-
- public void setWrappedData(Object data) {
- this.rowKey = null;
- this.wrappedData = data;
-
- if (data instanceof Map) {
- this.data = (Map) data;
- } else {
- DataModel[] models = (DataModel[]) data;
- this.sourceModel = new SequenceDataModel(models[0]);
- this.targetModel = new SequenceDataModel(models[1]);
- }
- }
-
-}
Deleted: trunk/ui/listShuttle/src/main/java/org/richfaces/model/ListShuttleRowKey.java
===================================================================
--- trunk/ui/listShuttle/src/main/java/org/richfaces/model/ListShuttleRowKey.java 2008-01-08 16:49:55 UTC (rev 5188)
+++ trunk/ui/listShuttle/src/main/java/org/richfaces/model/ListShuttleRowKey.java 2008-01-08 17:18:23 UTC (rev 5189)
@@ -1,80 +0,0 @@
-/**
- *
- */
-package org.richfaces.model;
-
-import java.io.Serializable;
-
-/**
- * @author Nick Belaevski
- *
- */
-public class ListShuttleRowKey implements Serializable {
-
- /**
- *
- */
- private static final long serialVersionUID = 3308741255288495879L;
-
- private boolean source;
-
- private boolean facadeSource;
-
- private Object rowKey;
-
- public boolean isSource() {
- return source;
- }
-
- public boolean isFacadeSource() {
- return facadeSource;
- }
-
- public Object getRowKey() {
- return rowKey;
- }
-
- public int hashCode() {
- final int prime = 31;
- int result = 1;
- result = prime * result + ((rowKey == null) ? 0 : rowKey.hashCode());
- result = prime * result + (source ? 1231 : 1237);
- return result;
- }
-
- public boolean equals(Object obj) {
- if (this == obj)
- return true;
- if (obj == null)
- return false;
- if (getClass() != obj.getClass())
- return false;
- ListShuttleRowKey other = (ListShuttleRowKey) obj;
- if (rowKey == null) {
- if (other.rowKey != null)
- return false;
- } else if (!rowKey.equals(other.rowKey))
- return false;
- if (source != other.source)
- return false;
- return true;
- }
-
- public String toString() {
- return (source ? "" : "t") + rowKey.toString();
- }
-
- public ListShuttleRowKey(Object rowKey, boolean source) {
- super();
- this.rowKey = rowKey;
- this.source = source;
- this.facadeSource = source;
- }
-
- public ListShuttleRowKey(Object rowKey, boolean source, boolean facadeSource) {
- super();
- this.rowKey = rowKey;
- this.source = source;
- this.facadeSource = facadeSource;
- }
-}
Deleted: trunk/ui/orderingList/src/main/java/org/richfaces/model/OrderingListDataModel.java
===================================================================
--- trunk/ui/orderingList/src/main/java/org/richfaces/model/OrderingListDataModel.java 2008-01-08 16:49:55 UTC (rev 5188)
+++ trunk/ui/orderingList/src/main/java/org/richfaces/model/OrderingListDataModel.java 2008-01-08 17:18:23 UTC (rev 5189)
@@ -1,81 +0,0 @@
-/**
- *
- */
-package org.richfaces.model;
-
-import java.io.IOException;
-import java.util.Iterator;
-import java.util.Map;
-import java.util.Set;
-
-import javax.faces.context.FacesContext;
-
-import org.ajax4jsf.model.DataVisitor;
-import org.ajax4jsf.model.ExtendedDataModel;
-import org.ajax4jsf.model.Range;
-
-/**
- * @author Nick Belaevski
- * mailto:nbelaevski@exadel.com
- * created 07.11.2007
- *
- */
-public class OrderingListDataModel extends ExtendedDataModel {
-
- private Map data;
-
- private Object rowKey;
-
- public Object getRowKey() {
- return rowKey;
- }
-
- public void setRowKey(Object rowKey) {
- this.rowKey = rowKey;
- }
-
- public void walk(FacesContext context, DataVisitor visitor, Range range,
- Object argument) throws IOException {
-
- Set entrySet = data.entrySet();
- Iterator iterator = entrySet.iterator();
-
- while (iterator.hasNext()) {
- Map.Entry entry = (Map.Entry) iterator.next();
-
- visitor.process(context, entry.getKey(), argument);
- }
- }
-
- public int getRowCount() {
- return data.size();
- }
-
- public Object getRowData() {
- return data.get(rowKey);
- }
-
- public int getRowIndex() {
- // TODO Auto-generated method stub
- return 0;
- }
-
- public Object getWrappedData() {
- return data;
- }
-
- public boolean isRowAvailable() {
- return data.containsKey(rowKey);
- }
-
- public void setRowIndex(int rowIndex) {
- // TODO Auto-generated method stub
-
- }
-
- public void setWrappedData(Object data) {
- this.rowKey = null;
- this.data = (Map) data;
- }
-
-}
17 years
JBoss Rich Faces SVN: r5188 - branches/3.1.x/framework/impl/src/main/javacc.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-01-08 11:49:55 -0500 (Tue, 08 Jan 2008)
New Revision: 5188
Modified:
branches/3.1.x/framework/impl/src/main/javacc/RichMacroDefinition.jj
Log:
http://jira.jboss.com/jira/browse/RF-1665
Modified: branches/3.1.x/framework/impl/src/main/javacc/RichMacroDefinition.jj
===================================================================
--- branches/3.1.x/framework/impl/src/main/javacc/RichMacroDefinition.jj 2008-01-08 16:45:55 UTC (rev 5187)
+++ branches/3.1.x/framework/impl/src/main/javacc/RichMacroDefinition.jj 2008-01-08 16:49:55 UTC (rev 5188)
@@ -5,6 +5,7 @@
options {
JDK_VERSION="1.3";
STATIC = false;
+ UNICODE_INPUT = true;
}
PARSER_BEGIN(RichMacroDefinition)
17 years
JBoss Rich Faces SVN: r5187 - in trunk: docs/userguide/en/src/main/docbook/included and 7 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: vsukhov
Date: 2008-01-08 11:45:55 -0500 (Tue, 08 Jan 2008)
New Revision: 5187
Added:
trunk/docs/userguide/en/src/main/resources/images/calendar1a.png
trunk/docs/userguide/en/src/main/resources/images/calendar1b.png
trunk/docs/userguide/en/src/main/resources/images/column1.png
trunk/docs/userguide/en/src/main/resources/images/column2.png
trunk/docs/userguide/en/src/main/resources/images/column3.png
trunk/docs/userguide/en/src/main/resources/images/column4.png
trunk/docs/userguide/en/src/main/resources/images/columngroup1.png
trunk/docs/userguide/en/src/main/resources/images/columngroup2.png
trunk/docs/userguide/en/src/main/resources/images/columngroup3.png
trunk/docs/userguide/en/src/main/resources/images/dataFilterSlider.png
trunk/docs/userguide/en/src/main/resources/images/datascroller1.png
trunk/docs/userguide/en/src/main/resources/images/datascroller2.png
trunk/docs/userguide/en/src/main/resources/images/datatable1.png
trunk/docs/userguide/en/src/main/resources/images/definitionlist1.png
trunk/docs/userguide/en/src/main/resources/images/dragIndicator1.png
trunk/docs/userguide/en/src/main/resources/images/dragIndicator2.png
trunk/docs/userguide/en/src/main/resources/images/draggable1.png
trunk/docs/userguide/en/src/main/resources/images/dragsupport1.png
trunk/docs/userguide/en/src/main/resources/images/dropSupport1.png
trunk/docs/userguide/en/src/main/resources/images/dropSupport2.png
trunk/docs/userguide/en/src/main/resources/images/dropZone.png
trunk/docs/userguide/en/src/main/resources/images/gmap.png
trunk/docs/userguide/en/src/main/resources/images/gmap1.png
trunk/docs/userguide/en/src/main/resources/images/gmap3.png
trunk/docs/userguide/en/src/main/resources/images/inputNumberSpinner2.png
trunk/docs/userguide/en/src/main/resources/images/inputNumberSpinnerMain.png
trunk/docs/userguide/en/src/main/resources/images/newpic1.png
trunk/docs/userguide/en/src/main/resources/images/newpic2.png
trunk/docs/userguide/en/src/main/resources/images/newpic3.png
trunk/docs/userguide/en/src/main/resources/images/newpic4.png
trunk/docs/userguide/en/src/main/resources/images/paint2D2.png
trunk/docs/userguide/en/src/main/resources/images/panel.png
trunk/docs/userguide/en/src/main/resources/images/panel2.png
trunk/docs/userguide/en/src/main/resources/images/panel4.png
trunk/docs/userguide/en/src/main/resources/images/panelBar2.png
trunk/docs/userguide/en/src/main/resources/images/panelBar3.png
trunk/docs/userguide/en/src/main/resources/images/panelBarItem.png
trunk/docs/userguide/en/src/main/resources/images/panelBarMain.png
trunk/docs/userguide/en/src/main/resources/images/panelMain.png
trunk/docs/userguide/en/src/main/resources/images/separator.png
trunk/docs/userguide/en/src/main/resources/images/separator1.png
trunk/docs/userguide/en/src/main/resources/images/simpleTogglePanel.png
trunk/docs/userguide/en/src/main/resources/images/simpleTogglePanel2.png
trunk/docs/userguide/en/src/main/resources/images/slider.png
trunk/docs/userguide/en/src/main/resources/images/slider2.png
trunk/docs/userguide/en/src/main/resources/images/slider3.png
trunk/docs/userguide/en/src/main/resources/images/spacer.png
trunk/docs/userguide/en/src/main/resources/images/subtable1.png
trunk/docs/userguide/en/src/main/resources/images/suggestionbox1.png
trunk/docs/userguide/en/src/main/resources/images/suggestionbox2.png
trunk/docs/userguide/en/src/main/resources/images/suggestionbox3.png
trunk/docs/userguide/en/src/main/resources/images/suggestionbox4.png
trunk/docs/userguide/en/src/main/resources/images/suggestionbox5.png
trunk/docs/userguide/en/src/main/resources/images/tab.png
trunk/docs/userguide/en/src/main/resources/images/tab2.png
trunk/docs/userguide/en/src/main/resources/images/tabPanel.png
trunk/docs/userguide/en/src/main/resources/images/tabPanel1.png
trunk/docs/userguide/en/src/main/resources/images/tabPanel4.png
trunk/docs/userguide/en/src/main/resources/images/toggleControl.png
trunk/docs/userguide/en/src/main/resources/images/togglePanel.png
trunk/docs/userguide/en/src/main/resources/images/toolBar2.png
trunk/docs/userguide/en/src/main/resources/images/toolBar3.png
trunk/docs/userguide/en/src/main/resources/images/toolBarMain.png
trunk/docs/userguide/en/src/main/resources/images/toolbarGroup.png
Modified:
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_control_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_form_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_checkbox_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_events.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_radio_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_select_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_textarea_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_button_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_textarea_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_checkbox_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_listbox_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_menu_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_listbox_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_menu_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_radio_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_command_attributes.ent
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/user_role_attributes.ent
trunk/docs/userguide/en/src/main/docbook/included/actionparam.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml
trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml
trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/calendar.xml
trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/column.xml
trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/componentControl.xml
trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml
trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml
trunk/docs/userguide/en/src/main/docbook/included/datascroller.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml
trunk/docs/userguide/en/src/main/docbook/included/dragIndicator1.xml
trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml
trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dropDownMenu.xml
trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml
trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/form.xml
trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/gmap.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml
trunk/docs/userguide/en/src/main/docbook/included/jQuery.xml
trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml
trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml
trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml
trunk/docs/userguide/en/src/main/docbook/included/log.xml
trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml
trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/message.xml
trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/messages.xml
trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml
trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panel.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml
trunk/docs/userguide/en/src/main/docbook/included/poll.xml
trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml
trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/separator.xml
trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/status.xml
trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/subTable.xml
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/tab.xml
trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/tree.xml
trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml
trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
trunk/docs/userguide/en/src/main/resources/images/calendar1.png
trunk/docs/userguide/en/src/main/resources/images/contextMenu_attached.png
trunk/docs/userguide/en/src/main/resources/images/contextMenu_classes.png
trunk/docs/userguide/en/src/main/resources/images/dataTable2.png
trunk/docs/userguide/en/src/main/resources/images/dataTable3.png
trunk/docs/userguide/en/src/main/resources/images/datadefinitionlist2.png
trunk/docs/userguide/en/src/main/resources/images/datagrid1.png
trunk/docs/userguide/en/src/main/resources/images/datagrid2.png
trunk/docs/userguide/en/src/main/resources/images/datalist1.png
trunk/docs/userguide/en/src/main/resources/images/datalist2.png
trunk/docs/userguide/en/src/main/resources/images/datalist3.png
trunk/docs/userguide/en/src/main/resources/images/dataorderedlist1.png
trunk/docs/userguide/en/src/main/resources/images/dataorderedlist2.png
trunk/docs/userguide/en/src/main/resources/images/datascroller3.png
trunk/docs/userguide/en/src/main/resources/images/inputNumberSpinner3.png
trunk/docs/userguide/en/src/main/resources/images/listShuttle1.png
trunk/docs/userguide/en/src/main/resources/images/listShuttle_classes_s.png
trunk/docs/userguide/en/src/main/resources/images/listShuttle_classes_t.png
trunk/docs/userguide/en/src/main/resources/images/message.png
trunk/docs/userguide/en/src/main/resources/images/messages.png
trunk/docs/userguide/en/src/main/resources/images/messages1.png
trunk/docs/userguide/en/src/main/resources/images/orderinList1.png
trunk/docs/userguide/en/src/main/resources/images/orderingList_classes_1.png
trunk/docs/userguide/en/src/main/resources/images/orderingList_classes_2.png
trunk/docs/userguide/en/src/main/resources/images/panel3.png
trunk/docs/userguide/en/src/main/resources/images/panelMenuGroup_icons.png
trunk/docs/userguide/en/src/main/resources/images/panelmenu.png
trunk/docs/userguide/en/src/main/resources/images/panelmenu1.png
trunk/docs/userguide/en/src/main/resources/images/panelmenugroup1.png
trunk/docs/userguide/en/src/main/resources/images/panelmenugroup_col.png
trunk/docs/userguide/en/src/main/resources/images/panelmenugroup_exp.png
trunk/docs/userguide/en/src/main/resources/images/panelmenuitem.png
trunk/docs/userguide/en/src/main/resources/images/recursiveTreeNodesAdaptor1.png
trunk/docs/userguide/en/src/main/resources/images/scrollable-dt1.png
trunk/docs/userguide/en/src/main/resources/images/scrollableDataTable.png
trunk/docs/userguide/en/src/main/resources/images/simpleTogglePanel3.png
trunk/docs/userguide/en/src/main/resources/images/slider5.png
trunk/docs/userguide/en/src/main/resources/images/tab1.png
trunk/docs/userguide/en/src/main/resources/images/tooltip1.png
trunk/docs/userguide/en/src/main/resources/images/tree1.png
trunk/docs/userguide/en/src/main/resources/images/tree2.png
trunk/docs/userguide/en/src/main/resources/images/tree3.png
trunk/docs/userguide/en/src/main/resources/images/tree4.png
trunk/docs/userguide/en/src/main/resources/images/tree5.png
trunk/docs/userguide/en/src/main/resources/images/treeNode.png
trunk/docs/userguide/en/src/main/resources/images/treeNode2.png
trunk/docs/userguide/en/src/main/resources/images/treeNode3.png
trunk/docs/userguide/en/src/main/resources/images/treeNodesAdaptor1.png
trunk/ui/core/src/main/config/component/form.xml
trunk/ui/drag-drop/src/main/config/component/dragSupport.xml
trunk/ui/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml
trunk/ui/menu-components/src/main/config/component/menucomponents.xml
trunk/ui/tree/src/main/config/component/treeNode.xml
Log:
http://jira.jboss.com/jira/browse/RF-1770
http://jira.jboss.com/jira/browse/RF-776
1. I've set the 96 dpi resolution for all images.
2. Set *.png extension for all images.
3. Added <mediaobject>...</mediaobject> element inside the <figure>...</figure> element.
4. I've changed the word "user" to "you" all over the guide.(rf-776)
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_control_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_control_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_control_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -12,7 +12,7 @@
<property>
<name>disabled</name>
<classname>boolean</classname>
- <description>When set for a form control, this boolean attribute disables the control for user input</description>
+ <description>When set for a form control, this boolean attribute disables the control for your input</description>
</property>
<property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_form_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_form_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_form_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -2,7 +2,7 @@
<property>
<name>accept</name>
<classname>java.lang.String</classname>
- <description>This attribute specifies a comma-separated list of content types that a server processing this form will handle correctly. User agents may use this information to filter out non-conforming files when prompting a user to select files to be sent to the server (cf. the INPUT element when type="file")</description>
+ <description>This attribute specifies a comma-separated list of content types that a server processing this form will handle correctly. User agents may use this information to filter out non-conforming files when prompting you to select files to be sent to the server (cf. the INPUT element when type="file")</description>
</property>
<property>
<name>acceptCharset</name>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -19,7 +19,7 @@
<property>
<name>maxlength</name>
<classname>int</classname>
- <description>When the type attribute has the value "text" or "password", this attribute specifies the maximum number of characters the user may enter. This number may exceed the specified size, in which case the user agent should offer a scrolling mechanism. The default value for this attribute is an unlimited number</description>
+ <description>When the type attribute has the value "text" or "password", this attribute specifies the maximum number of characters you may enter. This number may exceed the specified size, in which case the user agent should offer a scrolling mechanism. The default value for this attribute is an unlimited number</description>
</property>
</properties>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_checkbox_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_checkbox_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_checkbox_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -33,7 +33,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname><description>Flag indicating that this component will prohibit
- changes by the user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_events.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_events.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_events.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -3,6 +3,6 @@
<property>
<name>onselect</name>
<classname>java.lang.String</classname>
- <description>HTML: script expression; The onselect event occurs when a user selects some text in a text field. This attribute may be used with the INPUT and TEXTAREA elements</description>
+ <description>HTML: script expression; The onselect event occurs when you select some text in a text field. This attribute may be used with the INPUT and TEXTAREA elements</description>
</property>
</properties>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_radio_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_radio_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_input_radio_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -33,7 +33,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname><description>Flag indicating that this component will prohibit
- changes by the user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_select_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_select_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_select_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -30,7 +30,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname><description>Flag indicating that this component will prohibit
- changes by the user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_textarea_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_textarea_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_textarea_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -33,7 +33,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname><description>Flag indicating that this component will prohibit
- changes by the user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_button_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_button_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_command_button_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -15,7 +15,7 @@
</property>
<property attachedstate="true">
- <name>action</name><classname>java.lang.String</classname><description>MethodBinding pointing at the application action to be invoked, if this UIComponent is activated by the user, during the Apply Request Values or Invoke Application phase of the request processing lifecycle, depending on the value of the immediate property</description>
+ <name>action</name><classname>java.lang.String</classname><description>MethodBinding pointing at the application action to be invoked, if this UIComponent is activated by you, during the Apply Request Values or Invoke Application phase of the request processing lifecycle, depending on the value of the immediate property</description>
</property>
<property attachedstate="true">
<name>actionListener</name><classname>java.lang.String</classname><description>MethodBinding pointing at method accepting an ActionEvent with return type void</description>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_text_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -123,7 +123,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname><description>Flag indicating that this component will prohibit
- changes by the user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled.
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_textarea_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_textarea_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_input_textarea_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -68,7 +68,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname>Flag indicating that this component will prohibit
- changes by the user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled.
<property>
<name>rows</name><classname>java.lang.String</classname><description>Number of rows</description>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_checkbox_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_checkbox_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_checkbox_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -122,7 +122,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname><description>Flag indicating that this component will prohibit
- changes by the user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_listbox_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_listbox_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_listbox_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -115,7 +115,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname><description>Flag indicating that this component will prohibit
- changes by the user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_menu_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_menu_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_many_menu_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -115,7 +115,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname><description>A flag indicating that this component prohibits
- changes by a user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_listbox_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_listbox_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_listbox_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -115,7 +115,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname><description>Flag indicating that this component will prohibit
- changes by the user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_menu_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_menu_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_menu_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -116,7 +116,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname><description>Flag indicating that this component will prohibit
- changes by the user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_radio_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_radio_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/standard_select_one_radio_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -122,7 +122,7 @@
</property>
<property>
<name>readonly</name><classname>java.lang.String</classname><description>Flag indicating that this component will prohibit
- changes by the user. The element may receive focus
+ changes by you. The element may receive focus
unless it has also been disabled
</description>
</property>
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_command_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_command_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/ui_command_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -8,7 +8,7 @@
<classname>javax.faces.el.MethodBinding</classname>
<description>
MethodBinding pointing at the application action to be invoked,
- if this UIComponent is activated by the user, during the Apply
+ if this UIComponent is activated by you, during the Apply
Request Values or Invoke Application phase of the request
processing lifecycle, depending on the value of the immediate
property
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/user_role_attributes.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/user_role_attributes.ent 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/user_role_attributes.ent 2008-01-08 16:45:55 UTC (rev 5187)
@@ -3,7 +3,7 @@
<name>enabledOnUserRole</name>
<classname>boolean</classname>
<description>
- If a user is in the given role, this component is rendered
+ If you is in the given role, this component is rendered
normally. If not, no hyperlink is rendered but all nested tags
(=body) are rendered
</description>
@@ -12,7 +12,7 @@
<name>visibleOnUserRole</name>
<classname>boolean</classname>
<description>
- If a user is in given role, this component will be rendered
+ If you is in given role, this component will be rendered
normally. If not, nothing is rendered and the body of this tag
is skipped
</description>
Modified: trunk/docs/userguide/en/src/main/docbook/included/actionparam.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/actionparam.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/actionparam.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<section>
<para>The <emphasis role="bold">
- <property><a4j:actionparam></property>
+ <property><a4j:actionParam></property>
</emphasis> component combines the functionality of both JSF components: <emphasis role="bold">
<property><f:param></property>
</emphasis> and <emphasis role="bold">
Modified: trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/actionparam.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -47,7 +47,7 @@
<section>
<title>Key attributes and ways of usage</title>
<para>The component <emphasis role="bold">
- <property><a4j:actionparam></property>
+ <property><a4j:actionParam></property>
</emphasis> is a combination of the functionality of two JSF tags: <emphasis role="bold">
<property><f:param></property>
</emphasis> and <emphasis role="bold">
@@ -60,7 +60,7 @@
attribute as its value. If a converter attribute is specified, use it to encode and
decode the value to a string stored in the html parameter.</para>
<para><emphasis role="bold">
- <property><a4j:actionparam></property>
+ <property><a4j:actionParam></property>
</emphasis>has a <emphasis><property>"noEscape"</property></emphasis> attribute. If it is set to
"true", the value will be evaluated as a JavaScript code. </para>
<emphasis role="bold">Example:</emphasis>
@@ -86,7 +86,7 @@
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/actionparam.jsf?c=act...">Here</ulink>
you can see the example of <emphasis role="bold"
- ><property><a4j:actionparam></property></emphasis> usage and sources for the given example.
+ ><property><a4j:actionParam></property></emphasis> usage and sources for the given example.
</para>
<para>More information can be found on the <ulink url="http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063764"
>Ajax4jsf Users Forum</ulink>.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<section>
<para>The <emphasis role="bold"><property><a4j:ajaxListener></property></emphasis>
-component is the same one as <emphasis><property>"ActionListener"</property></emphasis>
+component is the same one as <emphasis><property>"actionListener"</property></emphasis>
or <emphasis><property>"ValueChangeListener"</property></emphasis>, but for an Ajax container.</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -67,15 +67,15 @@
<section>
<title>Key attributes and ways of usage</title>
<para>
-Additional to the listeners provided by JSF specification, RichFaces add one more: Ajax Listener (
+Additional to the listeners provided by JSF specification, RichFaces add one more: ajax Listener (
<emphasis role="bold"><property><a4j:ajaxListener></property>
</emphasis>).
-Ajax Listener is invoked before the Render Response phase. Instead of Action Listener of Value Change Listener which are not
-invoked when Validation of Update Model phases failed, Ajax Listener is guarantied to be invoked for each Ajax response. Thus, it is
+Ajax Listener is invoked before the Render Response phase. Instead of action Listener of Value Change Listener which are not
+invoked when Validation of Update Model phases failed, ajax Listener is guarantied to be invoked for each Ajax response. Thus, it is
a good place for update the list of re-rendered components, for example.
Ajax Listener is not invoked for non-Ajax request and when RichFaces works in "Ajax Request generates
-Non-Ajax Response" mode. Therefore, Ajax Listener invocation is a good indicator that Ajax response is going to be processed.
-Attribute "type" defines the fully qualified Java class name for listener. This class should implement org.ajax4jsf.framework.ajax.AjaxListener
+Non-Ajax Response" mode. Therefore, ajax Listener invocation is a good indicator that Ajax response is going to be processed.
+Attribute "type" defines the fully qualified Java class name for listener. This class should implement org.ajax4jsf.framework.ajax.ajaxListener
interface. You can access to the source of the event (Ajax component) using event.getSource() call.
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -10,12 +10,14 @@
<para>The <emphasis role="bold">
<property><rich:calendar></property>
</emphasis> component is used for creating monthly calendar elements on a page.</para>
-
+ <figure>
+ <title>Calendar component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/calendar.png"/>
</imageobject>
</mediaobject>
+ </figure>
</section>
<section>
<title>Key Features</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/calendar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/calendar.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/calendar.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -82,7 +82,9 @@
<section>
<title>Details of Usage</title>
<para>The <emphasis>
- <property>"popup"</property>
+ <property>"popup"<ulink
+ fileref="ui\calendar\src\main\config\component\calendar.xml">RichFaces Users Forum</ulink>.
+ </property>
</emphasis> attribute defines calendar representation mode on a page. If it's
"true" the calendar is represented on a page as an input field and a button.
Clicking on the button calls the calendar popup as it's shown on the picture below. </para>
@@ -90,7 +92,7 @@
<title>Using the <emphasis>
<property>"popup"</property>
</emphasis> attribute</title>
-
+
<mediaobject>
<imageobject>
<imagedata fileref="images/calendar.png"/>
@@ -715,7 +717,7 @@
</table>
<table>
- <title>Skin parameters redefinition for a toolbar and names of months</title>
+ <title>Skin parameters redefinition for a toolBar and names of months</title>
<tgroup cols="2">
<thead>
@@ -913,9 +915,15 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/calendar1.png" scalefit="1"/>
+ <imagedata fileref="images/calendar1a.png" scalefit="1"/>
</imageobject>
</mediaobject>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/calendar1b.png" scalefit="1"/>
+ </imageobject>
+ </mediaobject>
+
</figure>
<table>
Modified: trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -12,7 +12,7 @@
<title>Column component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/column1.gif"/>
+ <imagedata fileref="images/column1.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/column.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/column.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/column.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -104,7 +104,7 @@
<title>Generated column component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/column2.gif"/>
+ <imagedata fileref="images/column2.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -138,7 +138,7 @@
<title>Column modified with colspan and breakbefore attributes</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/column3.gif"/>
+ <imagedata fileref="images/column3.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -173,7 +173,7 @@
<title>Column generated with rowspan attribute</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/column4.gif"/>
+ <imagedata fileref="images/column4.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -12,7 +12,7 @@
<title>ColumnGroup component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/columngroup1.gif"/>
+ <imagedata fileref="images/columngroup1.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -3,7 +3,7 @@
<sectioninfo>
<keywordset>
<keyword>rich:columnGroup</keyword>
-<keyword>HtmlColumnGroup</keyword>
+<keyword>HtmlcolumnGroup</keyword>
</keywordset>
</sectioninfo>
<table>
@@ -128,7 +128,7 @@
<title>Generated columnGroup component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/columngroup2.gif"/>
+ <imagedata fileref="images/columngroup2.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -165,7 +165,7 @@
<title>ColumnGroup with complex headers</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/columngroup3.gif"/>
+ <imagedata fileref="images/columngroup3.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/componentControl.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/componentControl.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/componentControl.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -123,7 +123,7 @@
<para>In the example the <emphasis>
<property>"for"</property>
</emphasis> attribute contains value of an Id of <emphasis role="bold">
- <property><rich:modalpanel></property>
+ <property><rich:modalPanel></property>
</emphasis> component. The <emphasis>
<property>"operation"</property>
</emphasis> attribute contains a name of JavaScript API function. An <emphasis>
@@ -181,13 +181,13 @@
<f:param name="cmdParam" value="menu" />
</rich:menuItem>
<rich:menuSeparator />
- <rich:menuItem icon="/pics/info.gif" value="a" reRender="cmInfoID">
+ <rich:menuItem icon="/pics/info.png" value="a" reRender="cmInfoID">
<f:param name="cmdParam" value="a" />
</rich:menuItem>
- <rich:menuItem icon="/pics/info.gif" value=" b" reRender="cmInfoID">
+ <rich:menuItem icon="/pics/info.png" value=" b" reRender="cmInfoID">
<f:param name="cmdParam" value="b" />
</rich:menuItem>
- <rich:menuItem icon="/pics/info.gif" value="c" reRender="cmInfoID">
+ <rich:menuItem icon="/pics/info.png" value="c" reRender="cmInfoID">
<f:param name="cmdParam" value="c" />
</rich:menuItem>
</rich:contextMenu>
Modified: trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -12,11 +12,14 @@
</emphasis> component is used for creation multileveled
context menus that are activated after a user defines an event (onmouseover, onclick,
etc.) on any element on the page.</para>
+ <figure>
+ <title>Component ContextMenu</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/contextMenu1.png"/>
</imageobject>
</mediaobject>
+ </figure>
</section>
<section>
<title>Key Features</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -95,7 +95,7 @@
<programlisting role="XML"><![CDATA[...
<h:panelGrid columns="1" columnClasses="cent">
<h:panelGroup id="picture">
- <h:graphicImage value="/richfaces/jQuery/images/pic1.jpg" id="pic"/>
+ <h:graphicImage value="/richfaces/jQuery/images/pic1.png" id="pic"/>
<rich:contextMenu event="oncontextmenu" attached="true" submitMode="none">
<rich:menuItem value="Zoom In" onclick="enlarge();" id="zin"></rich:menuItem>
<rich:menuItem value="Zoom Out" onclick="decrease();" id="zout"></rich:menuItem>
@@ -164,19 +164,19 @@
<rich:contextMenu attached="false" id="menu" submitMode="ajax">
<rich:menuItem ajaxSingle="true">
<b>{car} {model}</b> details
- <a4j:actionparam name="det" assignTo="#{ddmenu.current}" value="{car} {model} details"/>
+ <a4j:actionParam name="det" assignTo="#{ddmenu.current}" value="{car} {model} details"/>
</rich:menuItem>
<rich:menuGroup value="Actions">
<rich:menuItem ajaxSingle="true">
Put <b>{car} {model}</b> To Basket
- <a4j:actionparam name="bask" assignTo="#{ddmenu.current}" value="Put {car} {model} To Basket"/>
+ <a4j:actionParam name="bask" assignTo="#{ddmenu.current}" value="Put {car} {model} To Basket"/>
</rich:menuItem>
<rich:menuItem value="Read Comments" ajaxSingle="true">
- <a4j:actionparam name="bask" assignTo="#{ddmenu.current}" value="Read Comments"/>
+ <a4j:actionParam name="bask" assignTo="#{ddmenu.current}" value="Read Comments"/>
</rich:menuItem>
<rich:menuItem ajaxSingle="true">
Go to <b>{car}</b> site
- <a4j:actionparam name="bask" assignTo="#{ddmenu.current}" value="Go to {car} site"/>
+ <a4j:actionParam name="bask" assignTo="#{ddmenu.current}" value="Go to {car} site"/>
</rich:menuItem>
</rich:menuGroup>
</rich:contextMenu>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -12,7 +12,7 @@
<title>DataFilterSlider component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/dataFilterSlider.gif"/>
+ <imagedata fileref="images/dataFilterSlider.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -24,7 +24,7 @@
<listitem>Fully skinnable control and input elements</listitem>
<listitem>Optional value text field with an attribute-managed position</listitem>
<listitem>Optional disablement of the component on a page</listitem>
- <listitem>Optional ToolTip to display the current value while a handle is dragged</listitem>
+ <listitem>Optional toolTip to display the current value while a handle is dragged</listitem>
<listitem>Dragged state is stable after the mouse moves</listitem>
<listitem>Optional manual input possible if a text input field is present</listitem>
<listitem>Validation of manual input</listitem>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -10,7 +10,7 @@
<para>The component for unordered lists rendering that allows choosing data from a model
and obtains built-in support of Ajax updates.</para>
<figure>
- <title>dataList component</title>
+ <title>DataList component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/datalist1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -13,7 +13,7 @@
<title>DataTable component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/datatable1.gif"/>
+ <imagedata fileref="images/datatable1.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -465,7 +465,7 @@
<para>How to use <emphasis role="bold">
<property><rich:dataTable></property>
</emphasis> and <emphasis role="bold">
- <property><rich:dataScroller></property>
+ <property><rich:datascroller></property>
</emphasis> in a context of Extended Data Model see <ulink
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&t=115636"
>here</ulink>.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/datascroller.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/datascroller.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/datascroller.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -13,7 +13,7 @@
<title>Datascroller component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/datascroller1.gif"/>
+ <imagedata fileref="images/datascroller1.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -3,8 +3,8 @@
<sectioninfo>
<keywordset>
<keyword>scroller</keyword>
- <keyword>rich:Datascroller</keyword>
- <keyword>HtmlDatascroller</keyword>
+ <keyword>rich:datascroller</keyword>
+ <keyword>Htmldatascroller</keyword>
<keyword>tables</keyword>
</keywordset>
</sectioninfo>
@@ -74,7 +74,7 @@
<section>
<title>Details of Usage</title>
<para>The <emphasis role="bold">
- <property><rich:Datascroller></property>
+ <property><rich:datascroller></property>
</emphasis> component provides table scrolling functionalitity the same as TOMAHAWK scroller but
with Ajax requests usage.</para>
<para>The component should be placed into footer of the parent table or be bound to it with the <emphasis>
@@ -130,7 +130,7 @@
<title>Datascroller controls</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/datascroller2.gif"/>
+ <imagedata fileref="images/datascroller2.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -164,7 +164,7 @@
</emphasis> and <emphasis>
<property>"pagesVar"</property>
</emphasis> attributes provide an ability to show the current page and the number of pages in
- the dataScroller. These attributes are used for definition the names of variables, that will
+ the datascroller. These attributes are used for definition the names of variables, that will
be used in the facet with name<emphasis>
<property>"pages".</property>
</emphasis> An example can be found below: </para>
@@ -193,7 +193,7 @@
</emphasis> facet. An example is placed below. </para>
<programlisting role="XML"><![CDATA[ ...
<f:facet name="controlSeparator">
- <h:graphicImage value="/image/sep.gif"/>
+ <h:graphicImage value="/image/sep.png"/>
</f:facet>
...
]]></programlisting>
@@ -430,13 +430,13 @@
<ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/dataTableScroller.jsf..."
>Here</ulink> you can see the example of <emphasis role="bold"
- ><property><rich:dataScroller></property></emphasis> usage and sources for the given example. </para>
+ ><property><rich:datascroller></property></emphasis> usage and sources for the given example. </para>
<para> The solution about how to do correct pagination using datascroller (load a part of data from
database) can be found on the <ulink
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060199#..."
>RichFaces Users Forum</ulink>. </para>
<para>How to use <emphasis role="bold"><property><rich:dataTable></property></emphasis> and <emphasis
- role="bold"><property><rich:dataScroller></property></emphasis> in a context of Extended
+ role="bold"><property><rich:datascroller></property></emphasis> in a context of Extended
Data Model see <ulink
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&t=115636"
>here</ulink>.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -16,7 +16,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/dragIndicator1.gif"/>
+ <imagedata fileref="images/dragIndicator1.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -187,7 +187,7 @@
<title>DragIndicator informational part</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/dragIndicator2.gif"/>
+ <imagedata fileref="images/dragIndicator2.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -218,7 +218,7 @@
</para>
<programlisting role="XML"><![CDATA[...
<f:dndParam name="accept">
- <h:graphicImage value="./images/1.gif"/>
+ <h:graphicImage value="./images/1.png"/>
</f:dndParam>
...
]]></programlisting>
@@ -269,5 +269,5 @@
<property><rich:dragIndicator></property>
</emphasis> usage and sources for the given example. </para>
</section>
-
+
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragIndicator1.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragIndicator1.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragIndicator1.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -87,7 +87,7 @@
<title>DragIndicator informational part</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/dragIndicator2.gif"/>
+ <imagedata fileref="images/dragIndicator2.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -118,7 +118,7 @@
<para>Here is an example for an accept facet:</para>
<programlisting role="XML"><![CDATA[
<f:facet name="accept">
- <h:graphicImage value="./images/1.gif"/>
+ <h:graphicImage value="./images/1.png"/>
</f:facet>
]]></programlisting>
<para>Each of these three facets have a default structure for icons rendering on the left side.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -18,7 +18,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/dragsupport1.gif" />
+ <imagedata fileref="images/dragsupport1.png" />
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -104,7 +104,7 @@
<programlisting role="XML"><![CDATA[...
<h:column>
<rich:dragSupport dragIndicator=":form:iii" dragType="text">
- <a4j:actionparam value="#{caps.name}" name="name"/>
+ <a4j:actionParam value="#{caps.name}" name="name"/>
</rich:dragSupport>
<h:outputText value="#{caps.name}"/>
</h:column>
@@ -122,7 +122,7 @@
<h:column>
<a4j:outputPanel>
<rich:dragSupport dragIndicator=":form:iii" dragType="text">
- <a4j:actionparam value="#{caps.name}" name="name"/>
+ <a4j:actionParam value="#{caps.name}" name="name"/>
</rich:dragSupport>
<h:outputText value="#{caps.name}"/>
</a4j:outputPanel>
Modified: trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -13,7 +13,7 @@
<title>Draggable component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/draggable1.gif"/>
+ <imagedata fileref="images/draggable1.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropDownMenu.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropDownMenu.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropDownMenu.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -105,7 +105,7 @@
</para>
<programlisting role="XML"><![CDATA[...
<f:facet name="label">
- <h:graphicImage value="/images/img1.gif"/>
+ <h:graphicImage value="/images/img1.png"/>
</f:facet>
...
]]></programlisting>
@@ -355,7 +355,7 @@
<programlisting role="XML"><![CDATA[...
<rich:dropDownMenu disabled="true">
<f:facet name="labelDisabled">
- <h:graphicImage value="/images/ico1.gif"/>
+ <h:graphicImage value="/images/ico1.png"/>
</f:facet>
<!--Nested menu components-->
</rich:dropDownMenu>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -17,7 +17,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/dropSupport1.gif" />
+ <imagedata fileref="images/dropSupport1.png" />
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -142,7 +142,7 @@
<h:column>
<a4j:outputPanel>
<rich:dragSupport dragIndicator=":form:ind" dragType="text">
- <a4j:actionparam value="#{caps.name}" name="name"/>
+ <a4j:actionParam value="#{caps.name}" name="name"/>
</rich:dragSupport>
<h:outputText value="#{caps.name}"/>
</a4j:outputPanel>
@@ -206,7 +206,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/dropSupport2.gif"/>
+ <imagedata fileref="images/dropSupport2.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -13,7 +13,7 @@
<title>DropZone with dragged element</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/dropZone.gif"/>
+ <imagedata fileref="images/dropZone.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/form.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/form.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/form.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -70,16 +70,16 @@
...
</t:dataTable>
...
- <t:dataScroller for="table"... >
+ <t:datascroller for="table"... >
...
- </t:dataScroller>
+ </t:datascroller>
...
</a4j:form
]]></programlisting>
<para>This example shows that in order to make <emphasis role="bold">
- <property><t:dataScroller></property>
+ <property><t:datascroller></property>
</emphasis> submissions to be Ajax ones it's required only to place this <emphasis role="bold">
- <property><t:dataScroller></property>
+ <property><t:datascroller></property>
</emphasis> into <emphasis role="bold">
<property><a4j:form></property>
</emphasis>. In the other case it is necessary to redefine renders for its child links elements that are defined as <emphasis role="bold">
Modified: trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -12,7 +12,7 @@
<title>Gmap component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/gmap.gif"/>
+ <imagedata fileref="images/gmap.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/gmap.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/gmap.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/gmap.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -108,7 +108,7 @@
<title>Gmap initial rendering</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/gmap1.gif"/>
+ <imagedata fileref="images/gmap1.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -133,7 +133,7 @@
<title>Gmap accessible controls</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/gmap3.gif"/>
+ <imagedata fileref="images/gmap3.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -9,13 +9,13 @@
<title>Description</title>
<para>A component that lets selecting a number from a numeric region. It's a horizontal
aligned scroll-like control with its own input field (optional) present. The keyboard input in a
- field is possible (optional). Also it's possible to see the current value in the tooltip
+ field is possible (optional). Also it's possible to see the current value in the toolTip
above a dragged handle control.</para>
<figure>
<title>InputNumberSlider component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/slider.gif"/>
+ <imagedata fileref="images/slider.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -26,7 +26,7 @@
<listitem>Fully skinnable control and input elements</listitem>
<listitem>Optional value text field with an attribute-managed position</listitem>
<listitem>Optional disablement of the component on a page</listitem>
- <listitem>Optional ToolTip to display the current value while a handle is dragged</listitem>
+ <listitem>Optional toolTip to display the current value while a handle is dragged</listitem>
<listitem>Dragged state is stable after the mouse moves</listitem>
<listitem>Optional manual input possible if a text input field is present</listitem>
<listitem>Validation of manual input</listitem>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -90,7 +90,7 @@
<title>Generated inputNumberSlider</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/slider2.gif"/>
+ <imagedata fileref="images/slider2.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -113,18 +113,18 @@
<title>InputNumberSlider without input field</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/slider3.gif"/>
+ <imagedata fileref="images/slider3.png"/>
</imageobject>
</mediaobject>
</figure>
<para>It's also possible to switch off displaying of "boundary
- values" and a tooltip showing on a handle drawing. This could be performed with the
+ values" and a toolTip showing on a handle drawing. This could be performed with the
help of the component defined attributes: <emphasis>
<property>"showBoundaryValues"</property>
</emphasis> which is responsible for "boundary values" displaying (default
is true) and <emphasis>
<property>"showToolTip"</property>
- </emphasis> which is responsible for tooltip displaying (default is true).</para>
+ </emphasis> which is responsible for tooltTip displaying (default is true).</para>
<para>Moreover, to add e.g. some JavaScript effects, events defined on it are used.</para>
<itemizedlist>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -17,7 +17,7 @@
<title>InputNumberSpinner component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/inputNumberSpinnerMain.gif"/>
+ <imagedata fileref="images/inputNumberSpinnerMain.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -91,7 +91,7 @@
<title>Generated inputNumberSpinner</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/inputNumberSpinner2.gif"/>
+ <imagedata fileref="images/inputNumberSpinner2.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/jQuery.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/jQuery.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/jQuery.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -282,9 +282,9 @@
back to the normal size on mouse out:</para>
<programlisting role="XML"><![CDATA[...
- <h:graphicImage onmouseover="enlargePic(this)" width="50" value="/images/price.gif"
+ <h:graphicImage onmouseover="enlargePic(this)" width="50" value="/images/price.png"
onmouseover="enlargePic(this, {pwidth:'60px'})" onmouseover="releasePic(this)" />
- <h:graphicImage onmouseover="enlargePic(this)" width="50" value="/images/discount.gif"
+ <h:graphicImage onmouseover="enlargePic(this)" width="50" value="/images/discount.png"
onmouseover="enlargePic(this, {pwidth:'100px'})" onmouseover="releasePic(this)" />
...
<rich:jQuery name="enlargePic" timing="onJScall" query="animate({width:param.pwidth})" />
Modified: trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/jsFunction.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -17,15 +17,15 @@
</row>
<row>
<entry>component-family</entry>
- <entry>org.ajax4jsf.components.AjaxFunction</entry>
+ <entry>org.ajax4jsf.components.ajaxFunction</entry>
</row>
<row>
<entry>component-class</entry>
- <entry>org.ajax4jsf.component.html.HtmlAjaxFunction</entry>
+ <entry>org.ajax4jsf.component.html.HtmlajaxFunction</entry>
</row>
<row>
<entry>renderer-type</entry>
- <entry>org.ajax4jsf.components.AjaxFunctionRenderer</entry>
+ <entry>org.ajax4jsf.components.ajaxFunctionRenderer</entry>
</row>
</tbody>
</tgroup>
@@ -59,9 +59,9 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlAjaxFunction;
+ <programlisting role="JAVA"><![CDATA[import org.ajax4jsf.component.html.HtmlajaxFunction;
...
-HtmlAjaxFunction myFunction = new HtmlAjaxFunction();
+HtmlajaxFunction myFunction = new HtmlajaxFunction();
...
]]></programlisting>
</section>
@@ -82,8 +82,8 @@
...
<a4j:jsFunction name="callScript" data="#{bean.someProperty1 }
"reRender="someComponent" oncomplete="myScript(data.subProperty1, data.subProperty2)">
- <a4j:actionparam name="param_name" assignTo="#{bean.someProperty2}">
- </a4j:actionparam>
+ <a4j:actionParam name="param_name" assignTo="#{bean.someProperty2}">
+ </a4j:actionParam>
</a4j:jsFunction>
...
</h:form>
@@ -93,7 +93,7 @@
<para> The <emphasis role="bold">
<property><a4j:jsFunction></property>
</emphasis> allows to use <emphasis role="bold">
- <property><a4j:actionparam></property>
+ <property><a4j:actionParam></property>
</emphasis> or pure <emphasis role="bold">
<property><f:param></property>
</emphasis> for passing any number of parameters of the JavaScript function into Ajax request.
Modified: trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -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>listShuttle component</title>
+ <title>ListShuttle component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/listShuttle1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -72,10 +72,10 @@
<para>
The <emphasis>
<property>"sourceSelection" </property>
- </emphasis> attribute stores the collection of items selected by user in the source list.
+ </emphasis> attribute stores the collection of items selected by you in the source list.
The <emphasis>
<property>"targetSelection" </property>
- </emphasis> attribute stores the collection of items selected by user in the target list.
+ </emphasis> attribute stores the collection of items selected by you in the target list.
</para>
<para>Captions could be added to a list only after it was defined as a <emphasis>
<property>"sourceCaption"</property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/loadStyle.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -68,6 +68,13 @@
page while using <property>facelets templates</property>.
</para>
</section>
-
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/style.jsf?c=loadStyle">here.
+ </ulink>
+ </para>
+ </section>
</chapter>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/log.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/log.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/log.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<chapter>
- <section>
- <para><table frame="all">
+
+ <table frame="all">
<title>Component identification parameters</title>
<tgroup cols="2">
<thead>
@@ -29,8 +29,8 @@
</row>
</tbody>
</tgroup>
- </table></para>
- </section>
+ </table>
+
<section>
<title>Creating on a page</title>
<para>To use the component, it's necessary to place the following string on a page:</para><programlisting role="XML"><![CDATA[<a4j:log/>]]></programlisting>
Modified: trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -2,7 +2,7 @@
<section>
<sectioninfo>
<keywordset>
- <keyword>menuseparator</keyword>
+ <keyword>menuSeparator</keyword>
</keywordset>
</sectioninfo>
Modified: trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -22,7 +22,7 @@
<itemizedlist>
<listitem>Highly customizable look and feel </listitem>
<listitem>Track both traditional and Ajax based requests</listitem>
- <listitem>Optional tooltip to display the detail portion of the message</listitem>
+ <listitem>Optional toolTip to display the detail portion of the message</listitem>
<listitem>Additionally customizable via attributes and facets</listitem>
<listitem>Additionally provides of two parts to be optionally defined: marker and
label</listitem>
Modified: trunk/docs/userguide/en/src/main/docbook/included/message.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/message.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/message.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -109,10 +109,10 @@
<programlisting role="XML"><![CDATA[...
<rich:message for="id" passedLabel="No errors' showSummary="true">
<f:facet name="errorMarker">
- <h:graphicImage url="/image/error.gif"/>
+ <h:graphicImage url="/image/error.png"/>
</f:facet>
<f:facet name="passedMarker">
- <h:graphicImage url="/image/passed.gif"/>
+ <h:graphicImage url="/image/passed.png"/>
</f:facet>
</rich:message>
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -26,7 +26,7 @@
<itemizedlist>
<listitem>Highly customizable look and feel</listitem>
<listitem>Track both traditional and Ajax based requests</listitem>
- <listitem>Optional tooltip to display a detailed part of the messages</listitem>
+ <listitem>Optional ToolTip to display a detailed part of the messages</listitem>
<listitem>Additionally customizable via attributes and facets</listitem>
<listitem>Additionally provides of three parts to be optionally defined: marker, label and header</listitem>
</itemizedlist>
Modified: trunk/docs/userguide/en/src/main/docbook/included/messages.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/messages.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/messages.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -101,13 +101,13 @@
<programlisting role="XML"><![CDATA[...
<rich:messages layout="table" tooltip="true" showDetail="false" showSummary="true" passedLabel="No Errors" var="messages">
<f:facet name="errorMarker">
- <h:graphicImage url="/image/error.gif"/>
+ <h:graphicImage url="/image/error.png"/>
</f:facet>
<f:facet name="infoMarker">
- <h:graphicImage url="/image/info.gif"/>
+ <h:graphicImage url="/image/info.png"/>
</f:facet>
<f:facet name="passedMarker">
- <h:graphicImage url="/image/passed.gif"/>
+ <h:graphicImage url="/image/passed.png"/>
</f:facet>
</rich:messages>
...
Modified: trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -74,7 +74,7 @@
<!--Any Content inside-->
...
<a href="javascript:RichFaces.hideModalPanel('form:panel')">Hide</a>
- </rich:modalpanel>
+ </rich:modalPanel>
...
<a href="javascript:RichFaces.showModalPanel('form:panel')">Show</a>
...
@@ -149,7 +149,7 @@
<f:facet name="header">
<h:outputText value="Modal Panel"/>
</f:facet>
- <h:graphicImage value="/pages/california_large.gif"/>
+ <h:graphicImage value="/pages/california_large.png"/>
<a href="javascript:Richfaces.hideModalPanel('form:panel')">Close</a>
</rich:modalPanel>
<a href="javascript:Richfaces.showModalPanel('form:panel');">Open</a>
@@ -183,7 +183,7 @@
<f:facet name="controls">
<h:graphicImage value="/pages/close.png" style="cursor:pointer" onclick="Richfaces.hideModalPanel('mp')" />
</f:facet>
- <h:graphicImage value="/pages/california_large.gif"/>
+ <h:graphicImage value="/pages/california_large.png"/>
</rich:modalPanel>
]]></programlisting>
@@ -322,13 +322,13 @@
<row>
<entry>Show()</entry>
- <entry>Shows the corresponding tooltip</entry>
+ <entry>Shows the corresponding ToolTip</entry>
</row>
<row>
<entry>Hide()</entry>
- <entry>Hides the corresponding tooltip</entry>
+ <entry>Hides the corresponding ToolTip</entry>
</row>
</tbody>
Modified: trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -113,7 +113,7 @@
<para> The <emphasis>
<property>"selection" </property>
- </emphasis> attribute stores the collection of items selected by user. In the example
+ </emphasis> attribute stores the collection of items selected by you. In the example
below after submitting the form the current collection is placed in the object's
property and then <emphasis role="bold">
<property><rich:dataTable></property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -13,7 +13,7 @@
<title>Paint2D component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/paint2D2.gif"/>
+ <imagedata fileref="images/paint2D2.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -13,7 +13,7 @@
<title>Panel component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/panelMain.gif"/>
+ <imagedata fileref="images/panelMain.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panel.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panel.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -78,7 +78,7 @@
<programlisting role="XML"><![CDATA[...
<rich:panel>
<f:facet name="header">
- <h:graphicImage value="/images/img1.gif"/>
+ <h:graphicImage value="/images/img1.png"/>
</f:facet>
...
<!--Any Content inside-->
@@ -106,7 +106,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/panel.gif"/>
+ <imagedata fileref="images/panel.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -135,7 +135,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/panel2.gif"/>
+ <imagedata fileref="images/panel2.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -341,7 +341,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/panel4.gif"/>
+ <imagedata fileref="images/panel4.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -13,7 +13,7 @@
<title>PanelBar with content inside</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/panelBarMain.gif"/>
+ <imagedata fileref="images/panelBarMain.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -150,7 +150,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/panelBar2.gif" scalefit="1"/>
+ <imagedata fileref="images/panelBar2.png" scalefit="1"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -14,7 +14,7 @@
<title>PanelBarItem component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/panelBarItem.gif" scalefit="1"/>
+ <imagedata fileref="images/panelBarItem.png" scalefit="1"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -86,7 +86,7 @@
<programlisting role="XML"><![CDATA[...
<rich:panelBarItem...>
<f:facet name="label">
- <h:graphicImage value="/images/img1.gif"/>
+ <h:graphicImage value="/images/img1.png"/>
</f:facet>
...
<!--Any Content inside-->
@@ -199,7 +199,7 @@
<title>Style classes</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/panelBar3.gif" scalefit="1"/>
+ <imagedata fileref="images/panelBar3.png" scalefit="1"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -10,12 +10,14 @@
<para>The <emphasis role="bold">
<property><rich:panelMenu></property>
</emphasis> component is used to define an inline vertical menu on a page.</para>
-
+ <figure>
+ <title>PanelMenu component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/panelmenu.png"/>
</imageobject>
</mediaobject>
+ </figure>
</section>
<section>
<title>Key Features</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -170,7 +170,7 @@
<figure>
<title>Using the <emphasis><property>"expandSingle"</property></emphasis> attribute</title>
-
+ <title>using the 'expand single' attribute</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/panelmenu1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -10,12 +10,14 @@
<para>The <emphasis role="bold">
<property><rich:panelMenuGroup></property>
</emphasis> component is used to define an expandable group of items inside the panel menu or other group.</para>
-
+ <figure>
+ <title>panelmenugroup component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/panelmenu.png"/>
</imageobject>
</mediaobject>
+ </figure>
</section>
<section>
<title>Key Features</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -123,7 +123,7 @@
<para><emphasis>
<property>"Action"</property>
</emphasis> and <emphasis>
- <property>"ActionListener"</property>
+ <property>"actionListener"</property>
</emphasis> attributes are ignored. Items don't fire any submits itself. Behavior is
fully defined by the components nested into items.</para>
@@ -186,7 +186,7 @@
<programlisting role="XML"><![CDATA[...
<rich:panelMenu>
- <rich:panelMenuGroup label="Group1" iconExpanded="\images\img1.gif" iconCollapsed="\images\img2.gif">
+ <rich:panelMenuGroup label="Group1" iconExpanded="\images\img1.png" iconCollapsed="\images\img2.png">
<!--Nested menu components-->
</rich:panelMenuGroup>
</rich:panelMenu>
@@ -557,5 +557,12 @@
<property><rich:panelMenuGroup></property>
</emphasis>attributes.</para>
</section>
-
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dropDownMenu.jsf?c=me...">here.
+ </ulink>
+ </para>
+ </section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -10,12 +10,14 @@
<para>The <emphasis role="bold">
<property><rich:panelMenuItem></property>
</emphasis> component is used to define a single item inside popup list.</para>
-
+ <figure>
+ <title>PanelMenuItem component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/panelmenu.png"/>
</imageobject>
</mediaobject>
+ </figure>
</section>
<section>
<title>Key Features</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -120,7 +120,7 @@
<para><emphasis>
<property>"Action"</property>
</emphasis> and <emphasis>
- <property>"ActionListener"</property>
+ <property>"actionListener"</property>
</emphasis> attributes are ignored. Items don't fire any submits itself. Behavior is
fully defined by the components nested into items.</para>
@@ -190,7 +190,7 @@
<programlisting role="XML"><![CDATA[...
<rich:panelMenu>
...
- <rich:panelMenuItem ="Item 1.1" icon="\images\img1.gif" />
+ <rich:panelMenuItem ="Item 1.1" icon="\images\img1.png" />
...
</rich:panelMenu>
...]]></programlisting>
@@ -464,5 +464,12 @@
<property><rich:panelMenuItem></property>
</emphasis>attributes.</para>
</section>
-
+ <section>
+ <title>Relevant resources links</title>
+ <para>
+ Some additional information about usage of component can be found
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dropDownMenu.jsf?c=me...">here.
+ </ulink>
+ </para>
+ </section>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/poll.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/poll.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/poll.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -115,7 +115,7 @@
<a4j:commandButton style="width:120px" id="control"
value="#{userBean.pollEnabled?'Stop':'Start'} Polling"
reRender="poll, grid">
- <a4j:actionparam name="polling" value="#{!userBean.pollEnabled}"
+ <a4j:actionParam name="polling" value="#{!userBean.pollEnabled}"
assignTo="#{userBean.pollEnabled}"/>
</a4j:commandButton>
</h:panelGrid>
Modified: trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -73,7 +73,7 @@
<para> The component represents on a page as a scrollable table with some fixed (non-scrollable)
rows (header, footer) and columns. Columns of the table are optionally resizable. Resizing is
available using "drag and drop" of the column vertical borders. There is possibility to expand
- or collapse the columns through JS API on the client side. User can define the number of the
+ or collapse the columns through JS API on the client side. You can define the number of the
fixed columns from the left side using attribute <emphasis>
<property>"frozenColCount"</property>
</emphasis> that will not be scrolled via horizontal scroll. </para>
@@ -130,9 +130,9 @@
rows mode</property>.</para>
<para>This attribute is a reference to object to the instace of
<property>org.richfaces.model.selection.Selection</property> interface, containing current
- collection of objects selected by user.</para>
- <para>In the following example when user submits the form current collection of objects selected
- by user is placed in the object's property. Then on complete action the <emphasis role="bold">
+ collection of objects selected by you.</para>
+ <para>In the following example when you submits the form current collection of objects selected
+ by you is placed in the object's property. Then on complete action the <emphasis role="bold">
<property><rich:modalPanel></property>
</emphasis> with selected data will be shown.</para>
<para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -13,7 +13,7 @@
<title>Separator component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/separator.gif"/>
+ <imagedata fileref="images/separator.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/separator.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/separator.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/separator.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -93,7 +93,7 @@
<title>Different line types of separator</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/separator1.gif"/>
+ <imagedata fileref="images/separator1.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -12,7 +12,7 @@
<title>SimpleTogglePanel component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/simpleTogglePanel.gif"/>
+ <imagedata fileref="images/simpleTogglePanel.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -108,7 +108,7 @@
<title>SimpleTogglePanel states</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/simpleTogglePanel2.gif"/>
+ <imagedata fileref="images/simpleTogglePanel2.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -12,7 +12,7 @@
<title>Spacer component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/spacer.gif"/>
+ <imagedata fileref="images/spacer.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/status.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/status.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/status.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -48,10 +48,10 @@
With "Start"/"Stop" facets definition:
<programlisting role="XML"><![CDATA[<a4j:status for="stat2">
<f:facet name="start">
- <h:graphicImage value="ajax_process.gif" />
+ <h:graphicImage value="ajax_process.png" />
</f:facet>
<f:facet name="stop">
- <h:graphicImage value="ajax_stoped.gif" />
+ <h:graphicImage value="ajax_stoped.png" />
</f:facet>
</a4j:status>]]></programlisting>
<para>In this case, the elements are generated for each status and correspond the facets content.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -18,7 +18,7 @@
<title>SubTable element</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/subtable1.gif"/>
+ <imagedata fileref="images/subtable1.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/subTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/subTable.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/subTable.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -2,7 +2,7 @@
<section>
<sectioninfo>
<keywordset>
- <keyword>rich:subtable</keyword>
+ <keyword>rich:subTable</keyword>
<keyword>HtmlSubTable</keyword>
</keywordset>
</sectioninfo>
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -16,7 +16,7 @@
<title>SuggestionBox component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/suggestionbox1.gif"/>
+ <imagedata fileref="images/suggestionbox1.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -4,7 +4,7 @@
<keywordset>
<keyword>on-keypress suggestion</keyword>
<keyword>rich:suggestionBox</keyword>
- <keyword>HtmlSuggestionBox</keyword>
+ <keyword>HtmlsuggestionBox</keyword>
</keywordset>
</sectioninfo>
@@ -51,12 +51,12 @@
</para>
<programlisting role="XML"><![CDATA[...
<h:inputText value="#{bean.property}" id="suggest"/>
- <rich:suggestionbox for="suggest" suggestionAction="#{bean.autocomplete}"
+ <rich:suggestionBox for="suggest" suggestionAction="#{bean.autocomplete}"
var="suggest">
<h:column>
<h:outputText value="#{suggest.text}"/>
</h:column>
- </rich:suggestionbox>
+ </rich:suggestionbBox>
...
]]></programlisting>
<para>Here is the <emphasis>
@@ -101,7 +101,7 @@
<emphasis>
<property>"suggestionAction"</property>
</emphasis>
- <para> is an accepting parameter of a SuggestionEvent type that returns as a result
+ <para> is an accepting parameter of a suggestionEvent type that returns as a result
a collection for rendering in a tool tip window.</para>
</listitem>
<listitem>
@@ -119,10 +119,10 @@
</emphasis>) that are obligatory for the suggestion component. The attributes have
initial Defaults but should be specified manually in order to be changed.</para>
<para>The <property>suggestionBox</property> component, as it is shown on the screenshot,
- could get any collection for an output and outputs it in a tooltip window the same as a
+ could get any collection for an output and outputs it in a ToolTip window the same as a
custom dataTable (in several columns)</para>
<programlisting role="XML"><![CDATA[...
- <rich:suggestionbox for="test"
+ <rich:suggestionBox for="test"
suggestionAction="#{bean.autocomplete}" var="cit" fetchValue="#{cit.text}">
<h:column>
<h:outputText value="#{cit.label}"/>
@@ -130,15 +130,15 @@
<h:column>
<h:outputText value="#{cit.text}"/>
</h:column>
- </rich:suggestionbox>
+ </rich:suggestionBox>
...
]]></programlisting>
<para>It looks on a page in the following way:</para>
<figure>
- <title>SuggestionBox with tooltip window</title>
+ <title>SuggestionBox with ToolTip window</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/suggestionbox2.gif"/>
+ <imagedata fileref="images/suggestionbox2.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -152,12 +152,12 @@
<emphasis role="bold">Example:</emphasis>
</para>
<programlisting role="XML"><![CDATA[...
- <rich:suggestiobox for="test" suggestionAction="#{bean.autocomplete}" var="cit"
+ <rich:suggestionBox for="test" suggestionAction="#{bean.autocomplete}" var="cit"
selfRendered="true" tokens=",">
<h:column>
<h:outputText value="#{cit.text}"/>
</h:column>
- </rich:suggestionbox>
+ </rich:suggestionBox>
...
]]></programlisting>
<para>This example shows that when a city is chosen and a comma and first letter character
@@ -167,7 +167,7 @@
<title>SuggestionBox with chosen word</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/suggestionbox3.gif"/>
+ <imagedata fileref="images/suggestionbox3.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -199,25 +199,25 @@
<emphasis role="bold">Example:</emphasis>
</para>
<programlisting role="XML"><![CDATA[...
- <rich:suggestiobox nothingLabel="Empty" for="test" suggestionAction="#{bean.autocomplete}" var="cit">
+ <rich:suggestionBox nothingLabel="Empty" for="test" suggestionAction="#{bean.autocomplete}" var="cit">
<h:column>
<h:outputText value="#{cit.text}"/>
</h:column>
- </rich:suggestionbox>
+ </rich:suggestionBox>
...
]]></programlisting>
<para>
<emphasis role="bold">Example:</emphasis>
</para>
<programlisting role="XML"><![CDATA[...
-<rich:suggestiobox for="test" suggestionAction="#{bean.autocomplete}" var="cit">
+<rich:suggestioBox for="test" suggestionAction="#{bean.autocomplete}" var="cit">
<facet name="nothingLabel">
<h:outputText value="Empty"/>
</facet>
<h:column>
<h:outputText value="#{cit.text}"/>
</h:column>
-</rich:suggestionbox>
+</rich:suggestionBox>
...
]]></programlisting>
@@ -228,7 +228,7 @@
<title>SuggestionBox with empty list</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/suggestionbox5.gif"/>
+ <imagedata fileref="images/suggestionbox5.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -410,7 +410,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/suggestionbox4.gif"/>
+ <imagedata fileref="images/suggestionbox4.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -12,7 +12,7 @@
<title>Tab component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/tab.gif"/>
+ <imagedata fileref="images/tab.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tab.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -79,7 +79,7 @@
<programlisting role="XML"><![CDATA[...
<rich:tab>
<f:facet name="label">
- <h:graphicImage value="/images/img1.gif"/>
+ <h:graphicImage value="/images/img1.png"/>
</f:facet>
...
<!--Any Content inside-->
@@ -112,7 +112,7 @@
<title>Tab Panel with disabled tab</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/tab2.gif"/>
+ <imagedata fileref="images/tab2.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -358,5 +358,6 @@
role="bold">
<property><rich:tab></property>
</emphasis>attribute.</para>
- </section>
+ </section>
+
</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -12,7 +12,7 @@
<title>TabPanel component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/tabPanel.gif"/>
+ <imagedata fileref="images/tabPanel.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -4,7 +4,7 @@
<keywordset>
<keyword>tab</keyword>
<keyword>rich:tabPanel</keyword>
- <keyword>HtmlTabPanel</keyword>
+ <keyword>HtmltabPanel</keyword>
</keywordset>
</sectioninfo>
@@ -20,23 +20,23 @@
<tbody>
<row>
<entry>component-type</entry>
- <entry>org.richfaces.TabPanel</entry>
+ <entry>org.richfaces.tabPanel</entry>
</row>
<row>
<entry>component-class</entry>
- <entry>org.richfaces.component.html.HtmlTabPanel</entry>
+ <entry>org.richfaces.component.html.HtmltabPanel</entry>
</row>
<row>
<entry>component-family</entry>
- <entry>org.richfaces.TabPanel</entry>
+ <entry>org.richfaces.tabPanel</entry>
</row>
<row>
<entry>renderer-type</entry>
- <entry>org.richfaces.TabPanelRenderer</entry>
+ <entry>org.richfaces.tabPanelRenderer</entry>
</row>
<row>
<entry>tag-class</entry>
- <entry>org.richfaces.taglib.TabPanelTag</entry>
+ <entry>org.richfaces.taglib.tabPanelTag</entry>
</row>
</tbody>
</tgroup>
@@ -65,15 +65,15 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.richfaces.component.html.HtmlTabPanel;
+ <programlisting role="JAVA"><![CDATA[import org.richfaces.component.html.HtmltabPanel;
...
-HtmlTabPanel myTabPanel = new HtmlTabPanel();
+HtmltabPanel mytabPanel = new HtmltabPanel();
...
]]></programlisting>
</section>
<section>
<title>Details of Usage</title>
- <para>As it was mentioned <link linkend="tabPanel">above</link>, <property>TabPanel</property> groups content on panels and
+ <para>As it was mentioned <link linkend="tabPanel">above</link>, <property>tabPanel</property> groups content on panels and
performs switching from one to another. Hence, modes of switching between panels are described
first of all.</para>
<note><title>Note:</title> All <property>tabPanels</property> should be wrapped into a form
@@ -137,7 +137,7 @@
<title>TabPanel with right aligned tabs</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/tabPanel1.gif"/>
+ <imagedata fileref="images/tabPanel1.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -252,7 +252,7 @@
<title>Style classes</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/tabPanel4.gif" scalefit="1"/>
+ <imagedata fileref="images/tabPanel4.png" scalefit="1"/>
</imageobject>
</mediaobject>
</figure>
@@ -269,20 +269,20 @@
<tbody>
<row>
<entry>rich-tabpanel</entry>
- <entry>Defines styles for all tabpanel</entry>
+ <entry>Defines styles for all tabPanel</entry>
</row>
<row>
- <entry>rich-tabpanel-content</entry>
+ <entry>rich-tabPanel-content</entry>
<entry>Defines styles for an internal content</entry>
</row>
<row>
- <entry>rich-tabpanel-content-position</entry>
- <entry>Defines styles for a wrapper element of a tabpanel content. It should define a shift equal to borders
+ <entry>rich-tabPanel-content-position</entry>
+ <entry>Defines styles for a wrapper element of a tabPanel content. It should define a shift equal to borders
width in order to overlap panel tabs</entry>
</row>
<row>
<entry>rich-tabhdr-side-border</entry>
- <entry>Defines styles for side elements of a tabpanel header</entry>
+ <entry>Defines styles for side elements of a tabPanel header</entry>
</row>
<row>
<entry>rich-tabhdr-side-cell</entry>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -19,7 +19,7 @@
<title>ToggleControl component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/toggleControl.gif"/>
+ <imagedata fileref="images/toggleControl.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -14,7 +14,7 @@
<title>TogglePanel component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/togglePanel.gif"/>
+ <imagedata fileref="images/togglePanel.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -4,7 +4,7 @@
<keywordset>
<keyword>facet</keyword>
<keyword>rich:togglePanel</keyword>
- <keyword>HtmlTogglePanel</keyword>
+ <keyword>HtmltogglePanel</keyword>
</keywordset>
</sectioninfo>
@@ -36,7 +36,7 @@
</row>
<row>
<entry>tag-class</entry>
- <entry>org.richfaces.taglib.TogglePanelTag</entry>
+ <entry>org.richfaces.Taglib.togglePanelTag</entry>
</row>
</tbody>
</tgroup>
@@ -70,9 +70,9 @@
<para>
<emphasis role="bold">Example:</emphasis>
</para>
- <programlisting role="JAVA"><![CDATA[import org.richfaces.component.html.HtmlTogglePanel;
+ <programlisting role="JAVA"><![CDATA[import org.richfaces.component.html.HtmltogglePanel;
...
-HtmlTogglePanel myPanel = new HtmlTogglePanel();
+HtmltogglePanel myPanel = new HtmltogglePanel();
...
]]></programlisting>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -13,7 +13,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/toolBarMain.gif" scalefit="1"/>
+ <imagedata fileref="images/toolBarMain.png" scalefit="1"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -91,7 +91,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/toolBar2.gif" scalefit="1"/>
+ <imagedata fileref="images/toolBar2.png" scalefit="1"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -12,7 +12,7 @@
<title>ToolbarGroup with items on it</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/toolbarGroup.gif" scalefit="1"/>
+ <imagedata fileref="images/toolbarGroup.png" scalefit="1"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -120,7 +120,7 @@
<title>Stylized toolBarGroup</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/toolBar3.gif"/>
+ <imagedata fileref="images/toolBar3.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -2,7 +2,7 @@
<section>
<sectioninfo>
<keywordset>
-<keyword>tooltip</keyword>
+<keyword>toolTip</keyword>
</keywordset>
</sectioninfo>
<section>
@@ -10,7 +10,7 @@
<para>The component used for creation non-modal popup that activated on some event and display some information.
</para>
<figure>
- <title>Tooltip component</title>
+ <title>ToolTip component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/tooltip1.png"/>
@@ -22,7 +22,7 @@
<title>Key Features</title>
<itemizedlist>
<listitem>Highly customizable look and feel </listitem>
- <listitem>Different ways of data loading to tooltip</listitem>
+ <listitem>Different ways of data loading to toolTip</listitem>
<listitem>Disablement support</listitem>
</itemizedlist>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tree.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -129,13 +129,13 @@
<programlisting role="JAVA"><![CDATA[...
<h:form>
<rich:tree style="width:300px" value="#{library.data}" var="item" nodeFace="#{item.type}">
- <rich:treeNode type="artist" iconLeaf="/images/tree/singer.gif" icon="/images/tree/singer.gif">
+ <rich:treeNode type="artist" iconLeaf="/images/tree/singer.png" icon="/images/tree/singer.png">
<h:outputText value="#{item.name}" />
</rich:treeNode>
- <rich:treeNode type="album" iconLeaf="/images/tree/disc.gif" icon="/images/tree/disc.gif">
+ <rich:treeNode type="album" iconLeaf="/images/tree/disc.png" icon="/images/tree/disc.png">
<h:outputText value="#{item.title}" />
</rich:treeNode>
- <rich:treeNode type="song" iconLeaf="/images/tree/song.gif" icon="/images/tree/song.gif">
+ <rich:treeNode type="song" iconLeaf="/images/tree/song.png" icon="/images/tree/song.png">
<h:outputText value="#{item.title}" />
</rich:treeNode>
</rich:tree>
@@ -200,11 +200,11 @@
<programlisting role="JAVA"><![CDATA[...
<h:form>
<rich:tree style="width:300px" value="#{library.data}" var="item" nodeFace="#{item.type}">
- <rich:treeNode type="artist" iconLeaf="/images/tree/singer.gif" icon="/images/tree/singer.gif"
+ <rich:treeNode type="artist" iconLeaf="/images/tree/singer.png" icon="/images/tree/singer.png"
rendered="#{item.exist}">
<h:outputText value="#{item.name}" />
</rich:treeNode>
- <rich:treeNode type="artist" iconLeaf="/images/tree/singer.gif" icon="/images/tree/singer_absent.gif"
+ <rich:treeNode type="artist" iconLeaf="/images/tree/singer.png" icon="/images/tree/singer_absent.png"
rendered="#{not item.exist}">
<h:outputText value="#{item.name}" />
</rich:treeNode>
@@ -278,16 +278,16 @@
<rich:tree ....>
...
<f:facet name="icon">
- <h:graphicImage value="/images/tree/singer.gif "/>
+ <h:graphicImage value="/images/tree/singer.png "/>
</f:facet>
<f:facet name="iconCollapsed">
- <h:graphicImage value="/images/tree/singer.gif " />
+ <h:graphicImage value="/images/tree/singer.png " />
</f:facet>
<f:facet name="iconExpanded">
- <h:graphicImage value="/images/tree/singer.gif " />
+ <h:graphicImage value="/images/tree/singer.png " />
</f:facet>
<f:facet name="iconLeaf">
- <h:graphicImage value="/images/tree/song.gif " />
+ <h:graphicImage value="/images/tree/song.png " />
</f:facet>
...
</rich:tree>
@@ -382,14 +382,14 @@
<programlisting role="JAVA"><![CDATA[...
<h:form>
<rich:tree dragIndicator=":treeDragIndicator" dropListener="#{libraryAjaxTree.processDrop}" style="width:300px" value="#{libraryAjaxTree.data}" var="item" nodeFace="#{item.type}">
- <rich:treeNode type="artist" acceptedTypes="album" iconLeaf="/images/tree/group.gif" icon="/images/tree/group.gif">
+ <rich:treeNode type="artist" acceptedTypes="album" iconLeaf="/images/tree/group.png" icon="/images/tree/group.png">
<h:outputText value="#{item.name}" />
</rich:treeNode>
- <rich:treeNode type="album" dragType="album" acceptedTypes="song" iconLeaf="/images/tree/cd.gif" icon="/images/tree/cd.gif">
+ <rich:treeNode type="album" dragType="album" acceptedTypes="song" iconLeaf="/images/tree/cd.png" icon="/images/tree/cd.png">
<h:outputText value="#{item.title}" />
<rich:dndParam name="label" type="drag" value="Album: #{item.title}" />
</rich:treeNode>
- <rich:treeNode type="song" dragType="song" iconLeaf="/images/tree/music.gif" icon="/images/tree/music.gif">
+ <rich:treeNode type="song" dragType="song" iconLeaf="/images/tree/music.png" icon="/images/tree/music.png">
<h:outputText value="#{item.title}" />
<rich:dndParam name="label" type="drag" value="Song: #{item.title}" />
</rich:treeNode>
Modified: trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>The component presents the Microsoft <property>Virtual Earth map</property> in the JSF applications.</para>
<figure>
- <title>virtualEarth component</title>
+ <title>VirtualEarth component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/virtualEarth.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -99,7 +99,7 @@
<property>"zoom"</property>
</emphasis>= 11.</para>
<figure>
- <title>virtualEarth initial rendering</title>
+ <title>VirtualEarth initial rendering</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/virtualEarth1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -28,7 +28,7 @@
</figure>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newpic1.jpg" scalefit="1"/>
+ <imagedata fileref="images/newpic1.png" scalefit="1"/>
</imageobject>
</mediaobject>
<para><property>RichFaces</property> allows to define (by means of JSF tags) different parts of
@@ -47,7 +47,7 @@
</figure>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newpic2.jpg"/>
+ <imagedata fileref="images/newpic2.png"/>
</imageobject>
</mediaobject>
<formalpara>
@@ -68,7 +68,7 @@
</figure>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newpic3.jpg" scalefit="1"/>
+ <imagedata fileref="images/newpic3.png" scalefit="1"/>
</imageobject>
</mediaobject>
<para>In both cases, the information about required static or dynamic resources that your
@@ -84,7 +84,7 @@
</figure>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newpic4.jpg" scalefit="1"/>
+ <imagedata fileref="images/newpic4.png" scalefit="1"/>
</imageobject>
</mediaobject>
<formalpara>
@@ -293,7 +293,7 @@
</emphasis> attribute is defined. In addition, Richfaces starts to remove from the queue
"similar" requests. "Similar'"requests are the requests
produced by the same event. For example, according to the following code, only the newest
- request will be sent to the server if a user types very fast and has typed the several
+ request will be sent to the server if you type very fast and has typed the several
characters already before the previous Ajax Response is back.</para>
<programlisting role="XML"><![CDATA[...
@@ -344,7 +344,7 @@
<?dbhtml filename="DataProcessingOptions.html"?>
<title>Data Processing Options</title>
<para>RichFaces uses form based approach for Ajax request sending. This means each time, when
- a user click an Ajax button or <emphasis role="bold">
+ you click an Ajax button or <emphasis role="bold">
<property><a4j:poll></property>
</emphasis> produces an asynchronous request, the data from the closest JSF form is
submitted with the XMLHTTPRequest object. The form data contains the values from the form
@@ -400,7 +400,7 @@
<para><emphasis>
<property>"bypassUpdates"</property>
</emphasis> attribute allows to bypass the Update Model phase. It might be useful if you
- need to check user input against the available validator, but not to update the model with
+ need to check your input against the available validator, but not to update the model with
those data. Note, that an action will be invoked at the end of the Validation phase only if
the Validation phase is passed successfully. The listeners of the Application phase will not
be invoked in any case.</para>
@@ -445,7 +445,7 @@
</emphasis> with <emphasis role="bold">
<property><a4j:commandButton></property>
</emphasis> and point to the action method that navigates to the next page. If Validation
- process fails, the partial page update will occur and a user will see an error message.
+ process fails, the partial page update will occur and you will see an error message.
Otherwize, the application proceeds to the next page. Make sure, you define
<redirect/> option for the navigation rule to avoid memory leaks.</listitem>
</itemizedlist>
Modified: trunk/docs/userguide/en/src/main/resources/images/calendar1.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/calendar1a.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/calendar1a.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/calendar1b.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/calendar1b.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/column1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/column1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/column2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/column2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/column3.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/column3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/column4.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/column4.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/columngroup1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/columngroup1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/columngroup2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/columngroup2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/columngroup3.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/columngroup3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/contextMenu_attached.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/contextMenu_classes.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/dataFilterSlider.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/dataFilterSlider.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/dataTable2.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/dataTable3.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/datadefinitionlist2.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/datagrid1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/datagrid2.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/datalist1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/datalist2.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/datalist3.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/dataorderedlist1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/dataorderedlist2.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/datascroller1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/datascroller1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/datascroller2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/datascroller2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/datascroller3.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/datatable1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/datatable1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/definitionlist1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/definitionlist1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/dragIndicator1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/dragIndicator1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/dragIndicator2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/dragIndicator2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/draggable1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/draggable1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/dragsupport1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/dragsupport1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/dropSupport1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/dropSupport1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/dropSupport2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/dropSupport2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/dropZone.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/dropZone.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/gmap.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/gmap.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/gmap1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/gmap1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/gmap3.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/gmap3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/inputNumberSpinner2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/inputNumberSpinner2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/inputNumberSpinner3.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/inputNumberSpinnerMain.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/inputNumberSpinnerMain.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/listShuttle1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/listShuttle_classes_s.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/listShuttle_classes_t.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/message.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/messages.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/messages1.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/newpic1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/newpic1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/newpic2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/newpic2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/newpic3.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/newpic3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/newpic4.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/newpic4.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/orderinList1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/orderingList_classes_1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/orderingList_classes_2.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/paint2D2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/paint2D2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/panel.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/panel.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/panel2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/panel2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/panel3.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/panel4.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/panel4.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/panelBar2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/panelBar2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/panelBar3.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/panelBar3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/panelBarItem.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/panelBarItem.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/panelBarMain.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/panelBarMain.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/panelMain.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/panelMain.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/panelMenuGroup_icons.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/panelmenu.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/panelmenu1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/panelmenugroup1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/panelmenugroup_col.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/panelmenugroup_exp.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/panelmenuitem.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/recursiveTreeNodesAdaptor1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/scrollable-dt1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/scrollableDataTable.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/separator.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/separator.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/separator1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/separator1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/simpleTogglePanel.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/simpleTogglePanel.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/simpleTogglePanel2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/simpleTogglePanel2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/simpleTogglePanel3.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/slider.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/slider.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/slider2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/slider2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/slider3.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/slider3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/slider5.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/spacer.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/spacer.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/subtable1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/subtable1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/suggestionbox1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/suggestionbox1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/suggestionbox2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/suggestionbox2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/suggestionbox3.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/suggestionbox3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/suggestionbox4.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/suggestionbox4.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/suggestionbox5.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/suggestionbox5.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/tab.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/tab.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/tab1.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/tab2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/tab2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/tabPanel.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/tabPanel.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/tabPanel1.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/tabPanel1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/tabPanel4.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/tabPanel4.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/toggleControl.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/toggleControl.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/togglePanel.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/togglePanel.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/toolBar2.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/toolBar2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/toolBar3.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/toolBar3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/toolBarMain.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/toolBarMain.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/docs/userguide/en/src/main/resources/images/toolbarGroup.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/toolbarGroup.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/docs/userguide/en/src/main/resources/images/tooltip1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/tree1.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/tree2.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/tree3.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/tree4.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/tree5.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/treeNode.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/treeNode2.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/treeNode3.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/treeNodesAdaptor1.png
===================================================================
(Binary files differ)
Modified: trunk/ui/core/src/main/config/component/form.xml
===================================================================
--- trunk/ui/core/src/main/config/component/form.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/ui/core/src/main/config/component/form.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -65,9 +65,9 @@
<classname>boolean</classname>
<description>The flag indicating whether or not this form should prepend its id to its descendent id during the clientId generation process. If this flag is not set, the default value is true.</description>
</property>
- <property disabled="true">
- <name>submitted</name>
- </property>
+ <property disabled="true">
+ <name>submitted</name>
+ </property>
</component>
<component generate="false">
<name>javax.faces.HtmlCommandLink</name>
@@ -114,7 +114,7 @@
<property>
<name>disabled</name>
<classname>boolean</classname>
- <description>When set for a form control, this boolean attribute disables the control for user input.</description>
+ <description>When set for a form control, this boolean attribute disables the control for your input.</description>
</property>
<property hidden="true">
<name>actionExpression</name>
Modified: trunk/ui/drag-drop/src/main/config/component/dragSupport.xml
===================================================================
--- trunk/ui/drag-drop/src/main/config/component/dragSupport.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/ui/drag-drop/src/main/config/component/dragSupport.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -67,7 +67,7 @@
<name>grabCursors</name>
<classname>java.lang.String</classname>
<description>
- list of comma separated cursors that indicates then user can grab and drag an object
+ list of comma separated cursors that indicates then you can grab and drag an object
</description>
<defaultvalue>""</defaultvalue>
</property>
@@ -76,14 +76,14 @@
<name>grabbingCursors</name>
<classname>java.lang.String</classname>
<description>
- list of comma separated cursors that indicates then the user has grabbed something
+ list of comma separated cursors that indicates then the you has grabbed something
</description>
<defaultvalue>""</defaultvalue>
</property>
-
- <property hidden="true" >
- <name>actionExpression</name>
+
+ <property hidden="true" >
+ <name>actionExpression</name>
</property>
</component>
Modified: trunk/ui/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml
===================================================================
--- trunk/ui/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/ui/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -87,7 +87,7 @@
<property>
<name>enableManualInput</name>
<classname>boolean</classname>
- <description>if "false" user's input to the text field using keyboard will be locked</description>
+ <description>if "false" your's input to the text field using keyboard will be locked</description>
<defaultvalue>true</defaultvalue>
</property>
<property>
@@ -123,7 +123,7 @@
<property>
<name>maxlength</name>
<classname>int</classname>
- <description>Attribute specifies the maximum number of characters the user may enter. This number may exceed the specified size, in which case the user agent should offer a scrolling mechanism. The default value for this attribute is an unlimited number</description>
+ <description>Attribute specifies the maximum number of characters you may enter. This number may exceed the specified size, in which case the user agent should offer a scrolling mechanism. The default value for this attribute is an unlimited number</description>
</property>
<property>
<name>inputSize</name>
Modified: trunk/ui/menu-components/src/main/config/component/menucomponents.xml
===================================================================
--- trunk/ui/menu-components/src/main/config/component/menucomponents.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/ui/menu-components/src/main/config/component/menucomponents.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -227,7 +227,7 @@
<name>onselect</name>
<classname>java.lang.String</classname>
<description>HTML: script expression; The onselect event occurs when
- a user selects some menu item</description>
+ you select some menu item</description>
<defaultvalue>""</defaultvalue>
</property>
<property hidden="true">
Modified: trunk/ui/tree/src/main/config/component/treeNode.xml
===================================================================
--- trunk/ui/tree/src/main/config/component/treeNode.xml 2008-01-08 16:25:01 UTC (rev 5186)
+++ trunk/ui/tree/src/main/config/component/treeNode.xml 2008-01-08 16:45:55 UTC (rev 5187)
@@ -103,7 +103,7 @@
<name>grabCursors</name>
<classname>java.lang.String</classname>
<description>
- list of comma separated cursors that indicates when user can grab and drag an object
+ list of comma separated cursors that indicates when you can grab and drag an object
</description>
<defaultvalue>""</defaultvalue>
</property>
@@ -112,7 +112,7 @@
<name>grabbingCursors</name>
<classname>java.lang.String</classname>
<description>
- list of comma separated cursors that indicates when the user has grabbed something
+ list of comma separated cursors that indicates when you has grabbed something
</description>
<defaultvalue>""</defaultvalue>
</property>
@@ -174,7 +174,7 @@
<name>dragValue</name>
<classname>java.lang.Object</classname>
<description>
- Data to be sent to the drop zone after a drop event
+ Data to be sent to the drop zone after a drop event
</description>
<defaultvalue>getUITree().getDragValue()</defaultvalue>
</property>
@@ -183,63 +183,63 @@
<name>dropValue</name>
<classname>java.lang.Object</classname>
<description>
- Data to be processed after a drop event
+ Data to be processed after a drop event
</description>
<defaultvalue>getUITree().getDropValue()</defaultvalue>
- </property>
-
- &html_events;
- <listener>
- <name>dropListener</name>
- <listenerclass>
- org.richfaces.event.DropListener
- </listenerclass>
- <componentclass>
- org.richfaces.event.DropSource
- </componentclass>
- <eventclass>
- org.richfaces.event.DropEvent
- </eventclass>
- </listener>
-
- <listener>
- <name>dragListener</name>
- <listenerclass>
- org.richfaces.event.DragListener
- </listenerclass>
- <componentclass>
- org.richfaces.component.Draggable
- </componentclass>
- <eventclass>
- org.richfaces.event.DragEvent
- </eventclass>
- </listener>
-
-
- <listener>
- <name>changeExpandListener</name>
- <listenerclass>
- org.richfaces.event.NodeExpandedListener
- </listenerclass>
- <componentclass>
- org.richfaces.event.TreeListenerEventsProducer
- </componentclass>
- <eventclass>
- org.richfaces.event.NodeExpandedEvent
- </eventclass>
- </listener>
- <listener>
- <name>nodeSelectListener</name>
- <listenerclass>
- org.richfaces.event.NodeSelectedListener
- </listenerclass>
- <componentclass>
- org.richfaces.event.TreeListenerEventsProducer
- </componentclass>
- <eventclass>
- org.richfaces.event.NodeSelectedEvent
- </eventclass>
- </listener>
+ </property>
+ &html_events;
+ <listener>
+ <name>dropListener</name>
+ <listenerclass>
+ org.richfaces.event.DropListener
+ </listenerclass>
+ <componentclass>
+ org.richfaces.event.DropSource
+ </componentclass>
+ <eventclass>
+ org.richfaces.event.DropEvent
+ </eventclass>
+ </listener>
+
+ <listener>
+ <name>dragListener</name>
+ <listenerclass>
+ org.richfaces.event.DragListener
+ </listenerclass>
+ <componentclass>
+ org.richfaces.component.Draggable
+ </componentclass>
+ <eventclass>
+ org.richfaces.event.DragEvent
+ </eventclass>
+ </listener>
+
+
+ <listener>
+ <name>changeExpandListener</name>
+ <listenerclass>
+ org.richfaces.event.NodeExpandedListener
+ </listenerclass>
+ <componentclass>
+ org.richfaces.event.TreeListenerEventsProducer
+ </componentclass>
+ <eventclass>
+ org.richfaces.event.NodeExpandedEvent
+ </eventclass>
+ </listener>
+ <listener>
+ <name>nodeSelectListener</name>
+ <listenerclass>
+ org.richfaces.event.NodeSelectedListener
+ </listenerclass>
+ <componentclass>
+ org.richfaces.event.TreeListenerEventsProducer
+ </componentclass>
+ <eventclass>
+ org.richfaces.event.NodeSelectedEvent
+ </eventclass>
+ </listener>
+
</component>
</components>
17 years
JBoss Rich Faces SVN: r5186 - trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js.
by richfaces-svn-commits@lists.jboss.org
Author: andrei_exadel
Date: 2008-01-08 11:25:01 -0500 (Tue, 08 Jan 2008)
New Revision: 5186
Modified:
trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js
Log:
a little refactoring
Modified: trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js
===================================================================
--- trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js 2008-01-08 16:07:45 UTC (rev 5185)
+++ trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js 2008-01-08 16:25:01 UTC (rev 5186)
@@ -23,9 +23,10 @@
if (val.indexOf("%") < 0)
val = val + "%";
}
- if (p <= 0) this.switchMode("initial");
- else if (p > 0 && p < 100) this.switchMode("progress");
- else if (p >= 100) this.switchMode("completed");
+ if ($(this.id + ":progressState") != null)
+ if (p <= 0) this.switchMode("initial");
+ else if (p > 0 && p < 100) this.switchMode("progress");
+ else if (p >= 100) this.switchMode("completed");
var d = $(this.id + ":remain");
if (d != null) d.innerHTML = val;
@@ -52,7 +53,6 @@
this.mode = mode;
},
hideStates : function () {
- var d = $(arguments[0]);
for (i = 0 ; i < arguments.length; i++) {
d = $(arguments[i]);
if (d != null) this.hide(d);
@@ -65,9 +65,11 @@
else if (p >= 100) this.switchMode("completed");
},
hide : function (o) {
+ if (o != null)
o.style.display = 'none';
},
show : function (o) {
+ if (o != null)
o.style.display = '';
}
});
17 years
JBoss Rich Faces SVN: r5185 - in trunk/sandbox/ui/progressBAR/src/main: java/org/richfaces/renderkit and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: andrei_exadel
Date: 2008-01-08 11:07:45 -0500 (Tue, 08 Jan 2008)
New Revision: 5185
Added:
trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/
trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js
Modified:
trunk/sandbox/ui/progressBAR/src/main/config/component/progressBar.xml
trunk/sandbox/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java
trunk/sandbox/ui/progressBAR/src/main/templates/org/richfaces/progressBar.jspx
Log:
Add client mode to progress bar component
Modified: trunk/sandbox/ui/progressBAR/src/main/config/component/progressBar.xml
===================================================================
--- trunk/sandbox/ui/progressBAR/src/main/config/component/progressBar.xml 2008-01-08 16:07:35 UTC (rev 5184)
+++ trunk/sandbox/ui/progressBAR/src/main/config/component/progressBar.xml 2008-01-08 16:07:45 UTC (rev 5185)
@@ -29,6 +29,11 @@
&html_universal_attributes;
&html_events;
<property>
+ <name>mode</name>
+ <classname>java.lang.String</classname>
+ <description>Attributes defines AJAX or CLIENT modes for component</description>
+ </property>
+ <property>
<name>styleClass</name>
<classname>java.lang.String</classname>
<description>CSS class that defines style for progress bar</description>
Modified: trunk/sandbox/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java
===================================================================
--- trunk/sandbox/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java 2008-01-08 16:07:35 UTC (rev 5184)
+++ trunk/sandbox/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java 2008-01-08 16:07:45 UTC (rev 5185)
@@ -7,6 +7,7 @@
package org.richfaces.renderkit;
import java.io.IOException;
+import java.math.BigDecimal;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
@@ -51,6 +52,7 @@
ResponseWriter writer = context.getResponseWriter();
UIProgressBar progressBar = (UIProgressBar) component;
+ String clientId = component.getClientId(context);
writer.startElement(HTML.SPAN_ELEM, component);
writer.writeAttribute(HTML.style_ATTRIBUTE, "display:none;", null);
writer.startElement(HTML.SCRIPT_ELEM, component);
@@ -67,7 +69,7 @@
component);
Integer interval = new Integer(progressBar.getInterval());
options.put("pollinterval", interval);
- options.put("pollId", component.getClientId(context));
+ options.put("pollId", clientId);
Object onsubmit = component.getAttributes().get("onsubmit");
if (null != onsubmit) {
JSFunctionDefinition onsubmitFunction = new JSFunctionDefinition();
@@ -82,26 +84,35 @@
component.getClientId(context)).append("')");
}
script.append(";\n");
+ // script.append(getPercentValueScript(component));
writer.writeText(script.toString(), null);
writer.endElement(HTML.SCRIPT_ELEM);
writer.endElement(HTML.SPAN_ELEM);
}
- //TODO do not encode content twice, use node cloning on client
- //TODO provide client script with percent value
- public void encodePersent(FacesContext context, UIComponent component)
+ // private StringBuffer getPercentValueScript(UIComponent component)
+ // throws IOException {
+ // StringBuffer script = new StringBuffer();
+ // ComponentVariables variables = ComponentsVariableResolver.getVariables(
+ // this, component);
+ // String percent = getPercent(component);
+ // return script;
+ //
+ // }
+
+ // TODO do not encode content twice, use node cloning on client
+ // TODO provide client script with percent value
+ public String encodePersent(FacesContext context, UIComponent component)
throws IOException {
- ResponseWriter writer = context.getResponseWriter();
- String determinedAttr = (String)component.getAttributes().get("determined");
+ String determinedAttr = (String) component.getAttributes().get(
+ "determined");
if (determinedAttr != null && "true".equals(determinedAttr)) {
- ComponentVariables variables = ComponentsVariableResolver
- .getVariables(this, component);
- Integer percent = (Integer) variables.getVariable("percent");
+ String percent = getPercent(component);
if (percent != null) {
- writer.write(percent.toString() + "%");
+ return percent + "%";
}
}
-
+ return "";
}
/**
@@ -114,21 +125,75 @@
* @throws IOException -
* IOException
*/
- public void encodeInitialState(FacesContext context, UIComponent component)
- throws IOException {
+ public void encodeInitialState(FacesContext context, UIComponent component,
+ Object data) throws IOException {
+ Boolean isAjax = Boolean.parseBoolean((String) data);
String clientId = component.getClientId(context);
ResponseWriter writer = context.getResponseWriter();
writer.startElement(HTML.DIV_ELEM, component);
- writer.writeAttribute(HTML.id_ATTRIBUTE, clientId, null);
+ writer.writeAttribute(HTML.id_ATTRIBUTE, (isAjax ? clientId : clientId
+ + ":initialState"), null);
+
UIComponent initial = component.getFacet("initial");
if (initial != null) {
renderChild(context, initial);
}
- encodePollScript(context, component);
+ if (isAjax) {
+ encodePollScript(context, component);
+ }
writer.endElement(HTML.DIV_ELEM);
}
+ public void encodeProgressState(FacesContext context, UIComponent component)
+ throws IOException {
+ ResponseWriter writer = context.getResponseWriter();
+ String clientId = component.getClientId(context);
+ ComponentVariables variables = ComponentsVariableResolver.getVariables(
+ this, component);
+ Number value = (Number) variables.getVariable("percent");
+ String width = String.valueOf(value.intValue());
+ String percent = encodePersent(context, component);
+ String style = (String) component.getAttributes().get("style");
+ String permanent = (String) component.getAttributes().get("permanent");
+
+ String completeClass = (component.getAttributes().get("completeClass") != null) ? (String) component
+ .getAttributes().get("completeClass")
+ : ((permanent != null && "true".equals(permanent)) ? "rich-progress-bar-permanent"
+ : "rich-progress-bar-completed");
+
+ String remainClass = (component.getAttributes().get("remainClass") != null) ? (String) component
+ .getAttributes().get("remainClass")
+ : "rich-progress-bar-remained";
+
+ writer.startElement("div", component);
+ getUtils().writeAttribute(writer, "class",
+ remainClass + " rich-progress-bar-base");
+ getUtils().writeAttribute(writer, "id", clientId + ":remain");
+ getUtils().writeAttribute(writer, "style", style);
+
+ writer.write(percent);
+
+ writer.endElement("div");
+ writer.startElement("div", component);
+ getUtils()
+ .writeAttribute(writer, "class", "rich-progress-bar-uploaded");
+ getUtils().writeAttribute(writer, "id", clientId + ":upload");
+ getUtils().writeAttribute(writer, "style",
+ style + "; width: " + width + "%;");
+
+ writer.startElement("div", component);
+ getUtils().writeAttribute(writer, "class",
+ completeClass + " rich-progress-bar-base");
+ getUtils().writeAttribute(writer, "id", clientId + ":complete");
+ getUtils().writeAttribute(writer, "style", style);
+
+ writer.write(percent);
+
+ writer.endElement("div");
+ writer.endElement("div");
+ }
+
/**
* Methods encodes finish facet of progress bar component
*
@@ -139,26 +204,30 @@
* @throws IOException -
* IOException
*/
- public void encodeCompletedState(FacesContext context, UIComponent component)
- throws IOException {
+ public void encodeCompletedState(FacesContext context,
+ UIComponent component, Object data) throws IOException {
+ Boolean isAjax = Boolean.parseBoolean((String) data);
+ if (isAjax) {
+ Object rerenderAfterComplete = component.getAttributes().get(
+ "reRenderAfterComplete");
+ Set ajaxRegions = AjaxRendererUtils.asSet(rerenderAfterComplete);
- Object rerenderAfterComplete = component.getAttributes().get(
- "reRenderAfterComplete");
- Set ajaxRegions = AjaxRendererUtils.asSet(rerenderAfterComplete);
-
- if (ajaxRegions != null) {
- for (Iterator iter = ajaxRegions.iterator(); iter.hasNext();) {
- String id = iter.next().toString();
- AjaxContext ajaxContext = AjaxContext
- .getCurrentInstance(context);
- ajaxContext.addComponentToAjaxRender(component, id);
+ if (ajaxRegions != null) {
+ for (Iterator iter = ajaxRegions.iterator(); iter.hasNext();) {
+ String id = iter.next().toString();
+ AjaxContext ajaxContext = AjaxContext
+ .getCurrentInstance(context);
+ ajaxContext.addComponentToAjaxRender(component, id);
+ }
}
}
-
- String clientId = component.getClientId(context);
+ String clientId = (isAjax) ? component.getClientId(context) : component
+ .getClientId(context)
+ + ":completedState";
ResponseWriter writer = context.getResponseWriter();
writer.startElement(HTML.DIV_ELEM, component);
writer.writeAttribute(HTML.id_ATTRIBUTE, clientId, null);
+
UIComponent completed = component.getFacet("completed");
if (completed != null) {
renderChild(context, completed);
@@ -167,6 +236,27 @@
}
+ private String getPercent(UIComponent component) {
+ ComponentVariables variables = ComponentsVariableResolver.getVariables(
+ this, component);
+ String result = "0";
+ Object percent = variables.getVariable("percent");
+ if (percent != null) {
+ try {
+ Number n = (Number) percent;
+ if (n instanceof BigDecimal || n instanceof Double
+ || n instanceof Float) {
+ result = String.valueOf(n.floatValue());
+ } else if (n instanceof Integer) {
+ result = String.valueOf(n.intValue());
+ }
+ } catch (Exception e) {
+ // TODO: handle exception
+ }
+ }
+ return result;
+ }
+
/*
* (non-Javadoc)
*
Added: trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js
===================================================================
--- trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js (rev 0)
+++ trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js 2008-01-08 16:07:45 UTC (rev 5185)
@@ -0,0 +1,73 @@
+ProgressBar = {};
+
+ProgressBar = Class.create();
+
+Object.extend(ProgressBar.prototype, {
+ initialize: function(id) {
+ this.id = id;
+ this.mode = "initial";
+ },
+ getPercent: function () {
+ var d = $(this.id + ":remain");
+ if (d != null) {
+ var v = d.innerHTML;
+ if (v != null) {
+ return v.replace("%","");
+ }
+ }
+ else return null;
+ },
+ setPercent: function (val) {
+ var p = val;
+ if (val != null) {
+ if (val.indexOf("%") < 0)
+ val = val + "%";
+ }
+ if (p <= 0) this.switchMode("initial");
+ else if (p > 0 && p < 100) this.switchMode("progress");
+ else if (p >= 100) this.switchMode("completed");
+
+ var d = $(this.id + ":remain");
+ if (d != null) d.innerHTML = val;
+ d = $(this.id + ":complete");
+ if (d != null) d.innerHTML = val;
+ d = $(this.id + ":upload");
+ if (d != null) d.style.width = val;
+ },
+ switchMode : function (mode) {
+ switch (mode) {
+ case "initial" :
+ this.hideStates(this.id + ":progressState",this.id + ":completedState");
+ this.show($(this.id + ":initialState"));
+ break;
+ case "progress" :
+ this.hideStates(this.id + ":initialState",this.id + ":completedState");
+ this.show($(this.id + ":progressState"));
+ break;
+ case "completed" :
+ this.hideStates(this.id + ":progressState",this.id + ":initialState");
+ this.show($(this.id + ":completedState"));
+ break;
+ }
+ this.mode = mode;
+ },
+ hideStates : function () {
+ var d = $(arguments[0]);
+ for (i = 0 ; i < arguments.length; i++) {
+ d = $(arguments[i]);
+ if (d != null) this.hide(d);
+ }
+ },
+ init : function () {
+ var p = this.getPercent();
+ if (p <= 0) this.switchMode("initial");
+ else if (p > 0 && p < 100) this.switchMode("progress");
+ else if (p >= 100) this.switchMode("completed");
+ },
+ hide : function (o) {
+ o.style.display = 'none';
+ },
+ show : function (o) {
+ o.style.display = '';
+ }
+ });
Modified: trunk/sandbox/ui/progressBAR/src/main/templates/org/richfaces/progressBar.jspx
===================================================================
--- trunk/sandbox/ui/progressBAR/src/main/templates/org/richfaces/progressBar.jspx 2008-01-08 16:07:35 UTC (rev 5184)
+++ trunk/sandbox/ui/progressBAR/src/main/templates/org/richfaces/progressBar.jspx 2008-01-08 16:07:45 UTC (rev 5185)
@@ -1,64 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?>
-<f:root
- xmlns:f="http://ajax4jsf.org/cdk/template"
+<f:root xmlns:f="http://ajax4jsf.org/cdk/template"
xmlns:h=" http://ajax4jsf.org/cdk/headers"
class="org.richfaces.renderkit.ProgressBarRenderer"
baseclass="org.richfaces.renderkit.AbstractProgressBarRenderer"
- component="org.richfaces.component.UIProgressBar"
- >
+ component="org.richfaces.component.UIProgressBar">
-<h:styles>/org/richfaces/renderkit/html/css/progressBar.xcss</h:styles>
+ <h:styles>/org/richfaces/renderkit/html/css/progressBar.xcss</h:styles>
-<h:scripts>
+ <h:scripts>
new org.ajax4jsf.javascript.PrototypeScript(),
new org.ajax4jsf.javascript.AjaxScript(),
+ /org/richfaces/renderkit/html/js/progressBar.js,
</h:scripts>
-
-<f:clientId var="clientId" />
-<jsp:scriptlet>
+ <f:clientId var="clientId" />
+
+ <jsp:scriptlet>
<![CDATA[
- Integer percent = (Integer)component.getAttributes().get("value");
-
- variables.setVariable("percent",percent);
+ String mode = (String) component.getAttributes().get("mode");
+ boolean isAjax = !(mode != null && "client".equalsIgnoreCase(mode));
+ Number value = (Number)component.getAttributes().get("value");
+ Integer percent = value.intValue();
+ variables.setVariable("percent",value);
variables.setVariable("style",(String)component.getAttributes().get("style"));
variables.setVariable("styleClass",(String)component.getAttributes().get("styleClass"));
-
- String permanent = (String)component.getAttributes().get("permanent");
-
- variables.setVariable("completeClass",(component.getAttributes().get("completeClass") != null) ?
- (String)component.getAttributes().get("completeClass") :
- ((permanent != null && "true".equals(permanent)) ?
- "rich-progress-bar-permanent" : "rich-progress-bar-completed"));
-
- variables.setVariable("remainClass",(component.getAttributes().get("remainClass") != null) ?
- (String)component.getAttributes().get("remainClass"): "rich-progress-bar-remained" );
]]>
</jsp:scriptlet>
-<jsp:scriptlet>
+ <jsp:scriptlet>
<![CDATA[
+if (isAjax) {
if (percent <= 0) {
- encodeInitialState(context, component);
+ encodeInitialState(context, component, "true");
} else if (percent >= 100) {
- encodeCompletedState(context, component);
+ encodeCompletedState(context, component, "true");
} else {
]]>
</jsp:scriptlet>
+ <div class="rich-progress-bar #{styleClass}" style="#{style}" id="#{clientId}">
+ <f:call name="encodeProgressState"/>
+ <f:call name="encodePollScript" />
+ </div>
+<jsp:scriptlet>
+<![CDATA[
+}
+}else {
+]]>
+</jsp:scriptlet>
<div class="rich-progress-bar #{styleClass}" style="#{style}" id="#{clientId}">
- <div class="#{remainClass} rich-progress-bar-base" style="#{style}">
- <f:call name="encodePersent"/>
+ <div id="#{clientId}:progressState">
+ <f:call name="encodeProgressState" />
</div>
- <div class="rich-progress-bar-uploaded" style="#{style}; width: #{percent}%;">
- <div class="#{completeClass} rich-progress-bar-base" style="#{style}">
- <f:call name="encodePersent"/>
- </div>
- </div>
-<f:call name="encodePollScript"/>
+ <f:call name="encodeInitialState">
+ <f:parameter value="false"/>
+ </f:call>
+ <f:call name="encodeCompletedState">
+ <f:parameter value="false"/>
+ </f:call>
+ <script>
+ var pr = new ProgressBar('#{clientId}');
+ pr.init();
+ </script>
</div>
-
<jsp:scriptlet>
<![CDATA[
}
17 years