JBoss Rich Faces SVN: r23118 - in modules/tests/metamer/trunk/application/src/main: java/org/richfaces/tests/metamer/bean/rich and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2011-12-20 08:42:18 -0500 (Tue, 20 Dec 2011)
New Revision: 23118
Added:
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/rich/RichHotKeyBean.java
modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/
modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/editor.xhtml
modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/list.xhtml
modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/orderingList.xhtml
modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/pickList.xhtml
modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/simple.xhtml
Modified:
modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java
Log:
RFPL-1956 rich:hotKey samples created
Modified: modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java
===================================================================
--- modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java 2011-12-20 13:25:14 UTC (rev 23117)
+++ modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/RichBean.java 2011-12-20 13:42:18 UTC (rev 23118)
@@ -145,6 +145,7 @@
richComponents.put("richFunctions", "Rich Functions");
richComponents.put("richGraphValidator", "Rich Graph Validator");
richComponents.put("richHashParam", "Rich Hash Parameter");
+ richComponents.put("richHotKey", "Rich Hot Key");
richComponents.put("richInplaceInput", "Rich Inplace Input");
richComponents.put("richInplaceSelect", "Rich Inplace Select");
richComponents.put("richInputNumberSlider", "Rich Input Number Slider");
Added: modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/rich/RichHotKeyBean.java
===================================================================
--- modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/rich/RichHotKeyBean.java (rev 0)
+++ modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/rich/RichHotKeyBean.java 2011-12-20 13:42:18 UTC (rev 23118)
@@ -0,0 +1,87 @@
+/*******************************************************************************
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010-2011, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software 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 software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ *******************************************************************************/
+package org.richfaces.tests.metamer.bean.rich;
+
+import java.io.Serializable;
+
+import javax.annotation.PostConstruct;
+import javax.faces.bean.ManagedBean;
+import javax.faces.bean.ViewScoped;
+
+import org.richfaces.component.UIHotKey;
+import org.richfaces.tests.metamer.Attributes;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * Managed bean for rich:hotKey.
+ *
+ * @author <a href="mailto:ppitonak@redhat.com">Pavol Pitonak</a>
+ * @version $Revision$
+ */
+@ManagedBean(name = "richHotKeyBean")
+@ViewScoped
+public class RichHotKeyBean implements Serializable {
+
+ private static final long serialVersionUID = -1L;
+ private static Logger logger;
+ private Attributes attributes;
+ private Attributes attributes2;
+
+ /**
+ * Initializes the managed bean.
+ */
+ @PostConstruct
+ public void init() {
+ logger = LoggerFactory.getLogger(getClass());
+ logger.debug("initializing bean " + getClass().getName());
+
+ attributes = Attributes.getComponentAttributesFromFacesConfig(UIHotKey.class, getClass());
+ attributes2 = Attributes.getComponentAttributesFromFacesConfig(UIHotKey.class, getClass());
+
+ attributes.setAttribute("enabledInInput", true);
+ attributes.setAttribute("key", "ctrl+x");
+ attributes.setAttribute("rendered", true);
+ attributes.remove("onpress");
+
+ attributes2.setAttribute("enabledInInput", true);
+ attributes2.setAttribute("key", "alt+x");
+ attributes2.setAttribute("rendered", true);
+ attributes2.remove("onpress");
+ }
+
+ public Attributes getAttributes() {
+ return attributes;
+ }
+
+ public void setAttributes(Attributes attributes) {
+ this.attributes = attributes;
+ }
+
+ public Attributes getAttributes2() {
+ return attributes2;
+ }
+
+ public void setAttributes2(Attributes attributes) {
+ this.attributes2 = attributes;
+ }
+}
Property changes on: modules/tests/metamer/trunk/application/src/main/java/org/richfaces/tests/metamer/bean/rich/RichHotKeyBean.java
___________________________________________________________________
Added: svn:keywords
+ Revision
Added: modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/editor.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/editor.xhtml (rev 0)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/editor.xhtml 2011-12-20 13:42:18 UTC (rev 23118)
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
+ xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
+
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010-2011, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software 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 software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<ui:composition template="/templates/template.xhtml">
+
+ <ui:define name="view">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="component">
+
+ <rich:editor id="editor" />
+
+ <rich:hotKey id="richHotKey1" enabledInInput="#{richHotKeyBean.attributes['enabledInInput'].value}"
+ key="#{richHotKeyBean.attributes['key'].value}" onpress="#{rich:component('editor')}.focus()"
+ rendered="#{richHotKeyBean.attributes['rendered'].value}" selector="#{richHotKeyBean.attributes['selector'].value}"
+ type="#{richHotKeyBean.attributes['type'].value}" />
+
+ <rich:hotKey id="richHotKey2" enabledInInput="#{richHotKeyBean.attributes2['enabledInInput'].value}"
+ key="#{richHotKeyBean.attributes2['key'].value}" onpress="#{rich:component('editor')}.blur()"
+ rendered="#{richHotKeyBean.attributes2['rendered'].value}"
+ selector="#{richHotKeyBean.attributes2['selector'].value}" type="#{richHotKeyBean.attributes2['type'].value}" />
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <fieldset>
+ <legend>Hot key that calls editor's focus() function</legend>
+ <metamer:attributes value="#{richHotKeyBean.attributes}" id="attributes" />
+ </fieldset>
+
+ <br />
+
+ <fieldset>
+ <legend>Hot key that calls editor's blur() function</legend>
+ <metamer:attributes value="#{richHotKeyBean.attributes2}" id="attributes2" />
+ </fieldset>
+ </ui:define>
+
+</ui:composition>
+</html>
\ No newline at end of file
Added: modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/list.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/list.xhtml (rev 0)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/list.xhtml 2011-12-20 13:42:18 UTC (rev 23118)
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:metamer="http://java.sun.com/jsf/composite/metamer">
+
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010-2011, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software 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 software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<ui:composition template="/templates/list.xhtml">
+
+ <ui:define name="pageTitle">Rich Hot Key</ui:define>
+
+ <ui:define name="links">
+
+ <metamer:testPageLink id="simple" outcome="simple" value="Simple">
+ Simple page containing two <b>rich:hotKey</b>s and input boxes for all their attributes.
+ </metamer:testPageLink>
+
+ <metamer:testPageLink id="editor" outcome="editor" value="Editor">
+ Simple page containing rich:editor with two <b>rich:hotKey</b>s and input boxes for all their attributes.
+ </metamer:testPageLink>
+
+ <metamer:testPageLink id="pickList" outcome="pickList" value="Pick List">
+ Simple page containing rich:pickList with two <b>rich:hotKey</b>s and input boxes for all their attributes.
+ </metamer:testPageLink>
+
+ <metamer:testPageLink id="orderingList" outcome="orderingList" value="Ordering List">
+ Simple page containing rich:orderingList with two <b>rich:hotKey</b>s and input boxes for all their attributes.
+ </metamer:testPageLink>
+
+ </ui:define>
+
+</ui:composition>
+
+</html>
Added: modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/orderingList.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/orderingList.xhtml (rev 0)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/orderingList.xhtml 2011-12-20 13:42:18 UTC (rev 23118)
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
+ xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
+
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010-2011, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software 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 software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<ui:composition template="/templates/template.xhtml">
+
+ <ui:define name="view">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="component">
+
+ <rich:orderingList id="orderingList" listHeight="#{richOrderingListBean.attributes['listHeight'].value}"
+ listWidth="#{richOrderingListBean.attributes['listWidth'].value}" value="#{richOrderingListBean.capitals}"
+ var="capital">
+
+ <f:converter converterId="capitalConverter" />
+
+ <rich:column>
+ <f:facet name="header">State</f:facet>
+ #{capital.state}
+ </rich:column>
+ <rich:column>
+ <f:facet name="header">Name</f:facet>
+ #{capital.name}
+ </rich:column>
+
+ </rich:orderingList>
+
+ <rich:hotKey id="richHotKey1" enabledInInput="#{richHotKeyBean.attributes['enabledInInput'].value}"
+ key="#{richHotKeyBean.attributes['key'].value}" onpress="#{rich:component('orderingList')}.upTop()"
+ rendered="#{richHotKeyBean.attributes['rendered'].value}" selector="#{richHotKeyBean.attributes['selector'].value}"
+ type="#{richHotKeyBean.attributes['type'].value}" />
+
+ <rich:hotKey id="richHotKey2" enabledInInput="#{richHotKeyBean.attributes2['enabledInInput'].value}"
+ key="#{richHotKeyBean.attributes2['key'].value}" onpress="#{rich:component('orderingList')}.downBottom()"
+ rendered="#{richHotKeyBean.attributes2['rendered'].value}"
+ selector="#{richHotKeyBean.attributes2['selector'].value}" type="#{richHotKeyBean.attributes2['type'].value}" />
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <fieldset>
+ <legend>>Hot key that calls ordering list's upTop() function</legend>
+ <metamer:attributes value="#{richHotKeyBean.attributes}" id="attributes1" />
+ </fieldset>
+
+ <br />
+
+ <fieldset>
+ <legend>>Hot key that calls ordering list's downBottom() function</legend>
+ <metamer:attributes value="#{richHotKeyBean.attributes2}" id="attributes2" />
+ </fieldset>
+ </ui:define>
+
+ <!-- we don't want two logs on the page -->
+ <ui:define name="beforeFooter"></ui:define>
+
+</ui:composition>
+</html>
Added: modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/pickList.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/pickList.xhtml (rev 0)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/pickList.xhtml 2011-12-20 13:42:18 UTC (rev 23118)
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
+ xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
+
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010-2011, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software 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 software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<ui:composition template="/templates/template.xhtml">
+
+ <ui:define name="view">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="component">
+
+ <rich:pickList id="pickList" listHeight="250px" value="#{richPickListBean.value}" var="tmp">
+
+ <f:selectItems value="#{richPickListBean.capitals}" />
+
+ <h:column id="columnFlag">
+ <h:graphicImage name="#{tmp.stateFlag}" />
+ </h:column>
+
+ <h:column id="columnCapital">
+ <f:facet name="header">
+ <h:outputText id="columnHeaderCapital" value="Capital Header" />
+ </f:facet>
+ <h:outputText value="#{tmp.name}" />
+ </h:column>
+
+ <h:column id="columnState">
+ <f:facet name="header">
+ <h:outputText id="columnHeaderState" value="State Header" />
+ </f:facet>
+ <h:outputText value="#{tmp.state}" />
+ </h:column>
+
+ </rich:pickList>
+
+ <rich:hotKey id="richHotKey1" enabledInInput="#{richHotKeyBean.attributes['enabledInInput'].value}"
+ key="#{richHotKeyBean.attributes['key'].value}" onpress="#{rich:component('pickList')}.add()"
+ rendered="#{richHotKeyBean.attributes['rendered'].value}" selector="#{richHotKeyBean.attributes['selector'].value}"
+ type="#{richHotKeyBean.attributes['type'].value}" />
+
+ <rich:hotKey id="richHotKey2" enabledInInput="#{richHotKeyBean.attributes2['enabledInInput'].value}"
+ key="#{richHotKeyBean.attributes2['key'].value}" onpress="#{rich:component('pickList')}.remove()"
+ rendered="#{richHotKeyBean.attributes2['rendered'].value}"
+ selector="#{richHotKeyBean.attributes2['selector'].value}" type="#{richHotKeyBean.attributes2['type'].value}" />
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <fieldset>
+ <legend>Hot key that calls pick list's add() function</legend>
+ <metamer:attributes value="#{richHotKeyBean.attributes}" id="attributes" />
+ </fieldset>
+
+ <br />
+
+ <fieldset>
+ <legend>Hot key that calls pick list's remove() function</legend>
+ <metamer:attributes value="#{richHotKeyBean.attributes2}" id="attributes2" />
+ </fieldset>
+ </ui:define>
+
+</ui:composition>
+</html>
+
+
Added: modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/simple.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/simple.xhtml (rev 0)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richHotKey/simple.xhtml 2011-12-20 13:42:18 UTC (rev 23118)
@@ -0,0 +1,80 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:metamer="http://java.sun.com/jsf/composite/metamer"
+ xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j">
+
+<!--
+JBoss, Home of Professional Open Source
+Copyright 2010-2011, Red Hat, Inc. and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software 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 software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<ui:composition template="/templates/template.xhtml">
+
+ <ui:define name="view">
+ <f:metadata>
+ <f:viewParam name="templates" value="#{templateBean.templates}">
+ <f:converter converterId="templatesListConverter" />
+ </f:viewParam>
+ </f:metadata>
+ </ui:define>
+
+ <ui:define name="component">
+
+ <a4j:log id="log" style="height: 200px;" />
+
+ <a4j:outputPanel id="panel" layout="block">
+
+ <h:inputText id="firstInput" styleClass="first-input" value="first input" />
+ <h:inputText id="secondInput" styleClass="second-input" value="second input" />
+
+ <rich:hotKey id="richHotKey1" enabledInInput="#{richHotKeyBean.attributes['enabledInInput'].value}"
+ key="#{richHotKeyBean.attributes['key'].value}" onpress="RichFaces.log.info('hotkey 1')"
+ rendered="#{richHotKeyBean.attributes['rendered'].value}"
+ selector="#{richHotKeyBean.attributes['selector'].value}" type="#{richHotKeyBean.attributes['type'].value}" />
+
+ <rich:hotKey id="richHotKey2" enabledInInput="#{richHotKeyBean.attributes2['enabledInInput'].value}"
+ key="#{richHotKeyBean.attributes2['key'].value}" onpress="RichFaces.log.info('hotkey 2')"
+ rendered="#{richHotKeyBean.attributes2['rendered'].value}"
+ selector="#{richHotKeyBean.attributes2['selector'].value}" type="#{richHotKeyBean.attributes2['type'].value}" />
+
+ </a4j:outputPanel>
+
+ </ui:define>
+
+ <ui:define name="outOfTemplateAfter">
+ <fieldset>
+ <legend>hot key 1</legend>
+ <metamer:attributes value="#{richHotKeyBean.attributes}" id="attributes1" />
+ </fieldset>
+
+ <br />
+
+ <fieldset>
+ <legend>hot key 2</legend>
+ <metamer:attributes value="#{richHotKeyBean.attributes2}" id="attributes2" />
+ </fieldset>
+ </ui:define>
+
+ <!-- we don't want two logs on the page -->
+ <ui:define name="beforeFooter"></ui:define>
+
+</ui:composition>
+</html>
13 years
JBoss Rich Faces SVN: r23117 - in sandbox/trunk/ui/contextmenu: bom and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: blabno
Date: 2011-12-20 08:25:14 -0500 (Tue, 20 Dec 2011)
New Revision: 23117
Modified:
sandbox/trunk/ui/contextmenu/bom/pom.xml
sandbox/trunk/ui/contextmenu/demo/pom.xml
sandbox/trunk/ui/contextmenu/parent/pom.xml
sandbox/trunk/ui/contextmenu/pom.xml
sandbox/trunk/ui/contextmenu/ui/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: sandbox/trunk/ui/contextmenu/bom/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/bom/pom.xml 2011-12-20 13:25:08 UTC (rev 23116)
+++ sandbox/trunk/ui/contextmenu/bom/pom.xml 2011-12-20 13:25:14 UTC (rev 23117)
@@ -26,7 +26,7 @@
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-bom</artifactId>
- <version>4.1.0.Final</version>
+ <version>4.1.1-SNAPSHOT</version>
<name>Richfaces UI Components: contextmenu bom</name>
<packaging>pom</packaging>
Modified: sandbox/trunk/ui/contextmenu/demo/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/demo/pom.xml 2011-12-20 13:25:08 UTC (rev 23116)
+++ sandbox/trunk/ui/contextmenu/demo/pom.xml 2011-12-20 13:25:14 UTC (rev 23117)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.0.Final</version>
+ <version>4.1.1-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: sandbox/trunk/ui/contextmenu/parent/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:25:08 UTC (rev 23116)
+++ sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:25:14 UTC (rev 23117)
@@ -32,7 +32,7 @@
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.0.Final</version>
+ <version>4.1.1-SNAPSHOT</version>
<name>Richfaces UI Components: contextmenu parent</name>
<packaging>pom</packaging>
@@ -107,11 +107,4 @@
<url>http://artifactory.it-crowd.com.pl/libs-snapshot-local</url>
</snapshotRepository>
</distributionManagement>
-
-
- <scm>
- <connection>scm:git:git://github.com/richfaces/build.git/contextmenu-parent/tags/cont...</connection>
- <developerConnection>scm:git:git@github.com:richfaces/build.git/contextmenu-parent/tags/contextmenu-aggregator-4.1.0.Final/contextmenu-parent</developerConnection>
- <url>https://github.com/richfaces/build/contextmenu-parent/tags/contextmenu-ag...</url>
- </scm>
</project>
Modified: sandbox/trunk/ui/contextmenu/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/pom.xml 2011-12-20 13:25:08 UTC (rev 23116)
+++ sandbox/trunk/ui/contextmenu/pom.xml 2011-12-20 13:25:14 UTC (rev 23117)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.0.Final</version>
+ <version>4.1.1-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
@@ -63,9 +63,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/sandbox/tags/contextmenu...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/sandbox/tags/contextmenu-ag...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/contextmenu-aggregator-4.1...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/sandbox/trunk/ui/context...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/sandbox/trunk/ui/contextmenu</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
</scm>
</project>
Modified: sandbox/trunk/ui/contextmenu/ui/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/ui/pom.xml 2011-12-20 13:25:08 UTC (rev 23116)
+++ sandbox/trunk/ui/contextmenu/ui/pom.xml 2011-12-20 13:25:14 UTC (rev 23117)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.0.Final</version>
+ <version>4.1.1-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>contextmenu-ui</artifactId>
13 years
JBoss Rich Faces SVN: r23116 - sandbox/tags.
by richfaces-svn-commits@lists.jboss.org
Author: blabno
Date: 2011-12-20 08:25:08 -0500 (Tue, 20 Dec 2011)
New Revision: 23116
Added:
sandbox/tags/contextmenu-aggregator-4.1.0.Final/
Log:
[maven-release-plugin] copy for tag contextmenu-aggregator-4.1.0.Final
13 years
JBoss Rich Faces SVN: r23115 - in sandbox/trunk/ui/contextmenu: bom and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: blabno
Date: 2011-12-20 08:24:55 -0500 (Tue, 20 Dec 2011)
New Revision: 23115
Modified:
sandbox/trunk/ui/contextmenu/bom/pom.xml
sandbox/trunk/ui/contextmenu/demo/pom.xml
sandbox/trunk/ui/contextmenu/parent/pom.xml
sandbox/trunk/ui/contextmenu/pom.xml
sandbox/trunk/ui/contextmenu/ui/pom.xml
Log:
[maven-release-plugin] prepare release contextmenu-aggregator-4.1.0.Final
Modified: sandbox/trunk/ui/contextmenu/bom/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/bom/pom.xml 2011-12-20 13:22:20 UTC (rev 23114)
+++ sandbox/trunk/ui/contextmenu/bom/pom.xml 2011-12-20 13:24:55 UTC (rev 23115)
@@ -26,7 +26,7 @@
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-bom</artifactId>
- <version>4.1.0-SNAPSHOT</version>
+ <version>4.1.0.Final</version>
<name>Richfaces UI Components: contextmenu bom</name>
<packaging>pom</packaging>
Modified: sandbox/trunk/ui/contextmenu/demo/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/demo/pom.xml 2011-12-20 13:22:20 UTC (rev 23114)
+++ sandbox/trunk/ui/contextmenu/demo/pom.xml 2011-12-20 13:24:55 UTC (rev 23115)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.0-SNAPSHOT</version>
+ <version>4.1.0.Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -36,12 +36,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
- <version>${project.version}</version>
+ <version>4.1.0.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-impl</artifactId>
- <version>${project.version}</version>
+ <version>4.1.0.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
Modified: sandbox/trunk/ui/contextmenu/parent/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:22:20 UTC (rev 23114)
+++ sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:24:55 UTC (rev 23115)
@@ -27,12 +27,12 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.1.0-SNAPSHOT</version>
+ <version>4.1.0.Final</version>
</parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.0-SNAPSHOT</version>
+ <version>4.1.0.Final</version>
<name>Richfaces UI Components: contextmenu parent</name>
<packaging>pom</packaging>
@@ -53,7 +53,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
- <version>${project.version}</version>
+ <version>4.1.0.Final</version>
</dependency>
</dependencies>
</dependencyManagement>
@@ -65,7 +65,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>${project.version}</version>
+ <version>4.1.0.Final</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -108,4 +108,10 @@
</snapshotRepository>
</distributionManagement>
+
+ <scm>
+ <connection>scm:git:git://github.com/richfaces/build.git/contextmenu-parent/tags/cont...</connection>
+ <developerConnection>scm:git:git@github.com:richfaces/build.git/contextmenu-parent/tags/contextmenu-aggregator-4.1.0.Final/contextmenu-parent</developerConnection>
+ <url>https://github.com/richfaces/build/contextmenu-parent/tags/contextmenu-ag...</url>
+ </scm>
</project>
Modified: sandbox/trunk/ui/contextmenu/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/pom.xml 2011-12-20 13:22:20 UTC (rev 23114)
+++ sandbox/trunk/ui/contextmenu/pom.xml 2011-12-20 13:24:55 UTC (rev 23115)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.0-SNAPSHOT</version>
+ <version>4.1.0.Final</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
@@ -63,9 +63,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/sandbox/trunk/ui/context...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/sandbox/trunk/ui/contextmenu</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/sandbox/tags/contextmenu...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/sandbox/tags/contextmenu-ag...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/contextmenu-aggregator-4.1...</url>
</scm>
</project>
Modified: sandbox/trunk/ui/contextmenu/ui/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/ui/pom.xml 2011-12-20 13:22:20 UTC (rev 23114)
+++ sandbox/trunk/ui/contextmenu/ui/pom.xml 2011-12-20 13:24:55 UTC (rev 23115)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.0-SNAPSHOT</version>
+ <version>4.1.0.Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>contextmenu-ui</artifactId>
@@ -39,13 +39,13 @@
<dependency>
<groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-ui</artifactId>
- <version>${project.version}</version>
+ <version>4.1.0.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
- <version>${project.version}</version>
+ <version>4.1.0.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
@@ -70,7 +70,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>${project.version}</version>
+ <version>4.1.0.Final</version>
<executions>
<execution>
<id>cdk-generate-sources</id>
13 years
JBoss Rich Faces SVN: r23114 - sandbox/trunk/ui/contextmenu/parent.
by richfaces-svn-commits@lists.jboss.org
Author: blabno
Date: 2011-12-20 08:22:20 -0500 (Tue, 20 Dec 2011)
New Revision: 23114
Modified:
sandbox/trunk/ui/contextmenu/parent/pom.xml
Log:
Revert failed release of contextmenu
Modified: sandbox/trunk/ui/contextmenu/parent/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:21:34 UTC (rev 23113)
+++ sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:22:20 UTC (rev 23114)
@@ -32,7 +32,7 @@
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.1-SNAPSHOT</version>
+ <version>4.1.0-SNAPSHOT</version>
<name>Richfaces UI Components: contextmenu parent</name>
<packaging>pom</packaging>
13 years
JBoss Rich Faces SVN: r23113 - sandbox/trunk/ui/contextmenu/parent.
by richfaces-svn-commits@lists.jboss.org
Author: blabno
Date: 2011-12-20 08:21:34 -0500 (Tue, 20 Dec 2011)
New Revision: 23113
Modified:
sandbox/trunk/ui/contextmenu/parent/pom.xml
Log:
Revert failed release of contextmenu
Modified: sandbox/trunk/ui/contextmenu/parent/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:20:24 UTC (rev 23112)
+++ sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:21:34 UTC (rev 23113)
@@ -27,12 +27,12 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>${project.version}</version>
+ <version>4.1.0-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.1-SNAPSHOT</version>
+ <version>4.1.1-SNAPSHOT</version>
<name>Richfaces UI Components: contextmenu parent</name>
<packaging>pom</packaging>
13 years
JBoss Rich Faces SVN: r23112 - in sandbox/trunk/ui/contextmenu: bom and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: blabno
Date: 2011-12-20 08:20:24 -0500 (Tue, 20 Dec 2011)
New Revision: 23112
Modified:
sandbox/trunk/ui/contextmenu/
sandbox/trunk/ui/contextmenu/bom/
sandbox/trunk/ui/contextmenu/bom/pom.xml
sandbox/trunk/ui/contextmenu/demo/
sandbox/trunk/ui/contextmenu/demo/pom.xml
sandbox/trunk/ui/contextmenu/parent/
sandbox/trunk/ui/contextmenu/parent/pom.xml
sandbox/trunk/ui/contextmenu/pom.xml
sandbox/trunk/ui/contextmenu/ui/
sandbox/trunk/ui/contextmenu/ui/pom.xml
Log:
Revert failed release of contextmenu
Property changes on: sandbox/trunk/ui/contextmenu
___________________________________________________________________
Modified: svn:ignore
- *.iml
.idea
+ .idea
*.iml
target
Property changes on: sandbox/trunk/ui/contextmenu/bom
___________________________________________________________________
Modified: svn:ignore
- *.iml
+ .idea
*.iml
target
Modified: sandbox/trunk/ui/contextmenu/bom/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/bom/pom.xml 2011-12-20 13:15:55 UTC (rev 23111)
+++ sandbox/trunk/ui/contextmenu/bom/pom.xml 2011-12-20 13:20:24 UTC (rev 23112)
@@ -26,7 +26,7 @@
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-bom</artifactId>
- <version>4.1.1-SNAPSHOT</version>
+ <version>4.1.0-SNAPSHOT</version>
<name>Richfaces UI Components: contextmenu bom</name>
<packaging>pom</packaging>
Property changes on: sandbox/trunk/ui/contextmenu/demo
___________________________________________________________________
Modified: svn:ignore
- *.iml
+ .idea
*.iml
target
Modified: sandbox/trunk/ui/contextmenu/demo/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/demo/pom.xml 2011-12-20 13:15:55 UTC (rev 23111)
+++ sandbox/trunk/ui/contextmenu/demo/pom.xml 2011-12-20 13:20:24 UTC (rev 23112)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.1-SNAPSHOT</version>
+ <version>4.1.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -36,12 +36,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
- <version>4.1.0.Final</version>
+ <version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-impl</artifactId>
- <version>4.1.0.Final</version>
+ <version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
Property changes on: sandbox/trunk/ui/contextmenu/parent
___________________________________________________________________
Modified: svn:ignore
- *.iml
+ .idea
*.iml
target
Modified: sandbox/trunk/ui/contextmenu/parent/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:15:55 UTC (rev 23111)
+++ sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:20:24 UTC (rev 23112)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.1.0.Final</version>
+ <version>${project.version}</version>
</parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
@@ -53,7 +53,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
- <version>4.1.0.Final</version>
+ <version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
@@ -65,7 +65,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>4.1.0.Final</version>
+ <version>${project.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Modified: sandbox/trunk/ui/contextmenu/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/pom.xml 2011-12-20 13:15:55 UTC (rev 23111)
+++ sandbox/trunk/ui/contextmenu/pom.xml 2011-12-20 13:20:24 UTC (rev 23112)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.1-SNAPSHOT</version>
+ <version>4.1.0-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
@@ -62,4 +62,10 @@
</profile>
</profiles>
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/sandbox/trunk/ui/context...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/sandbox/trunk/ui/contextmenu</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ </scm>
+
</project>
Property changes on: sandbox/trunk/ui/contextmenu/ui
___________________________________________________________________
Modified: svn:ignore
- *.iml
+ .idea
*.iml
target
Modified: sandbox/trunk/ui/contextmenu/ui/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/ui/pom.xml 2011-12-20 13:15:55 UTC (rev 23111)
+++ sandbox/trunk/ui/contextmenu/ui/pom.xml 2011-12-20 13:20:24 UTC (rev 23112)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.1-SNAPSHOT</version>
+ <version>4.1.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>contextmenu-ui</artifactId>
@@ -39,13 +39,13 @@
<dependency>
<groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-ui</artifactId>
- <version>4.1.0.Final</version>
+ <version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
- <version>4.1.0.Final</version>
+ <version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
@@ -70,7 +70,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>4.1.0.Final</version>
+ <version>${project.version}</version>
<executions>
<execution>
<id>cdk-generate-sources</id>
@@ -84,11 +84,5 @@
</plugins>
</build>
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/sandbox/trunk/ui/context...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/sandbox/trunk/ui/contextmenu
- </developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
- </scm>
</project>
13 years
JBoss Rich Faces SVN: r23111 - sandbox/tags.
by richfaces-svn-commits@lists.jboss.org
Author: blabno
Date: 2011-12-20 08:15:55 -0500 (Tue, 20 Dec 2011)
New Revision: 23111
Removed:
sandbox/tags/contextmenu-aggregator-4.1.0.Final/
Log:
Remove invalid tag
13 years
JBoss Rich Faces SVN: r23110 - in sandbox/trunk/ui/contextmenu: bom and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: blabno
Date: 2011-12-20 08:11:35 -0500 (Tue, 20 Dec 2011)
New Revision: 23110
Modified:
sandbox/trunk/ui/contextmenu/bom/pom.xml
sandbox/trunk/ui/contextmenu/demo/pom.xml
sandbox/trunk/ui/contextmenu/parent/pom.xml
sandbox/trunk/ui/contextmenu/pom.xml
sandbox/trunk/ui/contextmenu/ui/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: sandbox/trunk/ui/contextmenu/bom/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/bom/pom.xml 2011-12-20 13:11:28 UTC (rev 23109)
+++ sandbox/trunk/ui/contextmenu/bom/pom.xml 2011-12-20 13:11:35 UTC (rev 23110)
@@ -26,7 +26,7 @@
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-bom</artifactId>
- <version>4.1.0.Final</version>
+ <version>4.1.1-SNAPSHOT</version>
<name>Richfaces UI Components: contextmenu bom</name>
<packaging>pom</packaging>
Modified: sandbox/trunk/ui/contextmenu/demo/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/demo/pom.xml 2011-12-20 13:11:28 UTC (rev 23109)
+++ sandbox/trunk/ui/contextmenu/demo/pom.xml 2011-12-20 13:11:35 UTC (rev 23110)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.0.Final</version>
+ <version>4.1.1-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: sandbox/trunk/ui/contextmenu/parent/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:11:28 UTC (rev 23109)
+++ sandbox/trunk/ui/contextmenu/parent/pom.xml 2011-12-20 13:11:35 UTC (rev 23110)
@@ -32,6 +32,7 @@
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
+ <version>4.1.1-SNAPSHOT</version>
<name>Richfaces UI Components: contextmenu parent</name>
<packaging>pom</packaging>
Modified: sandbox/trunk/ui/contextmenu/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/pom.xml 2011-12-20 13:11:28 UTC (rev 23109)
+++ sandbox/trunk/ui/contextmenu/pom.xml 2011-12-20 13:11:35 UTC (rev 23110)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.0.Final</version>
+ <version>4.1.1-SNAPSHOT</version>
<relativePath>parent/pom.xml</relativePath>
</parent>
@@ -62,10 +62,4 @@
</profile>
</profiles>
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/sandbox/trunk/ui/dashboard</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/sandbox/trunk/ui/dashboard</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
- </scm>
-
</project>
Modified: sandbox/trunk/ui/contextmenu/ui/pom.xml
===================================================================
--- sandbox/trunk/ui/contextmenu/ui/pom.xml 2011-12-20 13:11:28 UTC (rev 23109)
+++ sandbox/trunk/ui/contextmenu/ui/pom.xml 2011-12-20 13:11:35 UTC (rev 23110)
@@ -29,7 +29,7 @@
<parent>
<groupId>org.richfaces.sandbox.ui.contextmenu</groupId>
<artifactId>contextmenu-parent</artifactId>
- <version>4.1.0.Final</version>
+ <version>4.1.1-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>contextmenu-ui</artifactId>
13 years
JBoss Rich Faces SVN: r23109 - sandbox/tags.
by richfaces-svn-commits@lists.jboss.org
Author: blabno
Date: 2011-12-20 08:11:28 -0500 (Tue, 20 Dec 2011)
New Revision: 23109
Added:
sandbox/tags/contextmenu-aggregator-4.1.0.Final/
Log:
[maven-release-plugin] copy for tag contextmenu-aggregator-4.1.0.Final
13 years