JBoss Rich Faces SVN: r3174 - in branches/3.1.x/ui/calendar/src/main: java/org/richfaces/component and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: akushunin
Date: 2007-10-01 09:15:48 -0400 (Mon, 01 Oct 2007)
New Revision: 3174
Modified:
branches/3.1.x/ui/calendar/src/main/config/component/calendar.xml
branches/3.1.x/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java
Log:
RF-1028
Modified: branches/3.1.x/ui/calendar/src/main/config/component/calendar.xml
===================================================================
--- branches/3.1.x/ui/calendar/src/main/config/component/calendar.xml 2007-10-01 13:12:23 UTC (rev 3173)
+++ branches/3.1.x/ui/calendar/src/main/config/component/calendar.xml 2007-10-01 13:15:48 UTC (rev 3174)
@@ -111,10 +111,7 @@
<property elonly="true">
<name>currentDate</name>
<classname>java.util.Date</classname>
- <description>Defines current date</description>
- <defaultvalue>
- java.util.Calendar.getInstance(getTimeZone()).getTime()
- </defaultvalue>
+ <description>Defines current date</description>
</property>
<property>
<name>currentDateChangeListener</name>
Modified: branches/3.1.x/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java
===================================================================
--- branches/3.1.x/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java 2007-10-01 13:12:23 UTC (rev 3173)
+++ branches/3.1.x/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java 2007-10-01 13:15:48 UTC (rev 3174)
@@ -29,6 +29,7 @@
import java.util.Locale;
import java.util.TimeZone;
+import javax.faces.FacesException;
import javax.faces.application.FacesMessage;
import javax.faces.component.UIInput;
import javax.faces.component.UIViewRoot;
@@ -38,15 +39,12 @@
import javax.faces.el.MethodBinding;
import javax.faces.el.ValueBinding;
import javax.faces.event.AbortProcessingException;
-import javax.faces.event.ActionEvent;
import javax.faces.event.FacesEvent;
-import javax.faces.event.PhaseId;
import javax.faces.event.ValueChangeEvent;
import org.ajax4jsf.component.AjaxComponent;
import org.ajax4jsf.context.AjaxContext;
import org.ajax4jsf.event.AjaxEvent;
-import org.ajax4jsf.event.AjaxSingleEvent;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.richfaces.event.CurrentDateChangeEvent;
@@ -162,6 +160,7 @@
public abstract void setHorizontalOffset(int horizontalOffset);
+
// TODO onclick add users onclick
// currentDate processing -------------------------------------------------
@@ -222,16 +221,51 @@
}
public Date getCurrentDateOrDefault() {
+
Date date = getCurrentDate();
+
if (date != null) {
return date;
} else {
- Calendar calendar = getCalendar();
- calendar.set(Calendar.DATE, 1);
- return calendar.getTime();
+ Date value = getAsDate(this.getValue());
+ if (value != null) {
+ return value;
+ } else {
+ return java.util.Calendar.getInstance(getTimeZone()).getTime();
+ }
+
}
}
+ public Date getAsDate(Object date) {
+
+ if (date == null) {
+ return null;
+ } else {
+ if (date instanceof Date) {
+ return (Date) date;
+ } else {
+ if (date instanceof String) {
+ DateTimeConverter converter = new DateTimeConverter();
+ converter.setPattern(this.getDatePattern());
+ converter.setLocale(this.getLocale());
+ converter.setTimeZone(this.getTimeZone());
+ FacesContext context = FacesContext.getCurrentInstance();
+ return (Date) converter.getAsObject(context, this,
+ (String) date);
+ } else {
+ if (date instanceof Calendar) {
+ return ((Calendar) date).getTime();
+ } else {
+
+ throw new FacesException("Wrong attibute type");
+ }
+ }
+ }
+ }
+
+ }
+
public Object getTooltip(Date date) {
CalendarDataModel calendarDM = (CalendarDataModel) getDataModel();
@@ -455,5 +489,4 @@
removeFacesListener(listener);
}
-
}
17 years, 3 months
JBoss Rich Faces SVN: r3173 - in trunk/ui/calendar/src/main: java/org/richfaces/component and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: akushunin
Date: 2007-10-01 09:12:23 -0400 (Mon, 01 Oct 2007)
New Revision: 3173
Modified:
trunk/ui/calendar/src/main/config/component/calendar.xml
trunk/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java
Log:
RF-1028
Modified: trunk/ui/calendar/src/main/config/component/calendar.xml
===================================================================
--- trunk/ui/calendar/src/main/config/component/calendar.xml 2007-10-01 13:01:32 UTC (rev 3172)
+++ trunk/ui/calendar/src/main/config/component/calendar.xml 2007-10-01 13:12:23 UTC (rev 3173)
@@ -111,10 +111,7 @@
<property elonly="true">
<name>currentDate</name>
<classname>java.util.Date</classname>
- <description>Defines current date</description>
- <defaultvalue>
- java.util.Calendar.getInstance(getTimeZone()).getTime()
- </defaultvalue>
+ <description>Defines current date</description>
</property>
<property>
<name>currentDateChangeListener</name>
Modified: trunk/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java
===================================================================
--- trunk/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java 2007-10-01 13:01:32 UTC (rev 3172)
+++ trunk/ui/calendar/src/main/java/org/richfaces/component/UICalendar.java 2007-10-01 13:12:23 UTC (rev 3173)
@@ -29,6 +29,7 @@
import java.util.Locale;
import java.util.TimeZone;
+import javax.faces.FacesException;
import javax.faces.application.FacesMessage;
import javax.faces.component.UIInput;
import javax.faces.component.UIViewRoot;
@@ -38,15 +39,12 @@
import javax.faces.el.MethodBinding;
import javax.faces.el.ValueBinding;
import javax.faces.event.AbortProcessingException;
-import javax.faces.event.ActionEvent;
import javax.faces.event.FacesEvent;
-import javax.faces.event.PhaseId;
import javax.faces.event.ValueChangeEvent;
import org.ajax4jsf.component.AjaxComponent;
import org.ajax4jsf.context.AjaxContext;
import org.ajax4jsf.event.AjaxEvent;
-import org.ajax4jsf.event.AjaxSingleEvent;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.richfaces.event.CurrentDateChangeEvent;
@@ -66,13 +64,13 @@
public static final String COMPONENT_TYPE = "org.richfaces.Calendar";
private static final String COMPONENT_FAMILY = "org.richfaces.Calendar";
-
+
public static final String AJAX_MODE = "ajax";
-
- public static final String CLIENT_MODE = "client";
-
+
+ public static final String CLIENT_MODE = "client";
+
private final static Log log = LogFactory.getLog(UICalendar.class);
-
+
public abstract Locale getLocale();
public abstract void setLocale(Locale locale);
@@ -128,7 +126,7 @@
public abstract boolean isPopup();
public abstract void setPopup(boolean popup);
-
+
public abstract boolean isDisabled();
public abstract void setDisabled(boolean disabled);
@@ -140,30 +138,31 @@
public abstract String getToolTipMode();
public abstract void setToolTipMode(String toolTipMode);
-
+
public abstract String getBoundaryDatesMode();
public abstract void setBoundaryDatesMode(String boundaryDatesMode);
-
+
public abstract MethodBinding getCurrentDateChangeListener();
- public abstract void setCurrentDateChangeListener(MethodBinding scrollerListener);
-
+ public abstract void setCurrentDateChangeListener(
+ MethodBinding scrollerListener);
+
public abstract String getMode();
public abstract void setMode(String mode);
-
+
public abstract int getVerticalOffset();
public abstract void setVerticalOffset(int verticalOffset);
-
+
public abstract int getHorizontalOffset();
public abstract void setHorizontalOffset(int horizontalOffset);
-
-
- //TODO onclick add users onclick
+
+ // TODO onclick add users onclick
+
// currentDate processing -------------------------------------------------
public Calendar getCalendar() {
@@ -205,12 +204,13 @@
} else {
setCurrentDate(currentDate);
}
-
+
} catch (Exception e) {
setValid(false);
- //XXX nick - kaa - add log.debug(...)
+ // XXX nick - kaa - add log.debug(...)
if (log.isDebugEnabled()) {
- log.debug(" updateCurrentDate method throws exception: "+e.toString(),e);
+ log.debug(" updateCurrentDate method throws exception: "
+ + e.toString(), e);
}
e.printStackTrace();
String messageString = e.toString();
@@ -221,16 +221,51 @@
}
public Date getCurrentDateOrDefault() {
+
Date date = getCurrentDate();
+
if (date != null) {
return date;
} else {
- Calendar calendar = getCalendar();
- calendar.set(Calendar.DATE, 1);
- return calendar.getTime();
+ Date value = getAsDate(this.getValue());
+ if (value != null) {
+ return value;
+ } else {
+ return java.util.Calendar.getInstance(getTimeZone()).getTime();
+ }
+
}
}
+ public Date getAsDate(Object date) {
+
+ if (date == null) {
+ return null;
+ } else {
+ if (date instanceof Date) {
+ return (Date) date;
+ } else {
+ if (date instanceof String) {
+ DateTimeConverter converter = new DateTimeConverter();
+ converter.setPattern(this.getDatePattern());
+ converter.setLocale(this.getLocale());
+ converter.setTimeZone(this.getTimeZone());
+ FacesContext context = FacesContext.getCurrentInstance();
+ return (Date) converter.getAsObject(context, this,
+ (String) date);
+ } else {
+ if (date instanceof Calendar) {
+ return ((Calendar) date).getTime();
+ } else {
+
+ throw new FacesException("Wrong attibute type");
+ }
+ }
+ }
+ }
+
+ }
+
public Object getTooltip(Date date) {
CalendarDataModel calendarDM = (CalendarDataModel) getDataModel();
@@ -289,14 +324,16 @@
calendar.clear();
calendar.set(Calendar.DATE, 1);
int idx = currentDateString.indexOf('/');
- if (idx != -1){
- calendar.set(Calendar.MONTH, Integer.parseInt(currentDateString
- .substring(0, idx)) - 1);
- calendar.set(Calendar.YEAR, Integer.parseInt(currentDateString
- .substring(idx + 1)));
+ if (idx != -1) {
+ calendar.set(Calendar.MONTH, Integer.parseInt(currentDateString
+ .substring(0, idx)) - 1);
+ calendar.set(Calendar.YEAR, Integer.parseInt(currentDateString
+ .substring(idx + 1)));
- return calendar.getTime();
- }else {return null;}
+ return calendar.getTime();
+ } else {
+ return null;
+ }
}
@@ -307,7 +344,9 @@
AjaxContext ajaxContext = AjaxContext
.getCurrentInstance(facesContext);
ajaxContext.addRegionsFromComponent(this);
- if(getPreload()!=null){ajaxContext.setResponseData(getPreload());}
+ if (getPreload() != null) {
+ ajaxContext.setResponseData(getPreload());
+ }
} else {
if (event instanceof CurrentDateChangeEvent) {
FacesContext facesContext = FacesContext.getCurrentInstance();
@@ -327,36 +366,40 @@
// method
// for more
- //XX nick - kaa - throw exception and review resulting message :)
-
+ // XX nick - kaa - throw exception and review resulting
+ // message :)
+
Date currentDate = convertCurrentDate(currentDateString);
CurrentDateChangeEvent newDateChangeEvent = new CurrentDateChangeEvent(
this, currentDate);
newDateChangeEvent.queue();
MethodBinding binding = getCurrentDateChangeListener();
-
- if(binding!=null){
-
- binding.invoke(facesContext, new Object[]{event});
+
+ if (binding != null) {
+
+ binding
+ .invoke(facesContext,
+ new Object[] { event });
}
-
-
-
- } catch (Exception e) {
+
+ } catch (Exception e) {
// XXX nick - kaa - add log.debug(...)
// XXX nick - kaa - we should stop processing on exc.
// setValid(false) and then call
// FacesContext.renderResponse(...)
// update model phase shouldn't start
if (log.isDebugEnabled()) {
- log.debug(" currentDate convertion fails with following exception: "+e.toString(),e);
+ log.debug(
+ " currentDate convertion fails with following exception: "
+ + e.toString(), e);
}
setValid(false);
String messageString = e.toString();
e.printStackTrace();
- FacesMessage message = new FacesMessage(messageString);
+ FacesMessage message = new FacesMessage(messageString);
message.setSeverity(FacesMessage.SEVERITY_ERROR);
- facesContext.addMessage(getClientId(facesContext),message);
+ facesContext.addMessage(getClientId(facesContext),
+ message);
facesContext.renderResponse();
}
@@ -391,8 +434,7 @@
HashMap args = new HashMap();
args.put("startDate", CalendarRendererBase
.formatDate(preloadDateRange[0]));
- args
- .put("days", calendarDataModelItems);
+ args.put("days", calendarDataModelItems);
return args;
}
}
@@ -403,37 +445,37 @@
public Date[] getPreloadDateRange() {
Date dateRangeBegin = this.getPreloadDateRangeBegin();
Date dateRangeEnd = this.getPreloadDateRangeEnd();
-
- if(dateRangeBegin==null&&dateRangeEnd==null){
+
+ if (dateRangeBegin == null && dateRangeEnd == null) {
return null;
- }
- else{
- if (dateRangeBegin.after(dateRangeEnd)) {
- // XXX add message
- FacesMessage message = new FacesMessage("preloadDateRangeBegin is greater than preloadDateRangeEnd");
- message.setSeverity(FacesMessage.SEVERITY_ERROR);
- FacesContext context = FacesContext.getCurrentInstance();
- context.addMessage(getClientId(context), message);
- throw new IllegalArgumentException();
- }
+ } else {
+ if (dateRangeBegin.after(dateRangeEnd)) {
+ // XXX add message
+ FacesMessage message = new FacesMessage(
+ "preloadDateRangeBegin is greater than preloadDateRangeEnd");
+ message.setSeverity(FacesMessage.SEVERITY_ERROR);
+ FacesContext context = FacesContext.getCurrentInstance();
+ context.addMessage(getClientId(context), message);
+ throw new IllegalArgumentException();
+ }
- List dates = new ArrayList();
+ List dates = new ArrayList();
- Calendar calendar = Calendar.getInstance(this.getTimeZone(), this
- .getLocale());
- Calendar calendar2 = (Calendar) calendar.clone();
- calendar.setTime(dateRangeBegin);
- calendar2.setTime(dateRangeEnd);
+ Calendar calendar = Calendar.getInstance(this.getTimeZone(), this
+ .getLocale());
+ Calendar calendar2 = (Calendar) calendar.clone();
+ calendar.setTime(dateRangeBegin);
+ calendar2.setTime(dateRangeEnd);
- do {
- dates.add(calendar.getTime());
- calendar.add(Calendar.DATE, 1);
- } while (!calendar.after(calendar2));
+ do {
+ dates.add(calendar.getTime());
+ calendar.add(Calendar.DATE, 1);
+ } while (!calendar.after(calendar2));
- return (Date[]) dates.toArray(new Date[dates.size()]);
+ return (Date[]) dates.toArray(new Date[dates.size()]);
+ }
}
- }
-
+
public void addCurrentDateChangeListener(CurrentDateChangeListener listener) {
addFacesListener(listener);
}
@@ -442,8 +484,9 @@
return (CurrentDateChangeListener[]) getFacesListeners(CurrentDateChangeListener.class);
}
- public void removeCurrentDateChangeListener(CurrentDateChangeListener listener) {
+ public void removeCurrentDateChangeListener(
+ CurrentDateChangeListener listener) {
removeFacesListener(listener);
- }
-
+ }
+
}
17 years, 3 months
JBoss Rich Faces SVN: r3172 - in trunk/ui/toolBar/src/main: java/org/richfaces/renderkit/html and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2007-10-01 09:01:32 -0400 (Mon, 01 Oct 2007)
New Revision: 3172
Modified:
trunk/ui/toolBar/src/main/config/component/toolBar.xml
trunk/ui/toolBar/src/main/java/org/richfaces/renderkit/html/ToolBarGroupRenderer.java
Log:
http://jira.jboss.com/jira/browse/RF-1039
Modified: trunk/ui/toolBar/src/main/config/component/toolBar.xml
===================================================================
--- trunk/ui/toolBar/src/main/config/component/toolBar.xml 2007-10-01 10:12:40 UTC (rev 3171)
+++ trunk/ui/toolBar/src/main/config/component/toolBar.xml 2007-10-01 13:01:32 UTC (rev 3172)
@@ -151,6 +151,7 @@
</property>
&ui_component_attributes;
- &html_style_attributes;
+ &html_style_attributes;
+ &html_events;
</component>
</components>
\ No newline at end of file
Modified: trunk/ui/toolBar/src/main/java/org/richfaces/renderkit/html/ToolBarGroupRenderer.java
===================================================================
--- trunk/ui/toolBar/src/main/java/org/richfaces/renderkit/html/ToolBarGroupRenderer.java 2007-10-01 10:12:40 UTC (rev 3171)
+++ trunk/ui/toolBar/src/main/java/org/richfaces/renderkit/html/ToolBarGroupRenderer.java 2007-10-01 13:01:32 UTC (rev 3172)
@@ -65,6 +65,7 @@
writer.writeAttribute("class", "dr-toolbar-int rich-toolbar-item " + contentClass +" "+styleClass, null);
getUtils().writeAttribute(writer, "style", contentStyle);
getUtils().writeAttribute(writer, "style", style);
+ getUtils().encodePassThruWithExclusions(facesContext, component, "style,class");
renderChild(facesContext, child);
writer.endElement("td");
if (it.hasNext()) {
17 years, 3 months
JBoss Rich Faces SVN: r3171 - branches/3.1.x/ui/modal-panel/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: maksimkaszynski
Date: 2007-10-01 06:12:40 -0400 (Mon, 01 Oct 2007)
New Revision: 3171
Modified:
branches/3.1.x/ui/modal-panel/src/main/resources/org/richfaces/renderkit/html/scripts/modalPanel.js
Log:
http://jira.jboss.com/jira/browse/RF-975
Modified: branches/3.1.x/ui/modal-panel/src/main/resources/org/richfaces/renderkit/html/scripts/modalPanel.js
===================================================================
--- branches/3.1.x/ui/modal-panel/src/main/resources/org/richfaces/renderkit/html/scripts/modalPanel.js 2007-10-01 10:11:21 UTC (rev 3170)
+++ branches/3.1.x/ui/modal-panel/src/main/resources/org/richfaces/renderkit/html/scripts/modalPanel.js 2007-10-01 10:12:40 UTC (rev 3171)
@@ -901,12 +901,35 @@
}
Richfaces.showModalPanel = function (id, opts) {
+
+ var invoke =
+ ("MSIE" == RichFaces.navigatorType()) ?
+ function(f) {
+ if (document.readyState != "complete") {
+ var args = arguments;
+ var dis = this;
+ window.setTimeout(
+ function() {
+ args.callee.apply(dis,args );
+ }, 50);
+ } else {
+ f();
+ }
+ } :
+ function(f) {
+ f();
+ };
+
var panel = $(id);
if (!panel) {
panel = Richfaces.findModalPanel(id);
}
+ invoke(function() {
panel.modalPanel.show(opts);
-}
+ });
+
+
+};
Richfaces.hideModalPanel = function (id, opts) {
var panel = $(id);
@@ -914,4 +937,4 @@
panel = Richfaces.findModalPanel(id);
}
panel.modalPanel.hide(opts);
-}
+};
17 years, 3 months
JBoss Rich Faces SVN: r3170 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: vkorluzhenko
Date: 2007-10-01 06:11:21 -0400 (Mon, 01 Oct 2007)
New Revision: 3170
Modified:
trunk/docs/userguide/en/src/main/docbook/included/calendar.xml
trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml
trunk/docs/userguide/en/src/main/docbook/included/column.xml
trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.xml
trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.xml
trunk/docs/userguide/en/src/main/docbook/included/dataGrid.xml
trunk/docs/userguide/en/src/main/docbook/included/dataList.xml
trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml
trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml
trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
trunk/docs/userguide/en/src/main/docbook/included/dndParam.xml
trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml
trunk/docs/userguide/en/src/main/docbook/included/dragListener.xml
trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml
trunk/docs/userguide/en/src/main/docbook/included/dropDownMenu.xml
trunk/docs/userguide/en/src/main/docbook/included/dropListener.xml
trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml
trunk/docs/userguide/en/src/main/docbook/included/effect.xml
trunk/docs/userguide/en/src/main/docbook/included/gmap.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml
trunk/docs/userguide/en/src/main/docbook/included/insert.xml
trunk/docs/userguide/en/src/main/docbook/included/menuGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/menuItem.xml
trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml
trunk/docs/userguide/en/src/main/docbook/included/message.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/nodeSelectListener.xml
trunk/docs/userguide/en/src/main/docbook/included/paint2D.xml
trunk/docs/userguide/en/src/main/docbook/included/panel.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml
trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml
trunk/docs/userguide/en/src/main/docbook/included/separator.xml
trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
trunk/docs/userguide/en/src/main/docbook/included/spacer.xml
trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.xml
trunk/docs/userguide/en/src/main/docbook/included/tab.xml
trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/tooltip.xml
trunk/docs/userguide/en/src/main/docbook/included/tree.xml
trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml
trunk/docs/userguide/en/src/main/docbook/included/treeNodesAdaptor.xml
trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml
Log:
http://jira.jboss.com/jira/browse/RF-1041 - unificated section names
Modified: trunk/docs/userguide/en/src/main/docbook/included/calendar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/calendar.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/calendar.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -430,7 +430,7 @@
</section>
<section>
- <title>Skin parameters redefinition</title>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters redefinition for a popup element</title>
@@ -987,7 +987,7 @@
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/calendar.jsf?c=calendar"
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:calendar></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -31,7 +31,7 @@
<section>
- <title>Creating on a page</title>
+ <title>Creating the Component with a Page Tag</title>
<para>Simple Component definition on a page:</para>
<para>
@@ -45,7 +45,7 @@
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis></para>
<programlisting role="JAVA"><![CDATA[package demo;
@@ -65,7 +65,7 @@
</section>
<section>
- <title>Key attributes and ways of usage</title>
+ <title>Details of usage</title>
<para>
The <property><rich:changeExpandListener></property> is used as a nested tag with <property><rich:tree></property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/column.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/column.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/column.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -196,14 +196,14 @@
</itemizedlist>
</section>
<section>
- <title>Definition Custom Style Classes</title>
+ <title>Definition of Custom Style Classes</title>
<para>To redefine an appearance of all <property>columns</property> on a page, redefine the corresponding class in the CSS file used with the page.</para>
<para>To redefine a style of a particular page, use component class attributes which list is the same as the <property>column</property> one and is known to you.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dataTable.jsf?c=column"
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:column></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -181,7 +181,7 @@
</itemizedlist>
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<para>To redefine an appearance of all <property>columnGroups</property> on a page, redefine the corresponding class in the
CSS file used with the page.</para>
@@ -190,7 +190,7 @@
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dataTable.jsf?c=colum..."
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:columnGroup></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -156,7 +156,7 @@
<para>To redefine a style of a particular <property>dataDefinitionList</property>, use corresponding class attributes on the component.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dataLists.jsf?c=dataD..."
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:dataDefinitionList></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -123,7 +123,7 @@
defined.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/dataFilterSlider.jsf?..."
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataGrid.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataGrid.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataGrid.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -117,17 +117,17 @@
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
- <para>To redefine an appearance of all <property>dataGrids</property> on a page, redefine the corresponding class in
+ <para>To redefine an appearance of all <property>dataGrids</property> on a page, redefine the corresponding class in
the CSS file used with the page.</para>
<para>To redefine a style of a particular table, use <emphasis ><property>"component class"</property></emphasis> attributes which list is the same
as the <property>dataTable</property> one and is known to you.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dataGrid.jsf?c=dataGrid"
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:dataGrid></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataList.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataList.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -153,7 +153,7 @@
<para>To redefine a style of a particular dataList, use corresponding class attributes on the component.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dataLists.jsf?c=dataList"
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:dataList></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -151,7 +151,7 @@
<para>To redefine a style of a particular dataOrderedList, use corresponding class attributes on the component.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dataLists.jsf?c=dataO..."
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:dataOrderedList ></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -58,7 +58,7 @@
]]></programlisting>
</section>
<section>
- <title>Dynamical creation from Java code</title>
+ <title>Creating the Component Dynamically from Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
@@ -126,7 +126,7 @@
</section>
<section>
- <title>Skin parameters redefinition</title>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters redefinition for a table</title>
@@ -329,7 +329,7 @@
known to you.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dataTable.jsf?c=dataT..."
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -60,7 +60,7 @@
]]></programlisting>
</section>
<section>
- <title>Dynamical creation from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
@@ -214,7 +214,7 @@
</itemizedlist>
</section>
<section>
- <title>Skin parameters redefinition</title>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters redefinition for a wrapper element</title>
<tgroup cols="2">
@@ -394,7 +394,7 @@
attributes on the component.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/dataTableScroller.jsf..."
Modified: trunk/docs/userguide/en/src/main/docbook/included/dndParam.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dndParam.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dndParam.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -170,7 +170,7 @@
processes it on the next drop event.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevan Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dragSupport.jsf?c=dnd..."
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:dndParam></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -248,7 +248,7 @@
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/dragSupport.jsf?c=dra..."
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragListener.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragListener.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -31,7 +31,7 @@
<section>
- <title>Creating on a page</title>
+ <title>Creating the Component with a Page Tag</title>
<para>Simple Component definition on a page:</para>
<para>
@@ -45,7 +45,7 @@
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis></para>
<programlisting role="JAVA"><![CDATA[package demo;
@@ -65,7 +65,7 @@
</section>
<section>
- <title>Key attributes and ways of usage</title>
+ <title>Details of Usage</title>
<para>
The <property><rich:dragListener></property> is used as nested tag with components like
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragSupport.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -197,7 +197,7 @@
<para>The component doesn't have its own representation.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dragSupport.jsf?c=dra..."
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropDownMenu.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropDownMenu.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropDownMenu.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -316,7 +316,7 @@
</section>
<section>
- <title> Skin parameters redefinition</title>
+ <title> Skin Parameters Redefinition</title>
<table>
<title>Skin parameters redefinition for a label <div> element</title>
@@ -548,7 +548,7 @@
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dropDownMenu.jsf?c=dr...">Here</ulink> you can see the example of <emphasis role="bold"><property><rich:dropDownMenu></property></emphasis> usage and sources for the given example.
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropListener.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropListener.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -31,7 +31,7 @@
<section>
- <title>Creating on a page</title>
+ <title>Creating the Component with a Page Tag</title>
<para>Simple Component definition on a page:</para>
<para>
@@ -45,7 +45,7 @@
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis></para>
<programlisting role="JAVA"><![CDATA[package demo;
@@ -65,7 +65,7 @@
</section>
<section>
- <title>Key attributes and ways of usage</title>
+ <title>Details of Usage</title>
<para>
The <property><rich:dropListener></property> is used as nested tag with components like
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropSupport.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -244,7 +244,7 @@
<para>The component doesn't have its own visual presentation.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dragSupport.jsf?c=dro..."
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/effect.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/effect.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/effect.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -178,7 +178,7 @@
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/effect.jsf?c=effect"
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/gmap.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/gmap.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/gmap.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -162,13 +162,13 @@
Map</property>.</emphasis></para>
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<para>rich-gmap is a predefined style class for the map. It's possible to define some
standard properties for all <property>maps</property> components on a page (padding, border,
etc.) with the definition of the component.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/gmap.jsf?c=gmap">Here</ulink>
you can see the example of <emphasis role="bold"><property><rich:gmap></property></emphasis> usage
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -154,7 +154,7 @@
</section>
<section>
- <title>Skin parameters redefinition</title>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters redefinition for a bar</title>
@@ -374,7 +374,7 @@
well as a style font for an input field of a particular <property>slider</property>.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/inputNumberSlider.jsf..."
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -141,7 +141,7 @@
</section>
<section>
- <title>Skin parameters redefinition</title>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters redefinition for a container</title>
<tgroup cols="2">
@@ -271,7 +271,7 @@
a font-weight for an entry field of the particular <property>spinner</property>.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/inputNumberSpinner.js..."
Modified: trunk/docs/userguide/en/src/main/docbook/included/insert.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/insert.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/insert.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -117,7 +117,7 @@
used by the <ulink url="https://jhighlight.dev.java.net/">JHighlight</ulink> library.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/insert.jsf?c=insert"
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:insert></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/menuGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/menuGroup.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/menuGroup.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -173,7 +173,7 @@
</itemizedlist>
</section>
<section>
- <title>Skin parameters redefinition</title>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters redefinition for a group</title>
<tgroup cols="2">
@@ -317,7 +317,7 @@
in the corresponding menuGroup attributes. </para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dropDownMenu.jsf?c=me..."
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:menuGroup></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/menuItem.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/menuItem.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/menuItem.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -178,7 +178,7 @@
</itemizedlist>
</section>
<section>
- <title>Skin parameters redefinition</title>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters redefinition for an item</title>
<tgroup cols="2">
@@ -353,7 +353,7 @@
corresponding menuItem attributes. </para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dropDownMenu.jsf?c=me..."
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:menuItem></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -83,9 +83,8 @@
<listitem><para>Add to your style sheets style classes used by a menu separator</para></listitem>
</itemizedlist>
</section>
-
- <section>
- <title>Skin parameters redefinition</title>
+ <section>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters redefinition for an item</title>
<tgroup cols="2">
@@ -142,7 +141,7 @@
</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/dropDownMenu.jsf?c=me..."
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:menuSeparator></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/message.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/message.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/message.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -194,7 +194,7 @@
</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/message.jsf?c=message"
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:message></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/messages.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/messages.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/messages.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -191,7 +191,7 @@
</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/messsages.jsf?c=messages"
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:messages></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -457,7 +457,7 @@
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<figure>
<title>Modal Panel class names</title>
@@ -507,7 +507,7 @@
</table>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/modalPanel.jsf?c=moda..."
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -31,7 +31,7 @@
<section>
- <title>Creating on a page</title>
+ <title>Creating the Component with a Page Tag</title>
<para>Simple Component definition on a page:</para>
<para>
@@ -45,7 +45,7 @@
</section>
<section>
- <title>Dynamical creation of a component from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis></para>
<programlisting role="JAVA"><![CDATA[package demo;
@@ -65,7 +65,7 @@
</section>
<section>
- <title>Key attributes and ways of usage</title>
+ <title>Details of usage</title>
<para>
The <property><rich:nodeSelectListener></property> is used as nested tag with <property><rich:tree></property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/paint2D.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/paint2D.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/paint2D.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -159,7 +159,7 @@
</emphasis> attributes on the component.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/paint2D.jsf?c=paint2d"
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/panel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panel.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/panel.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -170,7 +170,7 @@
</itemizedlist>
</section>
<section>
- <title>Skin parameters redefinition</title>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters for the panel</title>
<tgroup cols="2">
@@ -256,7 +256,7 @@
</table>
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<figure>
<title>Style classes of panel</title>
@@ -332,7 +332,7 @@
</figure>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/panel.jsf?c=panel"
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -107,7 +107,7 @@
</itemizedlist>
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<para>There is one predefined class for the <property>panelBar</property>, which is
applicable to the whole component, specifying padding, borders, and etc.</para>
<figure>
@@ -211,7 +211,7 @@
a font for particular <property>panelBarItems</property> content.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/panelBar.jsf?c=panelBar"
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -112,7 +112,7 @@
</itemizedlist>
</section>
<section>
- <title>Skin parameters redefinition</title>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters for the panel content appearance</title>
<tgroup cols="2">
@@ -157,7 +157,7 @@
</table>
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<figure>
<title>PanelBarItem style classes</title>
<mediaobject>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -245,7 +245,7 @@
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/panelMenu.jsf?c=panel..."
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:panelMenu></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -252,7 +252,7 @@
</section>
<section>
- <title> Skin parameters redefinition</title>
+ <title> Skin Parameters Redefinition</title>
<table>
<title>Skin parameters redefinition for table element of the first level group</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -255,7 +255,7 @@
</section>
<section>
- <title> Skin parameters redefinition</title>
+ <title> Skin Parameters Redefinition</title>
<table>
<title>Skin parameters redefinition for a table element item of the first level</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -56,7 +56,7 @@
]]></programlisting>
</section>
<section>
- <title>Dynamical creation from Java code</title>
+ <title>Creating the Component Dynamically Using Java</title>
<para>
<emphasis role="bold">Example:</emphasis>
@@ -176,7 +176,7 @@
</section>
<section>
- <title>Skin parameters redefinition</title>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters for all table</title>
<tgroup cols="2">
@@ -463,7 +463,7 @@
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/scrollableDataTable.j...">Here</ulink>
you can see the example of <emphasis role="bold"><property><rich:scrollableDataTable></property>s</emphasis> usage. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/separator.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/separator.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/separator.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -121,7 +121,7 @@
</emphasis>) modifying component property.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/separator.jsf?c=separ..."
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -130,7 +130,7 @@
</itemizedlist>
</section>
<section>
- <title>Skin parameters redefinition</title>
+ <title>Skin Parameters Redefinition</title>
<table>
<title>Skin parameters for the whole simpleTogglePanels</title>
<tgroup cols="2">
@@ -216,7 +216,7 @@
</table>
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<figure>
<title>Style classes of simpleTogglePanel</title>
<mediaobject>
@@ -296,7 +296,7 @@
</table>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/simpleTogglePanel.jsf..."
Modified: trunk/docs/userguide/en/src/main/docbook/included/spacer.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/spacer.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/spacer.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -100,7 +100,7 @@
</emphasis>) modifying component property.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/spacer.jsf?c=spacer"
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionBox.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -254,7 +254,7 @@
</section>
<section>
- <title> Skin parameters redefinition</title>
+ <title> Skin Parameters Redefinition</title>
<table>
<title>General skin parameters redefinition for popup list</title>
@@ -469,7 +469,7 @@
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/suggestionBox.jsf?c=s..."
Modified: trunk/docs/userguide/en/src/main/docbook/included/tab.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -173,7 +173,7 @@
</section>
<section>
- <title>Definition Custom Style Classes</title>
+ <title>Definition of Custom Style Classes</title>
<para>The style peculiarities of a particular <property>Tab</property> variant could be changed with specification of your
own StyleClasses attributes.</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -168,7 +168,7 @@
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<figure>
@@ -247,7 +247,7 @@
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/tabPanel.jsf?c=tabPanel"
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/togglePanel.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -144,7 +144,7 @@
facets, thus all look and feel is set only for content.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/togglePanel.jsf?c=tog..."
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -139,7 +139,7 @@
</table>
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<para>On generating, the component substitutes the default class rich-toolbar-exterior into <emphasis>
<property>style class</property>
</emphasis> of a generated component, i.e. to redefine at once all
@@ -151,7 +151,7 @@
</emphasis> that could redefine an appearance of a particular component variants.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/toolBar.jsf?c=toolBar"
>Here</ulink> you can see the example of <emphasis role="bold"
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -162,7 +162,7 @@
</table>
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<para>On generating, the component substitutes the default class rich-toolbar-interior into
<emphasis
><property>style class</property></emphasis> of a generated component, i.e.
Modified: trunk/docs/userguide/en/src/main/docbook/included/tooltip.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tooltip.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/tooltip.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -237,7 +237,7 @@
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<para>
<property>Tooltip</property> provides one class "rich-tool-tip" which applies to a wrapper element <emphasis><property>"span"</property></emphasis> or "div"
dependently to <property>tooltip</property> layout. In order to redefine style for all <property>tooltips</property>
@@ -247,7 +247,7 @@
</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/toolTip.jsf?c=toolTip"
>Here</ulink> you can see the example of <emphasis role="bold"
><property><rich:toolTip></property></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tree.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -263,7 +263,7 @@
</itemizedlist>
</section>
<section>
- <title>Skin parameters redefinition:</title>
+ <title>Skin Parameters Redefinition:</title>
<para>There is only one skin parameter for the <property>tree</property> since <emphasis
role="bold">
<property><rich:tree></property>
@@ -289,7 +289,7 @@
</table>
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<para>The <property>tree</property> also has only one predefined Style Class responsible for
displaying a wrapper element of the <property>tree</property> - <emphasis role="bold">
<property><rich:tree></property>
@@ -297,7 +297,7 @@
the page.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/tree.jsf?c=tree">Here</ulink>
you can see the example of <emphasis role="bold"><property><rich:tree></property></emphasis> usage
Modified: trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -180,7 +180,7 @@
</itemizedlist>
</section>
<section>
- <title>Skin parameters redefinition:</title>
+ <title>Skin Parameters Redefinition:</title>
<table>
<title>Default skins for treeNode element</title>
<tgroup cols="2">
@@ -252,7 +252,7 @@
application, change these parameters values.</para>
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<para>The following classes are applied to a node element in three states: default, marked,
mouseovered:</para>
<itemizedlist>
@@ -271,7 +271,7 @@
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>How to Expand/Collapse Tree Nodes from code see <ulink
url="http://labs.jboss.com/wiki/ExpandCollapsetreeNodesAdaptor">here</ulink>. </para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/treeNodesAdaptor.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/treeNodesAdaptor.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/treeNodesAdaptor.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -112,7 +112,7 @@
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para><ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/treeNodesAdaptor.jsf?..."
>Here</ulink> you can see the example of <emphasis role="bold"
><rich:treeNodesAdaptor ></emphasis> usage and sources for the given example. </para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml 2007-10-01 10:06:55 UTC (rev 3169)
+++ trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml 2007-10-01 10:11:21 UTC (rev 3170)
@@ -137,13 +137,13 @@
additional elements on it, except the ones provided with <emphasis><property>Virtual Earth map</property>.</emphasis></para>
</section>
<section>
- <title>Definition custom style classes</title>
+ <title>Definition of Custom Style Classes</title>
<para>rich-virtualEarth map is a predefined style class for the map. It's possible to define some
standard properties for all <property>maps</property> components on a page (padding, border,
etc.) with the definition of the component.</para>
</section>
<section>
- <title>Relevant resources links</title>
+ <title>Relevant Resources Links</title>
<para>
<ulink url="http://msdn2.microsoft.com/en-us/library/bb429619.aspx">Here</ulink> you can found additional
information about Microsoft <property>Virtual Earth map</property>.</para>
17 years, 3 months
JBoss Rich Faces SVN: r3169 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: vkorluzhenko
Date: 2007-10-01 06:06:55 -0400 (Mon, 01 Oct 2007)
New Revision: 3169
Modified:
trunk/docs/userguide/en/src/main/docbook/included/messages.xml
Log:
http://jira.jboss.com/jira/browse/RF-920 - fixed some errors in classes names
Modified: trunk/docs/userguide/en/src/main/docbook/included/messages.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/messages.xml 2007-09-28 19:31:28 UTC (rev 3168)
+++ trunk/docs/userguide/en/src/main/docbook/included/messages.xml 2007-10-01 10:06:55 UTC (rev 3169)
@@ -138,7 +138,7 @@
<mediaobject>
<imageobject>
- <imagedata fileref="images/message1.png"/>
+ <imagedata fileref="images/messages1.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -157,19 +157,19 @@
<tbody>
<row>
- <entry>rich-message</entry>
+ <entry>rich-messages</entry>
<entry>Defines styles for a wrapper element</entry>
</row>
<row>
- <entry>rich-message-marker</entry>
+ <entry>rich-messages-marker</entry>
<entry>Defines styles for a marker</entry>
</row>
<row>
- <entry>rich-message-label</entry>
+ <entry>rich-messages-label</entry>
<entry>Defines styles for a label</entry>
</row>
17 years, 3 months