JBoss Rich Faces SVN: r18530 - in branches/development/docs/Component_Reference/src/main/docbook/en-US: extras and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-08-10 03:16:02 -0400 (Tue, 10 Aug 2010)
New Revision: 18530
Added:
branches/development/docs/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richjQuery-Avoiding_syntax_confusion_0.xml_sample
branches/development/docs/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richjQuery-richjQuery_example.xml_sample
Modified:
branches/development/docs/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Layout_and_appearance.xml
Log:
Updated rich:jQuery
Modified: branches/development/docs/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Layout_and_appearance.xml
===================================================================
--- branches/development/docs/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Layout_and_appearance.xml 2010-08-09 23:44:47 UTC (rev 18529)
+++ branches/development/docs/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Layout_and_appearance.xml 2010-08-10 07:16:02 UTC (rev 18530)
@@ -57,9 +57,133 @@
The <sgmltag><rich:jQuery></sgmltag> component applies styles and custom behavior to both <acronym>JSF</acronym> (JavaServer Faces) objects and regular <acronym>DOM</acronym> (Document Object Model) objects. It uses the <phrase>jQuery</phrase> JavaScript framework to add functionality without conflicting with the <filename>prototype.js</filename> library.
</para>
<para>
- The query triggered by the <sgmltag><rich:jQuery></sgmltag> component is specified using the <varname>query</varname> attribute. Any objects or lists of objects used in the query are specified using the <varname>selector</varname> attribute. The <varname>selector</varname> attribute uses syntax defined by the <orgname>World Wide Web Consortium (<acronym>W3C</acronym>)</orgname> for the <acronym>CSS</acronym> rule selector.
+ The query triggered by the <sgmltag><rich:jQuery></sgmltag> component is specified using the <varname>query</varname> attribute.
</para>
<para>
+ Any objects or lists of objects used in the query are specified using the <varname>selector</varname> attribute. The <varname>selector</varname> attribute references objects using the following method:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ The <varname>selector</varname> attribute can refer to the <varname>id</varname> attribute of any JSF component or client.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ If the <varname>selector</varname> attribute does not match the <varname>id</varname> attribute of any JSF components or clients on the page, it instead uses syntax defined by the <orgname>World Wide Web Consortium (<acronym>W3C</acronym>)</orgname> for the <acronym>CSS</acronym> rule selector. <xref linkend="exam-Component_Reference-richjQuery-Example_selector_values" /> shows a list of examples of the selector syntax. Refer to the syntax specification at <ulink url="http://www.w3.org/TR/CSS2/selector.html">http://www.w3.org/TR/CSS2/selector.html</ulink> for full details.
+ </para>
+ <example id="exam-Component_Reference-richjQuery-Example_selector_values">
+ <title>Example selector values</title>
+ <variablelist>
+ <varlistentry>
+ <term><code>p[a]</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><p></sgmltag> elements which contain an <sgmltag><a></sgmltag> element are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>p.foo[a]</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><p></sgmltag> elements of class <literal>foo</literal> which contain an <sgmltag><a></sgmltag> element are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>p#secret</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><p></sgmltag> elements with an <literal>id</literal> identifier of <literal>secret</literal> are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>ul/li</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><li></sgmltag> elements contained in <sgmltag><ul></sgmltag> elements are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>input[@name=bar]</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><input></sgmltag> elements with a <varname>name</varname> attribute whose value is <literal>bar</literal> are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>input[@type=radio][@checked]</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><input></sgmltag> elements with both a <code><varname>type</varname>="radio"</code> attribute and a <code><varname>checked</varname></code> attribute are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>p,span,td</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><p></sgmltag> elements, <sgmltag><span></sgmltag> elements, and <sgmltag><td></sgmltag> elements are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>p span</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><span></sgmltag> elements that are direct or indirect children of <sgmltag><p></sgmltag> elements are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>p//span</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><span></sgmltag> elements that are direct or indirect children of <sgmltag><p></sgmltag> elements are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>p/../span</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><span></sgmltag> elements that are grandchildren of <sgmltag><p></sgmltag> elements are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>p[@foo^=bar]</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><p></sgmltag> elements that contain a <varname>foo</varname> attribute with a textual value <emphasis>beginning</emphasis> with <literal>bar</literal> are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>p[@foo$=bar]</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><p></sgmltag> elements that contain a <varname>foo</varname> attribute with a textual value <emphasis>ending</emphasis> with <literal>bar</literal> are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><code>p[@foo*=bar]</code></term>
+ <listitem>
+ <para>
+ All <sgmltag><p></sgmltag> elements that contain a <varname>foo</varname> attribute with a textual value that contains the sub-string <literal>bar</literal> in any position are selected.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </example>
+ </listitem>
+ </itemizedlist>
+ <para>
The query can be triggered in three different ways. Use the <varname>timing</varname> attribute to specify the point at which the query is triggered:
</para>
<variablelist>
@@ -91,6 +215,22 @@
</listitem>
</varlistentry>
</variablelist>
+ <example id="exam-Component_Reference-richjQuery-richjQuery_example">
+ <title><sgmltag><rich:jQuery></sgmltag> example</title>
+ <programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Component_Reference-richjQuery-richjQuery_example.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ <para>
+ In the example, the selector picks out the odd <sgmltag><tr></sgmltag> elements that are children of the element with an <code><varname>id</varname>="customlist"</code> attribute. The query <code>addClass(odd)</code> is then performed on the selection during page loading (<literal>onload</literal>) such that the <literal>odd</literal> CSS class is added to the selected elements.
+ </para>
+ </example>
+ <!-- TODO
+ <para>
+ Avoid syntax confusion.
+ </para>
+ <example id="exam-Component_Reference-richjQuery-Avoiding_syntax_confusion">
+ <title>Avoiding syntax confusion</title>
+ <programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Component_Reference-richjQuery-Avoiding_syntax_confusion_0.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </example>
+ -->
</section>
<!-- TODO not in M2 -->
Added: branches/development/docs/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richjQuery-Avoiding_syntax_confusion_0.xml_sample
===================================================================
--- branches/development/docs/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richjQuery-Avoiding_syntax_confusion_0.xml_sample (rev 0)
+++ branches/development/docs/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richjQuery-Avoiding_syntax_confusion_0.xml_sample 2010-08-10 07:16:02 UTC (rev 18530)
@@ -0,0 +1,6 @@
+<h:form id="form">
+ <h:panelGrid id="menu">
+ <h:graphicImage value="pic1.jpg" />
+ <h:graphicImage value="pic2.jpg" />
+ </h:panelGrid>
+</h:form>
Added: branches/development/docs/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richjQuery-richjQuery_example.xml_sample
===================================================================
--- branches/development/docs/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richjQuery-richjQuery_example.xml_sample (rev 0)
+++ branches/development/docs/Component_Reference/src/main/docbook/en-US/extras/exam-Component_Reference-richjQuery-richjQuery_example.xml_sample 2010-08-10 07:16:02 UTC (rev 18530)
@@ -0,0 +1,5 @@
+<rich:dataTable id="customList" ... >
+ ...
+</rich:dataTable>
+
+<rich:jQuery selector="#customList tr:odd" timing="onload" query="addClass(odd)" />
15 years, 9 months
JBoss Rich Faces SVN: r18529 - in branches/cdk-8570/cdk: annotations and 6 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-08-09 19:44:47 -0400 (Mon, 09 Aug 2010)
New Revision: 18529
Removed:
branches/cdk-8570/cdk/bom/
Modified:
branches/cdk-8570/cdk/annotations/pom.xml
branches/cdk-8570/cdk/attributes/pom.xml
branches/cdk-8570/cdk/commons/pom.xml
branches/cdk-8570/cdk/generator/pom.xml
branches/cdk-8570/cdk/maven-cdk-plugin/pom.xml
branches/cdk-8570/cdk/parent/pom.xml
branches/cdk-8570/cdk/pom.xml
branches/cdk-8570/cdk/xinclude/pom.xml
Log:
move all projects at the top level
Modified: branches/cdk-8570/cdk/annotations/pom.xml
===================================================================
--- branches/cdk-8570/cdk/annotations/pom.xml 2010-08-09 22:50:50 UTC (rev 18528)
+++ branches/cdk-8570/cdk/annotations/pom.xml 2010-08-09 23:44:47 UTC (rev 18529)
@@ -2,10 +2,10 @@
<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>
<parent>
- <artifactId>maven-plugins</artifactId>
+ <artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
<version>4.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
+ <relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
Modified: branches/cdk-8570/cdk/attributes/pom.xml
===================================================================
--- branches/cdk-8570/cdk/attributes/pom.xml 2010-08-09 22:50:50 UTC (rev 18528)
+++ branches/cdk-8570/cdk/attributes/pom.xml 2010-08-09 23:44:47 UTC (rev 18529)
@@ -1,12 +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>
- <parent>
- <artifactId>maven-plugins</artifactId>
- <groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
+ <parent>
+ <artifactId>parent</artifactId>
+ <groupId>org.richfaces.cdk</groupId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>attributes</artifactId>
<version>4.0.0-SNAPSHOT</version>
Modified: branches/cdk-8570/cdk/commons/pom.xml
===================================================================
--- branches/cdk-8570/cdk/commons/pom.xml 2010-08-09 22:50:50 UTC (rev 18528)
+++ branches/cdk-8570/cdk/commons/pom.xml 2010-08-09 23:44:47 UTC (rev 18529)
@@ -1,12 +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>
- <parent>
- <artifactId>maven-plugins</artifactId>
- <groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
+ <parent>
+ <artifactId>parent</artifactId>
+ <groupId>org.richfaces.cdk</groupId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>commons</artifactId>
<version>4.0.0-SNAPSHOT</version>
Modified: branches/cdk-8570/cdk/generator/pom.xml
===================================================================
--- branches/cdk-8570/cdk/generator/pom.xml 2010-08-09 22:50:50 UTC (rev 18528)
+++ branches/cdk-8570/cdk/generator/pom.xml 2010-08-09 23:44:47 UTC (rev 18529)
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-plugins</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
+ <parent>
+ <artifactId>parent</artifactId>
+ <groupId>org.richfaces.cdk</groupId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
Modified: branches/cdk-8570/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/cdk-8570/cdk/maven-cdk-plugin/pom.xml 2010-08-09 22:50:50 UTC (rev 18528)
+++ branches/cdk-8570/cdk/maven-cdk-plugin/pom.xml 2010-08-09 23:44:47 UTC (rev 18529)
@@ -1,10 +1,10 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-plugins</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
+ <parent>
+ <artifactId>parent</artifactId>
+ <groupId>org.richfaces.cdk</groupId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
Modified: branches/cdk-8570/cdk/parent/pom.xml
===================================================================
--- branches/cdk-8570/cdk/parent/pom.xml 2010-08-09 22:50:50 UTC (rev 18528)
+++ branches/cdk-8570/cdk/parent/pom.xml 2010-08-09 23:44:47 UTC (rev 18529)
@@ -2,12 +2,11 @@
<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.cdk</groupId>
- <artifactId>bom</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../bom</relativePath>
- </parent>
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>9</version>
+ </parent>
<modelVersion>4.0.0</modelVersion>
@@ -154,6 +153,227 @@
</plugins>
</pluginManagement>
</build>
+ <dependencyManagement>
+ <dependencies>
+
+ <!-- TODO remove duplicates from these dependences already defined in
+ project BOM -->
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.el</groupId>
+ <artifactId>jboss-el</artifactId>
+ <version>1.0_02.CR4</version>
+ </dependency>
+ <!-- Common libraries -->
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.0.4</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.xsom</groupId>
+ <artifactId>xsom</artifactId>
+ <version>20081112</version>
+ </dependency>
+ <dependency>
+ <groupId>com.googlecode.functional-collections</groupId>
+ <artifactId>functional-collections</artifactId>
+ <version>1.1.7</version>
+ <exclusions>
+ <exclusion>
+ <groupId>com.google.collections</groupId>
+ <artifactId>google-collections</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ <version>r05</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.inject</groupId>
+ <artifactId>guice</artifactId>
+ <version>2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.inject.extensions</groupId>
+ <artifactId>guice-multibindings</artifactId>
+ <version>2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.inject.extensions</groupId>
+ <artifactId>guice-grapher</artifactId>
+ <version>2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.inject.extensions</groupId>
+ <artifactId>guice-assisted-inject</artifactId>
+ <version>2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-guice</artifactId>
+ <version>2.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.freemarker</groupId>
+ <artifactId>freemarker</artifactId>
+ <version>2.3.9</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ <version>2.2</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.xml.bind</groupId>
+ <artifactId>jaxb-impl</artifactId>
+ <version>2.2</version>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.9.1</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>xml-apis</artifactId>
+ <groupId>xml-apis</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>dom4j</groupId>
+ <artifactId>dom4j</artifactId>
+ <version>1.6.1</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>xml-apis</artifactId>
+ <groupId>xml-apis</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <!-- Tests -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.7</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>xmlunit</groupId>
+ <artifactId>xmlunit</artifactId>
+ <scope>test</scope>
+ <version>1.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.easymock</groupId>
+ <artifactId>easymock</artifactId>
+ <version>2.5.2</version>
+ <scope>test</scope>
+ </dependency>
+ <!-- Maven -->
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-model</artifactId>
+ <version>2.0.9</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-core</artifactId>
+ <version>2.0.9</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-artifact</artifactId>
+ <version>2.0.10</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-plugin-api</artifactId>
+ <version>2.0.10</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-project</artifactId>
+ <version>2.0.10</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-archiver</artifactId>
+ <version>2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven.shared</groupId>
+ <artifactId>file-management</artifactId>
+ <version>1.2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-utils</artifactId>
+ <version>1.5.15</version>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-velocity</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.code.javaparser</groupId>
+ <artifactId>javaparser</artifactId>
+ <version>1.0.1</version>
+ <scope>test</scope>
+ </dependency>
+ <!-- Projects -->
+ <dependency>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>commons</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>commons</artifactId>
+ <classifier>tests</classifier>
+ <scope>test</scope>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>attributes</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>annotations</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>xinclude</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>generator</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
<reporting>
<plugins>
<plugin>
Modified: branches/cdk-8570/cdk/pom.xml
===================================================================
--- branches/cdk-8570/cdk/pom.xml 2010-08-09 22:50:50 UTC (rev 18528)
+++ branches/cdk-8570/cdk/pom.xml 2010-08-09 23:44:47 UTC (rev 18529)
@@ -1,11 +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">
- <parent>
- <groupId>org.richfaces</groupId>
- <artifactId>richfaces-parent</artifactId>
- <version>9</version>
- </parent>
+<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>richfaces-parent</artifactId>
+ <version>9</version>
+ </parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
@@ -19,14 +20,13 @@
</properties>
<modules>
- <module>bom</module>
<module>parent</module>
- <module>commons</module>
- <module>annotations</module>
- <module>attributes</module>
- <module>xinclude</module>
- <module>generator</module>
- <module>maven-cdk-plugin</module>
+ <module>commons</module>
+ <module>annotations</module>
+ <module>attributes</module>
+ <module>xinclude</module>
+ <module>generator</module>
+ <module>maven-cdk-plugin</module>
<module>dist</module>
</modules>
<!-- SCM and distribution management -->
@@ -36,9 +36,9 @@
<url>http://fisheye.jboss.org/browse/Richfaces/cdk</url>
</scm>
- <!-- Minimal build configuration -->
+ <!-- Minimal build configuration -->
<build>
- <finalName>cdk</finalName>
+ <finalName>cdk</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Modified: branches/cdk-8570/cdk/xinclude/pom.xml
===================================================================
--- branches/cdk-8570/cdk/xinclude/pom.xml 2010-08-09 22:50:50 UTC (rev 18528)
+++ branches/cdk-8570/cdk/xinclude/pom.xml 2010-08-09 23:44:47 UTC (rev 18529)
@@ -19,12 +19,12 @@
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
- <parent>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-plugins</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
+ <parent>
+ <artifactId>parent</artifactId>
+ <groupId>org.richfaces.cdk</groupId>
+ <version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>xinclude</artifactId>
15 years, 9 months
JBoss Rich Faces SVN: r18528 - branches/cdk-8570/cdk.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-08-09 18:50:50 -0400 (Mon, 09 Aug 2010)
New Revision: 18528
Removed:
branches/cdk-8570/cdk/plugins/
Modified:
branches/cdk-8570/cdk/pom.xml
Log:
RF-8570
Modified: branches/cdk-8570/cdk/pom.xml
===================================================================
--- branches/cdk-8570/cdk/pom.xml 2010-08-09 22:45:33 UTC (rev 18527)
+++ branches/cdk-8570/cdk/pom.xml 2010-08-09 22:50:50 UTC (rev 18528)
@@ -21,8 +21,12 @@
<modules>
<module>bom</module>
<module>parent</module>
- <module>plugins</module>
- <module>archetypes</module>
+ <module>commons</module>
+ <module>annotations</module>
+ <module>attributes</module>
+ <module>xinclude</module>
+ <module>generator</module>
+ <module>maven-cdk-plugin</module>
<module>dist</module>
</modules>
<!-- SCM and distribution management -->
15 years, 9 months
JBoss Rich Faces SVN: r18527 - in branches/cdk-8570/cdk: plugins and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-08-09 18:45:33 -0400 (Mon, 09 Aug 2010)
New Revision: 18527
Added:
branches/cdk-8570/cdk/README.odt
branches/cdk-8570/cdk/annotations/
branches/cdk-8570/cdk/attributes/
branches/cdk-8570/cdk/commons/
branches/cdk-8570/cdk/generator/
branches/cdk-8570/cdk/maven-cdk-plugin/
branches/cdk-8570/cdk/maven-javascript-plugin/
branches/cdk-8570/cdk/xinclude/
Removed:
branches/cdk-8570/cdk/plugins/README.odt
branches/cdk-8570/cdk/plugins/annotations/
branches/cdk-8570/cdk/plugins/attributes/
branches/cdk-8570/cdk/plugins/commons/
branches/cdk-8570/cdk/plugins/generator/
branches/cdk-8570/cdk/plugins/maven-cdk-plugin/
branches/cdk-8570/cdk/plugins/maven-javascript-plugin/
branches/cdk-8570/cdk/plugins/xinclude/
Log:
RF-8570
Copied: branches/cdk-8570/cdk/README.odt (from rev 18526, branches/cdk-8570/cdk/plugins/README.odt)
===================================================================
(Binary files differ)
Copied: branches/cdk-8570/cdk/annotations (from rev 18526, branches/cdk-8570/cdk/plugins/annotations)
Copied: branches/cdk-8570/cdk/attributes (from rev 18526, branches/cdk-8570/cdk/plugins/attributes)
Copied: branches/cdk-8570/cdk/commons (from rev 18526, branches/cdk-8570/cdk/plugins/commons)
Copied: branches/cdk-8570/cdk/generator (from rev 18526, branches/cdk-8570/cdk/plugins/generator)
Copied: branches/cdk-8570/cdk/maven-cdk-plugin (from rev 18526, branches/cdk-8570/cdk/plugins/maven-cdk-plugin)
Copied: branches/cdk-8570/cdk/maven-javascript-plugin (from rev 18526, branches/cdk-8570/cdk/plugins/maven-javascript-plugin)
Deleted: branches/cdk-8570/cdk/plugins/README.odt
===================================================================
(Binary files differ)
Copied: branches/cdk-8570/cdk/xinclude (from rev 18526, branches/cdk-8570/cdk/plugins/xinclude)
15 years, 9 months
JBoss Rich Faces SVN: r18526 - in branches/cdk-8570/docs: Component_Development_Kit_Guide and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-08-09 18:38:20 -0400 (Mon, 09 Aug 2010)
New Revision: 18526
Modified:
branches/cdk-8570/docs/Component_Development_Kit_Guide/pom.xml
branches/cdk-8570/docs/pom.xml
Log:
https://jira.jboss.org/browse/RF-9011
Modified: branches/cdk-8570/docs/Component_Development_Kit_Guide/pom.xml
===================================================================
--- branches/cdk-8570/docs/Component_Development_Kit_Guide/pom.xml 2010-08-09 22:37:58 UTC (rev 18525)
+++ branches/cdk-8570/docs/Component_Development_Kit_Guide/pom.xml 2010-08-09 22:38:20 UTC (rev 18526)
@@ -13,6 +13,7 @@
<groupId>org.richfaces.docs</groupId>
<artifactId>docs-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
</parent>
<properties>
Modified: branches/cdk-8570/docs/pom.xml
===================================================================
--- branches/cdk-8570/docs/pom.xml 2010-08-09 22:37:58 UTC (rev 18525)
+++ branches/cdk-8570/docs/pom.xml 2010-08-09 22:38:20 UTC (rev 18526)
@@ -18,6 +18,7 @@
<module>Component_Reference</module>
<module>Developer_Guide</module>
<module>Migration_Guide</module>
+ <module>Component_Development_Kit_Guide</module>
</modules>
<scm>
15 years, 9 months
JBoss Rich Faces SVN: r18525 - branches/cdk-8570/cdk.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-08-09 18:37:58 -0400 (Mon, 09 Aug 2010)
New Revision: 18525
Removed:
branches/cdk-8570/cdk/docs/
Modified:
branches/cdk-8570/cdk/pom.xml
Log:
https://jira.jboss.org/browse/RF-9011
Modified: branches/cdk-8570/cdk/pom.xml
===================================================================
--- branches/cdk-8570/cdk/pom.xml 2010-08-09 22:31:50 UTC (rev 18524)
+++ branches/cdk-8570/cdk/pom.xml 2010-08-09 22:37:58 UTC (rev 18525)
@@ -23,7 +23,6 @@
<module>parent</module>
<module>plugins</module>
<module>archetypes</module>
- <!-- <module>docs</module> -->
<module>dist</module>
</modules>
<!-- SCM and distribution management -->
15 years, 9 months
JBoss Rich Faces SVN: r18522 - branches/cdk-8570.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-08-09 18:18:42 -0400 (Mon, 09 Aug 2010)
New Revision: 18522
Modified:
branches/cdk-8570/
Log:
Initialized merge tracking via "svnmerge" with revisions "1-18520" from
https://svn.jboss.org/repos/richfaces/trunk
Property changes on: branches/cdk-8570
___________________________________________________________________
Name: svnmerge-integrated
+ /trunk:1-18520
15 years, 9 months