JBoss Rich Faces SVN: r2317 - in trunk/ui: calendar/src/main/java/org/richfaces/renderkit/html and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: maksimkaszynski
Date: 2007-08-17 09:18:25 -0400 (Fri, 17 Aug 2007)
New Revision: 2317
Added:
trunk/ui/calendar/src/main/java/org/richfaces/renderkit/html/
trunk/ui/calendar/src/main/java/org/richfaces/renderkit/html/iconimages/
trunk/ui/calendar/src/main/java/org/richfaces/renderkit/html/iconimages/CalendarIcon.java
Modified:
trunk/ui/calendar/src/main/templates/org/richfaces/htmlCalendar.jspx
trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasic.java
Log:
http://jira.jboss.com/jira/browse/RF-618
Added: trunk/ui/calendar/src/main/java/org/richfaces/renderkit/html/iconimages/CalendarIcon.java
===================================================================
--- trunk/ui/calendar/src/main/java/org/richfaces/renderkit/html/iconimages/CalendarIcon.java (rev 0)
+++ trunk/ui/calendar/src/main/java/org/richfaces/renderkit/html/iconimages/CalendarIcon.java 2007-08-17 13:18:25 UTC (rev 2317)
@@ -0,0 +1,188 @@
+/**
+ * License Agreement.
+ *
+ * JBoss RichFaces 3.0 - Ajax4jsf Component Library
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+package org.richfaces.renderkit.html.iconimages;
+
+import java.awt.BasicStroke;
+import java.awt.Color;
+import java.awt.Dimension;
+import java.awt.GradientPaint;
+import java.awt.Graphics2D;
+import java.awt.Paint;
+import java.awt.RenderingHints;
+import java.awt.geom.Rectangle2D;
+import java.awt.geom.RoundRectangle2D;
+import java.awt.image.BufferedImage;
+import java.util.Date;
+
+import javax.faces.context.FacesContext;
+
+import org.ajax4jsf.resource.GifRenderer;
+import org.ajax4jsf.resource.InternetResourceBuilder;
+import org.ajax4jsf.resource.Java2Dresource;
+import org.ajax4jsf.resource.ResourceContext;
+import org.ajax4jsf.util.HtmlColor;
+import org.richfaces.skin.Skin;
+import org.richfaces.skin.SkinFactory;
+
+/**
+ * @author Maksim Kaszynski
+ *
+ */
+public class CalendarIcon extends Java2Dresource {
+
+ private static Dimension dimension = new Dimension(20, 20);
+
+ /**
+ *
+ */
+ public CalendarIcon() {
+ setRenderer(new GifRenderer());
+ setLastModified(new Date(InternetResourceBuilder.getInstance().getStartTime()));
+
+ }
+
+ /* (non-Javadoc)
+ * @see org.ajax4jsf.resource.Java2Dresource#getDimensions(javax.faces.context.FacesContext, java.lang.Object)
+ */
+ public Dimension getDimensions(FacesContext facesContext, Object data) {
+ // TODO Auto-generated method stub
+ return dimension;
+ }
+
+ /* (non-Javadoc)
+ * @see org.ajax4jsf.resource.Java2Dresource#getDimensions(org.ajax4jsf.resource.ResourceContext)
+ */
+ protected Dimension getDimensions(ResourceContext resourceContext) {
+ // TODO Auto-generated method stub
+ return dimension;
+ }
+
+ protected Object getDataToStore(FacesContext context, Object data) {
+ Skin skin = SkinFactory.getInstance().getSkin(context);
+ Skin defaultSkin = SkinFactory.getInstance().getDefaultSkin(context);
+
+ Object [] stored = new Object[2];
+
+ Color col = null;
+
+ String skinParameter = "headerBackgroundColor";
+ String headerTextColor = (String) skin.getParameter(context, skinParameter);
+ if (null == headerTextColor || "".equals(headerTextColor))
+ headerTextColor = (String) defaultSkin.getParameter(context, skinParameter);
+ col = HtmlColor.decode(headerTextColor);
+
+ stored[0] = col;
+
+ skinParameter = "selectControlColor";
+ String headerBackgroundColor = (String) skin.getParameter(context, skinParameter);
+ if (null == headerBackgroundColor || "".equals(headerBackgroundColor))
+ headerBackgroundColor = (String) defaultSkin.getParameter(context, skinParameter);
+ col = HtmlColor.decode(headerBackgroundColor);
+
+ stored[1] = col;
+
+ return stored;
+ }
+
+
+ public void paint(ResourceContext context, Graphics2D graphics) {
+ Object[] stored = (Object[]) restoreData(context);
+ Dimension dim = getDimensions(context);
+ BufferedImage image = new BufferedImage(16, 16, BufferedImage.TYPE_INT_ARGB);
+
+ Graphics2D g2d = image.createGraphics();
+
+ Color borderColor = (Color) stored[0];//new Color(((Integer) stored[0]).intValue());
+ Color activeColor = (Color) stored[1];//new Color(((Integer) stored[1]).intValue());
+
+
+ g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
+ g2d.setRenderingHint(RenderingHints.KEY_COLOR_RENDERING, RenderingHints.VALUE_COLOR_RENDER_QUALITY);
+
+ g2d.setStroke(new BasicStroke(1));
+
+ int w = 16;
+ int h = 16;
+
+
+ //Draw Border
+ g2d.setColor(borderColor);
+ Rectangle2D border = new Rectangle2D.Double(1, 1, w - 3, h - 3);
+ RoundRectangle2D round = new RoundRectangle2D.Double(1, 1, w- 3, h - 3, 2, 2);
+ g2d.draw(round);
+
+ Color lightBlue = new Color(216, 226, 240);
+ Paint gradient1 = new GradientPaint(w-4, h-4, lightBlue, 2, 2, Color.white);
+ g2d.setPaint(gradient1);
+ border = new Rectangle2D.Double(2, 2, w - 4, h - 4);
+ g2d.fill(border);
+
+ border = new Rectangle2D.Double(3, 3, w - 6, h - 6);
+ gradient1 = new GradientPaint(3, 3, lightBlue , w - 6, h - 6, borderColor);
+ g2d.setPaint(gradient1);
+ g2d.fill(border);
+
+ g2d.setColor(Color.white);
+ g2d.drawLine(3, 6, 3, 11);
+ g2d.drawLine(5, 6, 5, 11);
+ g2d.drawLine(7, 6, 7, 11);
+ g2d.drawLine(9, 6, 9, 11);
+ g2d.drawLine(11, 6, 11, 11);
+
+
+
+
+
+ //Draw orange rectangle
+ border = new Rectangle2D.Double(3, 3, 10, 3);
+ g2d.setColor(Color.white);
+ g2d.fill(border);
+
+ Color c = new Color(activeColor.getRed(), activeColor.getGreen(), activeColor.getBlue(), 100);
+ Color c2 = new Color(activeColor.getRed(), activeColor.getGreen(), activeColor.getBlue(), 200);
+
+ gradient1 = new GradientPaint(12, 4, activeColor, 4, 7, c2);
+ g2d.setPaint(gradient1);
+ g2d.fill(border);
+ //g2d.setColor(activeColor);
+
+ c = new Color(activeColor.getRed(), activeColor.getGreen(), activeColor.getBlue(), 150);
+ c2 = new Color(activeColor.getRed(), activeColor.getGreen(), activeColor.getBlue(), 200);
+ border = new Rectangle2D.Double(4, 4, 8, 1);
+
+ g2d.setColor(Color.white);
+ g2d.fill(border);
+
+ gradient1 = new GradientPaint(4, 4, c, 10, 4, c2);
+ //g2d.setPaint(gradient1);
+ g2d.setColor(c);
+ g2d.fill(border);
+
+ g2d.dispose();
+
+ graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
+ graphics.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BICUBIC);
+ graphics.drawImage(image, 0, 0, dim.width, dim.height, null);
+
+ }
+
+}
Modified: trunk/ui/calendar/src/main/templates/org/richfaces/htmlCalendar.jspx
===================================================================
--- trunk/ui/calendar/src/main/templates/org/richfaces/htmlCalendar.jspx 2007-08-17 13:13:29 UTC (rev 2316)
+++ trunk/ui/calendar/src/main/templates/org/richfaces/htmlCalendar.jspx 2007-08-17 13:18:25 UTC (rev 2317)
@@ -107,7 +107,7 @@
]]>
</jsp:scriptlet>
-
+ <f:resource name="org.richfaces.renderkit.html.iconimages.CalendarIcon" var="icon" />
<span
id="#{clientId}Popup"
> <input
@@ -129,16 +129,17 @@
tabindex="#{component.attributes['tabindex']}"
onclick="#{onclick}">
</input>
- <button id="#{clientId}PopupButton"
+ <input id="#{clientId}PopupButton"
accesskey="#{component.attributes['accesskey']}"
name="#{clientId}"
- onclick="$('#{clientId}').component.doExpand();"
+ onclick="$('#{clientId}').component.doExpand();return false;"
style="#{component.attributes['style']}"
tabindex="#{component.attributes['tabindex']}"
- type="button"
- disabled="#{component.attributes['disabled']}">
- #{component.attributes['buttonLabel']}
- </button>
+ type="image"
+ disabled="#{component.attributes['disabled']}"
+ src="#{icon}">
+
+ </input>
</span>
<jsp:scriptlet>
<![CDATA[
Modified: trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasic.java
===================================================================
--- trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasic.java 2007-08-17 13:13:29 UTC (rev 2316)
+++ trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasic.java 2007-08-17 13:18:25 UTC (rev 2317)
@@ -15,19 +15,19 @@
import org.richfaces.skin.SkinFactory;
public abstract class ScrollableDataTableIconBasic extends Java2Dresource {
+
+ static final Dimension dimension = new Dimension(16, 16);
public ScrollableDataTableIconBasic() {
setRenderer(new GifRenderer());
setLastModified(new Date(InternetResourceBuilder.getInstance().getStartTime()));
}
-
- public abstract Dimension calculateDimensions();
-
+
public Dimension getDimensions(FacesContext facesContext, Object data) {
- return calculateDimensions();
+ return dimension;
}
protected Dimension getDimensions(ResourceContext resourceContext) {
- return calculateDimensions();
+ return dimension;
}
protected Object getDataToStore(FacesContext context, Object data) {
@@ -38,19 +38,15 @@
Color col = null;
- if (data!=null){
- col = HtmlColor.decode(data.toString());
- } else {
- String skinParameter = "headerTextColor";
- String headerTextColor = (String) skin.getParameter(context, skinParameter);
- if (null == headerTextColor || "".equals(headerTextColor))
- headerTextColor = (String) defaultSkin.getParameter(context, skinParameter);
- col = HtmlColor.decode(headerTextColor);
- }
+ String skinParameter = "headerTextColor";
+ String headerTextColor = (String) skin.getParameter(context, skinParameter);
+ if (null == headerTextColor || "".equals(headerTextColor))
+ headerTextColor = (String) defaultSkin.getParameter(context, skinParameter);
+ col = HtmlColor.decode(headerTextColor);
stored[0] = col;
- String skinParameter = "headerBackgroundColor";
+ skinParameter = "headerBackgroundColor";
String headerBackgroundColor = (String) skin.getParameter(context, skinParameter);
if (null == headerBackgroundColor || "".equals(headerBackgroundColor))
headerBackgroundColor = (String) defaultSkin.getParameter(context, skinParameter);
18 years, 8 months
JBoss Rich Faces SVN: r2316 - in trunk/test-applications/jsp/src/main: webapp/Gmap and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-08-17 09:13:29 -0400 (Fri, 17 Aug 2007)
New Revision: 2316
Modified:
trunk/test-applications/jsp/src/main/java/gmap/Gmap.java
trunk/test-applications/jsp/src/main/webapp/Gmap/Gmap.jsp
trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Gmap.xml
Log:
http://jira.jboss.com/jira/browse/RF-613
Modified: trunk/test-applications/jsp/src/main/java/gmap/Gmap.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/gmap/Gmap.java 2007-08-17 13:02:18 UTC (rev 2315)
+++ trunk/test-applications/jsp/src/main/java/gmap/Gmap.java 2007-08-17 13:13:29 UTC (rev 2316)
@@ -3,14 +3,14 @@
public class Gmap {
private String zoom;
- private String continuousZoom;
- private String doubleClickZoom;
- private String dragging;
+ private boolean continuousZoom;
+ private boolean doubleClickZoom;
+ private boolean dragging;
public Gmap() {
- continuousZoom = "false";
- doubleClickZoom = "false";
- dragging = "false";
+ continuousZoom = false;
+ doubleClickZoom = false;
+ dragging = false;
}
public String getZoom() {
@@ -27,27 +27,39 @@
return null;
}
- public String getContinuousZoom() {
+ public boolean isContinuousZoom() {
return continuousZoom;
}
- public void setContinuousZoom(String continuousZoom) {
+ public void setContinuousZoom(boolean continuousZoom) {
this.continuousZoom = continuousZoom;
}
- public String getDoubleClickZoom() {
+ public boolean isDoubleClickZoom() {
return doubleClickZoom;
}
- public void setDoubleClickZoom(String doubleClickZoom) {
+ public void setDoubleClickZoom(boolean doubleClickZoom) {
this.doubleClickZoom = doubleClickZoom;
}
- public String getDragging() {
+ public boolean isDragging() {
return dragging;
}
- public void setDragging(String dragging) {
+ public void setDragging(boolean dragging) {
this.dragging = dragging;
}
+
+ public String getContinuousZoomAsString() {
+ return String.valueOf(continuousZoom);
+ }
+
+ public String getDoubleClickZoomAsString() {
+ return String.valueOf(continuousZoom);
+ }
+
+ public String getDraggingAsString() {
+ return String.valueOf(continuousZoom);
+ }
}
Modified: trunk/test-applications/jsp/src/main/webapp/Gmap/Gmap.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Gmap/Gmap.jsp 2007-08-17 13:02:18 UTC (rev 2315)
+++ trunk/test-applications/jsp/src/main/webapp/Gmap/Gmap.jsp 2007-08-17 13:13:29 UTC (rev 2316)
@@ -12,9 +12,10 @@
<rich:gmap id="gm" lat="37.97" zoom="#{gmap.zoom}" gmapVar="map"
gmapKey="ABQIAAAAxU6W9QEhFLMNdc3ATIu-VxT2yXp_ZAY8_ufC3CFXhHIE1NvwkxRkrpOGzxH8_ud3inE9pG1845-FCA"
style="width:500px;height:400px"
- enableContinuousZoom="#{gmap.continuousZoom}"
- enableDoubleClickZoom="#{gmap.doubleClickZoom}"
- enableDragging="#{gmap.dragging}" />
+ enableContinuousZoom="#{gmap.continuousZoomAsString}"
+ enableDoubleClickZoom="#{gmap.doubleClickZoomAsString}"
+ enableDragging="#{gmap.draggingAsString}"
+ />
<h:panelGroup>
<f:verbatim>
@@ -68,10 +69,10 @@
<a4j:outputPanel id="zoomer">
<script>
- function zoomIt() {
- map.setZoom(#{gmap.zoom});
- }
- </script>
+ function zoomIt() {
+ map.setZoom(</f:verbatim>#{gmap.zoom});
+ }
+ </script>
</a4j:outputPanel>
<a4j:outputPanel>
Modified: trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Gmap.xml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Gmap.xml 2007-08-17 13:02:18 UTC (rev 2315)
+++ trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Gmap.xml 2007-08-17 13:13:29 UTC (rev 2316)
@@ -5,7 +5,7 @@
<managed-bean>
<managed-bean-name>gmap</managed-bean-name>
<managed-bean-class>gmap.Gmap</managed-bean-class>
- <managed-bean-scope>session</managed-bean-scope>
+ <managed-bean-scope>request</managed-bean-scope>
<managed-property>
<property-name>zoom</property-name>
<property-class>java.lang.String</property-class>
18 years, 8 months
JBoss Rich Faces SVN: r2315 - trunk/test-applications/jsp/src/main/webapp/Effect.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-08-17 09:02:18 -0400 (Fri, 17 Aug 2007)
New Revision: 2315
Modified:
trunk/test-applications/jsp/src/main/webapp/Effect/Effect.jsp
Log:
http://jira.jboss.com/jira/browse/RF-620?page=all
add event=""
Modified: trunk/test-applications/jsp/src/main/webapp/Effect/Effect.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Effect/Effect.jsp 2007-08-17 13:02:17 UTC (rev 2314)
+++ trunk/test-applications/jsp/src/main/webapp/Effect/Effect.jsp 2007-08-17 13:02:18 UTC (rev 2315)
@@ -2,6 +2,7 @@
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+
<f:view>
<html>
<head>
@@ -87,13 +88,13 @@
</h:panelGroup>
</h:panelGrid>
- <rich:effect for="panel_1_ID" name="hidePanel1" type="Fade"
+ <rich:effect for="panel_1_ID" event="" name="hidePanel1" type="Fade"
params="duration:#{effect.time}" />
- <rich:effect for="panel_1_ID" name="showPanel1" type="Appear" />
+ <rich:effect for="panel_1_ID" event="" name="showPanel1" type="Appear" />
- <rich:effect for="asusID" name="hideImage1" type="Fade"
+ <rich:effect for="asusID" event="" name="hideImage1" type="Fade"
params="duration:#{effect.time}" />
- <rich:effect for="asusID" name="showImage1" type="Appear" />
+ <rich:effect for="asusID" event="" name="showImage1" type="Appear" />
<f:verbatim>
<br />
@@ -184,28 +185,27 @@
</h:form>
- <rich:effect for="indexID" name="hideIndexID" type="BlindUp" />
- <rich:effect for="indexID" name="showIndexID" type="BlindDown" />
+ <rich:effect for="indexID" event="" name="hideIndexID" type="BlindUp" />
+ <rich:effect for="indexID" event="" name="showIndexID" type="BlindDown" />
- <rich:effect for="frm1" name="hideFrm1" type="Fade" />
- <rich:effect for="frm1" name="showFrm1" type="Appear" />
+ <rich:effect for="frm1" event="" name="hideFrm1" type="Fade" />
+ <rich:effect for="frm1" event="" name="showFrm1" type="Appear" />
- <rich:effect for="frm2" name="hideFrm2" type="Fade" />
- <rich:effect for="frm2" name="showFrm2" type="Appear" />
+ <rich:effect for="frm2" event="" name="hideFrm2" type="Fade" />
+ <rich:effect for="frm2" event="" name="showFrm2" type="Appear" />
- <rich:effect for="frm3" name="hideFrm3" type="Fade" />
- <rich:effect for="frm3" name="showFrm3" type="Appear" />
+ <rich:effect for="frm3" event="" name="hideFrm3" type="Fade" />
+ <rich:effect for="frm3" event="" name="showFrm3" type="Appear" />
+
+ <rich:effect for="frm4" event="" name="hideFrm4" type="Fade" />
+ <rich:effect for="frm4" event="" name="showFrm4" type="Appear" />
- <rich:effect for="frm4" name="hideFrm4" type="Fade" />
- <rich:effect for="frm4" name="showFrm4" type="Appear" />
+ <rich:effect for="backFrmID" event="" name="hideBackFrm" type="Fade" />
+ <rich:effect for="backFrmID" event="" name="showBackFrm" type="Appear" />
- <rich:effect for="backFrmID" name="hideBackFrm" type="Fade" />
- <rich:effect for="backFrmID" name="showBackFrm" type="Appear" />
-
<h:form id="backFrmID">
<h:commandLink value="Back" action="main"></h:commandLink>
-
</h:form>
- </body>
- </html>
+</body>
+</html>
</f:view>
18 years, 8 months
JBoss Rich Faces SVN: r2314 - trunk/docs/userguide.
by richfaces-svn-commits@lists.jboss.org
Author: vkorluzhenko
Date: 2007-08-17 09:02:17 -0400 (Fri, 17 Aug 2007)
New Revision: 2314
Modified:
trunk/docs/userguide/pom.xml
Log:
http://jira.jboss.com/jira/browse/RF-589
Modified: trunk/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2007-08-17 12:50:36 UTC (rev 2313)
+++ trunk/docs/userguide/pom.xml 2007-08-17 13:02:17 UTC (rev 2314)
@@ -67,16 +67,6 @@
<groupId>
org.richfaces.ui
</groupId>
- <artifactId>tooltip</artifactId>
- <version>
- 3.1.0-SNAPSHOT
- </version>
- </artifactItem>
-
- <artifactItem>
- <groupId>
- org.richfaces.ui
- </groupId>
<artifactId>
dataFilterSlider
</artifactId>
@@ -170,11 +160,24 @@
3.1.0-SNAPSHOT
</version>
</artifactItem>
+
<artifactItem>
<groupId>
org.richfaces.ui
</groupId>
<artifactId>
+ insert
+ </artifactId>
+ <version>
+ 3.1.0-SNAPSHOT
+ </version>
+ </artifactItem>
+
+ <artifactItem>
+ <groupId>
+ org.richfaces.ui
+ </groupId>
+ <artifactId>
menu-components
</artifactId>
<version>
@@ -318,13 +321,20 @@
<groupId>
org.richfaces.ui
</groupId>
+ <artifactId>tooltip</artifactId>
+ <version>
+ 3.1.0-SNAPSHOT
+ </version>
+ </artifactItem>
+ <artifactItem>
+ <groupId>
+ org.richfaces.ui
+ </groupId>
<artifactId>tree</artifactId>
<version>
3.1.0-SNAPSHOT
</version>
</artifactItem>
-
-
<artifactItem>
<groupId>
org.richfaces.docs.xslt
18 years, 8 months
JBoss Rich Faces SVN: r2313 - trunk.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-08-17 08:50:36 -0400 (Fri, 17 Aug 2007)
New Revision: 2313
Modified:
trunk/pom.xml
Log:
eclipse-custom-templates profile added
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2007-08-17 12:40:50 UTC (rev 2312)
+++ trunk/pom.xml 2007-08-17 12:50:36 UTC (rev 2313)
@@ -128,6 +128,30 @@
<module>sandbox</module>
</modules>
</profile>
+ <profile>
+ <id>eclipse-custom-templates</id>
+<build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <groupId>org.apache.maven.plugins</groupId>
+ <configuration>
+ <additionalConfig>
+ <file>
+ <name>.settings/org.eclipse.jdt.ui.prefs</name>
+ <content>
+ <![CDATA[
+ eclipse.preferences.version=1
+ org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
+ ]]>
+ </content>
+ </file>
+ </additionalConfig>
+ </configuration>
+ </plugin>
+ </plugins>
+</build>
+ </profile>
<profile>
<id>clover</id>
<build>
@@ -173,25 +197,4 @@
</reporting>
</profile>
</profiles>
-<build>
- <plugins>
- <plugin>
- <artifactId>maven-eclipse-plugin</artifactId>
- <groupId>org.apache.maven.plugins</groupId>
- <configuration>
- <additionalConfig>
- <file>
- <name>.settings/org.eclipse.jdt.ui.prefs</name>
- <content>
- <![CDATA[
- eclipse.preferences.version=1
- org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
- ]]>
- </content>
- </file>
- </additionalConfig>
- </configuration>
- </plugin>
- </plugins>
-</build>
</project>
\ No newline at end of file
18 years, 8 months
JBoss Rich Faces SVN: r2312 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: vkukharchuk
Date: 2007-08-17 08:40:50 -0400 (Fri, 17 Aug 2007)
New Revision: 2312
Modified:
trunk/docs/userguide/en/src/main/docbook/included/tooltip.xml
Log:
http://jira.jboss.com/jira/browse/RF-502
Modified: trunk/docs/userguide/en/src/main/docbook/included/tooltip.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tooltip.xml 2007-08-17 11:40:53 UTC (rev 2311)
+++ trunk/docs/userguide/en/src/main/docbook/included/tooltip.xml 2007-08-17 12:40:50 UTC (rev 2312)
@@ -131,6 +131,12 @@
"delay" attribute (default=0) or after calling JS API function doShow(). <property>Tooltip</property> deactivation occurs after mouseout event
on the parent component (except mouse hovered the <property>tooltip</property> itself) or after calling JS API function doHide().
</para>
+
+<note>
+<title>Note:</title>
+It is recommended to define parent component "id" for correct <property>tooltip</property> work.
+</note>
+
<para>
The "mode" attribute is provided to developer to control the way of data loading to <property>tooltip</property> and has following values:
<itemizedlist>
18 years, 8 months
JBoss Rich Faces SVN: r2311 - trunk/ui/panelmenu/src/main/resources/org/richfaces/renderkit/html/css.
by richfaces-svn-commits@lists.jboss.org
Author: dbiatenia
Date: 2007-08-17 07:40:53 -0400 (Fri, 17 Aug 2007)
New Revision: 2311
Modified:
trunk/ui/panelmenu/src/main/resources/org/richfaces/renderkit/html/css/panelMenu.xcss
Log:
BUG #RF-608
Modified: trunk/ui/panelmenu/src/main/resources/org/richfaces/renderkit/html/css/panelMenu.xcss
===================================================================
--- trunk/ui/panelmenu/src/main/resources/org/richfaces/renderkit/html/css/panelMenu.xcss 2007-08-17 11:17:38 UTC (rev 2310)
+++ trunk/ui/panelmenu/src/main/resources/org/richfaces/renderkit/html/css/panelMenu.xcss 2007-08-17 11:40:53 UTC (rev 2311)
@@ -72,7 +72,7 @@
</u:selector>
<u:selector name=".dr-pmenu-disabled-element" >
- <u:style name="color" skin="panelBorderColor"/>
+ <u:style name="color" skin="tabDisabledTextColor"/>
</u:selector>
<u:selector name=".dr-pmenu-hovered-element" >
18 years, 8 months
JBoss Rich Faces SVN: r2310 - trunk/test-applications/jsp/src/main/webapp/WEB-INF.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-08-17 07:17:38 -0400 (Fri, 17 Aug 2007)
New Revision: 2310
Added:
trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Effect.xml
Log:
added new component Effect
Added: trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Effect.xml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Effect.xml (rev 0)
+++ trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Effect.xml 2007-08-17 11:17:38 UTC (rev 2310)
@@ -0,0 +1,10 @@
+<?xml version="1.0"?>
+<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
+ "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
+<faces-config>
+ <managed-bean>
+ <managed-bean-name>effect</managed-bean-name>
+ <managed-bean-class>effect.Effect</managed-bean-class>
+ <managed-bean-scope>session</managed-bean-scope>
+ </managed-bean>
+</faces-config>
18 years, 8 months
JBoss Rich Faces SVN: r2309 - in trunk/test-applications/jsp/src/main: java/effect and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-08-17 07:17:06 -0400 (Fri, 17 Aug 2007)
New Revision: 2309
Added:
trunk/test-applications/jsp/src/main/java/effect/
trunk/test-applications/jsp/src/main/java/effect/Effect.java
trunk/test-applications/jsp/src/main/webapp/Effect/
trunk/test-applications/jsp/src/main/webapp/Effect/Effect.jsp
Log:
added new component Effect
Added: trunk/test-applications/jsp/src/main/java/effect/Effect.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/effect/Effect.java (rev 0)
+++ trunk/test-applications/jsp/src/main/java/effect/Effect.java 2007-08-17 11:17:06 UTC (rev 2309)
@@ -0,0 +1,38 @@
+package effect;
+
+public class Effect {
+ private double time;
+ private String stateName;
+ private boolean state;
+
+ public Effect() {
+ time = 1.4;
+ state = true;
+ stateName = "buttonID";
+ }
+
+ public double getTime() {
+ return time;
+ }
+
+ public void setTime(double time) {
+ this.time = time;
+ }
+
+ public String getStateName() {
+ return stateName;
+ }
+
+ public void setStateName(String stateName) {
+ this.stateName = stateName;
+ }
+
+ public boolean isState() {
+ return state;
+ }
+
+ public void setState(boolean state) {
+ this.state = state;
+ }
+}
+
Added: trunk/test-applications/jsp/src/main/webapp/Effect/Effect.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Effect/Effect.jsp (rev 0)
+++ trunk/test-applications/jsp/src/main/webapp/Effect/Effect.jsp 2007-08-17 11:17:06 UTC (rev 2309)
@@ -0,0 +1,211 @@
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
+<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<f:view>
+ <html>
+ <head>
+ <title></title>
+ </head>
+ <body onload="hideFrm1(),hideFrm2(),hideFrm3(),hideFrm4()">
+ <h:messages />
+ <h:form id="indexID">
+ <h:outputText value="Menu:" />
+ <h:panelGrid columns="2">
+ <h:outputText value="1." />
+ <f:verbatim>
+ <span onclick="showFrm1(),hideIndexID()"><font color="blue">JSF Components</font></span>
+ </f:verbatim>
+
+ <h:outputText value="2." />
+ <f:verbatim>
+ <span onclick="showFrm2(),hideIndexID()"><font color="blue">JSF Component with Event and non-jsf target</font></span>
+ </f:verbatim>
+
+ <h:outputText value="3." />
+ <f:verbatim>
+ <span onclick="showFrm3(),hideIndexID()"><font color="blue">JSF Component with Event and jsf target</font></span>
+ </f:verbatim>
+
+ <h:outputText value="4." />
+ <f:verbatim>
+ <span onclick="showFrm4(),hideIndexID()"><font color="blue">JSF Component with Event.</font></span>
+ </f:verbatim>
+ </h:panelGrid>
+ </h:form>
+
+ <h:form id="frm1">
+ <h:outputText value="JSF Components:" />
+
+ <h:panelGrid id="panGrID" columns="2">
+ <h:outputText value="Time:" />
+ <h:inputText value="#{effect.time}" />
+
+ <f:verbatim>
+ <span onclick="hidePanel1(), hedeImage1()"><font
+ color="blue">Hide</font> </span>
+ </f:verbatim>
+ <h:graphicImage value="/pics/fatal.gif"
+ onclick="hidePanel1(), hedeImage1()" />
+
+ <f:verbatim>
+ <span onclick="showPanel1(), showImage1()"><font
+ color="blue">Show</font> </span>
+ </f:verbatim>
+ <h:graphicImage value="/pics/warn.gif"
+ onclick="showPanel1(), showImage1()" />
+
+
+ <h:outputText value="Event (onclick):" />
+
+ <f:verbatim></f:verbatim>
+
+ <h:outputText value="No" />
+ <h:outputText value="Yes" />
+
+ <h:panelGroup id="form_1a_ID">
+ <h:panelGrid id="panel_1_ID" border="1"
+ style="background-color:#CCC">
+ <f:facet name="header">
+ <h:outputText value="Panel Header" />
+ </f:facet>
+
+ <h:outputText value="Panel Content" />
+ </h:panelGrid>
+ </h:panelGroup>
+
+ <h:graphicImage id="asusID" value="/pics/asus.jpg" height="100px"
+ width="125px" onclick="hideImage1()" />
+
+ <h:panelGroup id="form_1b_ID">
+ <h:inputText value="onmouse and onclick">
+ <rich:effect event="onclick" type="Opacity"
+ params="duration:0.5,from:0.4,to:1.0" />
+ <rich:effect event="onmouseout" type="Opacity"
+ params="duration:0.5,from:1.0,to:0.4" />
+ </h:inputText>
+ </h:panelGroup>
+ </h:panelGrid>
+
+ <rich:effect for="panel_1_ID" name="hidePanel1" type="Fade"
+ params="duration:#{effect.time}" />
+ <rich:effect for="panel_1_ID" name="showPanel1" type="Appear" />
+
+ <rich:effect for="asusID" name="hideImage1" type="Fade"
+ params="duration:#{effect.time}" />
+ <rich:effect for="asusID" name="showImage1" type="Appear" />
+
+ <f:verbatim>
+ <br />
+ <span onclick="hideFrm1(),showIndexID()"><font color="blue">Close</font></span>
+ </f:verbatim>
+ </h:form>
+
+ <h:form id="frm2">
+ <h:outputText
+ value="JSF Component with Event and non-jsf target (onclick, onmouseout)" />
+
+ <h:panelGrid columns="2">
+ <h:graphicImage id="imageID" value="/pics/podb109_61.jpg"
+ width="100" height="50">
+ <rich:effect event="onclick" targetId="divID" type="Opacity"
+ params="duration:0.5,from:0.4,to:1.0" />
+ <rich:effect event="onmouseout" type="Opacity"
+ params="targetId:'divID',duration:0.5,from:1.0,to:0.4" />
+ </h:graphicImage>
+
+ <f:verbatim>
+ <div id="divID"
+ style="width: 100px; height: 50px; background-color: red"><rich:effect
+ event="onclick" targetId="imageID" type="Opacity"
+ params="duration:0.5,from:0.4,to:1.0" /> <rich:effect
+ event="onmouseout" type="Opacity"
+ params="targetId:'imageID',duration:0.5,from:1.0,to:0.4" /></div>
+ </f:verbatim>
+ </h:panelGrid>
+
+ <f:verbatim>
+ <br />
+ <span onclick="hideFrm2(),showIndexID()"><font color="blue">Close</font></span>
+ </f:verbatim>
+ </h:form>
+
+ <h:form id="frm3">
+ <h:outputText
+ value="JSF Component with Event and jsf target (onclick, onmouseout)" />
+
+ <h:panelGrid id="gridID" border="1" style="background-color:green">
+ <h:outputText value="Panel Content" />
+ <rich:effect event="onclick" targetId="imgID" type="Opacity"
+ params="duration:0.5,from:0.4,to:1.0" />
+ <rich:effect event="onmouseout" targetId="imgID" type="Opacity"
+ params="duration:0.5,from:1.0,to:0.4" />
+ </h:panelGrid>
+
+ <h:graphicImage id="imgID" value="/pics/podb109_61.jpg" width="93"
+ height="30px">
+ <rich:effect event="onmouseout" targetId="gridID" type="Opacity"
+ params="duration:0.5,from:0.4,to:1.0" />
+ <rich:effect event="onclick" targetId="gridID" type="Opacity"
+ params="duration:0.5,from:1.0,to:0.4" />
+ </h:graphicImage>
+
+ <f:verbatim>
+ <br />
+ <span onclick="hideFrm3(),showIndexID()"><font color="blue">Close</font></span>
+ </f:verbatim>
+ </h:form>
+
+ <h:form id="frm4">
+ <h:graphicImage id="img_1_ID" value="/pics/asus.jpg" width="200px"
+ height="150px" />
+ <f:verbatim>
+ <br />
+ </f:verbatim>
+ <h:graphicImage id="img_2_ID" value="/pics/benq.jpg" width="200px"
+ height="150px" />
+ <f:verbatim>
+ <br />
+ </f:verbatim>
+ <h:graphicImage id="img_3_ID" value="/pics/toshiba.jpg" width="200px"
+ height="150px" />
+
+ <rich:effect event="onclick" for="img_1_ID" targetId="img_2_ID"
+ type="BlindDown" params="duration:0.8" />
+ <rich:effect event="onclick" for="img_2_ID" targetId="img_1_ID"
+ type="BlindUp" params="duration:0.8" />
+ <rich:effect event="onclick" for="img_3_ID" targetId="img_1_ID"
+ type="Appear" params="duration:0.8" />
+
+ <f:verbatim>
+ <br />
+ <span onclick="hideFrm4(),showIndexID()"><font color="blue">Close</font></span>
+ </f:verbatim>
+ </h:form>
+
+
+ <rich:effect for="indexID" name="hideIndexID" type="BlindUp" />
+ <rich:effect for="indexID" name="showIndexID" type="BlindDown" />
+
+ <rich:effect for="frm1" name="hideFrm1" type="Fade" />
+ <rich:effect for="frm1" name="showFrm1" type="Appear" />
+
+ <rich:effect for="frm2" name="hideFrm2" type="Fade" />
+ <rich:effect for="frm2" name="showFrm2" type="Appear" />
+
+ <rich:effect for="frm3" name="hideFrm3" type="Fade" />
+ <rich:effect for="frm3" name="showFrm3" type="Appear" />
+
+ <rich:effect for="frm4" name="hideFrm4" type="Fade" />
+ <rich:effect for="frm4" name="showFrm4" type="Appear" />
+
+ <rich:effect for="backFrmID" name="hideBackFrm" type="Fade" />
+ <rich:effect for="backFrmID" name="showBackFrm" type="Appear" />
+
+ <h:form id="backFrmID">
+ <h:commandLink value="Back" action="main"></h:commandLink>
+
+ </h:form>
+ </body>
+ </html>
+</f:view>
18 years, 8 months
JBoss Rich Faces SVN: r2308 - in trunk/test-applications/jsp/src/main/webapp: pages and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-08-17 07:15:54 -0400 (Fri, 17 Aug 2007)
New Revision: 2308
Modified:
trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config.xml
trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml
trunk/test-applications/jsp/src/main/webapp/pages/main.jsp
Log:
added new component Effect
Modified: trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config.xml 2007-08-17 11:10:57 UTC (rev 2307)
+++ trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config.xml 2007-08-17 11:15:54 UTC (rev 2308)
@@ -104,6 +104,10 @@
<from-outcome>VirtualEarth</from-outcome>
<to-view-id>/VirtualEarth/VirtualEarth.jsp</to-view-id>
</navigation-case>
+ <navigation-case>
+ <from-outcome>Effect</from-outcome>
+ <to-view-id>/Effect/Effect.jsp</to-view-id>
+ </navigation-case>
</navigation-rule>
<navigation-rule>
<from-view-id>*</from-view-id>
Modified: trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml 2007-08-17 11:10:57 UTC (rev 2307)
+++ trunk/test-applications/jsp/src/main/webapp/WEB-INF/web.xml 2007-08-17 11:15:54 UTC (rev 2308)
@@ -12,7 +12,7 @@
</context-param>
<context-param>
<param-name>javax.faces.CONFIG_FILES</param-name>
- <param-value>/WEB-INF/faces-config-Panel.xml,/WEB-INF/faces-config-PanelBar.xml,/WEB-INF/faces-config-TabPanel.xml,/WEB-INF/faces-config-TogglePanel.xml,/WEB-INF/faces-config-Paint2D.xml,/WEB-INF/faces-config-InputNumberSlider.xml,/WEB-INF/faces-config-InputNumberSpinner.xml,/WEB-INF/faces-config-DDMenu.xml,/WEB-INF/faces-config-Tree.xml,/WEB-INF/faces-config-PanelMenu.xml,/WEB-INF/faces-config-Icon.xml,/WEB-INF/faces-config-tooltip.xml,/WEB-INF/faces-config-Skin.xml,/WEB-INF/faces-config-Calendar.xml,/WEB-INF/faces-config-Gmap.xml,/WEB-INF/faces-config-Separator.xml,/WEB-INF/faces-config-Spacer.xml,/WEB-INF/faces-config-SimpleTogglePanel.xml,/WEB-INF/faces-config-ToolBar.xml,/WEB-INF/faces-config-ModalPanel.xml,/WEB-INF/faces-config-SuggestionBox.xml,/WEB-INF/faces-config-DragAndDrop.xml,/WEB-INF/faces-config-DataScroller.xml,/WEB-INF/faces-config-DataTable.xml,/WEB-INF/faces-config-DataFilterSlider.xml,/WEB-INF/faces-config-VirtualEarth.xml,/WEB-INF/faces-config-Message!
.xml</param-value>
+ <param-value>/WEB-INF/faces-config-Panel.xml,/WEB-INF/faces-config-PanelBar.xml,/WEB-INF/faces-config-TabPanel.xml,/WEB-INF/faces-config-TogglePanel.xml,/WEB-INF/faces-config-Paint2D.xml,/WEB-INF/faces-config-InputNumberSlider.xml,/WEB-INF/faces-config-InputNumberSpinner.xml,/WEB-INF/faces-config-DDMenu.xml,/WEB-INF/faces-config-Tree.xml,/WEB-INF/faces-config-PanelMenu.xml,/WEB-INF/faces-config-Icon.xml,/WEB-INF/faces-config-tooltip.xml,/WEB-INF/faces-config-Skin.xml,/WEB-INF/faces-config-Calendar.xml,/WEB-INF/faces-config-Gmap.xml,/WEB-INF/faces-config-Separator.xml,/WEB-INF/faces-config-Spacer.xml,/WEB-INF/faces-config-SimpleTogglePanel.xml,/WEB-INF/faces-config-ToolBar.xml,/WEB-INF/faces-config-ModalPanel.xml,/WEB-INF/faces-config-SuggestionBox.xml,/WEB-INF/faces-config-DragAndDrop.xml,/WEB-INF/faces-config-DataScroller.xml,/WEB-INF/faces-config-DataTable.xml,/WEB-INF/faces-config-DataFilterSlider.xml,/WEB-INF/faces-config-VirtualEarth.xml,/WEB-INF/faces-config-Message!
.xml,/WEB-INF/faces-config-Effect.xml</param-value>
</context-param>
<filter>
<display-name>Ajax4jsf Filter</display-name>
Modified: trunk/test-applications/jsp/src/main/webapp/pages/main.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/pages/main.jsp 2007-08-17 11:10:57 UTC (rev 2307)
+++ trunk/test-applications/jsp/src/main/webapp/pages/main.jsp 2007-08-17 11:15:54 UTC (rev 2308)
@@ -1,6 +1,6 @@
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
-<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<%@ taglib uri="http://richfaces.ajax4jsf.org/rich" prefix="rich"%>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<html>
<head>
@@ -44,6 +44,7 @@
<h:commandLink value="Tooltip" action="Tooltip"></h:commandLink>
<h:commandLink value="Calendar" action="Calendar"></h:commandLink>
<h:commandLink value="Message" action="Message"></h:commandLink>
+ <h:commandLink value="Effect" action="Effect"></h:commandLink>
</h:panelGrid>
</rich:panel>
</h:form>
18 years, 8 months