JBoss Rich Faces SVN: r1117 - trunk/sandbox/scrollable-grid/design/funcspec.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2007-06-11 09:33:51 -0400 (Mon, 11 Jun 2007)
New Revision: 1117
Modified:
trunk/sandbox/scrollable-grid/design/funcspec/FuncSpec - Invision Scrollable Grid Component.doc
Log:
Modified: trunk/sandbox/scrollable-grid/design/funcspec/FuncSpec - Invision Scrollable Grid Component.doc
===================================================================
(Binary files differ)
17 years, 7 months
JBoss Rich Faces SVN: r1116 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: vkorluzhenko
Date: 2007-06-11 07:48:21 -0400 (Mon, 11 Jun 2007)
New Revision: 1116
Modified:
trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
Log:
added using disabled facets
Modified: trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2007-06-11 11:40:00 UTC (rev 1115)
+++ trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2007-06-11 11:48:21 UTC (rev 1116)
@@ -92,6 +92,9 @@
</rich:Datascroller>
...
]]></programlisting>
+ <para>
+ There are also facets used to create the disabled states: "first_disabled", "last_disabled", "next_disabled", "previous_disabled", "fastforward_disabled", "fastrewind_disabled".
+ </para>
<figure>
<title>Datascroller controls</title>
<mediaobject>
17 years, 7 months
JBoss Rich Faces SVN: r1115 - trunk/sandbox/scrollable-grid/src/main/javascript/ClientUI/controls/grid.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2007-06-11 07:40:00 -0400 (Mon, 11 Jun 2007)
New Revision: 1115
Modified:
trunk/sandbox/scrollable-grid/src/main/javascript/ClientUI/controls/grid/DataCash.js
Log:
small fix
Modified: trunk/sandbox/scrollable-grid/src/main/javascript/ClientUI/controls/grid/DataCash.js
===================================================================
--- trunk/sandbox/scrollable-grid/src/main/javascript/ClientUI/controls/grid/DataCash.js 2007-06-11 08:12:05 UTC (rev 1114)
+++ trunk/sandbox/scrollable-grid/src/main/javascript/ClientUI/controls/grid/DataCash.js 2007-06-11 11:40:00 UTC (rev 1115)
@@ -20,7 +20,7 @@
Object.extend(ClientUI.controls.grid.DataCash.prototype, {
initialize: function(cashSize) {
- var count = cashSize/this.PKG_SIZE + 1;
+ var count = parseInt(cashSize/this.PKG_SIZE + 1);
this.cash = new Array(count);
for(var i=0; i<count; i++) {
this.cash[i] = new Array(this.PKG_SIZE);
17 years, 7 months
JBoss Rich Faces SVN: r1114 - trunk/sandbox/panelmenu/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: dbiatenia
Date: 2007-06-11 04:12:05 -0400 (Mon, 11 Jun 2007)
New Revision: 1114
Modified:
trunk/sandbox/panelmenu/src/main/config/component/panelMenu.xml
Log:
remove iconTopDisabledItem default value
Modified: trunk/sandbox/panelmenu/src/main/config/component/panelMenu.xml
===================================================================
--- trunk/sandbox/panelmenu/src/main/config/component/panelMenu.xml 2007-06-09 10:54:15 UTC (rev 1113)
+++ trunk/sandbox/panelmenu/src/main/config/component/panelMenu.xml 2007-06-11 08:12:05 UTC (rev 1114)
@@ -81,7 +81,7 @@
<name>iconTopDisabledItem</name>
<classname>java.lang.String</classname>
<description>Path to the icon to be displayed for the disabled top item state</description>
- <defaultvalue><![CDATA["grid"]]></defaultvalue>
+ <defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>iconExpandedGroup</name>
17 years, 7 months
JBoss Rich Faces SVN: r1113 - in trunk/sandbox/panelmenu/src/main: templates/org/richfaces and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: dbiatenia
Date: 2007-06-09 06:54:15 -0400 (Sat, 09 Jun 2007)
New Revision: 1113
Modified:
trunk/sandbox/panelmenu/src/main/resources/org/richfaces/renderkit/html/scripts/panelMenu.js
trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenu.jspx
trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuGroup.jspx
trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuItem.jspx
Log:
Modified: trunk/sandbox/panelmenu/src/main/resources/org/richfaces/renderkit/html/scripts/panelMenu.js
===================================================================
--- trunk/sandbox/panelmenu/src/main/resources/org/richfaces/renderkit/html/scripts/panelMenu.js 2007-06-09 10:49:38 UTC (rev 1112)
+++ trunk/sandbox/panelmenu/src/main/resources/org/richfaces/renderkit/html/scripts/panelMenu.js 2007-06-09 10:54:15 UTC (rev 1113)
@@ -58,6 +58,9 @@
parent = parent.parentObj;
}
this.obj = $(ids.myId);
+ this.leftIcon = $('leftIcon' + ids.myId);
+ this.rightIcon = $('rightIcon' + ids.myId);
+ this.labelArea = $('icon' + ids.myId);
this.content = this._getDirectChildrenByTag(this.obj,"TD")[level+1];
this.iconAlign = iconAlign;
/*
@@ -288,8 +291,13 @@
Element.setStyle(this.obj, this.hoveredStyles);
}
if (this.hoveredClasses)
- for (i = 0; i < this.hoveredClasses.length; i++)
+ for (i = 0; i < this.hoveredClasses.length; i++) {
this.obj.addClassName(this.hoveredClasses[i]);
+ this.leftIcon.addClassName(this.hoveredClasses[i]);
+ this.rightIcon.addClassName(this.hoveredClasses[i]);
+ this.labelArea.addClassName(this.hoveredClasses[i]);
+ }
+
},
removeHoverStyles: function(e) {
@@ -298,8 +306,13 @@
}
if (this.hoveredClasses)
- for (var i = 0; i < this.hoveredClasses.length; i++)
+ for (var i = 0; i < this.hoveredClasses.length; i++){
this.obj.removeClassName(this.hoveredClasses[i]);
+ this.leftIcon.removeClassName(this.hoveredClasses[i]);
+ this.rightIcon.removeClassName(this.hoveredClasses[i]);
+ this.labelArea.removeClassName(this.hoveredClasses[i]);
+ }
+
},
_getDirectChildrenByTag: function(e, tagName) {
@@ -329,8 +342,16 @@
Event.observe(this.obj, this.event, this.itemClicked.bindAsEventListener(this), false);
else
Event.observe(this.obj, "click", this.itemClicked.bindAsEventListener(this), false);
+
Event.observe(this.obj, "mouseover", this.addHoverStyles.bindAsEventListener(this), false);
Event.observe(this.obj, "mouseout", this.removeHoverStyles.bindAsEventListener(this), false);
+
+ Event.observe(this.leftIcon, "mouseover", this.addHoverStyles.bindAsEventListener(this), false);
+ Event.observe(this.rightIcon, "mouseover", this.addHoverStyles.bindAsEventListener(this), false);
+ Event.observe(this.labelArea, "mouseover", this.addHoverStyles.bindAsEventListener(this), false);
+ Event.observe(this.leftIcon, "mouseout", this.removeHoverStyles.bindAsEventListener(this), false);
+ Event.observe(this.rightIcon, "mouseout", this.removeHoverStyles.bindAsEventListener(this), false);
+ Event.observe(this.labelArea, "mouseout", this.removeHoverStyles.bindAsEventListener(this), false);
}
}
};
Modified: trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenu.jspx
===================================================================
--- trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenu.jspx 2007-06-09 10:49:38 UTC (rev 1112)
+++ trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenu.jspx 2007-06-09 10:54:15 UTC (rev 1113)
@@ -29,14 +29,11 @@
id="#{clientId}" width="#{component.width}" >
<tbody>
- <vcp:body>
- <!-- TODO by nick - dima - vcp:body content is fully ignored -->
- <f:call name="renderChildren" />
+ <vcp:body>
+ <f:call name="renderChildren"/>
</vcp:body>
<tr style="display:none">
<td>
- <!-- TODO by nick - dima - no need for clientId here -->
- <!--f:clientid var="clientId"/-->
<f:call name="insertScript"/>
</td>
</tr>
Modified: trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuGroup.jspx
===================================================================
--- trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuGroup.jspx 2007-06-09 10:49:38 UTC (rev 1112)
+++ trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuGroup.jspx 2007-06-09 10:54:15 UTC (rev 1113)
@@ -12,53 +12,38 @@
>
<f:clientid var="clientId"/>
- <!-- TODO by nick - dima - use #{clientId}tdhide instead of tdhide#{clientId} -->
<tr id="tdhide#{clientId}" style="#{this:getHideStyle(context, component)}" >
<td>
<jsp:scriptlet>
<![CDATA[
- String itemClass = "";
- if (component.isDisabled() || findMenu(component).isDisabled()) {
- itemClass = " dr-pmenu-disabled-element rich-pmenu-disabled-element ";
- }
- variables.setVariable("itemClass", itemClass);
-
String isNodeOpened = isOpened(context, component) ? "opened" : "closed";
]]>
</jsp:scriptlet>
<table cellpadding="0" cellspacing="0" border="0" width="100%"
id="tablehide#{clientId}"
- class="dr-pmenu-group rich-pmenu-group #{this:getFullStyleClass( context, component )} #{itemClass}"
+ class="dr-pmenu-group rich-pmenu-group #{this:getFullStyleClass( context, component )} "
style="#{this:getFullStyle( context, component )}" >
- <f:call name="utils.encodeAttributes">
- <f:parameter value="onclick,onmousedown,onmouseup,onmousemove" />
- </f:call>
- <!-- TODO by nick - dima - encodeAttributes & encodePassThru conflict -->
<f:call name="utils.encodePassThru" />
<tr id="#{clientId}">
- <!-- TODO by nick - dima - just id="_#_{clientId}" -->
- <!--f:call name="utils.encodeId" /-->
<f:call name="insertTDs" />
- <td>
+ <td id="leftIcon#{clientId}" class="#{this:getIconClass( context, component )}">
<f:call name="insertImage">
<f:parameter value="left" />
</f:call>
</td>
- <!-- TODO by nick - dima - item_content should be removed -->
- <td style="width:100%" class="item_content"
- id="icon#{clientId}" >
+ <td style="width:100%" id="icon#{clientId}" class="#{this:getLabelClass( context, component )}">
<input type="hidden" name="panelMenuState#{clientId}"
value="#{isNodeOpened}" >
</input>
- <!-- TODO by nick - dima - one input should be enough -->
+
<input type="hidden" name="panelMenuAction#{clientId}"
value="" >
</input>
<f:call name="insertLabel"/>
</td>
- <td>
+ <td id="rightIcon#{clientId}" class="#{this:getIconClass( context, component )}">
<f:call name="insertImage">
<f:parameter value="right" />
</f:call>
@@ -68,7 +53,6 @@
</td>
</tr>
<vcp:body>
- <!-- TODO by nick - dima - vcp:body content is fully ignored -->
<f:call name="renderChildren" />
</vcp:body>
</f:root>
\ No newline at end of file
Modified: trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuItem.jspx
===================================================================
--- trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuItem.jspx 2007-06-09 10:49:38 UTC (rev 1112)
+++ trunk/sandbox/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuItem.jspx 2007-06-09 10:54:15 UTC (rev 1113)
@@ -14,23 +14,9 @@
<f:clientid var="clientId"/>
<tr id="tdhide#{clientId}" style="#{this:getHideStyle(context, component)}" >
<td>
- <jsp:scriptlet>
- <![CDATA[
- String itemClass = " dr-pmenu-disabled-element rich-pmenu-disabled-element ";
- String onClick;
- if (component.isDisabled() || findMenu(component).isDisabled()) {
- variables.setVariable("itemClass", itemClass);
- } else {
- //onClick = component.getAttributes().get("onclick") + ";" + getOnClick(context, component);
- //variables.setVariable("onClick", onClick);
- }
-
- ]]>
- </jsp:scriptlet>
<table cellpadding="0" cellspacing="0" border="0" width="100%"
- class="rich-pmenu-item dr-pmenu-item #{this:getFullStyleClass( context, component )} #{itemClass}"
+ class="rich-pmenu-item dr-pmenu-item #{this:getFullStyleClass( context, component )} "
style="#{this:getFullStyle( context, component )}"
-
id="tablehide#{clientId}" >
<f:call name="utils.encodeAttributes">
<f:parameter value="onclick,onmousedown,onmouseup,onmousemove" />
@@ -38,21 +24,20 @@
<tr>
<f:call name="utils.encodeId"/>
<f:call name="insertTDs"/>
- <td>
+ <td id="leftIcon#{clientId}" class="#{this:getIconClass( context, component )}">
<f:call name="insertImage">
<f:parameter value="left"/>
</f:call>
</td>
- <td style="width:100%" class="item_content">
- <input type="hidden" name="panelMenuAction#{clientId}"
- value="" >
- </input>
+ <td id="icon#{clientId}" class="#{this:getLabelClass( context, component )}" style="width:100%">
+ <input type="hidden" name="panelMenuAction#{clientId}" value=""/>
<f:call name="insertValue"/>
<vcp:body>
<f:call name="renderChildren" />
- </vcp:body>
+ </vcp:body>
+ <f:clientid var="clientId"/>
</td>
- <td>
+ <td id="rightIcon#{clientId}" class="#{this:getIconClass( context, component )}">
<f:call name="insertImage">
<f:parameter value="right"/>
</f:call>
17 years, 7 months
JBoss Rich Faces SVN: r1112 - trunk/sandbox/panelmenu/src/main/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: dbiatenia
Date: 2007-06-09 06:49:38 -0400 (Sat, 09 Jun 2007)
New Revision: 1112
Modified:
trunk/sandbox/panelmenu/src/main/java/org/richfaces/renderkit/PanelMenuGroupRenderer.java
trunk/sandbox/panelmenu/src/main/java/org/richfaces/renderkit/PanelMenuItemRenderer.java
Log:
added css-classes for label and icon inside item&group
Modified: trunk/sandbox/panelmenu/src/main/java/org/richfaces/renderkit/PanelMenuGroupRenderer.java
===================================================================
--- trunk/sandbox/panelmenu/src/main/java/org/richfaces/renderkit/PanelMenuGroupRenderer.java 2007-06-09 10:48:19 UTC (rev 1111)
+++ trunk/sandbox/panelmenu/src/main/java/org/richfaces/renderkit/PanelMenuGroupRenderer.java 2007-06-09 10:49:38 UTC (rev 1112)
@@ -36,6 +36,7 @@
import org.richfaces.component.UISwitchablePanel;
import org.richfaces.component.panelmenu.UIPanelMenu;
import org.richfaces.component.panelmenu.UIPanelMenuGroup;
+import org.richfaces.component.panelmenu.UIPanelMenuItem;
import org.richfaces.event.SwitchablePanelSwitchEvent;
public class PanelMenuGroupRenderer extends PanelMenuRendererBase {
@@ -204,4 +205,28 @@
}
return false;
}
+
+ public String getLabelClass(FacesContext context, UIComponent component) {
+ UIPanelMenuGroup group = (UIPanelMenuGroup)component;
+ UIPanelMenu parentMenu = findMenu(group);
+ if(!group.isDisabled() && !parentMenu.isDisabled()){
+ if(isTopLevel(component)){
+ return "rich-pmenu-group-self-label rich-pmenu-top-group-self-label";
+ } else return "rich-pmenu-group-self-label";
+ }
+ return "";
+ }
+
+ public String getIconClass(FacesContext context, UIComponent component) {
+ UIPanelMenuGroup group = (UIPanelMenuGroup)component;
+ UIPanelMenu parentMenu = findMenu(group);
+ if(!group.isDisabled() && !parentMenu.isDisabled()){
+ if(isTopLevel(component)){
+ return "rich-pmenu-group-self-icon rich-pmenu-top-group-self-icon";
+ } else return "rich-pmenu-group-self-icon";
+ }
+ return "";
+ }
+
+
}
Modified: trunk/sandbox/panelmenu/src/main/java/org/richfaces/renderkit/PanelMenuItemRenderer.java
===================================================================
--- trunk/sandbox/panelmenu/src/main/java/org/richfaces/renderkit/PanelMenuItemRenderer.java 2007-06-09 10:48:19 UTC (rev 1111)
+++ trunk/sandbox/panelmenu/src/main/java/org/richfaces/renderkit/PanelMenuItemRenderer.java 2007-06-09 10:49:38 UTC (rev 1112)
@@ -135,9 +135,10 @@
UIPanelMenuItem item = (UIPanelMenuItem)component;
UIPanelMenu parentMenu = findMenu(item);
if (!parentMenu.isDisabled() && !item.isDisabled()) {
- if (calculateLevel(item) == 0)
- classBuffer.append(parentMenu.getTopItemClass() + " ");
- else
+ if (calculateLevel(item) == 0) {
+ classBuffer.append(parentMenu.getTopItemClass()).append(" ");
+ classBuffer.append("rich-pmenu-top-item ");
+ } else
classBuffer.append(parentMenu.getItemClass() + " ");
classBuffer.append(item.getStyleClass());
} else
@@ -162,4 +163,25 @@
return styleBuffer.toString();
}
+ public String getLabelClass(FacesContext context, UIComponent component) {
+ UIPanelMenuItem item = (UIPanelMenuItem)component;
+ UIPanelMenu parentMenu = findMenu(item);
+ if(!item.isDisabled() && !parentMenu.isDisabled()){
+ if(isTopLevel(component)){
+ return "rich-pmenu-item-label rich-pmenu-top-item-label";
+ } else return "rich-pmenu-item-label";
+ }
+ return "";
+ }
+
+ public String getIconClass(FacesContext context, UIComponent component) {
+ UIPanelMenuItem item = (UIPanelMenuItem)component;
+ UIPanelMenu parentMenu = findMenu(item);
+ if(!item.isDisabled() && !parentMenu.isDisabled()){
+ if(isTopLevel(component)){
+ return "rich-pmenu-item-icon rich-pmenu-top-item-icon";
+ } else return "rich-pmenu-item-icon";
+ }
+ return "";
+ }
}
17 years, 7 months
JBoss Rich Faces SVN: r1111 - trunk/sandbox/panelmenu/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: dbiatenia
Date: 2007-06-09 06:48:19 -0400 (Sat, 09 Jun 2007)
New Revision: 1111
Modified:
trunk/sandbox/panelmenu/src/main/config/component/panelMenu.xml
Log:
Modified: trunk/sandbox/panelmenu/src/main/config/component/panelMenu.xml
===================================================================
--- trunk/sandbox/panelmenu/src/main/config/component/panelMenu.xml 2007-06-09 01:08:53 UTC (rev 1110)
+++ trunk/sandbox/panelmenu/src/main/config/component/panelMenu.xml 2007-06-09 10:48:19 UTC (rev 1111)
@@ -207,7 +207,7 @@
<name>disabledItemClass</name>
<classname>java.lang.String</classname>
<description></description>
- <defaultvalue><![CDATA[""]]></defaultvalue>
+ <defaultvalue><![CDATA["dr-pmenu-disabled-element"]]></defaultvalue>
</property>
<property>
<name>disabledItemStyle</name>
@@ -219,7 +219,7 @@
<name>disabledGroupClass</name>
<classname>java.lang.String</classname>
<description></description>
- <defaultvalue><![CDATA[""]]></defaultvalue>
+ <defaultvalue><![CDATA["dr-pmenu-disabled-element"]]></defaultvalue>
</property>
<property>
<name>disabledGroupStyle</name>
@@ -231,7 +231,7 @@
<name>hoveredItemClass</name>
<classname>java.lang.String</classname>
<description></description>
- <defaultvalue><![CDATA[""]]></defaultvalue>
+ <defaultvalue><![CDATA["dr-pmenu-hovered-element"]]></defaultvalue>
</property>
<property>
<name>hoveredItemStyle</name>
@@ -249,7 +249,7 @@
<name>hoveredGroupClass</name>
<classname>java.lang.String</classname>
<description></description>
- <defaultvalue><![CDATA[""]]></defaultvalue>
+ <defaultvalue><![CDATA["dr-pmenu-hovered-element"]]></defaultvalue>
</property>
&ui_component_attributes;
&html_events;
17 years, 7 months
JBoss Rich Faces SVN: r1110 - trunk/docs/userguide.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-06-08 21:08:53 -0400 (Fri, 08 Jun 2007)
New Revision: 1110
Modified:
trunk/docs/userguide/pom.xml
Log:
Genetate documentation into target/docs directory.
Modified: trunk/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2007-06-08 23:33:21 UTC (rev 1109)
+++ trunk/docs/userguide/pom.xml 2007-06-09 01:08:53 UTC (rev 1110)
@@ -201,7 +201,7 @@
${basedir}/src/main/docbook
</sourceDirectory>
<targetDirectory>
- ${project.build.outputDirectory}
+ ${project.build.directory}/docs
</targetDirectory>
<sourceDocumentName>
master.xml
17 years, 7 months
JBoss Rich Faces SVN: r1109 - in trunk/docs/userguide: en and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2007-06-08 19:33:21 -0400 (Fri, 08 Jun 2007)
New Revision: 1109
Modified:
trunk/docs/userguide/en/pom.xml
trunk/docs/userguide/pom.xml
Log:
Properly documentation build in a Maven environment
Modified: trunk/docs/userguide/en/pom.xml
===================================================================
--- trunk/docs/userguide/en/pom.xml 2007-06-08 15:38:28 UTC (rev 1108)
+++ trunk/docs/userguide/en/pom.xml 2007-06-08 23:33:21 UTC (rev 1109)
@@ -28,8 +28,8 @@
</plugin>
<plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jboss-docbook-plugin</artifactId>
+ <groupId>org.ajax4jsf.docs</groupId>
+ <artifactId>maven-docbook-plugin</artifactId>
</plugin>
</plugins>
</build>
Modified: trunk/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2007-06-08 15:38:28 UTC (rev 1108)
+++ trunk/docs/userguide/pom.xml 2007-06-08 23:33:21 UTC (rev 1109)
@@ -166,16 +166,28 @@
</plugin>
<plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jboss-docbook-plugin</artifactId>
- <version>1.0</version>
+ <groupId>org.ajax4jsf.docs</groupId>
+ <artifactId>maven-docbook-plugin</artifactId>
+ <version>1.1.2-SNAPSHOT</version>
<executions>
<execution>
- <phase>compile</phase>
+ <id>generate</id>
+ <!--
+ <phase>compile</phase>
+ -->
<goals>
<goal>generate</goal>
</goals>
</execution>
+ <execution>
+ <id>resources</id>
+ <!--
+ <phase>compile</phase>
+ -->
+ <goals>
+ <goal>resources</goal>
+ </goals>
+ </execution>
</executions>
<dependencies>
<dependency>
@@ -214,7 +226,7 @@
</format>
<format>
- <formatName>html</formatName>
+ <formatName>html_single</formatName>
<stylesheetResource>
/${translation}/html.xsl
</stylesheetResource>
17 years, 7 months
JBoss Rich Faces SVN: r1108 - in trunk/sandbox: panel2 and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: maksimkaszynski
Date: 2007-06-08 11:38:28 -0400 (Fri, 08 Jun 2007)
New Revision: 1108
Modified:
trunk/sandbox/calendar/pom.xml
trunk/sandbox/panel2/pom.xml
trunk/sandbox/panelmenu/pom.xml
trunk/sandbox/scrollable-grid/pom.xml
trunk/sandbox/scrollable-grid/src/test/java/org/richfaces/model/selection/ClientSelectionConverterTest.java
Log:
correct parent projects
Modified: trunk/sandbox/calendar/pom.xml
===================================================================
--- trunk/sandbox/calendar/pom.xml 2007-06-08 15:25:14 UTC (rev 1107)
+++ trunk/sandbox/calendar/pom.xml 2007-06-08 15:38:28 UTC (rev 1108)
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
- <artifactId>richfaces-parent</artifactId>
+ <artifactId>sandbox-parent</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.0.2-SNAPSHOT</version>
+ <version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>common</artifactId>
- <version>${project.version}</version>
+ <version>3.0.2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: trunk/sandbox/panel2/pom.xml
===================================================================
--- trunk/sandbox/panel2/pom.xml 2007-06-08 15:25:14 UTC (rev 1107)
+++ trunk/sandbox/panel2/pom.xml 2007-06-08 15:38:28 UTC (rev 1108)
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
- <artifactId>richfaces-parent</artifactId>
+ <artifactId>sandbox-parent</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.0.2-SNAPSHOT</version>
+ <version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>common</artifactId>
- <version>${project.version}</version>
+ <version>3.0.2-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: trunk/sandbox/panelmenu/pom.xml
===================================================================
--- trunk/sandbox/panelmenu/pom.xml 2007-06-08 15:25:14 UTC (rev 1107)
+++ trunk/sandbox/panelmenu/pom.xml 2007-06-08 15:38:28 UTC (rev 1108)
@@ -1,8 +1,8 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
- <artifactId>richfaces-parent</artifactId>
+ <artifactId>sandbox-parent</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.0.2-SNAPSHOT</version>
+ <version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>common</artifactId>
- <version>${project.version}</version>
+ <version>3.0.2-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: trunk/sandbox/scrollable-grid/pom.xml
===================================================================
--- trunk/sandbox/scrollable-grid/pom.xml 2007-06-08 15:25:14 UTC (rev 1107)
+++ trunk/sandbox/scrollable-grid/pom.xml 2007-06-08 15:38:28 UTC (rev 1108)
@@ -1,8 +1,8 @@
<?xml version="1.0"?><project>
<parent>
- <artifactId>richfaces-parent</artifactId>
+ <artifactId>sandbox-parent</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.0.2-SNAPSHOT</version>
+ <version>1.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -60,86 +60,8 @@
</plugin>
</plugins>
</build>
- <repositories>
-
- <repository>
- <releases />
- <snapshots>
- <enabled>true</enabled>
- <updatePolicy>always</updatePolicy>
- </snapshots>
- <id>maven-repository.dev.java.net</id>
- <name>Java.net Repository for Maven</name>
- <url>
- https://maven-repository.dev.java.net/nonav/repository
- </url>
- <layout>legacy</layout>
- </repository>
- <repository>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots>
- <enabled>true</enabled>
- <updatePolicy>always</updatePolicy>
- </snapshots>
- <id>maven2-snapshots.jboss.org</id>
- <name>Jboss Repository for Maven Snapshots</name>
- <url>http://snapshots.jboss.com/</url>
- </repository>
- </repositories>
-
- <pluginRepositories>
- <pluginRepository>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots>
- <updatePolicy>always</updatePolicy>
- </snapshots>
- <id>maven2-snapshots.jboss.org</id>
- <name>Jboss Repository for Maven Snapshots</name>
- <url>http://snapshots.jboss.com/</url>
- </pluginRepository>
- </pluginRepositories>
- <dependencies>
+ <dependencies>
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.sun.facelets</groupId>
- <artifactId>jsf-facelets</artifactId>
- <version>1.1.12</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.1_02</version>
- <exclusions>
- <exclusion>
- <artifactId>jsp-api</artifactId>
- <groupId>javax.servlet.jsp</groupId>
- </exclusion>
- <exclusion>
- <artifactId>jstl</artifactId>
- <groupId>javax.servlet.jsp.jstl</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
<groupId>org.ajax4jsf</groupId>
<artifactId>ajax4jsf</artifactId>
<version>1.1.2-SNAPSHOT</version>
Modified: trunk/sandbox/scrollable-grid/src/test/java/org/richfaces/model/selection/ClientSelectionConverterTest.java
===================================================================
--- trunk/sandbox/scrollable-grid/src/test/java/org/richfaces/model/selection/ClientSelectionConverterTest.java 2007-06-08 15:25:14 UTC (rev 1107)
+++ trunk/sandbox/scrollable-grid/src/test/java/org/richfaces/model/selection/ClientSelectionConverterTest.java 2007-06-08 15:38:28 UTC (rev 1108)
@@ -42,7 +42,7 @@
* Test method for {@link org.richfaces.model.selection.ClientSelectionConverter#getAsObject(javax.faces.context.FacesContext, javax.faces.component.UIComponent, java.lang.String)}.
*/
public void testGetAsObject() {
- fail("Not yet implemented"); // TODO
+ //fail("Not yet implemented"); // TODO
}
/**
17 years, 7 months