JBoss Rich Faces SVN: r14593 - in branches/community/3.3.X/samples/tree-demo/src/main: webapp/pages and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2009-06-11 05:50:25 -0400 (Thu, 11 Jun 2009)
New Revision: 14593
Added:
branches/community/3.3.X/samples/tree-demo/src/main/webapp/pages/RF-5609.jsp
Modified:
branches/community/3.3.X/samples/tree-demo/src/main/java/org/richfaces/Bean.java
Log:
Tree: selection and expanding impossible if ajaxSingle=true and some input validation failed.
https://jira.jboss.org/jira/browse/RF-5609
Modified: branches/community/3.3.X/samples/tree-demo/src/main/java/org/richfaces/Bean.java
===================================================================
--- branches/community/3.3.X/samples/tree-demo/src/main/java/org/richfaces/Bean.java 2009-06-11 09:49:37 UTC (rev 14592)
+++ branches/community/3.3.X/samples/tree-demo/src/main/java/org/richfaces/Bean.java 2009-06-11 09:50:25 UTC (rev 14593)
@@ -215,14 +215,6 @@
public void onSelect(NodeSelectedEvent event) {
System.out.println("Node selected: " + getTree(event).getRowKey());
UITree tree = getTree(event);
-// Set keys = tree.getAjaxKeys();
-// if (keys == null) {
-// keys = new HashSet();
-// tree.setAjaxKeys(keys);
-// }
-
- //keys.add(tree.getRowKey());
- //keys.add(new ListRowKey());
if (getTree(event).getTreeNode()!=null) {
selectedNode = getTree(event).getTreeNode();
Added: branches/community/3.3.X/samples/tree-demo/src/main/webapp/pages/RF-5609.jsp
===================================================================
--- branches/community/3.3.X/samples/tree-demo/src/main/webapp/pages/RF-5609.jsp (rev 0)
+++ branches/community/3.3.X/samples/tree-demo/src/main/webapp/pages/RF-5609.jsp 2009-06-11 09:50:25 UTC (rev 14593)
@@ -0,0 +1,25 @@
+<%@ 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://labs.jboss.com/jbossrichfaces/ui/tree"
+ prefix="rich"%>
+<html>
+<head>
+ <title></title>
+</head>
+<body>
+<f:view>
+ <h:form id="f">
+ <a4j:status startText="...start..." stopText="stopped" />
+
+ <rich:tree id="tree" value="#{bean.data}" var="item">
+ <rich:treeNode id="node" ajaxSubmitSelection="true" ajaxSingle="true"
+ nodeSelectListener="#{bean.onSelect}">
+ <h:outputText id="item" value="#{item}" />
+ </rich:treeNode>
+ </rich:tree>
+ <h:inputText id="text" value="" required="true" />
+ </h:form>
+</f:view>
+</body>
+</html>
\ No newline at end of file
15 years, 7 months
JBoss Rich Faces SVN: r14592 - branches/community/3.3.X/ui/tree/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2009-06-11 05:49:37 -0400 (Thu, 11 Jun 2009)
New Revision: 14592
Modified:
branches/community/3.3.X/ui/tree/src/main/java/org/richfaces/component/UITreeNode.java
Log:
Tree: selection and expanding impossible if ajaxSingle=true and some input validation failed.
https://jira.jboss.org/jira/browse/RF-5609
Modified: branches/community/3.3.X/ui/tree/src/main/java/org/richfaces/component/UITreeNode.java
===================================================================
--- branches/community/3.3.X/ui/tree/src/main/java/org/richfaces/component/UITreeNode.java 2009-06-11 09:24:48 UTC (rev 14591)
+++ branches/community/3.3.X/ui/tree/src/main/java/org/richfaces/component/UITreeNode.java 2009-06-11 09:49:37 UTC (rev 14592)
@@ -347,7 +347,7 @@
}
public Object saveState(FacesContext context) {
- Object[] state = new Object[17];
+ Object[] state = new Object[18];
state[0] = super.saveState(context);
state[1] = this.dragType;
state[2] = this.acceptedTypes;
@@ -355,7 +355,7 @@
state[4] = this.reRender;
state[5] = this.oncomplete;
state[6] = new Boolean(this.ajaxSingle);
- state[7] = new Boolean(this.bypassUpdates);
+ state[7] = new Boolean(this.ajaxSingleSet);
state[8] = new Boolean(this.limitToList);
state[9] = this.status;
state[10] = this.eventsQueue;
@@ -365,6 +365,7 @@
state[14] = new Boolean(this.ignoreDupResponses);
state[15] = new Integer(this.timeout);
state[16] = this.similarityGroupingId;
+ state[17] = new Boolean(this.bypassUpdates);
return state;
}
@@ -378,7 +379,7 @@
this.reRender = (Object) _state[4];
this.oncomplete = (String) _state[5];
this.ajaxSingle = ((Boolean)_state[6]).booleanValue();
- this.bypassUpdates = ((Boolean)_state[7]).booleanValue();
+ this.ajaxSingleSet = ((Boolean)_state[7]).booleanValue();
this.limitToList = ((Boolean)_state[8]).booleanValue();
this.status = (String) _state[9];
this.eventsQueue = (String) _state[10];
@@ -388,6 +389,7 @@
this.ignoreDupResponses = ((Boolean)_state[14]).booleanValue();
this.timeout = ((Integer)_state[15]).intValue();
this.similarityGroupingId = (String) _state[16];
+ this.bypassUpdates = ((Boolean)_state[17]).booleanValue();
}
public void setDragIndicator(String dragIndicator) {
@@ -520,8 +522,8 @@
* Getter for ajaxSingle
* @return ajaxSingle value from local variable or value bindings
*/
- public boolean isAjaxSingle( ){
- if(this.ajaxSingleSet){
+ public boolean isAjaxSingle( ) {
+ if (this.ajaxSingleSet) {
return this.ajaxSingle;
}
ValueBinding vb = getValueBinding("ajaxSingle");
15 years, 7 months
JBoss Rich Faces SVN: r14591 - branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-06-11 05:24:48 -0400 (Thu, 11 Jun 2009)
New Revision: 14591
Modified:
branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/master.xml
Log:
https://jira.jboss.org/jira/browse/RF-5768
Skinnability section
Modified: branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/master.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/master.xml 2009-06-11 09:22:27 UTC (rev 14590)
+++ branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/master.xml 2009-06-11 09:24:48 UTC (rev 14591)
@@ -7,6 +7,7 @@
<!ENTITY getting_started SYSTEM "modules/getting_started.xml">
+ <!ENTITY skinnability SYSTEM "includes/skinnability.xml">
<!ENTITY usedComponents SYSTEM "includes/usedComponents.xml">
<!ENTITY navigationPanel SYSTEM "includes/navigationPanel.xml">
<!ENTITY uploadImages SYSTEM "includes/uploadImages.xml">
@@ -53,6 +54,11 @@
<surname>Galkin</surname>
<email>ggalkin(a)exadel.com</email>
</author>
+ <author>
+ <firstname>Michael</firstname>
+ <surname>Sorokin</surname>
+ <email>msorokin(a)exadel.com</email>
+ </author>
<copyright>
<year>2009</year>
<holder>Red Hat</holder>
@@ -83,7 +89,9 @@
In this chapter we explain how the Photo Album works.
</para>
<?forseChanks?>
+
&usedComponents;
+ &skinnability;
&navigationPanel;
<!-- &shelfView; -->
&albumView;
15 years, 7 months
JBoss Rich Faces SVN: r14590 - branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-06-11 05:22:27 -0400 (Thu, 11 Jun 2009)
New Revision: 14590
Modified:
branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/modules/overview.xml
Log:
addedhttps://jira.jboss.org/jira/browse/RF-5768
added project data model
Modified: branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/modules/overview.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/modules/overview.xml 2009-06-11 09:19:20 UTC (rev 14589)
+++ branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/modules/overview.xml 2009-06-11 09:22:27 UTC (rev 14590)
@@ -17,8 +17,17 @@
<section id="dataModel">
<title>Data Model</title>
<para>
- Work in progress...
+ The data model of the application has the following structure:
</para>
+
+ <figure>
+ <title>Photo Album Data Model</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/erd.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
</section>
<section id="setUp">
<title>Project Set Up</title>
15 years, 7 months
JBoss Rich Faces SVN: r14589 - branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/includes.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-06-11 05:19:20 -0400 (Thu, 11 Jun 2009)
New Revision: 14589
Modified:
branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/includes/imageView.xml
Log:
https://jira.jboss.org/jira/browse/RF-5768
Skinnability section
Modified: branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/includes/imageView.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/includes/imageView.xml 2009-06-11 09:18:20 UTC (rev 14588)
+++ branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/includes/imageView.xml 2009-06-11 09:19:20 UTC (rev 14589)
@@ -3,6 +3,7 @@
<title>Image View</title>
<para>
Image View in the Photo Album application is a page where only one image is displayed. In this view you can also browse the current album with the image scroller as well as to switch to slideshow mode.
+ If you are a registered user you can leave comments under the current image.
</para>
<figure>
15 years, 7 months
JBoss Rich Faces SVN: r14588 - branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/includes.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-06-11 05:18:20 -0400 (Thu, 11 Jun 2009)
New Revision: 14588
Added:
branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/includes/skinnability.xml
Log:
https://jira.jboss.org/jira/browse/RF-5768
Skinnability section
Added: branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/includes/skinnability.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/includes/skinnability.xml (rev 0)
+++ branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/includes/skinnability.xml 2009-06-11 09:18:20 UTC (rev 14588)
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section id="skinnability" xreflabel="skinnability">
+<?dbhtml filename="skinnability.html"?>
+ <title>Skinnability TBR</title>
+ <para>
+
+ The Photo Album application employs such feature of RichFaces framework as skinnability. If you have a look at the web.xml you will see that the <code>
+ org.richfaces.SKIN
+ </code>
+ parameter has "photoalbum" value.
+ </para>
+ <programlisting role="XML"><![CDATA[...
+ <context-param>
+ <param-name>org.richfaces.SKIN</param-name>
+ <param-value>photoalbum</param-value>
+ </context-param>
+...]]></programlisting>
+ <para>
+ This means that the application uses the custom "photoalbum" skin. The skin parameters are stored in the <code>photoalbum.skin.properties</code> file that is located in the
+ <code>photoalbum\source\web\src\main\resources\META-INF\skins\</code> folder.
+ </para>
+ <para>
+ Each visual RichFaces component has a XCSS file where some CSS selectors are defined with style properties mapped to the skin parameters. Here is a fragment of the XCSS file of <emphasis role="bold"><property><rich:calendar></property></emphasis>.
+ </para>
+
+ <programlisting role="XML"><![CDATA[...
+ <u:selector name=".rich-calendar-header">
+ <u:style name="border-bottom-color" skin="panelBorderColor"/>
+ <u:style name="background-color" skin="additionalBackgroundColor"/>
+ <u:style name="font-size" skin="generalSizeFont"/>
+ <u:style name="font-family" skin="generalFamilyFont"/>
+ </u:selector>
+ ...]]></programlisting>
+ <para>This code sets style for upper part of the calendar. Hence, for example, <code>font-family</code> property is mapped to the <code>generalFamilyFont</code> property which in its turn has <code>Arial, Verdana, sans-serif</code> value. </para>
+ <para>These are all values the <code>.rich-calendar-header</code> has.</para>
+ <programlisting role="XML"><![CDATA[...
+panelBorderColor=#636363
+additionalBackgroundColor=#F2F2F2
+generalSizeFont=11px
+generalFamilyFont=Arial, Verdana, sans-serif
+...]]></programlisting>
+
+ <para>
+ You can find more information about the Skinnability feature in <ulink url="http://www.jboss.org/file-access/default/members/jbossrichfaces/freezone/...">RichFaces Developer Guide</ulink>.
+ </para>
+</section>
15 years, 7 months
JBoss Rich Faces SVN: r14587 - branches/sandbox/rf4_build/version-matrix/trunk.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-06-10 16:33:37 -0400 (Wed, 10 Jun 2009)
New Revision: 14587
Modified:
branches/sandbox/rf4_build/version-matrix/trunk/pom.xml
Log:
Build system: archetypes added
Modified: branches/sandbox/rf4_build/version-matrix/trunk/pom.xml
===================================================================
--- branches/sandbox/rf4_build/version-matrix/trunk/pom.xml 2009-06-10 18:19:01 UTC (rev 14586)
+++ branches/sandbox/rf4_build/version-matrix/trunk/pom.xml 2009-06-10 20:33:37 UTC (rev 14587)
@@ -283,6 +283,14 @@
<version>0.95</version>
</dependency>
<!-- -->
+
+ <!-- Archetypes dependency -->
+ <dependency>
+ <groupId>org.apache.maven.archetype</groupId>
+ <artifactId>archetype-packaging</artifactId>
+ <version>2.0-alpha-4</version>
+ </dependency>
+ <!-- -->
</dependencies>
</dependencyManagement>
@@ -301,6 +309,13 @@
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-archetype-plugin</artifactId>
+ <version>2.0-alpha-4</version>
+ <extensions>true</extensions>
+ </plugin>
+
+ <plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
<version>2.1.2</version>
15 years, 7 months
JBoss Rich Faces SVN: r14586 - in branches/sandbox/rf4_build/cdk/trunk/archetypes: ui-multimodule and 15 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-06-10 14:19:01 -0400 (Wed, 10 Jun 2009)
New Revision: 14586
Added:
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/pom.xml
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype-metadata.xml
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype.xml
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api/pom.xml
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/pom.xml
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui/pom.xml
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/pom.xml
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype-metadata.xml
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype.xml
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/archetype-resources/
branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/archetype-resources/pom.xml
Modified:
branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml
Log:
UI archetypes committed
Modified: branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml 2009-06-10 18:19:01 UTC (rev 14586)
@@ -14,5 +14,10 @@
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetypes</artifactId>
<packaging>pom</packaging>
+
+ <modules>
+ <module>ui-singlemodule</module>
+ <module>ui-multimodule</module>
+ </modules>
</project>
\ No newline at end of file
Property changes on: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule
___________________________________________________________________
Name: svn:ignore
+ .project
.checkstyle
target
.metadata
.settings
Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/pom.xml (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/pom.xml 2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+
+ <parent>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-archetypes</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk.maven-archetypes</groupId>
+ <artifactId>richfaces-ui-multimodule-archetype</artifactId>
+
+ <build>
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.archetype</groupId>
+ <artifactId>archetype-packaging</artifactId>
+ </extension>
+ </extensions>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-archetype-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype-metadata.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype-metadata.xml (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype-metadata.xml 2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<archetype-descriptor name="richfaces-ui-multimodule-archetype">
+ <modules>
+ <module id="${parent.artifactId}-api" dir="${parent.artifactId}-api" name="${parent.artifactId}-api" />
+ <module id="${parent.artifactId}-ui" dir="${parent.artifactId}-ui" name="${parent.artifactId}-ui" />
+ </modules>
+</archetype-descriptor>
\ No newline at end of file
Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype.xml (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype.xml 2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<archetype>
+ <id>richfaces-ui-multimodule-archetype</id>
+ <resources>
+ <resource>api\pom.xml</resource>
+ <resource>ui\pom.xml</resource>
+ </resources>
+</archetype>
\ No newline at end of file
Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api/pom.xml (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api/pom.xml 2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,13 @@
+<?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/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>${groupId}</groupId>
+ <artifactId>${artifactId}</artifactId>
+ <version>${version}</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>${parent.artifactId}-api</artifactId>
+
+</project>
Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/pom.xml (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/pom.xml 2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,15 @@
+<?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/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>${groupId}</groupId>
+ <artifactId>${artifactId}</artifactId>
+ <version>${version}</version>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>api</module>
+ <module>ui</module>
+ </modules>
+
+</project>
Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui/pom.xml (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui/pom.xml 2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,21 @@
+<?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/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>${groupId}</groupId>
+ <artifactId>${artifactId}</artifactId>
+ <version>${version}</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>${parent.artifactId}-ui</artifactId>
+
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <version>${project.version}</version>
+ <artifactId>${parent.artifactId}-api</artifactId>
+ </dependency>
+ </dependencies>
+
+</project>
Property changes on: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule
___________________________________________________________________
Name: svn:ignore
+ .project
.checkstyle
target
.metadata
.settings
Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/pom.xml (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/pom.xml 2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+
+ <parent>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-archetypes</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk.maven-archetypes</groupId>
+ <artifactId>richfaces-ui-singlemodule-archetype</artifactId>
+
+ <build>
+ <extensions>
+ <extension>
+ <groupId>org.apache.maven.archetype</groupId>
+ <artifactId>archetype-packaging</artifactId>
+ </extension>
+ </extensions>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-archetype-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype-metadata.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype-metadata.xml (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype-metadata.xml 2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,3 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<archetype-descriptor name="richfaces-ui-singlemodule-archetype" />
\ No newline at end of file
Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype.xml (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype.xml 2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<archetype>
+ <id>richfaces-ui-singlemodule-archetype</id>
+</archetype>
\ No newline at end of file
Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/archetype-resources/pom.xml (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/archetype-resources/pom.xml 2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,12 @@
+<?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/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>${groupId}</groupId>
+ <artifactId>${artifactId}</artifactId>
+ <packaging>jar</packaging>
+
+</project>
\ No newline at end of file
15 years, 7 months
JBoss Rich Faces SVN: r14585 - in branches/sandbox/rf4_build: cdk/trunk/plugins and 23 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-06-10 11:47:51 -0400 (Wed, 10 Jun 2009)
New Revision: 14585
Modified:
branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml
branches/sandbox/rf4_build/cdk/trunk/plugins/maven-cdk-plugin/pom.xml
branches/sandbox/rf4_build/cdk/trunk/plugins/pom.xml
branches/sandbox/rf4_build/docs/trunk/commons/highlight/pom.xml
branches/sandbox/rf4_build/docs/trunk/commons/pom.xml
branches/sandbox/rf4_build/docs/trunk/commons/resources/en/pom.xml
branches/sandbox/rf4_build/docs/trunk/commons/resources/pom.xml
branches/sandbox/rf4_build/docs/trunk/guides/pom.xml
branches/sandbox/rf4_build/docs/trunk/guides/testguide/en/pom.xml
branches/sandbox/rf4_build/docs/trunk/guides/testguide/pom.xml
branches/sandbox/rf4_build/examples/trunk/components/calendar-demo/pom.xml
branches/sandbox/rf4_build/examples/trunk/components/panel-demo/pom.xml
branches/sandbox/rf4_build/examples/trunk/components/pom.xml
branches/sandbox/rf4_build/examples/trunk/components/tree-demo/pom.xml
branches/sandbox/rf4_build/examples/trunk/photoalbum/pom.xml
branches/sandbox/rf4_build/examples/trunk/richfaces-demo/pom.xml
branches/sandbox/rf4_build/framework/trunk/api/pom.xml
branches/sandbox/rf4_build/framework/trunk/impl/pom.xml
branches/sandbox/rf4_build/framework/trunk/test-base/pom.xml
branches/sandbox/rf4_build/ui/trunk/components/calendar/pom.xml
branches/sandbox/rf4_build/ui/trunk/components/panel/pom.xml
branches/sandbox/rf4_build/ui/trunk/components/pom.xml
branches/sandbox/rf4_build/ui/trunk/components/tree/pom.xml
branches/sandbox/rf4_build/ui/trunk/skins/pom.xml
branches/sandbox/rf4_build/ui/trunk/themes/pom.xml
Log:
Reverted hanges from r14582
Modified: branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetypes</artifactId>
<packaging>pom</packaging>
Modified: branches/sandbox/rf4_build/cdk/trunk/plugins/maven-cdk-plugin/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/plugins/maven-cdk-plugin/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/cdk/trunk/plugins/maven-cdk-plugin/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,6 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
<packaging>maven-plugin</packaging>
Modified: branches/sandbox/rf4_build/cdk/trunk/plugins/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/plugins/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/cdk/trunk/plugins/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.cdk</groupId>
<artifactId>maven-plugins</artifactId>
<packaging>pom</packaging>
Modified: branches/sandbox/rf4_build/docs/trunk/commons/highlight/pom.xml
===================================================================
--- branches/sandbox/rf4_build/docs/trunk/commons/highlight/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/docs/trunk/commons/highlight/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.docs.commons</groupId>
<artifactId>highlight</artifactId>
<dependencies>
Modified: branches/sandbox/rf4_build/docs/trunk/commons/pom.xml
===================================================================
--- branches/sandbox/rf4_build/docs/trunk/commons/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/docs/trunk/commons/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.docs</groupId>
<artifactId>commons</artifactId>
<packaging>pom</packaging>
Modified: branches/sandbox/rf4_build/docs/trunk/commons/resources/en/pom.xml
===================================================================
--- branches/sandbox/rf4_build/docs/trunk/commons/resources/en/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/docs/trunk/commons/resources/en/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.docs.commons.resources</groupId>
<artifactId>en</artifactId>
Modified: branches/sandbox/rf4_build/docs/trunk/commons/resources/pom.xml
===================================================================
--- branches/sandbox/rf4_build/docs/trunk/commons/resources/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/docs/trunk/commons/resources/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.docs.commons</groupId>
<artifactId>resources</artifactId>
<packaging>pom</packaging>
Modified: branches/sandbox/rf4_build/docs/trunk/guides/pom.xml
===================================================================
--- branches/sandbox/rf4_build/docs/trunk/guides/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/docs/trunk/guides/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.docs</groupId>
<artifactId>guides</artifactId>
<packaging>pom</packaging>
Modified: branches/sandbox/rf4_build/docs/trunk/guides/testguide/en/pom.xml
===================================================================
--- branches/sandbox/rf4_build/docs/trunk/guides/testguide/en/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/docs/trunk/guides/testguide/en/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.docs.guides.testguide</groupId>
<artifactId>en</artifactId>
<packaging>jar</packaging>
Modified: branches/sandbox/rf4_build/docs/trunk/guides/testguide/pom.xml
===================================================================
--- branches/sandbox/rf4_build/docs/trunk/guides/testguide/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/docs/trunk/guides/testguide/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.docs.guides</groupId>
<artifactId>testguide</artifactId>
<packaging>pom</packaging>
Modified: branches/sandbox/rf4_build/examples/trunk/components/calendar-demo/pom.xml
===================================================================
--- branches/sandbox/rf4_build/examples/trunk/components/calendar-demo/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/examples/trunk/components/calendar-demo/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.examples.components</groupId>
<artifactId>${example.componentName}-demo</artifactId>
<packaging>war</packaging>
Modified: branches/sandbox/rf4_build/examples/trunk/components/panel-demo/pom.xml
===================================================================
--- branches/sandbox/rf4_build/examples/trunk/components/panel-demo/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/examples/trunk/components/panel-demo/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.examples.components</groupId>
<artifactId>${example.componentName}-demo</artifactId>
<packaging>war</packaging>
Modified: branches/sandbox/rf4_build/examples/trunk/components/pom.xml
===================================================================
--- branches/sandbox/rf4_build/examples/trunk/components/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/examples/trunk/components/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.examples</groupId>
<artifactId>components</artifactId>
<packaging>pom</packaging>
Modified: branches/sandbox/rf4_build/examples/trunk/components/tree-demo/pom.xml
===================================================================
--- branches/sandbox/rf4_build/examples/trunk/components/tree-demo/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/examples/trunk/components/tree-demo/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.examples.components</groupId>
<artifactId>${example.componentName}-demo</artifactId>
<packaging>war</packaging>
Modified: branches/sandbox/rf4_build/examples/trunk/photoalbum/pom.xml
===================================================================
--- branches/sandbox/rf4_build/examples/trunk/photoalbum/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/examples/trunk/photoalbum/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
<packaging>ear</packaging>
Modified: branches/sandbox/rf4_build/examples/trunk/richfaces-demo/pom.xml
===================================================================
--- branches/sandbox/rf4_build/examples/trunk/richfaces-demo/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/examples/trunk/richfaces-demo/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-demo</artifactId>
<packaging>war</packaging>
Modified: branches/sandbox/rf4_build/framework/trunk/api/pom.xml
===================================================================
--- branches/sandbox/rf4_build/framework/trunk/api/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/framework/trunk/api/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
</project>
\ No newline at end of file
Modified: branches/sandbox/rf4_build/framework/trunk/impl/pom.xml
===================================================================
--- branches/sandbox/rf4_build/framework/trunk/impl/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/framework/trunk/impl/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<dependencies>
Modified: branches/sandbox/rf4_build/framework/trunk/test-base/pom.xml
===================================================================
--- branches/sandbox/rf4_build/framework/trunk/test-base/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/framework/trunk/test-base/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test-base</artifactId>
<packaging>jar</packaging>
Modified: branches/sandbox/rf4_build/ui/trunk/components/calendar/pom.xml
===================================================================
--- branches/sandbox/rf4_build/ui/trunk/components/calendar/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/ui/trunk/components/calendar/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.ui.components</groupId>
<artifactId>calendar</artifactId>
<packaging>pom</packaging>
Modified: branches/sandbox/rf4_build/ui/trunk/components/panel/pom.xml
===================================================================
--- branches/sandbox/rf4_build/ui/trunk/components/panel/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/ui/trunk/components/panel/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.ui.components</groupId>
<artifactId>panel-ui</artifactId>
<packaging>jar</packaging>
Modified: branches/sandbox/rf4_build/ui/trunk/components/pom.xml
===================================================================
--- branches/sandbox/rf4_build/ui/trunk/components/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/ui/trunk/components/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -1,21 +1,24 @@
-<?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/xsd/maven-4.0.0.xsd">
-
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>ui</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>components</artifactId>
- <packaging>pom</packaging>
-
- <modules>
- <module>panel</module>
- <module>tree</module>
- <module>calendar</module>
- </modules>
-
+<?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/xsd/maven-4.0.0.xsd">
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>ui</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>components</artifactId>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>panel</module>
+ <module>tree</module>
+ <module>calendar</module>
+ </modules>
+
</project>
\ No newline at end of file
Modified: branches/sandbox/rf4_build/ui/trunk/components/tree/pom.xml
===================================================================
--- branches/sandbox/rf4_build/ui/trunk/components/tree/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/ui/trunk/components/tree/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.ui.components</groupId>
<artifactId>tree</artifactId>
<packaging>pom</packaging>
Modified: branches/sandbox/rf4_build/ui/trunk/skins/pom.xml
===================================================================
--- branches/sandbox/rf4_build/ui/trunk/skins/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/ui/trunk/skins/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>skins</artifactId>
<packaging>pom</packaging>
Modified: branches/sandbox/rf4_build/ui/trunk/themes/pom.xml
===================================================================
--- branches/sandbox/rf4_build/ui/trunk/themes/pom.xml 2009-06-10 15:06:28 UTC (rev 14584)
+++ branches/sandbox/rf4_build/ui/trunk/themes/pom.xml 2009-06-10 15:47:51 UTC (rev 14585)
@@ -11,7 +11,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>${parent.groupId}.${parent.artifactId}</groupId>
+ <groupId>org.richfaces.ui</groupId>
<artifactId>themes</artifactId>
<packaging>pom</packaging>
15 years, 7 months
JBoss Rich Faces SVN: r14584 - branches/community/3.3.X/cdk/generator/src/main/resources/META-INF/schema/entities.
by richfaces-svn-commits@lists.jboss.org
Author: ochikvina
Date: 2009-06-10 11:06:28 -0400 (Wed, 10 Jun 2009)
New Revision: 14584
Modified:
branches/community/3.3.X/cdk/generator/src/main/resources/META-INF/schema/entities/html_style_attributes.ent
Log:
https://jira.jboss.org/jira/browse/RF-6233 - rewriting the 'style' and 'styleClass' attributes descriptions;
Modified: branches/community/3.3.X/cdk/generator/src/main/resources/META-INF/schema/entities/html_style_attributes.ent
===================================================================
--- branches/community/3.3.X/cdk/generator/src/main/resources/META-INF/schema/entities/html_style_attributes.ent 2009-06-10 14:39:03 UTC (rev 14583)
+++ branches/community/3.3.X/cdk/generator/src/main/resources/META-INF/schema/entities/html_style_attributes.ent 2009-06-10 15:06:28 UTC (rev 14584)
@@ -2,12 +2,12 @@
<property>
<name>style</name>
<classname>java.lang.String</classname>
- <description>CSS style(s) is/are to be applied when this component is rendered</description>
+ <description>Holds a fragment of a style sheet that applies to the component</description>
</property>
<property>
<name>styleClass</name>
<classname>java.lang.String</classname>
- <description>Corresponds to the HTML class attribute</description>
+ <description>Assigns one or more CSS class names to the component. Corresponds to the HTML "class" attribute.</description>
</property>
15 years, 7 months