JBoss Rich Faces SVN: r11633 - in trunk/test-applications/seleniumTest/richfaces/src: main/webapp/pages/calendar and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-12-08 09:09:12 -0500 (Mon, 08 Dec 2008)
New Revision: 11633
Added:
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/showAttributesTest.xhtml
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
Log:
https://jira.jboss.org/jira/browse/RF-5254 started
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2008-12-08 13:58:50 UTC (rev 11632)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2008-12-08 14:09:12 UTC (rev 11633)
@@ -285,32 +285,151 @@
this.isPopup = isPopup;
}
- /**
- * @return the preloadDateRangeStart
- */
- public Date getPreloadDateRangeStart() {
- return preloadDateRangeStart;
- }
+ /**
+ * @return the preloadDateRangeStart
+ */
+ public Date getPreloadDateRangeStart() {
+ return preloadDateRangeStart;
+ }
- /**
- * @param preloadDateRangeStart the preloadDateRangeStart to set
- */
- public void setPreloadDateRangeStart(Date preloadDateRangeStart) {
- this.preloadDateRangeStart = preloadDateRangeStart;
- }
+ /**
+ * @param preloadDateRangeStart
+ * the preloadDateRangeStart to set
+ */
+ public void setPreloadDateRangeStart(Date preloadDateRangeStart) {
+ this.preloadDateRangeStart = preloadDateRangeStart;
+ }
- /**
- * @return the preloadDateRangeEnd
- */
- public Date getPreloadDateRangeEnd() {
- return preloadDateRangeEnd;
- }
+ /**
+ * @return the preloadDateRangeEnd
+ */
+ public Date getPreloadDateRangeEnd() {
+ return preloadDateRangeEnd;
+ }
- /**
- * @param preloadDateRangeEnd the preloadDateRangeEnd to set
- */
- public void setPreloadDateRangeEnd(Date preloadDateRangeEnd) {
- this.preloadDateRangeEnd = preloadDateRangeEnd;
- }
+ /**
+ * @param preloadDateRangeEnd
+ * the preloadDateRangeEnd to set
+ */
+ public void setPreloadDateRangeEnd(Date preloadDateRangeEnd) {
+ this.preloadDateRangeEnd = preloadDateRangeEnd;
+ }
+ private boolean showApplyButton;
+
+ private boolean showHeader;
+
+ private boolean showFooter;
+
+ private boolean showInput;
+
+ private boolean showWeekDaysBar;
+
+ private boolean showWeeksBar;
+
+ /**
+ * Gets value of showApplyButton field.
+ * @return value of showApplyButton field
+ */
+ public boolean isShowApplyButton() {
+ return showApplyButton;
+ }
+
+ /**
+ * Set a new value for showApplyButton field.
+ * @param showApplyButton a new value for showApplyButton field
+ */
+ public void setShowApplyButton(boolean showApplyButton) {
+ this.showApplyButton = showApplyButton;
+ }
+
+ /**
+ * Gets value of showHeader field.
+ * @return value of showHeader field
+ */
+ public boolean isShowHeader() {
+ return showHeader;
+ }
+
+ /**
+ * Set a new value for showHeader field.
+ * @param showHeader a new value for showHeader field
+ */
+ public void setShowHeader(boolean showHeader) {
+ this.showHeader = showHeader;
+ }
+
+ /**
+ * Gets value of showFooter field.
+ * @return value of showFooter field
+ */
+ public boolean isShowFooter() {
+ return showFooter;
+ }
+
+ /**
+ * Set a new value for showFooter field.
+ * @param showFooter a new value for showFooter field
+ */
+ public void setShowFooter(boolean showFooter) {
+ this.showFooter = showFooter;
+ }
+
+ /**
+ * Gets value of showInput field.
+ * @return value of showInput field
+ */
+ public boolean isShowInput() {
+ return showInput;
+ }
+
+ /**
+ * Set a new value for showInput field.
+ * @param showInput a new value for showInput field
+ */
+ public void setShowInput(boolean showInput) {
+ this.showInput = showInput;
+ }
+
+ /**
+ * Gets value of showWeekDaysBar field.
+ * @return value of showWeekDaysBar field
+ */
+ public boolean isShowWeekDaysBar() {
+ return showWeekDaysBar;
+ }
+
+ /**
+ * Set a new value for showWeekDaysBar field.
+ * @param showWeekDaysBar a new value for showWeekDaysBar field
+ */
+ public void setShowWeekDaysBar(boolean showWeekDaysBar) {
+ this.showWeekDaysBar = showWeekDaysBar;
+ }
+
+ /**
+ * Gets value of showWeeksBar field.
+ * @return value of showWeeksBar field
+ */
+ public boolean isShowWeeksBar() {
+ return showWeeksBar;
+ }
+
+ /**
+ * Set a new value for showWeeksBar field.
+ * @param showWeeksBar a new value for showWeeksBar field
+ */
+ public void setShowWeeksBar(boolean showWeeksBar) {
+ this.showWeeksBar = showWeeksBar;
+ }
+
+ public void initShowAttributes() {
+ showApplyButton = true;
+ showHeader = true;
+ showFooter = true;
+ showInput = true;
+ showWeekDaysBar = true;
+ showWeeksBar = true;
+ }
+
}
Added: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/showAttributesTest.xhtml
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/showAttributesTest.xhtml
___________________________________________________________________
Name: svn:mime-type
+ application/xhtml+xml
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-08 13:58:50 UTC (rev 11632)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-08 14:09:12 UTC (rev 11633)
@@ -38,8 +38,13 @@
public class CalendarTest extends SeleniumTestBase {
static final String RESET_METHOD = "#{calendarBean.reset}";
+
+ static final String INIT_SHOW_ATTRIBUTES = "#{calendarBean.initShowAttributes}";
+
static final String FORM_ID = "_form:";
+ static final String SHOW_ATTRIBURES_TEST_URL = "pages/calendar/showAttributesTest.xhtml";
+
static final String CONTROLS_FORM_ID = "_controls:";
static final String availableDayCellClass = "rich-calendar-cell-size rich-calendar-cell rich-calendar-btn";
@@ -621,10 +626,19 @@
}
}
+ @Test
+ public void testShowHeaderAttribute(Template template) {
+ renderPage(SHOW_ATTRIBURES_TEST_URL, template, INIT_SHOW_ATTRIBUTES);
+ }
+
private void setPopup(boolean isPopup) {
- runScript("$('" + isPopupId + "').checked=" + isPopup);
+ check(isPopupId, isPopup);
}
+ private void check(String checkBoxId, boolean isChecked) {
+ runScript("$('" + checkBoxId + "').checked=" + isChecked);
+ }
+
private void setup() {
clickCommandAndWait(setupActionId);
}
17 years, 5 months
JBoss Rich Faces SVN: r11632 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-08 08:58:50 -0500 (Mon, 08 Dec 2008)
New Revision: 11632
Modified:
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
Log:
RF-657: Components descriptions should be reviewed.
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-12-08 13:50:18 UTC (rev 11631)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-12-08 13:58:50 UTC (rev 11632)
@@ -3,7 +3,7 @@
<sectioninfo>
<keywordset>
<keyword>on-keypress suggestion</keyword>
- <keyword>rich:suggestionBox</keyword>
+ <keyword>rich:suggestionbox</keyword>
<keyword>HtmlsuggestionBox</keyword>
</keywordset>
</sectioninfo>
@@ -124,7 +124,7 @@
</emphasis>) that are obligatory for the suggestion component. The
attributes have initial Defaults but should be specified manually in
order to be changed.</para>
- <para>The <property>suggestionBox</property> component, as it is shown on the
+ <para>The <property>suggestionbox</property> component, as it is shown on the
screenshot, could get any collection for an output and outputs it in a
ToolTip window the same as a custom dataTable (in several columns)</para>
<programlisting role="XML"><![CDATA[...
@@ -141,7 +141,7 @@
<para>It looks on a page in the following way:</para>
<figure>
<title><emphasis role="bold">
- <property><rich:suggestionBox></property>
+ <property><rich:suggestionbox></property>
</emphasis> with ToolTip window</title>
<mediaobject>
<imageobject>
@@ -172,7 +172,7 @@
value starting from the last token:</para>
<figure>
<title><emphasis role="bold">
- <property><rich:suggestionBox></property>
+ <property><rich:suggestionbox></property>
</emphasis> with chosen word</title>
<mediaobject>
<imageobject>
@@ -193,7 +193,7 @@
Project</ulink>).</para>
<para>In addition to these attributes common for Ajax action components and
limiting requests quantity and frequency,
- <property>suggestionBox</property> has one more its own attribute
+ <property>suggestionbox</property> has one more its own attribute
limiting requests (the <emphasis>
<property>"minChars"</property>
</emphasis> attribute). The attribute defines characters quantity
@@ -236,7 +236,7 @@
<figure>
<title><emphasis role="bold">
- <property><rich:suggestionBox></property>
+ <property><rich:suggestionbox></property>
</emphasis> with empty list</title>
<mediaobject>
<imageobject>
@@ -245,7 +245,7 @@
</mediaobject>
</figure>
<para> There is such feature in <emphasis role="bold">
- <property><rich:suggestionBox></property>
+ <property><rich:suggestionbox></property>
</emphasis> component as object selection. If you want that selected
item has been represented as object, you could set to "true" the value
for <emphasis>
@@ -355,7 +355,7 @@
</emphasis></para>
<para>There are two ways to redefine the appearance of all <emphasis role="bold">
- <property><rich:suggestionBox></property>
+ <property><rich:suggestionbox></property>
</emphasis> components at once:</para>
<itemizedlist>
@@ -367,7 +367,7 @@
<para>Add to your style sheets <emphasis>
<property>style classes</property>
</emphasis> used by a <emphasis role="bold">
- <property><rich:suggestionBox></property>
+ <property><rich:suggestionbox></property>
</emphasis> component</para>
</listitem>
</itemizedlist>
@@ -530,7 +530,7 @@
<para>On the screenshot, there are classes names defining specified elements.</para>
<table id="suggBoxC">
- <title>Classes names that define a suggestionBox</title>
+ <title>Classes names that define a suggestionbox</title>
<tgroup cols="2">
<thead>
@@ -626,7 +626,7 @@
</table>
<para>In order to redefine styles for all <emphasis role="bold">
- <property><rich:suggestionBox></property>
+ <property><rich:suggestionbox></property>
</emphasis> components on a page using CSS, it's enough to
create classes with the same names (possible classes could be found in
the tables <link linkend="suggBoxC"> above</link>) and define
@@ -656,10 +656,10 @@
<para>Also it's possible to change styles of particular <emphasis
role="bold">
- <property><rich:suggestionBox></property>
+ <property><rich:suggestionbox></property>
</emphasis> component. In this case you should create own style
classes and use them in corresponding <emphasis role="bold">
- <property><rich:suggestionBox></property>
+ <property><rich:suggestionbox></property>
</emphasis>
<emphasis>
<property>styleClass</property>
@@ -676,7 +676,7 @@
<para>The <emphasis>
<property>"selectedClass"</property>
</emphasis> attribute for <emphasis role="bold">
- <property><rich:suggestionBox></property>
+ <property><rich:suggestionbox></property>
</emphasis> is defined as it's shown in the example below:</para>
<para>
@@ -713,7 +713,7 @@
page at RichFaces Livedemo for examples of component usage and sources.
</para>
<para>RichFaces cookbook at JBoss Portal includes some articles that cover different aspects of working with
- <emphasis role="bold"><property><rich:suggestionBox></property></emphasis>:
+ <emphasis role="bold"><property><rich:suggestionbox></property></emphasis>:
</para>
<itemizedlist>
<listitem>
17 years, 5 months
JBoss Rich Faces SVN: r11631 - trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-12-08 08:50:18 -0500 (Mon, 08 Dec 2008)
New Revision: 11631
Modified:
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java
Log:
RF-5197
only for test
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java 2008-12-08 13:33:54 UTC (rev 11630)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java 2008-12-08 13:50:18 UTC (rev 11631)
@@ -141,30 +141,25 @@
@BeforeClass
@Parameters({"browser", "filterPrefix"})
public void startSelenium(String browser, String filterPrefix) {
- String[] paths = {"/usr/lib/firefox-1.0.4/firefox",
- "/usr/bin/firefox-1.5.0.10/firefox",
- "/usr/bin/firefox-1.5.0.12/firefox",
- "/usr/bin64/firefox-1.5.0.12/firefox",
- "/usr/bin/firefox-3.0b5/firefox",
- "/usr/bin64/firefox-3.0b5/firefox",
- "/usr/bin/firefox-3.0.1/firefox",
- "/usr/bin64/firefox-3.0.1/firefox",
- "/usr/bin/firefox/firefox"
+ String[] paths = {"/usr/lib/firefox-1.0.4/firefox-bin",
+ "/usr/lib/firefox-1.5.0.10/firefox-bin",
+ "/usr/lib/firefox-1.5.0.12/firefox-bin",
+ "/usr/lib64/firefox-1.5.0.12/firefox-bin",
+ "/usr/lib/firefox-3.0b5/firefox-bin",
+ "/usr/lib64/firefox-3.0b5/firefox-bin",
+ "/usr/lib/firefox-3.0.1/firefox-bin",
+ "/usr/lib64/firefox-3.0.1/firefox-bin",
+ "/usr/lib/firefox/firefox-bin",
+ "/usr/lib/firefox-1.5.0.9/firefox-bin"
};
if ("*firefox".equals(browser)) {
- /*for (int i = 0; i < paths.length && "*firefox".equals(browser); i++) {
+ for (int i = 0; i < paths.length && "*firefox".equals(browser); i++) {
String path = paths[i];
File file = new File(path);
if (file.isFile()) {
browser += " " + path;
- } else {
- file = new File(path + "-bin");
- if (file.isFile()) {
- browser += " " + path + "-bin";
- }
}
- }*/
- browser += " /usr/lib/firefox-1.5.0.9/firefox-bin";
+ }
}
synchronized (MUTEX) {
this.filterPrefix = filterPrefix;
17 years, 5 months
JBoss Rich Faces SVN: r11630 - trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-12-08 08:33:54 -0500 (Mon, 08 Dec 2008)
New Revision: 11630
Modified:
trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
Log:
https://jira.jboss.org/jira/browse/RF-4190
Modified: trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
===================================================================
--- trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-12-08 13:33:31 UTC (rev 11629)
+++ trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-12-08 13:33:54 UTC (rev 11630)
@@ -306,9 +306,20 @@
}
},
+ getParameters : function(event, params, paramName) {
+
+ if (!params) {
+ params = event;
+ }
+ if (params && params[paramName]) {
+ return params[paramName];
+ }
+ return params;
+ },
+
setValue : function(e, param) {
var value = this.valueKeeper.value;
- var userValue = param.value;
+ var userValue = this.getParameters(e,param,"value");
this.endEditableState();
if (userValue.blank()) {
17 years, 5 months
JBoss Rich Faces SVN: r11629 - trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-12-08 08:33:31 -0500 (Mon, 08 Dec 2008)
New Revision: 11629
Modified:
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js
Log:
https://jira.jboss.org/jira/browse/RF-4190
Modified: trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js
===================================================================
--- trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js 2008-12-08 12:40:18 UTC (rev 11628)
+++ trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js 2008-12-08 13:33:31 UTC (rev 11629)
@@ -197,7 +197,23 @@
}
},
+ getParameters : function (args) {
+ var result = {};
+ var label = args[1]['label'];
+ if(label) {
+ var value = args[1]['value'];
+ result.itemLabel = label;
+ result.itemValue = value;
+ } else {
+ result.itemLabel = args[0];
+ result.itemValue = args[1];
+ }
+ return result;
+ },
+
setValue : function(e, params) {
+ var args = $A(arguments);
+ var params = this.getParameters(args);
var value = this.valueKeeper.value;
if (this.invokeEvent(this.events.onviewactivation, this.inplaceInput, "rich:onviewactivation", {oldValue : this.valueKeeper.value, value : params.itemValue})) {
this.endEditableState();
17 years, 5 months
JBoss Rich Faces SVN: r11628 - trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-12-08 07:40:18 -0500 (Mon, 08 Dec 2008)
New Revision: 11628
Modified:
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java
Log:
RF-5197
only for test
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java 2008-12-08 12:24:37 UTC (rev 11627)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java 2008-12-08 12:40:18 UTC (rev 11628)
@@ -152,7 +152,7 @@
"/usr/bin/firefox/firefox"
};
if ("*firefox".equals(browser)) {
- for (int i = 0; i < paths.length && "*firefox".equals(browser); i++) {
+ /*for (int i = 0; i < paths.length && "*firefox".equals(browser); i++) {
String path = paths[i];
File file = new File(path);
if (file.isFile()) {
@@ -163,7 +163,8 @@
browser += " " + path + "-bin";
}
}
- }
+ }*/
+ browser += " /usr/lib/firefox-1.5.0.9/firefox-bin";
}
synchronized (MUTEX) {
this.filterPrefix = filterPrefix;
17 years, 5 months
JBoss Rich Faces SVN: r11627 - in tags: 3.3.0.BETA3 and 191 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-08 07:24:37 -0500 (Mon, 08 Dec 2008)
New Revision: 11627
Added:
tags/3.3.0.BETA3/
Modified:
tags/3.3.0.BETA3/cdk/generator/pom.xml
tags/3.3.0.BETA3/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.0.BETA3/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.0.BETA3/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.0.BETA3/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.0.BETA3/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.0.BETA3/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.0.BETA3/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.0.BETA3/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
tags/3.3.0.BETA3/cdk/maven-cdk-plugin/pom.xml
tags/3.3.0.BETA3/cdk/maven-javascript-plugin/pom.xml
tags/3.3.0.BETA3/cdk/pom.xml
tags/3.3.0.BETA3/docs/cdkguide/en/pom.xml
tags/3.3.0.BETA3/docs/cdkguide/pom.xml
tags/3.3.0.BETA3/docs/common-resources/en/pom.xml
tags/3.3.0.BETA3/docs/common-resources/pom.xml
tags/3.3.0.BETA3/docs/faq/en/pom.xml
tags/3.3.0.BETA3/docs/faq/pom.xml
tags/3.3.0.BETA3/docs/highlight/pom.xml
tags/3.3.0.BETA3/docs/migrationguide/en/pom.xml
tags/3.3.0.BETA3/docs/migrationguide/pom.xml
tags/3.3.0.BETA3/docs/pom.xml
tags/3.3.0.BETA3/docs/userguide/en/pom.xml
tags/3.3.0.BETA3/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.0.BETA3/docs/userguide/pom.xml
tags/3.3.0.BETA3/extensions/gwt/pom.xml
tags/3.3.0.BETA3/extensions/pom.xml
tags/3.3.0.BETA3/extensions/seam/pom.xml
tags/3.3.0.BETA3/extensions/trinidad/pom.xml
tags/3.3.0.BETA3/framework/api/pom.xml
tags/3.3.0.BETA3/framework/impl/pom.xml
tags/3.3.0.BETA3/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.3.0.BETA3/framework/jsf-test/pom.xml
tags/3.3.0.BETA3/framework/pom.xml
tags/3.3.0.BETA3/framework/test/pom.xml
tags/3.3.0.BETA3/pom.xml
tags/3.3.0.BETA3/samples/beanValidatorSample/pom.xml
tags/3.3.0.BETA3/samples/calendar-sample/pom.xml
tags/3.3.0.BETA3/samples/columnsDemo/pom.xml
tags/3.3.0.BETA3/samples/combobox-sample/pom.xml
tags/3.3.0.BETA3/samples/contextMenuDemo/pom.xml
tags/3.3.0.BETA3/samples/darkX/pom.xml
tags/3.3.0.BETA3/samples/dataFilterSliderDemo/pom.xml
tags/3.3.0.BETA3/samples/dataTableDemo/pom.xml
tags/3.3.0.BETA3/samples/datascroller-sample/pom.xml
tags/3.3.0.BETA3/samples/dragDropDemo/pom.xml
tags/3.3.0.BETA3/samples/dropdownmenu-sample/pom.xml
tags/3.3.0.BETA3/samples/editor-sample/pom.xml
tags/3.3.0.BETA3/samples/editorSeam-sample/pom.xml
tags/3.3.0.BETA3/samples/effect-sample/pom.xml
tags/3.3.0.BETA3/samples/extendedDataTable-sample/pom.xml
tags/3.3.0.BETA3/samples/fileUploadDemo/pom.xml
tags/3.3.0.BETA3/samples/functions-demo/pom.xml
tags/3.3.0.BETA3/samples/glassX/pom.xml
tags/3.3.0.BETA3/samples/gmap-sample/pom.xml
tags/3.3.0.BETA3/samples/hotKey-sample/pom.xml
tags/3.3.0.BETA3/samples/inplaceInput-sample/pom.xml
tags/3.3.0.BETA3/samples/inplaceSelect-sample/pom.xml
tags/3.3.0.BETA3/samples/inputNumberSliderDemo/pom.xml
tags/3.3.0.BETA3/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.0.BETA3/samples/jQuery-sample/pom.xml
tags/3.3.0.BETA3/samples/jira-data/pom.xml
tags/3.3.0.BETA3/samples/laguna/pom.xml
tags/3.3.0.BETA3/samples/listShuttleDemo/pom.xml
tags/3.3.0.BETA3/samples/local-value-demo/pom.xml
tags/3.3.0.BETA3/samples/modalpanel-sample/pom.xml
tags/3.3.0.BETA3/samples/orderingListDemo/pom.xml
tags/3.3.0.BETA3/samples/panel-sample/pom.xml
tags/3.3.0.BETA3/samples/panelbar-sample/pom.xml
tags/3.3.0.BETA3/samples/panelmenu-sample/pom.xml
tags/3.3.0.BETA3/samples/pickList-sample/pom.xml
tags/3.3.0.BETA3/samples/pom.xml
tags/3.3.0.BETA3/samples/progressBarDemo/pom.xml
tags/3.3.0.BETA3/samples/queue-sample/pom.xml
tags/3.3.0.BETA3/samples/rich-message-demo/pom.xml
tags/3.3.0.BETA3/samples/richfaces-art-datatable/pom.xml
tags/3.3.0.BETA3/samples/richfaces-demo/pom.xml
tags/3.3.0.BETA3/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.0.BETA3/samples/richfaces-ear-demo/pom.xml
tags/3.3.0.BETA3/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.0.BETA3/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.0.BETA3/samples/scrollableDataTableDemo/pom.xml
tags/3.3.0.BETA3/samples/seamEAR/ear/pom.xml
tags/3.3.0.BETA3/samples/seamEAR/ejbs/pom.xml
tags/3.3.0.BETA3/samples/seamEAR/pom.xml
tags/3.3.0.BETA3/samples/seamEAR/primary-source/pom.xml
tags/3.3.0.BETA3/samples/seamEAR/projects/logging/pom.xml
tags/3.3.0.BETA3/samples/seamEAR/projects/pom.xml
tags/3.3.0.BETA3/samples/seamEAR/wars/pom.xml
tags/3.3.0.BETA3/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.0.BETA3/samples/seamIntegration/pom.xml
tags/3.3.0.BETA3/samples/separator-sample/pom.xml
tags/3.3.0.BETA3/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.0.BETA3/samples/skins/pom.xml
tags/3.3.0.BETA3/samples/sortingFilteringDemo/pom.xml
tags/3.3.0.BETA3/samples/state-sample/pom.xml
tags/3.3.0.BETA3/samples/stdcomponents-sample/pom.xml
tags/3.3.0.BETA3/samples/suggestionbox-sample/pom.xml
tags/3.3.0.BETA3/samples/tabPanelDemo/pom.xml
tags/3.3.0.BETA3/samples/togglePanel-sample/pom.xml
tags/3.3.0.BETA3/samples/tomahawkCompability/pom.xml
tags/3.3.0.BETA3/samples/toolBarDemo/pom.xml
tags/3.3.0.BETA3/samples/tooltip-sample/pom.xml
tags/3.3.0.BETA3/samples/tree-demo/pom.xml
tags/3.3.0.BETA3/samples/treeModelDemo/pom.xml
tags/3.3.0.BETA3/samples/virtualEarth-sample/pom.xml
tags/3.3.0.BETA3/sandbox/api/pom.xml
tags/3.3.0.BETA3/sandbox/impl/pom.xml
tags/3.3.0.BETA3/sandbox/pom.xml
tags/3.3.0.BETA3/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.0.BETA3/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.0.BETA3/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.0.BETA3/sandbox/samples/panel2-sample/pom.xml
tags/3.3.0.BETA3/sandbox/samples/pom.xml
tags/3.3.0.BETA3/sandbox/samples/rex-demo/pom.xml
tags/3.3.0.BETA3/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.0.BETA3/sandbox/ui/create.bat
tags/3.3.0.BETA3/sandbox/ui/dialog-window/pom.xml
tags/3.3.0.BETA3/sandbox/ui/editorOld/pom.xml
tags/3.3.0.BETA3/sandbox/ui/panel2/pom.xml
tags/3.3.0.BETA3/sandbox/ui/pom.xml
tags/3.3.0.BETA3/sandbox/ui/rex-button/pom.xml
tags/3.3.0.BETA3/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.0.BETA3/sandbox/ui/rex-resizable/pom.xml
tags/3.3.0.BETA3/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.0.BETA3/sandbox/ui/sortableHeader/pom.xml
tags/3.3.0.BETA3/sandbox/ui/treeTable/pom.xml
tags/3.3.0.BETA3/test-applications/ajaxTest/pom.xml
tags/3.3.0.BETA3/test-applications/automator/pom.xml
tags/3.3.0.BETA3/test-applications/facelets/pom.xml
tags/3.3.0.BETA3/test-applications/jsp/pom.xml
tags/3.3.0.BETA3/test-applications/pom.xml
tags/3.3.0.BETA3/test-applications/realworld/pom.xml
tags/3.3.0.BETA3/test-applications/regressionArea/pom.xml
tags/3.3.0.BETA3/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.0.BETA3/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.0.BETA3/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.0.BETA3/test-applications/seamApp/pom.xml
tags/3.3.0.BETA3/test-applications/seleniumTest/pom.xml
tags/3.3.0.BETA3/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.0.BETA3/test-applications/seleniumTest/samples/pom.xml
tags/3.3.0.BETA3/ui/assembly/pom.xml
tags/3.3.0.BETA3/ui/beanValidator/pom.xml
tags/3.3.0.BETA3/ui/calendar/pom.xml
tags/3.3.0.BETA3/ui/columns/pom.xml
tags/3.3.0.BETA3/ui/combobox/pom.xml
tags/3.3.0.BETA3/ui/componentControl/pom.xml
tags/3.3.0.BETA3/ui/contextMenu/pom.xml
tags/3.3.0.BETA3/ui/core/pom.xml
tags/3.3.0.BETA3/ui/create.bat
tags/3.3.0.BETA3/ui/dataFilterSlider/pom.xml
tags/3.3.0.BETA3/ui/dataTable/pom.xml
tags/3.3.0.BETA3/ui/datascroller/pom.xml
tags/3.3.0.BETA3/ui/drag-drop/pom.xml
tags/3.3.0.BETA3/ui/dropdown-menu/pom.xml
tags/3.3.0.BETA3/ui/editor/pom.xml
tags/3.3.0.BETA3/ui/effect/pom.xml
tags/3.3.0.BETA3/ui/extendedDataTable/pom.xml
tags/3.3.0.BETA3/ui/fileUpload/pom.xml
tags/3.3.0.BETA3/ui/functions/pom.xml
tags/3.3.0.BETA3/ui/gmap/pom.xml
tags/3.3.0.BETA3/ui/hotKey/pom.xml
tags/3.3.0.BETA3/ui/inplaceInput/pom.xml
tags/3.3.0.BETA3/ui/inplaceSelect/pom.xml
tags/3.3.0.BETA3/ui/inputnumber-slider/pom.xml
tags/3.3.0.BETA3/ui/inputnumber-spinner/pom.xml
tags/3.3.0.BETA3/ui/insert/pom.xml
tags/3.3.0.BETA3/ui/jQuery/pom.xml
tags/3.3.0.BETA3/ui/listShuttle/pom.xml
tags/3.3.0.BETA3/ui/menu-components/pom.xml
tags/3.3.0.BETA3/ui/message/pom.xml
tags/3.3.0.BETA3/ui/modal-panel/pom.xml
tags/3.3.0.BETA3/ui/orderingList/pom.xml
tags/3.3.0.BETA3/ui/paint2D/pom.xml
tags/3.3.0.BETA3/ui/panel/pom.xml
tags/3.3.0.BETA3/ui/panelbar/pom.xml
tags/3.3.0.BETA3/ui/panelmenu/pom.xml
tags/3.3.0.BETA3/ui/pickList/pom.xml
tags/3.3.0.BETA3/ui/pom.xml
tags/3.3.0.BETA3/ui/progressBAR/pom.xml
tags/3.3.0.BETA3/ui/scrollableDataTable/pom.xml
tags/3.3.0.BETA3/ui/separator/pom.xml
tags/3.3.0.BETA3/ui/simpleTogglePanel/pom.xml
tags/3.3.0.BETA3/ui/spacer/pom.xml
tags/3.3.0.BETA3/ui/state/pom.xml
tags/3.3.0.BETA3/ui/suggestionbox/pom.xml
tags/3.3.0.BETA3/ui/tabPanel/pom.xml
tags/3.3.0.BETA3/ui/togglePanel/pom.xml
tags/3.3.0.BETA3/ui/toolBar/pom.xml
tags/3.3.0.BETA3/ui/tooltip/pom.xml
tags/3.3.0.BETA3/ui/tree/pom.xml
tags/3.3.0.BETA3/ui/treeModel/pom.xml
tags/3.3.0.BETA3/ui/treeTable/pom.xml
tags/3.3.0.BETA3/ui/virtualEarth/pom.xml
Log:
create tag for a release 3.3.0.BETA3
Copied: tags/3.3.0.BETA3 (from rev 11623, trunk)
Modified: tags/3.3.0.BETA3/cdk/generator/pom.xml
===================================================================
--- trunk/cdk/generator/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/generator/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1,93 +1,92 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <parent>
- <artifactId>cdk</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>generator</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <name>Java Server Faces component generator</name>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <inherited>true</inherited>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.6.5</version>
- </dependency>
- <dependency>
- <groupId>velocity</groupId>
- <artifactId>velocity-dep</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>commons-digester</groupId>
- <artifactId>commons-digester</artifactId>
- <version>1.5</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- </dependency>
- <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>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>qdox</groupId>
- <artifactId>qdox</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib</artifactId>
- <version>2.1_3</version>
- </dependency>
- <dependency>
- <groupId>wutka</groupId>
- <artifactId>dtdparser</artifactId>
- <version>1.21</version>
- </dependency>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.8.1</version>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>cdk</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA3</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>generator</artifactId>
+ <version>3.3.0.BETA3</version>
+ <name>Java Server Faces component generator</name>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ <dependency>
+ <groupId>velocity</groupId>
+ <artifactId>velocity-dep</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ <version>1.5</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ </dependency>
+ <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>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>qdox</groupId>
+ <artifactId>qdox</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>cglib</groupId>
+ <artifactId>cglib</artifactId>
+ <version>2.1_3</version>
+ </dependency>
+ <dependency>
+ <groupId>wutka</groupId>
+ <artifactId>dtdparser</artifactId>
+ <version>1.21</version>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.8.1</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsf-component/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/maven-archetype-jsf-component/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.0.BETA3/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsfwebapp/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/maven-archetype-jsfwebapp/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.0.BETA3/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-plug-n-skin/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/maven-archetype-plug-n-skin/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.0.BETA3/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.0.BETA3/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-seam-app/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/maven-archetype-seam-app/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.0-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.0.BETA3</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.0.BETA3/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-cdk-plugin/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/maven-cdk-plugin/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.0.BETA3/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-javascript-plugin/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/maven-javascript-plugin/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.0.BETA3/cdk/pom.xml
===================================================================
--- trunk/cdk/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/cdk/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.0.BETA3/docs/cdkguide/en/pom.xml
===================================================================
--- trunk/docs/cdkguide/en/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/cdkguide/en/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.0.BETA3/docs/cdkguide/pom.xml
===================================================================
--- trunk/docs/cdkguide/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/cdkguide/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.0.BETA3/docs/common-resources/en/pom.xml
===================================================================
--- trunk/docs/common-resources/en/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/common-resources/en/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>en</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<packaging>jar</packaging>
<name>Documentation common resources (en)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.0.BETA3/docs/common-resources/pom.xml
===================================================================
--- trunk/docs/common-resources/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/common-resources/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.0.BETA3/docs/faq/en/pom.xml
===================================================================
--- trunk/docs/faq/en/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/faq/en/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.0.BETA3/docs/faq/pom.xml
===================================================================
--- trunk/docs/faq/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/faq/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<pluginRepositories>
Modified: tags/3.3.0.BETA3/docs/highlight/pom.xml
===================================================================
--- trunk/docs/highlight/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/highlight/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.0.BETA3/docs/migrationguide/en/pom.xml
===================================================================
--- trunk/docs/migrationguide/en/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/migrationguide/en/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: tags/3.3.0.BETA3/docs/migrationguide/pom.xml
===================================================================
--- trunk/docs/migrationguide/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/migrationguide/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.0.BETA3/docs/pom.xml
===================================================================
--- trunk/docs/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.0.BETA3/docs/userguide/en/pom.xml
===================================================================
--- trunk/docs/userguide/en/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/userguide/en/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.0.BETA3/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3223,7 +3223,7 @@
<listitem>
<para>
<code>DarchetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.0-SNAPSHOT"</code>
+ <code>"3.3.0.BETA3"</code>
</para>
</listitem>
<listitem>
@@ -3520,7 +3520,7 @@
mvn archetype:create
-DarchetypeGroupId=org.richfaces.cdk
-DarchetypeArtifactId=maven-archetype-plug-n-skin
--DarchetypeVersion=3.3.0-SNAPSHOT
+-DarchetypeVersion=3.3.0.BETA3
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: tags/3.3.0.BETA3/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/docs/userguide/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.0.BETA3/extensions/gwt/pom.xml
===================================================================
--- trunk/extensions/gwt/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/extensions/gwt/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.0.BETA3/extensions/pom.xml
===================================================================
--- trunk/extensions/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/extensions/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.0.BETA3/extensions/seam/pom.xml
===================================================================
--- trunk/extensions/seam/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/extensions/seam/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.0.BETA3/extensions/trinidad/pom.xml
===================================================================
--- trunk/extensions/trinidad/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/extensions/trinidad/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.0.BETA3/framework/api/pom.xml
===================================================================
--- trunk/framework/api/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/framework/api/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: tags/3.3.0.BETA3/framework/impl/pom.xml
===================================================================
--- trunk/framework/impl/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/framework/impl/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1,15 +1,14 @@
-<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">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<resources>
<resource>
@@ -160,7 +159,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- trunk/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-12-08 12:24:37 UTC (rev 11627)
@@ -37,7 +37,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "0-SNAPSHOT" ;
+ public static final String REVISION = "0.BETA3" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.3.0.BETA3/framework/jsf-test/pom.xml
===================================================================
--- trunk/framework/jsf-test/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/framework/jsf-test/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1,119 +1,117 @@
-<?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>framework</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>jsf-test</artifactId>
- <name>jsf-test</name>
- <version>3.3.0-SNAPSHOT</version>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.5</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.htmlunit</groupId>
- <artifactId>htmlunit</artifactId>
- <version>2.3</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_10</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.htmlunit</groupId>
- <artifactId>htmlunit-core-js</artifactId>
- <version>2.2</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.cssparser</groupId>
- <artifactId>cssparser</artifactId>
- <version>0.9.5</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.1</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>1.9.9</version>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- </dependency>
- <dependency>
- <groupId>jstl</groupId>
- <artifactId>jstl</artifactId>
- <version>1.2</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.annotation</groupId>
- <artifactId>jsr250-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>xalan</groupId>
- <artifactId>xalan</artifactId>
- <version>2.7.0</version>
- </dependency>
- <dependency>
- <groupId>de.berlios.jsunit</groupId>
- <artifactId>jsunit</artifactId>
- <version>1.3</version>
- <exclusions>
- <exclusion>
- <groupId>rhino</groupId>
- <artifactId>js</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>framework</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA3</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>jsf-test</artifactId>
+ <name>jsf-test</name>
+ <version>3.3.0.BETA3</version>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.5</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.htmlunit</groupId>
+ <artifactId>htmlunit</artifactId>
+ <version>2.3</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_10</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.htmlunit</groupId>
+ <artifactId>htmlunit-core-js</artifactId>
+ <version>2.2</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.cssparser</groupId>
+ <artifactId>cssparser</artifactId>
+ <version>0.9.5</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>1.9.9</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>jstl</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.annotation</groupId>
+ <artifactId>jsr250-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>xalan</groupId>
+ <artifactId>xalan</artifactId>
+ <version>2.7.0</version>
+ </dependency>
+ <dependency>
+ <groupId>de.berlios.jsunit</groupId>
+ <artifactId>jsunit</artifactId>
+ <version>1.3</version>
+ <exclusions>
+ <exclusion>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/framework/pom.xml
===================================================================
--- trunk/framework/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/framework/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: tags/3.3.0.BETA3/framework/test/pom.xml
===================================================================
--- trunk/framework/test/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/framework/test/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.0.BETA3/pom.xml
===================================================================
--- trunk/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
@@ -217,9 +217,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk</developerConnection>
- <url>https://svn.jboss.org/repos/richfaces/trunk</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/3.3.0.BETA3</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.3.0.BETA3</developerConnection>
+ <url>https://svn.jboss.org/repos/richfaces/branches/3.3.0.BETA3</url>
</scm>
<profiles>
<profile>
@@ -242,9 +242,9 @@
.settings/org.eclipse.jdt.ui.prefs
</name>
<content>
- <![CDATA[
- eclipse.preferences.version=1
- org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
+ <![CDATA[
+ eclipse.preferences.version=1
+ org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
]]>
</content>
</file>
@@ -412,4 +412,4 @@
</distributionManagement>
</profile>
</profiles>
-</project>
+</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/samples/beanValidatorSample/pom.xml
===================================================================
--- trunk/samples/beanValidatorSample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/beanValidatorSample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<finalName>beanValidatorSample</finalName>
<plugins>
@@ -33,7 +33,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/samples/calendar-sample/pom.xml
===================================================================
--- trunk/samples/calendar-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/calendar-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/columnsDemo/pom.xml
===================================================================
--- trunk/samples/columnsDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/columnsDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/combobox-sample/pom.xml
===================================================================
--- trunk/samples/combobox-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/combobox-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/contextMenuDemo/pom.xml
===================================================================
--- trunk/samples/contextMenuDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/contextMenuDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/darkX/pom.xml
===================================================================
--- trunk/samples/darkX/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/darkX/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1,48 +1,48 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>darkX</artifactId>
- <name>darkX</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA3</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>darkX</artifactId>
+ <name>darkX</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA3</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- trunk/samples/dataFilterSliderDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/dataFilterSliderDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/dataTableDemo/pom.xml
===================================================================
--- trunk/samples/dataTableDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/dataTableDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/datascroller-sample/pom.xml
===================================================================
--- trunk/samples/datascroller-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/datascroller-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/dragDropDemo/pom.xml
===================================================================
--- trunk/samples/dragDropDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/dragDropDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/dropdownmenu-sample/pom.xml
===================================================================
--- trunk/samples/dropdownmenu-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/dropdownmenu-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/editor-sample/pom.xml
===================================================================
--- trunk/samples/editor-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/editor-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA3/samples/editorSeam-sample/pom.xml
===================================================================
--- trunk/samples/editorSeam-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/editorSeam-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA3/samples/effect-sample/pom.xml
===================================================================
--- trunk/samples/effect-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/effect-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/extendedDataTable-sample/pom.xml
===================================================================
--- trunk/samples/extendedDataTable-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/extendedDataTable-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.0.BETA3/samples/fileUploadDemo/pom.xml
===================================================================
--- trunk/samples/fileUploadDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/fileUploadDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/functions-demo/pom.xml
===================================================================
--- trunk/samples/functions-demo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/functions-demo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/glassX/pom.xml
===================================================================
--- trunk/samples/glassX/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/glassX/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1,49 +1,49 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>glassX</artifactId>
- <name>glassX</name>
- <version>3.3.0-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA3</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>glassX</artifactId>
+ <name>glassX</name>
+ <version>3.3.0.BETA3</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA3</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/samples/gmap-sample/pom.xml
===================================================================
--- trunk/samples/gmap-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/gmap-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/hotKey-sample/pom.xml
===================================================================
--- trunk/samples/hotKey-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/hotKey-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.0.BETA3/samples/inplaceInput-sample/pom.xml
===================================================================
--- trunk/samples/inplaceInput-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/inplaceInput-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/inplaceSelect-sample/pom.xml
===================================================================
--- trunk/samples/inplaceSelect-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/inplaceSelect-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- trunk/samples/inputNumberSliderDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/inputNumberSliderDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- trunk/samples/inputNumberSpinnerDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/inputNumberSpinnerDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/jQuery-sample/pom.xml
===================================================================
--- trunk/samples/jQuery-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/jQuery-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/jira-data/pom.xml
===================================================================
--- trunk/samples/jira-data/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/jira-data/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/laguna/pom.xml
===================================================================
--- trunk/samples/laguna/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/laguna/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.0.BETA3/samples/listShuttleDemo/pom.xml
===================================================================
--- trunk/samples/listShuttleDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/listShuttleDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/local-value-demo/pom.xml
===================================================================
--- trunk/samples/local-value-demo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/local-value-demo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/modalpanel-sample/pom.xml
===================================================================
--- trunk/samples/modalpanel-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/modalpanel-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/orderingListDemo/pom.xml
===================================================================
--- trunk/samples/orderingListDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/orderingListDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/panel-sample/pom.xml
===================================================================
--- trunk/samples/panel-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/panel-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/panelbar-sample/pom.xml
===================================================================
--- trunk/samples/panelbar-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/panelbar-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/panelmenu-sample/pom.xml
===================================================================
--- trunk/samples/panelmenu-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/panelmenu-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/pickList-sample/pom.xml
===================================================================
--- trunk/samples/pickList-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/pickList-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/pom.xml
===================================================================
--- trunk/samples/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1,499 +1,498 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>root</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces</groupId>
- <artifactId>samples</artifactId>
- <packaging>pom</packaging>
- <name>RichFaces Components Examples</name>
- <url>http://labs.jboss.com/jbossrichfaces/samples</url>
- <properties>
- <!-- -->
- </properties>
- <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <!--
- -->
- <version>6.1.5</version>
- <configuration>
- <scanIntervalSeconds>10</scanIntervalSeconds>
- <connectors>
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
- <port>8080</port>
- <maxIdleTime>60000</maxIdleTime>
- </connector>
- </connectors>
- </configuration>
-
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- <executions>
- <execution>
- <id>surefire-it</id>
- <phase>integration-test</phase>
- <goals>
- <goal>test</goal>
- </goals>
- <configuration>
- <skip>false</skip>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sun.facelets</groupId>
- <artifactId>jsf-facelets</artifactId>
- <version>1.1.14</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>0.9.5</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <artifactId>xerces</artifactId>
- <groupId>xerces</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>jsf1_1</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.1</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jsf1_2</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.2</value>
- </property>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_10</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat5</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_10</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat6</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_10</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jboss42</id>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_10</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>myfaces</id>
- <properties>
- <myfaces>1.2.5</myfaces>
- <tomahawk>1.1.7</tomahawk>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- <exclusions>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-api</artifactId>
- <version>${myfaces}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-impl</artifactId>
- <version>${myfaces}</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>seam</id>
- <modules>
- <module>seamEAR</module>
- <module>seamIntegration</module>
- </modules>
- </profile>
- <profile>
- <id>clover</id>
- <build>
- <plugins>
- <plugin>
- <groupId>com.atlassian.maven.plugins</groupId>
- <artifactId>maven-clover2-plugin</artifactId>
- <configuration>
- <includesAllSourceRoots>
- false
- </includesAllSourceRoots>
- <includesTestSourceRoots>
- false
- </includesTestSourceRoots>
- <jdk>1.5</jdk>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>allSamples</id>
- <modules>
- <module>separator-sample</module>
- <module>panel-sample</module>
- <module>gmap-sample</module>
- <module>togglePanel-sample</module>
- <module>tabPanelDemo</module>
- <module>simpleTogglePanel-sample</module>
- <module>inputNumberSpinnerDemo</module>
- <module>inputNumberSliderDemo</module>
- <module>panelbar-sample</module>
- <module>toolBarDemo</module>
- <module>tree-demo</module>
- <module>dataFilterSliderDemo</module>
- <module>suggestionbox-sample</module>
- <module>dragDropDemo</module>
- <module>dataTableDemo</module>
- <module>modalpanel-sample</module>
- <module>datascroller-sample</module>
- <module>effect-sample</module>
- <module>dropdownmenu-sample</module>
- <module>tooltip-sample</module>
- <module>calendar-sample</module>
- <module>treeModelDemo</module>
- <module>local-value-demo</module>
- <module>panelmenu-sample</module>
- <module>rich-message-demo</module>
- <module>scrollableDataTableDemo</module>
- <module>richfaces-ear-demo</module>
- <module>contextMenuDemo</module>
- <module>orderingListDemo</module>
- <module>listShuttleDemo</module>
- <module>columnsDemo</module>
- <module>combobox-sample</module>
- <module>pickList-sample</module>
- <module>progressBarDemo</module>
- <module>jira-data</module>
- <module>stdcomponents-sample</module>
- <module>fileUploadDemo</module>
- <module>sortingFilteringDemo</module>
- <module>inplaceInput-sample</module>
- <module>inplaceSelect-sample</module>
- <module>functions-demo</module>
- <module>hotKey-sample</module>
- <module>beanValidatorSample</module>
- <module>state-sample</module>
- <module>extendedDataTable-sample</module>
- <module>queue-sample</module>
- <module>editor-sample</module>
- <module>editorSeam-sample</module>
- </modules>
- </profile>
- </profiles>
- <modules>
- <module>skins</module>
- <module>laguna</module>
- <module>glassX</module>
- <module>darkX</module>
- <module>richfaces-demo</module>
- </modules>
-</project>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>root</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA3</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>samples</artifactId>
+ <packaging>pom</packaging>
+ <name>RichFaces Components Examples</name>
+ <url>http://labs.jboss.com/jbossrichfaces/samples</url>
+ <properties>
+ <!-- -->
+ </properties>
+ <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <!--
+ -->
+ <version>6.1.5</version>
+ <configuration>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
+ <connectors>
+ <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>8080</port>
+ <maxIdleTime>60000</maxIdleTime>
+ </connector>
+ </connectors>
+ </configuration>
+
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ <executions>
+ <execution>
+ <id>surefire-it</id>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <skip>false</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.facelets</groupId>
+ <artifactId>jsf-facelets</artifactId>
+ <version>1.1.14</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>0.9.5</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>xerces</artifactId>
+ <groupId>xerces</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+ <profiles>
+ <profile>
+ <id>jsf1_1</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.1</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jsf1_2</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.2</value>
+ </property>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_10</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat5</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_10</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat6</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_10</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jboss42</id>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_10</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>myfaces</id>
+ <properties>
+ <myfaces>1.2.5</myfaces>
+ <tomahawk>1.1.7</tomahawk>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-api</artifactId>
+ <version>${myfaces}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-impl</artifactId>
+ <version>${myfaces}</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>seam</id>
+ <modules>
+ <module>seamEAR</module>
+ <module>seamIntegration</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>clover</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.atlassian.maven.plugins</groupId>
+ <artifactId>maven-clover2-plugin</artifactId>
+ <configuration>
+ <includesAllSourceRoots>
+ false
+ </includesAllSourceRoots>
+ <includesTestSourceRoots>
+ false
+ </includesTestSourceRoots>
+ <jdk>1.5</jdk>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>allSamples</id>
+ <modules>
+ <module>separator-sample</module>
+ <module>panel-sample</module>
+ <module>gmap-sample</module>
+ <module>togglePanel-sample</module>
+ <module>tabPanelDemo</module>
+ <module>simpleTogglePanel-sample</module>
+ <module>inputNumberSpinnerDemo</module>
+ <module>inputNumberSliderDemo</module>
+ <module>panelbar-sample</module>
+ <module>toolBarDemo</module>
+ <module>tree-demo</module>
+ <module>dataFilterSliderDemo</module>
+ <module>suggestionbox-sample</module>
+ <module>dragDropDemo</module>
+ <module>dataTableDemo</module>
+ <module>modalpanel-sample</module>
+ <module>datascroller-sample</module>
+ <module>effect-sample</module>
+ <module>dropdownmenu-sample</module>
+ <module>tooltip-sample</module>
+ <module>calendar-sample</module>
+ <module>treeModelDemo</module>
+ <module>local-value-demo</module>
+ <module>panelmenu-sample</module>
+ <module>rich-message-demo</module>
+ <module>scrollableDataTableDemo</module>
+ <module>richfaces-ear-demo</module>
+ <module>contextMenuDemo</module>
+ <module>orderingListDemo</module>
+ <module>listShuttleDemo</module>
+ <module>columnsDemo</module>
+ <module>combobox-sample</module>
+ <module>pickList-sample</module>
+ <module>progressBarDemo</module>
+ <module>jira-data</module>
+ <module>stdcomponents-sample</module>
+ <module>fileUploadDemo</module>
+ <module>sortingFilteringDemo</module>
+ <module>inplaceInput-sample</module>
+ <module>inplaceSelect-sample</module>
+ <module>functions-demo</module>
+ <module>hotKey-sample</module>
+ <module>beanValidatorSample</module>
+ <module>state-sample</module>
+ <module>extendedDataTable-sample</module>
+ <module>queue-sample</module>
+ <module>editor-sample</module>
+ <module>editorSeam-sample</module>
+ </modules>
+ </profile>
+ </profiles>
+ <modules>
+ <module>skins</module>
+ <module>laguna</module>
+ <module>glassX</module>
+ <module>darkX</module>
+ <module>richfaces-demo</module>
+ </modules>
+</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/samples/progressBarDemo/pom.xml
===================================================================
--- trunk/samples/progressBarDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/progressBarDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/queue-sample/pom.xml
===================================================================
--- trunk/samples/queue-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/queue-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.0.BETA3/samples/rich-message-demo/pom.xml
===================================================================
--- trunk/samples/rich-message-demo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/rich-message-demo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/richfaces-art-datatable/pom.xml
===================================================================
--- trunk/samples/richfaces-art-datatable/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/richfaces-art-datatable/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/richfaces-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-demo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/richfaces-demo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -207,22 +207,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.0.BETA3/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/ejb/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/richfaces-ear-demo/ejb/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.0.BETA3/samples/richfaces-ear-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/richfaces-ear-demo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.0.BETA3/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/webapp/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/richfaces-ear-demo/webapp/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.0.BETA3/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- trunk/samples/scrollableDataTableDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/scrollableDataTableDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.0.BETA3/samples/seamEAR/ear/pom.xml
===================================================================
--- trunk/samples/seamEAR/ear/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/seamEAR/ear/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.0.BETA3/samples/seamEAR/ejbs/pom.xml
===================================================================
--- trunk/samples/seamEAR/ejbs/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/seamEAR/ejbs/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.0.BETA3/samples/seamEAR/pom.xml
===================================================================
--- trunk/samples/seamEAR/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/seamEAR/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/seamEAR/primary-source/pom.xml
===================================================================
--- trunk/samples/seamEAR/primary-source/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/seamEAR/primary-source/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.0.BETA3/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- trunk/samples/seamEAR/projects/logging/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/seamEAR/projects/logging/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
</project>
Modified: tags/3.3.0.BETA3/samples/seamEAR/projects/pom.xml
===================================================================
--- trunk/samples/seamEAR/projects/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/seamEAR/projects/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.0.BETA3/samples/seamEAR/wars/pom.xml
===================================================================
--- trunk/samples/seamEAR/wars/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/seamEAR/wars/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.0.BETA3/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- trunk/samples/seamEAR/wars/seamWebapp/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/seamEAR/wars/seamWebapp/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.0.BETA3/samples/seamIntegration/pom.xml
===================================================================
--- trunk/samples/seamIntegration/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/seamIntegration/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/separator-sample/pom.xml
===================================================================
--- trunk/samples/separator-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/separator-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- trunk/samples/simpleTogglePanel-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/simpleTogglePanel-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/skins/pom.xml
===================================================================
--- trunk/samples/skins/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/skins/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/sortingFilteringDemo/pom.xml
===================================================================
--- trunk/samples/sortingFilteringDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/sortingFilteringDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency-->
<dependency>
Modified: tags/3.3.0.BETA3/samples/state-sample/pom.xml
===================================================================
--- trunk/samples/state-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/state-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/samples/stdcomponents-sample/pom.xml
===================================================================
--- trunk/samples/stdcomponents-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/stdcomponents-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/suggestionbox-sample/pom.xml
===================================================================
--- trunk/samples/suggestionbox-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/suggestionbox-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/tabPanelDemo/pom.xml
===================================================================
--- trunk/samples/tabPanelDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/tabPanelDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/togglePanel-sample/pom.xml
===================================================================
--- trunk/samples/togglePanel-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/togglePanel-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/tomahawkCompability/pom.xml
===================================================================
--- trunk/samples/tomahawkCompability/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/tomahawkCompability/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/toolBarDemo/pom.xml
===================================================================
--- trunk/samples/toolBarDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/toolBarDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/tooltip-sample/pom.xml
===================================================================
--- trunk/samples/tooltip-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/tooltip-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/tree-demo/pom.xml
===================================================================
--- trunk/samples/tree-demo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/tree-demo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/treeModelDemo/pom.xml
===================================================================
--- trunk/samples/treeModelDemo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/treeModelDemo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/samples/virtualEarth-sample/pom.xml
===================================================================
--- trunk/samples/virtualEarth-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/samples/virtualEarth-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA3/sandbox/api/pom.xml
===================================================================
--- trunk/sandbox/api/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/api/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.0.BETA3/sandbox/impl/pom.xml
===================================================================
--- trunk/sandbox/impl/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/impl/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.0.BETA3/sandbox/pom.xml
===================================================================
--- trunk/sandbox/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.0.BETA3/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/dialog-window-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/samples/dialog-window-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA3/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/editorOld-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/samples/editorOld-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA3/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- trunk/sandbox/samples/fileUploadPOC/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/samples/fileUploadPOC/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.0.BETA3/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/panel2-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/samples/panel2-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA3/sandbox/samples/pom.xml
===================================================================
--- trunk/sandbox/samples/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/samples/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA3/sandbox/samples/rex-demo/pom.xml
===================================================================
--- trunk/sandbox/samples/rex-demo/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/samples/rex-demo/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
Modified: tags/3.3.0.BETA3/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.0.BETA3/sandbox/ui/create.bat
===================================================================
--- trunk/sandbox/ui/create.bat 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/ui/create.bat 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.0-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.0.BETA3 -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.0.BETA3/sandbox/ui/dialog-window/pom.xml
===================================================================
--- trunk/sandbox/ui/dialog-window/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/ui/dialog-window/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.0.BETA3/sandbox/ui/editorOld/pom.xml
===================================================================
--- trunk/sandbox/ui/editorOld/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/ui/editorOld/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/sandbox/ui/panel2/pom.xml
===================================================================
--- trunk/sandbox/ui/panel2/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/ui/panel2/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/sandbox/ui/pom.xml
===================================================================
--- trunk/sandbox/ui/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/ui/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.0.BETA3/sandbox/ui/rex-button/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-button/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/ui/rex-button/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-messageBox/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/ui/rex-messageBox/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-resizable/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/ui/rex-resizable/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- trunk/sandbox/ui/simpleTogglePanel2/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/ui/simpleTogglePanel2/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- trunk/sandbox/ui/sortableHeader/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/ui/sortableHeader/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/sandbox/ui/treeTable/pom.xml
===================================================================
--- trunk/sandbox/ui/treeTable/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/sandbox/ui/treeTable/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/test-applications/ajaxTest/pom.xml
===================================================================
--- trunk/test-applications/ajaxTest/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/ajaxTest/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.0.BETA3/test-applications/automator/pom.xml
===================================================================
--- trunk/test-applications/automator/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/automator/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA3/test-applications/facelets/pom.xml
===================================================================
--- trunk/test-applications/facelets/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/facelets/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA3/test-applications/jsp/pom.xml
===================================================================
--- trunk/test-applications/jsp/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/jsp/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA3/test-applications/pom.xml
===================================================================
--- trunk/test-applications/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.0-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.0.BETA3</rfVersion>
</properties>
<modules>
Modified: tags/3.3.0.BETA3/test-applications/realworld/pom.xml
===================================================================
--- trunk/test-applications/realworld/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/realworld/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -14,7 +14,7 @@
<properties>
<projectName>realworld</projectName>
- <richfacesVersion>3.3.0-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.0.BETA3</richfacesVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.0.BETA3/test-applications/regressionArea/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/regressionArea/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -62,7 +62,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.0-SNAPSHOT</richversion>
+ <richversion>3.3.0.BETA3</richversion>
<seamversion>2.0.2.SP1</seamversion>
<jsfversion>1.2_09</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.2.GA</jbosshome>
Modified: tags/3.3.0.BETA3/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-ear/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/regressionArea/regressionArea-ear/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.0.BETA3/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-ejb/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/regressionArea/regressionArea-ejb/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.0.BETA3/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-web/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/regressionArea/regressionArea-web/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.0.BETA3/test-applications/seamApp/pom.xml
===================================================================
--- trunk/test-applications/seamApp/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/seamApp/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <richfacesVersion>3.3.0-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.0.BETA3</richfacesVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.2.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.2.GA/jboss-4.2.2.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.0.BETA3/test-applications/seleniumTest/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/seleniumTest/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -217,7 +217,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.0.BETA3/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/seleniumTest/richfaces/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<finalName>richfaces</finalName>
<plugins>
Modified: tags/3.3.0.BETA3/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/samples/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/test-applications/seleniumTest/samples/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.0.BETA3/ui/assembly/pom.xml
===================================================================
--- trunk/ui/assembly/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/assembly/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.3.0.BETA3/ui/beanValidator/pom.xml
===================================================================
--- trunk/ui/beanValidator/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/beanValidator/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1,70 +1,69 @@
-<?xml version="1.0"?>
-<project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>beanValidator</artifactId>
- <name>beanValidator</name>
- <version>3.3.0-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>beanValidator</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-validator</artifactId>
- <version>3.1.0.GA</version>
- <exclusions>
- <!--
- <exclusion> <artifactId>hibernate-core</artifactId>
- <groupId>org.hibernate</groupId> </exclusion> <exclusion>
- <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
- </exclusion>
- -->
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.4.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA3</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>beanValidator</artifactId>
+ <name>beanValidator</name>
+ <version>3.3.0.BETA3</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA3</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>beanValidator</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ <version>3.1.0.GA</version>
+ <exclusions>
+ <!--
+ <exclusion> <artifactId>hibernate-core</artifactId>
+ <groupId>org.hibernate</groupId> </exclusion> <exclusion>
+ <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
+ </exclusion>
+ -->
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.4.2</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/calendar/pom.xml
===================================================================
--- trunk/ui/calendar/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/calendar/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/columns/pom.xml
===================================================================
--- trunk/ui/columns/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/columns/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.0.BETA3/ui/combobox/pom.xml
===================================================================
--- trunk/ui/combobox/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/combobox/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
Modified: tags/3.3.0.BETA3/ui/componentControl/pom.xml
===================================================================
--- trunk/ui/componentControl/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/componentControl/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/contextMenu/pom.xml
===================================================================
--- trunk/ui/contextMenu/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/contextMenu/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/core/pom.xml
===================================================================
--- trunk/ui/core/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/core/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/create.bat
===================================================================
--- trunk/ui/create.bat 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/create.bat 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.0-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.0.BETA3 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/dataFilterSlider/pom.xml
===================================================================
--- trunk/ui/dataFilterSlider/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/dataFilterSlider/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/dataTable/pom.xml
===================================================================
--- trunk/ui/dataTable/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/dataTable/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.0.BETA3/ui/datascroller/pom.xml
===================================================================
--- trunk/ui/datascroller/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/datascroller/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/drag-drop/pom.xml
===================================================================
--- trunk/ui/drag-drop/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/drag-drop/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.0.BETA3/ui/dropdown-menu/pom.xml
===================================================================
--- trunk/ui/dropdown-menu/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/dropdown-menu/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/editor/pom.xml
===================================================================
--- trunk/ui/editor/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/editor/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -80,7 +80,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Modified: tags/3.3.0.BETA3/ui/effect/pom.xml
===================================================================
--- trunk/ui/effect/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/effect/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/extendedDataTable/pom.xml
===================================================================
--- trunk/ui/extendedDataTable/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/extendedDataTable/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1,35 +1,35 @@
-<?xml version="1.0"?><project>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>extendedDataTable</artifactId>
- <name>extendedDataTable</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>extendedDataTable</shortName>
- </taglib>
- </library>
- </configuration>
+ <version>3.3.0.BETA3</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>extendedDataTable</artifactId>
+ <name>extendedDataTable</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA3</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>extendedDataTable</shortName>
+ </taglib>
+ </library>
+ </configuration>
</plugin>
<plugin>
@@ -57,52 +57,52 @@
</execution>
</executions>
</plugin>
-
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>drag-drop</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>dataTable</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA3</version>
</dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>menu-components</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>contextMenu</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>jQuery</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>componentControl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>scrollableDataTable</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>drag-drop</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>dataTable</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>menu-components</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>contextMenu</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>jQuery</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>componentControl</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>scrollableDataTable</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/fileUpload/pom.xml
===================================================================
--- trunk/ui/fileUpload/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/fileUpload/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/functions/pom.xml
===================================================================
--- trunk/ui/functions/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/functions/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/gmap/pom.xml
===================================================================
--- trunk/ui/gmap/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/gmap/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/hotKey/pom.xml
===================================================================
--- trunk/ui/hotKey/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/hotKey/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1,56 +1,56 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>hotKey</artifactId>
- <name>hotKey</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>hotKey</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA3</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>hotKey</artifactId>
+ <name>hotKey</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA3</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>hotKey</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/inplaceInput/pom.xml
===================================================================
--- trunk/ui/inplaceInput/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/inplaceInput/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/inplaceSelect/pom.xml
===================================================================
--- trunk/ui/inplaceSelect/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/inplaceSelect/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
Modified: tags/3.3.0.BETA3/ui/inputnumber-slider/pom.xml
===================================================================
--- trunk/ui/inputnumber-slider/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/inputnumber-slider/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/inputnumber-spinner/pom.xml
===================================================================
--- trunk/ui/inputnumber-spinner/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/inputnumber-spinner/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.0.BETA3/ui/insert/pom.xml
===================================================================
--- trunk/ui/insert/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/insert/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/jQuery/pom.xml
===================================================================
--- trunk/ui/jQuery/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/jQuery/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/listShuttle/pom.xml
===================================================================
--- trunk/ui/listShuttle/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/listShuttle/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.0.BETA3/ui/menu-components/pom.xml
===================================================================
--- trunk/ui/menu-components/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/menu-components/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/message/pom.xml
===================================================================
--- trunk/ui/message/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/message/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/modal-panel/pom.xml
===================================================================
--- trunk/ui/modal-panel/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/modal-panel/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/orderingList/pom.xml
===================================================================
--- trunk/ui/orderingList/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/orderingList/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/paint2D/pom.xml
===================================================================
--- trunk/ui/paint2D/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/paint2D/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/panel/pom.xml
===================================================================
--- trunk/ui/panel/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/panel/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/panelbar/pom.xml
===================================================================
--- trunk/ui/panelbar/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/panelbar/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/panelmenu/pom.xml
===================================================================
--- trunk/ui/panelmenu/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/panelmenu/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/pickList/pom.xml
===================================================================
--- trunk/ui/pickList/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/pickList/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
Modified: tags/3.3.0.BETA3/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -136,12 +136,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.0.BETA3/ui/progressBAR/pom.xml
===================================================================
--- trunk/ui/progressBAR/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/progressBAR/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/scrollableDataTable/pom.xml
===================================================================
--- trunk/ui/scrollableDataTable/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/scrollableDataTable/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/separator/pom.xml
===================================================================
--- trunk/ui/separator/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/separator/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.0.BETA3/ui/simpleTogglePanel/pom.xml
===================================================================
--- trunk/ui/simpleTogglePanel/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/simpleTogglePanel/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/spacer/pom.xml
===================================================================
--- trunk/ui/spacer/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/spacer/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/state/pom.xml
===================================================================
--- trunk/ui/state/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/state/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -1,43 +1,43 @@
-<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>state</artifactId>
- <name>state</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>state</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA3</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>state</artifactId>
+ <name>state</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA3</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>state</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA3</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/suggestionbox/pom.xml
===================================================================
--- trunk/ui/suggestionbox/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/suggestionbox/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/tabPanel/pom.xml
===================================================================
--- trunk/ui/tabPanel/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/tabPanel/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/togglePanel/pom.xml
===================================================================
--- trunk/ui/togglePanel/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/togglePanel/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/toolBar/pom.xml
===================================================================
--- trunk/ui/toolBar/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/toolBar/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/tooltip/pom.xml
===================================================================
--- trunk/ui/tooltip/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/tooltip/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/tree/pom.xml
===================================================================
--- trunk/ui/tree/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/tree/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/treeModel/pom.xml
===================================================================
--- trunk/ui/treeModel/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/treeModel/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA3/ui/treeTable/pom.xml
===================================================================
--- trunk/ui/treeTable/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/treeTable/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA3/ui/virtualEarth/pom.xml
===================================================================
--- trunk/ui/virtualEarth/pom.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ tags/3.3.0.BETA3/ui/virtualEarth/pom.xml 2008-12-08 12:24:37 UTC (rev 11627)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA3</version>
<executions>
<execution>
<phase>generate-sources</phase>
17 years, 5 months
JBoss Rich Faces SVN: r11626 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2008-12-08 07:03:56 -0500 (Mon, 08 Dec 2008)
New Revision: 11626
Modified:
trunk/docs/userguide/en/src/main/docbook/included/editor.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-426
added skin parameters
Modified: trunk/docs/userguide/en/src/main/docbook/included/editor.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/editor.xml 2008-12-08 11:12:50 UTC (rev 11625)
+++ trunk/docs/userguide/en/src/main/docbook/included/editor.xml 2008-12-08 12:03:56 UTC (rev 11626)
@@ -718,7 +718,7 @@
-
+ </section>
<section>
<title>Definition of Custom Style Classes</title>
17 years, 5 months
JBoss Rich Faces SVN: r11625 - in trunk/ui/core/src: test/java/org/ajax4jsf/component and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-08 06:12:50 -0500 (Mon, 08 Dec 2008)
New Revision: 11625
Modified:
trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/scripts/QueueScriptResourceRenderer.java
trunk/ui/core/src/test/java/org/ajax4jsf/component/QueueRendererTest.java
Log:
https://jira.jboss.org/jira/browse/RF-5216
Modified: trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/scripts/QueueScriptResourceRenderer.java
===================================================================
--- trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/scripts/QueueScriptResourceRenderer.java 2008-12-08 00:33:55 UTC (rev 11624)
+++ trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/scripts/QueueScriptResourceRenderer.java 2008-12-08 11:12:50 UTC (rev 11625)
@@ -79,7 +79,7 @@
Map<String, Object> queues = (Map<String, Object>) data;
ResponseWriter writer = context.getResponseWriter();
- writer.writeText("if (A4J) { if (A4J.AJAX) { with (A4J.AJAX) {", null);
+ writer.writeText("if (typeof A4J != 'undefined') { if (A4J.AJAX) { with (A4J.AJAX) {", null);
for (Entry<String, Object> entry : queues.entrySet()) {
encodeQueue(writer, entry.getKey(), (QueueRendererData) entry.getValue());
}
Modified: trunk/ui/core/src/test/java/org/ajax4jsf/component/QueueRendererTest.java
===================================================================
--- trunk/ui/core/src/test/java/org/ajax4jsf/component/QueueRendererTest.java 2008-12-08 00:33:55 UTC (rev 11624)
+++ trunk/ui/core/src/test/java/org/ajax4jsf/component/QueueRendererTest.java 2008-12-08 11:12:50 UTC (rev 11625)
@@ -84,7 +84,7 @@
DomText text = (DomText) list.get(0);
String scriptData = text.getData();
- return scriptData.replaceAll("^\\Qif (A4J) { if (A4J.AJAX) { with (A4J.AJAX) {\\E|\\Q}}};\\E$", "");
+ return scriptData.replaceAll("^\\Qif (typeof A4J != 'undefined') { if (A4J.AJAX) { with (A4J.AJAX) {\\E|\\Q}}};\\E$", "");
}
private String[] splitScript(String s) {
17 years, 5 months
JBoss Rich Faces SVN: r11624 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: cluts
Date: 2008-12-07 19:33:55 -0500 (Sun, 07 Dec 2008)
New Revision: 11624
Modified:
trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml
trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml
trunk/docs/userguide/en/src/main/docbook/included/inplaceSelect.xml
trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml
trunk/docs/userguide/en/src/main/docbook/included/panel.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml
trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml
trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
trunk/docs/userguide/en/src/main/docbook/included/tab.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml
trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml
trunk/docs/userguide/en/src/main/docbook/included/tree.xml
trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml
Log:
RF-4502 - tables and new information have been added for fileupload, inplaceinput, inplaceselect, listshuttle, panel, panelbaritem, progressbar, simpletogglepanel, suggestionbox, tab, toolbar, tooltip, tree, treenode
Modified: trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -842,6 +842,33 @@
</section>
<!-- End of JavaScript API-->
+
+ <section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>label</entry>
+ <entry>Defines the information regarding the ongoing process</entry>
+ </row>
+ <row>
+ <entry>progress</entry>
+ <entry>Defines the information regarding the uploading process</entry>
+ </row>
+
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
<section>
<title>Look-and-Feel Customization</title>
<para>For skinnability implementation, the components use a <emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -450,6 +450,27 @@
</section>
<!-- End of JavaScript API-->
+ <section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>controls</entry>
+ <entry>Defines the contols contents. Related attributes are "saveControlIcon" and "cancelControlIcon"</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
<!-- Look-and-Feel Customization-->
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inplaceSelect.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inplaceSelect.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/inplaceSelect.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -472,6 +472,27 @@
</section>
<!-- End of JavaScript API-->
+ <section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>controls</entry>
+ <entry>Defines the contols contents. Related attributes are "saveControlIcon" and "cancelControlIcon"</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
<!-- Look-and-Feel Customization-->
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/listShuttle.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -513,8 +513,16 @@
</row>
<row>
<entry>caption</entry>
- <entry>Redefines the caption control. Related attribute is "targetCaptionLabel"</entry>
+ <entry>Redefines the caption control</entry>
</row>
+ <row>
+ <entry>sourceCaption</entry>
+ <entry>Defines source list caption representation text. Related attribute is "sourceCaptionLabel"</entry>
+ </row>
+ <row>
+ <entry>targetCaption</entry>
+ <entry>Defines source list target representation text. Related attribute is "targetCaptionLabel"</entry>
+ </row>
</tbody>
</tgroup>
</table>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panel.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/panel.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -158,7 +158,29 @@
</itemizedlist>
</section>
+
<section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>header</entry>
+ <entry>Defines the header content</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
+ <section>
<title>Look-and-Feel Customization</title>
<para>For skinnability implementation, the components use a <emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -104,6 +104,27 @@
</section>
<section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>label</entry>
+ <entry>defines the label text on the panel item header</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
+ <section>
<title>Look-and-Feel Customization</title>
<para>For skinnability implementation, the components use a <emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/progressBar.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -429,6 +429,31 @@
</section>
<!-- End of JavaScript API-->
+ <section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>initial</entry>
+ <entry>Defines the information content about the state of the process if the progress value is less or equal to "minValue"</entry>
+ </row>
+ <row>
+ <entry>complete</entry>
+ <entry>Defines the information content about the state of the process if the value is greater or equal to "maxValue"</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
<!-- Look-and-Feel Customization-->
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -139,7 +139,34 @@
</para>
</section>
+
<section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>openMarker</entry>
+ <entry>Redefines the icon for expanding the panel</entry>
+ </row>
+ <row>
+ <entry>closeMarker</entry>
+ <entry>Redefines the icon for collapsing the panel</entry>
+ </row>
+
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
+ <section>
<title>Look-and-Feel Customization</title>
<para>For skinnability implementation, the components use a <emphasis>
<property>style class redefinition method.</property>
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -311,7 +311,40 @@
</tgroup>
</table>
</section>
-
+
+ <section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>nothingLabel</entry>
+ <entry>Redefines the content item if the autocomplete returns empty list. Related attribute is "nothingLabel"</entry>
+ </row>
+ <row>
+ <entry>popup</entry>
+ <entry>Redefines the content for the popup list of the suggestion</entry>
+ </row>
+ <row>
+ <entry>header</entry>
+ <entry>Defines the header content</entry>
+ </row>
+ <row>
+ <entry>footer</entry>
+ <entry>Defines the footer content</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
<section>
<title>Look-and-Feel Customization</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tab.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -203,6 +203,28 @@
</emphasis> attribute usage you can find <link linkend="process"
>here</link>. </para>
</section>
+
+ <section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>label</entry>
+ <entry>Defines the text for the actual "tab" in a tab section</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
<section>
<title>Look-and-Feel Customization</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -136,7 +136,29 @@
</figure>
</section>
<para>As it could be seen in the picture above, the image for itemSeparator was changed.</para>
+
<section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>itemSeparator</entry>
+ <entry>Defines the custom separator. Related attribute is "itemSeparator"</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
+ <section>
<title>Look-and-Feel Customization</title>
<para>For skinnability implementation, the components use a <emphasis>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -279,6 +279,27 @@
</section>
+ <section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>defaultContent</entry>
+ <entry>Defines the default content for toolTip. It is used only if mode = "ajax"</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
<section>
<title>Look-and-Feel Customization</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tree.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/tree.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -898,7 +898,40 @@
<property>treeNode</property> only, except for children
events. </para>
</section>
-
+
+ <section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>icon</entry>
+ <entry>Redefines the icon for node. Related attribute is "icon"</entry>
+ </row>
+ <row>
+ <entry>iconCollapsed</entry>
+ <entry>Redefines the icon for collapsed node. Related attribute is "iconCollapsed"</entry>
+ </row>
+ <row>
+ <entry>iconExpanded</entry>
+ <entry>Redefines the icon for expanded node. Related attribute is "iconExpanded"</entry>
+ </row>
+ <row>
+ <entry>iconLeaf</entry>
+ <entry>Redefines the icon for component leaves. Related attribute is "iconLeaf"</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
<section>
<title>Look-and-Feel Customization</title>
Modified: trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml 2008-12-07 16:50:24 UTC (rev 11623)
+++ trunk/docs/userguide/en/src/main/docbook/included/treeNode.xml 2008-12-08 00:33:55 UTC (rev 11624)
@@ -163,7 +163,41 @@
<para>Just as Drag and Drop operations it corresponds to the one described on <link
linkend="tree">the tree component level</link> for a default Node.</para>
</section>
+
<section>
+ <title>Facets</title>
+ <table>
+ <title>Facets</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Facet name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>icon</entry>
+ <entry>Redefines the icon for node. Related attribute is "icon"</entry>
+ </row>
+ <row>
+ <entry>iconCollapsed</entry>
+ <entry>Redefines the icon for collapsed node. Related attribute is "iconCollapsed"</entry>
+ </row>
+ <row>
+ <entry>iconExpanded</entry>
+ <entry>Redefines the icon for expanded node. Related attribute is "iconExpanded"</entry>
+ </row>
+ <row>
+ <entry>iconLeaf</entry>
+ <entry>Redefines the icon for component leaves. Related attribute is "iconLeaf"</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
+ <section>
<title>Look-and-Feel Customization</title>
<para>For skinnability implementation, the components use a <emphasis>
17 years, 5 months
JBoss Rich Faces SVN: r11623 - trunk/ui/simpleTogglePanel/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-07 11:50:24 -0500 (Sun, 07 Dec 2008)
New Revision: 11623
Modified:
trunk/ui/simpleTogglePanel/src/main/java/org/richfaces/component/UISimpleTogglePanel.java
Log:
Wrong import removed
Modified: trunk/ui/simpleTogglePanel/src/main/java/org/richfaces/component/UISimpleTogglePanel.java
===================================================================
--- trunk/ui/simpleTogglePanel/src/main/java/org/richfaces/component/UISimpleTogglePanel.java 2008-12-07 16:49:46 UTC (rev 11622)
+++ trunk/ui/simpleTogglePanel/src/main/java/org/richfaces/component/UISimpleTogglePanel.java 2008-12-07 16:50:24 UTC (rev 11623)
@@ -31,7 +31,6 @@
import org.ajax4jsf.component.AjaxComponent;
import org.ajax4jsf.event.AjaxSource;
-import com.sun.org.apache.xpath.internal.operations.Bool;
/**
* JSF component class
17 years, 5 months
JBoss Rich Faces SVN: r11622 - trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-07 11:49:46 -0500 (Sun, 07 Dec 2008)
New Revision: 11622
Modified:
trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/HtmlCommandLinkRenderer.java
trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/QueueRenderer.java
Log:
https://jira.jboss.org/jira/browse/RF-5248
Modified: trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/HtmlCommandLinkRenderer.java
===================================================================
--- trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/HtmlCommandLinkRenderer.java 2008-12-07 16:39:51 UTC (rev 11621)
+++ trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/HtmlCommandLinkRenderer.java 2008-12-07 16:49:46 UTC (rev 11622)
@@ -229,10 +229,13 @@
* @see org.ajax4jsf.renderkit.HeaderResourcesRendererBase#getScripts()
*/
protected InternetResource[] getScripts() {
- if (scripts == null) {
- scripts = new InternetResource[1];
- scripts[0] = getResource(FORM_SCRIPT);
+ synchronized (this) {
+ if (scripts == null) {
+ scripts = new InternetResource[1];
+ scripts[0] = getResource(FORM_SCRIPT);
+ }
}
- return scripts;
+
+ return scripts;
}
}
Modified: trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/QueueRenderer.java
===================================================================
--- trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/QueueRenderer.java 2008-12-07 16:39:51 UTC (rev 11621)
+++ trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/QueueRenderer.java 2008-12-07 16:49:46 UTC (rev 11622)
@@ -70,21 +70,13 @@
"timeout"
};
- private volatile InternetResource[] scripts;
+ private InternetResource[] scripts = new InternetResource[] {
+ getResource(AjaxScript.class.getName()),
+ getResource(QueueScript.class.getName())
+ };
@Override
protected InternetResource[] getScripts() {
- if (scripts == null) {
- synchronized (this) {
- if (scripts == null) {
- scripts = new InternetResource[] {
- getResource(AjaxScript.class.getName()),
- getResource(QueueScript.class.getName())
- };
- }
- }
- }
-
return scripts;
}
17 years, 5 months
JBoss Rich Faces SVN: r11621 - trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-07 11:39:51 -0500 (Sun, 07 Dec 2008)
New Revision: 11621
Modified:
trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxComponentRendererBase.java
Log:
https://jira.jboss.org/jira/browse/RF-5248
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxComponentRendererBase.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxComponentRendererBase.java 2008-12-07 16:25:20 UTC (rev 11620)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxComponentRendererBase.java 2008-12-07 16:39:51 UTC (rev 11621)
@@ -37,7 +37,7 @@
// private InternetResource ajaxScript = getResource("/com/exadel/vcp/framework/ajax/scripts/AJAX.js");
private static final String AJAX_SCRIPT = AjaxScript.class.getName();
- private volatile InternetResource[] scripts = null;
+ private InternetResource[] scripts = null;
/* (non-Javadoc)
* @see org.ajax4jsf.renderkit.HeaderResourceProducer#getHeaderScripts(javax.faces.context.FacesContext)
@@ -62,20 +62,18 @@
*/
protected InternetResource[] getScripts() {
// Lazy create
- if (scripts == null) {
- synchronized (this) {
- if (scripts == null) {
- InternetResource[] additionalScripts = getAdditionalScripts();
- // Custom scripts
- if (null != additionalScripts) {
- scripts = new InternetResource[additionalScripts.length+1];
- System.arraycopy(additionalScripts,0,scripts,1,additionalScripts.length);
- } else {
- scripts = new InternetResource[1];
- }
- // Ajax script
- scripts[0] = getResource(AJAX_SCRIPT);
+ synchronized (this) {
+ if (scripts == null) {
+ InternetResource[] additionalScripts = getAdditionalScripts();
+ // Custom scripts
+ if (null != additionalScripts) {
+ scripts = new InternetResource[additionalScripts.length+1];
+ System.arraycopy(additionalScripts,0,scripts,1,additionalScripts.length);
+ } else {
+ scripts = new InternetResource[1];
}
+ // Ajax script
+ scripts[0] = getResource(AJAX_SCRIPT);
}
}
17 years, 5 months
JBoss Rich Faces SVN: r11620 - trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-07 11:25:20 -0500 (Sun, 07 Dec 2008)
New Revision: 11620
Modified:
trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxComponentRendererBase.java
Log:
https://jira.jboss.org/jira/browse/RF-5248
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxComponentRendererBase.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxComponentRendererBase.java 2008-12-07 16:19:36 UTC (rev 11619)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/renderkit/AjaxComponentRendererBase.java 2008-12-07 16:25:20 UTC (rev 11620)
@@ -37,7 +37,7 @@
// private InternetResource ajaxScript = getResource("/com/exadel/vcp/framework/ajax/scripts/AJAX.js");
private static final String AJAX_SCRIPT = AjaxScript.class.getName();
- private InternetResource[] scripts = null;
+ private volatile InternetResource[] scripts = null;
/* (non-Javadoc)
* @see org.ajax4jsf.renderkit.HeaderResourceProducer#getHeaderScripts(javax.faces.context.FacesContext)
@@ -63,16 +63,20 @@
protected InternetResource[] getScripts() {
// Lazy create
if (scripts == null) {
- InternetResource[] additionalScripts = getAdditionalScripts();
- // Custom scripts
- if (null != additionalScripts) {
- scripts = new InternetResource[additionalScripts.length+1];
- System.arraycopy(additionalScripts,0,scripts,1,additionalScripts.length);
- } else {
- scripts = new InternetResource[1];
+ synchronized (this) {
+ if (scripts == null) {
+ InternetResource[] additionalScripts = getAdditionalScripts();
+ // Custom scripts
+ if (null != additionalScripts) {
+ scripts = new InternetResource[additionalScripts.length+1];
+ System.arraycopy(additionalScripts,0,scripts,1,additionalScripts.length);
+ } else {
+ scripts = new InternetResource[1];
+ }
+ // Ajax script
+ scripts[0] = getResource(AJAX_SCRIPT);
+ }
}
- // Ajax script
- scripts[0] = getResource(AJAX_SCRIPT);
}
return scripts;
17 years, 5 months
JBoss Rich Faces SVN: r11619 - trunk/framework/impl/src/main/javascript/ajaxjsf.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-07 11:19:36 -0500 (Sun, 07 Dec 2008)
New Revision: 11619
Modified:
trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js
Log:
https://jira.jboss.org/jira/browse/RF-5271
Modified: trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js
===================================================================
--- trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js 2008-12-07 14:52:32 UTC (rev 11618)
+++ trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js 2008-12-07 16:19:36 UTC (rev 11619)
@@ -1165,8 +1165,10 @@
0);
} else {
- // mark status object ( if any ) for complete request ;
- A4J.AJAX.status(request.containerId,options.status,false);
+ setTimeout(function() {
+ // mark status object ( if any ) for complete request ;
+ A4J.AJAX.status(request.containerId,options.status,false);
+ }, 0)
}
if (request.shouldNotifyQueue && request.queue) {
17 years, 5 months
JBoss Rich Faces SVN: r11618 - in trunk/ui/fileUpload/src/main/java/org/richfaces: renderkit and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-07 09:52:32 -0500 (Sun, 07 Dec 2008)
New Revision: 11618
Modified:
trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java
trunk/ui/fileUpload/src/main/java/org/richfaces/renderkit/FileUploadRendererBase.java
Log:
https://jira.jboss.org/jira/browse/RF-4815
Modified: trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java
===================================================================
--- trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java 2008-12-07 14:49:33 UTC (rev 11617)
+++ trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java 2008-12-07 14:52:32 UTC (rev 11618)
@@ -24,6 +24,8 @@
import java.util.Locale;
import java.util.Map;
+import javax.el.ELContext;
+import javax.el.ExpressionFactory;
import javax.el.ValueExpression;
import javax.faces.FacesException;
import javax.faces.application.Application;
@@ -76,14 +78,24 @@
private void setupProgressBarValueExpression(FacesContext context, String uid) {
FileUploadRendererBase renderer = (FileUploadRendererBase)this.getRenderer(context);
UIComponent progressBar = renderer.getProgressBar(context, this);
- String exprStr = "#{" + Filter.PERCENT_BEAN_NAME + "['"+uid+"']}";
- ValueExpression ex = context.getApplication().getExpressionFactory()
- .createValueExpression(context.getELContext(), exprStr,
+ String percentExpression = Filter.PERCENT_BEAN_NAME + "['"+uid+"']";
+ ExpressionFactory expressionFactory = context.getApplication().getExpressionFactory();
+ ELContext elContext = context.getELContext();
+
+ ValueExpression value = expressionFactory
+ .createValueExpression(elContext, "#{" + percentExpression + "}",
Integer.class);
- progressBar.setValueExpression("value", ex);
- }
+ progressBar.setValueExpression("value", value);
+
+ ValueExpression enabled = expressionFactory
+ .createValueExpression(elContext,
+ "#{" + percentExpression + " < 100}", //100 - disable progress when upload reaches 100%
+ Boolean.class);
+ progressBar.setValueExpression("enabled", enabled);
+ }
+
public String getLocalContentType() {
return localContentType;
Modified: trunk/ui/fileUpload/src/main/java/org/richfaces/renderkit/FileUploadRendererBase.java
===================================================================
--- trunk/ui/fileUpload/src/main/java/org/richfaces/renderkit/FileUploadRendererBase.java 2008-12-07 14:49:33 UTC (rev 11617)
+++ trunk/ui/fileUpload/src/main/java/org/richfaces/renderkit/FileUploadRendererBase.java 2008-12-07 14:52:32 UTC (rev 11618)
@@ -32,6 +32,7 @@
import java.util.MissingResourceException;
import java.util.ResourceBundle;
+import javax.el.ExpressionFactory;
import javax.el.ValueExpression;
import javax.faces.FactoryFinder;
import javax.faces.component.UIComponent;
@@ -678,7 +679,14 @@
progressBar = createProgressBar(context, component);
}
progressBar.getAttributes().put("minValue", -1);
- progressBar.getAttributes().put("enabled", false);
+
+ ExpressionFactory expressionFactory = context.getApplication().getExpressionFactory();
+ ValueExpression falseExpression = expressionFactory.createValueExpression(
+ context.getELContext(),
+ "#{" + Boolean.FALSE + "}",
+ Boolean.class);
+
+ progressBar.setValueExpression("enabled", falseExpression);
progressBar.setTransient(false);
return progressBar;
}
17 years, 5 months
JBoss Rich Faces SVN: r11617 - trunk/samples/fileUploadDemo/src/main/java/org/richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-07 09:49:33 -0500 (Sun, 07 Dec 2008)
New Revision: 11617
Modified:
trunk/samples/fileUploadDemo/src/main/java/org/richfaces/Bean.java
Log:
FileUploadDemo bean enhancement
Modified: trunk/samples/fileUploadDemo/src/main/java/org/richfaces/Bean.java
===================================================================
--- trunk/samples/fileUploadDemo/src/main/java/org/richfaces/Bean.java 2008-12-07 14:07:17 UTC (rev 11616)
+++ trunk/samples/fileUploadDemo/src/main/java/org/richfaces/Bean.java 2008-12-07 14:49:33 UTC (rev 11617)
@@ -27,6 +27,7 @@
import java.io.InputStream;
import java.rmi.server.UID;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
@@ -76,9 +77,16 @@
file.delete();
}else {
try {
- ByteArrayOutputStream b = new ByteArrayOutputStream();
- b.write(item.getData());
- System.out.println(b.toString());
+ byte[] bytes = item.getData();
+ int numberOfBytes = 256;
+
+ if (bytes.length > numberOfBytes) {
+ System.out.println("First " + numberOfBytes + " bytes of uploaded file:");
+ System.out.println(new String(bytes, 0, numberOfBytes));
+ } else {
+ System.out.println("Uploaded file contents:");
+ System.out.println(new String(bytes, 0, bytes.length));
+ }
} catch (Exception e) {
// TODO: handle exception
}
17 years, 5 months
JBoss Rich Faces SVN: r11616 - trunk/ui/fileUpload/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-07 09:07:17 -0500 (Sun, 07 Dec 2008)
New Revision: 11616
Modified:
trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java
Log:
https://jira.jboss.org/jira/browse/RF-4992
Modified: trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java
===================================================================
--- trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java 2008-12-07 14:06:20 UTC (rev 11615)
+++ trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java 2008-12-07 14:07:17 UTC (rev 11616)
@@ -182,9 +182,10 @@
FacesContext facesContext = FacesContext.getCurrentInstance();
ExternalContext externalContext = facesContext.getExternalContext();
Map<String, String> requestParameterMap = externalContext.getRequestParameterMap();
- if ("progress".equals(requestParameterMap.get("action"))
- && requestParameterMap.containsKey(
- this.getClientId(facesContext))) {
+
+ String actionString = requestParameterMap.get("action");
+
+ if (actionString != null && requestParameterMap.containsKey(this.getClientId(facesContext))) {
AjaxContext ajaxContext = AjaxContextImpl.getCurrentInstance(facesContext);
String uid = requestParameterMap.get(Filter.UPLOAD_FILES_ID);
@@ -195,8 +196,12 @@
if (sessions != null) {
MultipartRequest multipartRequest = sessions.get(uid);
if (multipartRequest != null) {
- setupProgressBarValueExpression(facesContext, uid);
- ajaxContext.setResponseData(multipartRequest.getSize());
+ if ("progress".equals(actionString)) {
+ setupProgressBarValueExpression(facesContext, uid);
+ ajaxContext.setResponseData(multipartRequest.getSize());
+ } else if ("richfaces_file_upload_action_stop".equals(actionString)) {
+ multipartRequest.stop();
+ }
}
}
}
17 years, 5 months
JBoss Rich Faces SVN: r11615 - trunk/framework/impl/src/main/java/org/ajax4jsf/webapp.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-07 09:06:20 -0500 (Sun, 07 Dec 2008)
New Revision: 11615
Modified:
trunk/framework/impl/src/main/java/org/ajax4jsf/webapp/BaseFilter.java
Log:
https://jira.jboss.org/jira/browse/RF-4992
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/webapp/BaseFilter.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/webapp/BaseFilter.java 2008-12-07 14:04:12 UTC (rev 11614)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/webapp/BaseFilter.java 2008-12-07 14:06:20 UTC (rev 11615)
@@ -401,23 +401,7 @@
}
} else {
-
- if ("richfaces_file_upload_action_stop".equals(queryParamMap.get("action"))) {
- HttpSession session = httpRequest.getSession(false);
- if (session != null) {
- Map<String, MultipartRequest> sessions = (Map<String, MultipartRequest>) session.getAttribute(REQUESTS_SESSIONS_BEAN_NAME);
-
- if (sessions != null) {
- MultipartRequest multipartRequest = sessions.get(uid);
- if (multipartRequest != null) {
- multipartRequest.stop();
- }
- handleRequest(request, response, chain);
- }
- }
- } else {
- handleRequest(request, response, chain);
- }
+ handleRequest(request, response, chain);
}
} else {
handleRequest(request, response, chain);
17 years, 5 months
JBoss Rich Faces SVN: r11614 - trunk/framework/impl/src/main/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-07 09:04:12 -0500 (Sun, 07 Dec 2008)
New Revision: 11614
Modified:
trunk/framework/impl/src/main/java/org/richfaces/renderkit/TemplateEncoderRendererBase.java
Log:
Null string passed to TemplateEncoderRendererBase encoded to JS null
Modified: trunk/framework/impl/src/main/java/org/richfaces/renderkit/TemplateEncoderRendererBase.java
===================================================================
--- trunk/framework/impl/src/main/java/org/richfaces/renderkit/TemplateEncoderRendererBase.java 2008-12-07 02:08:14 UTC (rev 11613)
+++ trunk/framework/impl/src/main/java/org/richfaces/renderkit/TemplateEncoderRendererBase.java 2008-12-07 14:04:12 UTC (rev 11614)
@@ -77,62 +77,66 @@
}
public void writeScriptBody(Writer writer, String string) throws IOException {
- Properties tidyProperties = new Properties();
- InputStream propertiesStream = null;
- try {
- propertiesStream = URLToStreamHelper.urlToStreamSafe(
- TidyXMLFilter.class.getResource("tidy.properties"));
- tidyProperties.load(propertiesStream);
- } finally {
- if (propertiesStream != null) {
- propertiesStream.close();
+ if (string != null) {
+ Properties tidyProperties = new Properties();
+ InputStream propertiesStream = null;
+ try {
+ propertiesStream = URLToStreamHelper.urlToStreamSafe(
+ TidyXMLFilter.class.getResource("tidy.properties"));
+ tidyProperties.load(propertiesStream);
+ } finally {
+ if (propertiesStream != null) {
+ propertiesStream.close();
+ }
}
- }
-
- TidyParser tidyParser = new TidyParser(tidyProperties);
- Document parsedHtml = tidyParser.parseHtmlByTidy(new StringReader(string), null);
-
- Element documentElement = null;
-
- if (parsedHtml != null) {
- documentElement = parsedHtml.getDocumentElement();
- }
-
- if (documentElement != null) {
- writer.write("[");
+
+ TidyParser tidyParser = new TidyParser(tidyProperties);
+ Document parsedHtml = tidyParser.parseHtmlByTidy(new StringReader(string), null);
+
+ Element documentElement = null;
- NodeList nodeList = documentElement.getChildNodes();
- Node bodyNode = nodeList.item(nodeList.getLength() - 1);
- NodeList bodyChildren = bodyNode.getChildNodes();
- int bodyChildrenLength = bodyChildren.getLength();
-
- try {
- Transformer transformer;
-
- TransformerFactory factory = getTransformerFactory();
+ if (parsedHtml != null) {
+ documentElement = parsedHtml.getDocumentElement();
+ }
+
+ if (documentElement != null) {
+ writer.write("[");
- synchronized (factory) {
- transformer = factory.newTransformer();
- }
-
- transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
- transformer.setOutputProperty(OutputKeys.METHOD, "xml");
-
- ContentHandler contentHandler = createContentHandler(writer);
- Result result = new SAXResult(contentHandler);
-
- for (int i = 0; i < bodyChildrenLength; i++) {
- if (i != 0) {
- writer.write(", ");
+ NodeList nodeList = documentElement.getChildNodes();
+ Node bodyNode = nodeList.item(nodeList.getLength() - 1);
+ NodeList bodyChildren = bodyNode.getChildNodes();
+ int bodyChildrenLength = bodyChildren.getLength();
+
+ try {
+ Transformer transformer;
+
+ TransformerFactory factory = getTransformerFactory();
+
+ synchronized (factory) {
+ transformer = factory.newTransformer();
}
- transformer.transform(new DOMSource(bodyChildren.item(i)), result);
+
+ transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
+ transformer.setOutputProperty(OutputKeys.METHOD, "xml");
+
+ ContentHandler contentHandler = createContentHandler(writer);
+ Result result = new SAXResult(contentHandler);
+
+ for (int i = 0; i < bodyChildrenLength; i++) {
+ if (i != 0) {
+ writer.write(", ");
+ }
+ transformer.transform(new DOMSource(bodyChildren.item(i)), result);
+ }
+ } catch (TransformerException e) {
+ throw new IOException(e.getMessage());
}
- } catch (TransformerException e) {
- throw new IOException(e.getMessage());
+
+ writer.write("]");
+
+ } else {
+ writer.write(ScriptUtils.toScript(JSReference.NULL));
}
-
- writer.write("]");
-
} else {
writer.write(ScriptUtils.toScript(JSReference.NULL));
}
17 years, 5 months
JBoss Rich Faces SVN: r11613 - in branches/3.2.x/ui/assembly: src/main/assembly and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 21:08:14 -0500 (Sat, 06 Dec 2008)
New Revision: 11613
Added:
branches/3.2.x/ui/assembly/JBossORG-EULA.txt
branches/3.2.x/ui/assembly/lgpl.txt
Modified:
branches/3.2.x/ui/assembly/src/main/assembly/richfaces.xml
branches/3.2.x/ui/assembly/src/main/assembly/src.xml
Log:
https://jira.jboss.org/jira/browse/RF-4789
https://jira.jboss.org/jira/browse/RF-4788
Copied: branches/3.2.x/ui/assembly/JBossORG-EULA.txt (from rev 11597, trunk/ui/assembly/JBossORG-EULA.txt)
===================================================================
--- branches/3.2.x/ui/assembly/JBossORG-EULA.txt (rev 0)
+++ branches/3.2.x/ui/assembly/JBossORG-EULA.txt 2008-12-07 02:08:14 UTC (rev 11613)
@@ -0,0 +1,104 @@
+LICENSE AGREEMENT
+JBOSS(r)
+
+This License Agreement governs the use of the Software Packages and any updates to the Software
+Packages, regardless of the delivery mechanism. Each Software Package is a collective work
+under U.S. Copyright Law. Subject to the following terms, Red Hat, Inc. ("Red Hat") grants to
+the user ("Client") a license to the applicable collective work(s) pursuant to the
+GNU Lesser General Public License v. 2.1 except for the following Software Packages:
+(a) JBoss Portal Forums and JBoss Transactions JTS, each of which is licensed pursuant to the
+GNU General Public License v.2;
+
+(b) JBoss Rules, which is licensed pursuant to the Apache License v.2.0;
+
+(c) an optional download for JBoss Cache for the Berkeley DB for Java database, which is licensed under the
+(open source) Sleepycat License (if Client does not wish to use the open source version of this database,
+it may purchase a license from Sleepycat Software);
+
+and (d) the BPEL extension for JBoss jBPM, which is licensed under the Common Public License v.1,
+and, pursuant to the OASIS BPEL4WS standard, requires parties wishing to redistribute to enter various
+royalty-free patent licenses.
+
+Each of the foregoing licenses is available at http://www.opensource.org/licenses/index.php.
+
+1. The Software. "Software Packages" refer to the various software modules that are created and made available
+for distribution by the JBoss.org open source community at http://www.jboss.org. Each of the Software Packages
+may be comprised of hundreds of software components. The end user license agreement for each component is located in
+the component's source code. With the exception of certain image files identified in Section 2 below,
+the license terms for the components permit Client to copy, modify, and redistribute the component,
+in both source code and binary code forms. This agreement does not limit Client's rights under,
+or grant Client rights that supersede, the license terms of any particular component.
+
+2. Intellectual Property Rights. The Software Packages are owned by Red Hat and others and are protected under copyright
+and other laws. Title to the Software Packages and any component, or to any copy, modification, or merged portion shall
+remain with the aforementioned, subject to the applicable license. The "JBoss" trademark, "Red Hat" trademark, the
+individual Software Package trademarks, and the "Shadowman" logo are registered trademarks of Red Hat and its affiliates
+in the U.S. and other countries. This agreement permits Client to distribute unmodified copies of the Software Packages
+using the Red Hat trademarks that Red Hat has inserted in the Software Packages on the condition that Client follows Red Hat's
+trademark guidelines for those trademarks located at http://www.redhat.com/about/corporate/trademark/. Client must abide by
+these trademark guidelines when distributing the Software Packages, regardless of whether the Software Packages have been modified.
+If Client modifies the Software Packages, then Client must replace all Red Hat trademarks and logos identified at
+http://www.jboss.com/company/logos unless a separate agreement with Red Hat is executed or other permission granted.
+Merely deleting the files containing the Red Hat trademarks may corrupt the Software Packages.
+
+3. Limited Warranty. Except as specifically stated in this Paragraph 3 or a license for a particular
+component, to the maximum extent permitted under applicable law, the Software Packages and the
+components are provided and licensed "as is" without warranty of any kind, expressed or implied,
+including the implied warranties of merchantability, non-infringement or fitness for a particular purpose.
+Red Hat warrants that the media on which Software Packages may be furnished will be free from defects in
+materials and manufacture under normal use for a period of 30 days from the date of delivery to Client.
+Red Hat does not warrant that the functions contained in the Software Packages will meet Client's requirements
+or that the operation of the Software Packages will be entirely error free or appear precisely as described
+in the accompanying documentation. This warranty extends only to the party that purchases the Services
+pertaining to the Software Packages from Red Hat or a Red Hat authorized distributor.
+
+4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, the remedies
+described below are accepted by Client as its only remedies. Red Hat's entire liability, and Client's
+exclusive remedies, shall be: If the Software media is defective, Client may return it within 30 days of
+delivery along with a copy of Client's payment receipt and Red Hat, at its option, will replace it or
+refund the money paid by Client for the Software. To the maximum extent permitted by applicable law,
+Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential
+damages, including lost profits or lost savings arising out of the use or inability to use the Software,
+even if Red Hat or such dealer has been advised of the possibility of such damages. In no event shall
+Red Hat's liability under this agreement exceed the amount that Client paid to Red Hat under this
+Agreement during the twelve months preceding the action.
+
+5. Export Control. As required by U.S. law, Client represents and warrants that it:
+(a) understands that the Software Packages are subject to export controls under the
+U.S. Commerce Department's Export Administration Regulations ("EAR");
+
+(b) is not located in a prohibited destination country under the EAR or U.S. sanctions regulations
+(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria);
+
+(c) will not export, re-export, or transfer the Software Packages to any prohibited destination, entity,
+or individual without the necessary export license(s) or authorizations(s) from the U.S. Government;
+
+(d) will not use or transfer the Software Packages for use in any sensitive nuclear, chemical or
+biological weapons, or missile technology end-uses unless authorized by the U.S. Government by
+regulation or specific license;
+
+(e) understands and agrees that if it is in the United States and exports or transfers the Software
+Packages to eligible end users, it will, as required by EAR Section 740.17(e), submit semi-annual
+reports to the Commerce Department's Bureau of Industry & Security (BIS), which include the name and
+address (including country) of each transferee;
+
+and (f) understands that countries other than the United States may restrict the import, use, or
+export of encryption products and that it shall be solely responsible for compliance with any such
+import, use, or export restrictions.
+
+6. Third Party Programs. Red Hat may distribute third party software programs with the Software Packages
+that are not part of the Software Packages and which Client must install separately. These third party
+programs are subject to their own license terms. The license terms either accompany the programs or
+can be viewed at http://www.redhat.com/licenses/. If Client does not agree to abide by the applicable
+license terms for such programs, then Client may not install them. If Client wishes to install the programs
+on more than one system or transfer the programs to another party, then Client must contact the licensor
+of the programs.
+
+7. General. If any provision of this agreement is held to be unenforceable, that shall not affect the
+enforceability of the remaining provisions. This License Agreement shall be governed by the laws of the
+State of North Carolina and of the United States, without regard to any conflict of laws provisions,
+except that the United Nations Convention on the International Sale of Goods shall not apply.
+
+Copyright 2006-2008 Red Hat, Inc. All rights reserved.
+"JBoss" and the JBoss logo are registered trademarks of Red Hat, Inc.
+All other trademarks are the property of their respective owners.
Copied: branches/3.2.x/ui/assembly/lgpl.txt (from rev 11597, trunk/ui/assembly/lgpl.txt)
===================================================================
--- branches/3.2.x/ui/assembly/lgpl.txt (rev 0)
+++ branches/3.2.x/ui/assembly/lgpl.txt 2008-12-07 02:08:14 UTC (rev 11613)
@@ -0,0 +1,504 @@
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL. It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+ This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it. You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations below.
+
+ When we speak of free software, we are referring to freedom of use,
+not price. Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+ To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights. These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+ For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you. You must make sure that they, too, receive or can get the source
+code. If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it. And you must show them these terms so they know their rights.
+
+ We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+ To protect each distributor, we want to make it very clear that
+there is no warranty for the free library. Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+
+ Finally, software patents pose a constant threat to the existence of
+any free program. We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder. Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+ Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License. This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License. We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+ When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library. The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom. The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+ We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License. It also provides other free software developers Less
+of an advantage over competing non-free programs. These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries. However, the Lesser license provides advantages in certain
+special circumstances.
+
+ For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it becomes
+a de-facto standard. To achieve this, non-free programs must be
+allowed to use the library. A more frequent case is that a free
+library does the same job as widely used non-free libraries. In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+ In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software. For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+ Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+ The precise terms and conditions for copying, distribution and
+modification follow. Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library". The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+ A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+ The "Library", below, refers to any such software library or work
+which has been distributed under these terms. A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language. (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+ "Source code" for a work means the preferred form of the work for
+making modifications to it. For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
+
+ Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it). Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+
+ 1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+ You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+ 2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) The modified work must itself be a software library.
+
+ b) You must cause the files modified to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ c) You must cause the whole of the work to be licensed at no
+ charge to all third parties under the terms of this License.
+
+ d) If a facility in the modified Library refers to a function or a
+ table of data to be supplied by an application program that uses
+ the facility, other than as an argument passed when the facility
+ is invoked, then you must make a good faith effort to ensure that,
+ in the event an application does not supply such function or
+ table, the facility still operates, and performs whatever part of
+ its purpose remains meaningful.
+
+ (For example, a function in a library to compute square roots has
+ a purpose that is entirely well-defined independent of the
+ application. Therefore, Subsection 2d requires that any
+ application-supplied function or table used by this function must
+ be optional: if the application does not supply it, the square
+ root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library. To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License. (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.) Do not make any other change in
+these notices.
+
+ Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+ This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+ 4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+ If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library". Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+ However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library". The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+ When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library. The
+threshold for this to be true is not precisely defined by law.
+
+ If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work. (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+ Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+ 6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+ You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License. You must supply a copy of this License. If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License. Also, you must do one
+of these things:
+
+ a) Accompany the work with the complete corresponding
+ machine-readable source code for the Library including whatever
+ changes were used in the work (which must be distributed under
+ Sections 1 and 2 above); and, if the work is an executable linked
+ with the Library, with the complete machine-readable "work that
+ uses the Library", as object code and/or source code, so that the
+ user can modify the Library and then relink to produce a modified
+ executable containing the modified Library. (It is understood
+ that the user who changes the contents of definitions files in the
+ Library will not necessarily be able to recompile the application
+ to use the modified definitions.)
+
+ b) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (1) uses at run time a
+ copy of the library already present on the user's computer system,
+ rather than copying library functions into the executable, and (2)
+ will operate properly with a modified version of the library, if
+ the user installs one, as long as the modified version is
+ interface-compatible with the version that the work was made with.
+
+ c) Accompany the work with a written offer, valid for at
+ least three years, to give the same user the materials
+ specified in Subsection 6a, above, for a charge no more
+ than the cost of performing this distribution.
+
+ d) If distribution of the work is made by offering access to copy
+ from a designated place, offer equivalent access to copy the above
+ specified materials from the same place.
+
+ e) Verify that the user has already received a copy of these
+ materials or that you have already sent this user a copy.
+
+ For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it. However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+ It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system. Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+ 7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+ a) Accompany the combined library with a copy of the same work
+ based on the Library, uncombined with any other library
+ facilities. This must be distributed under the terms of the
+ Sections above.
+
+ b) Give prominent notice with the combined library of the fact
+ that part of it is a work based on the Library, and explaining
+ where to find the accompanying uncombined form of the same work.
+
+ 8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License. Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License. However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+ 9. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Library or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+ 10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all. For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded. In such case, this License incorporates the limitation as if
+written in the body of this License.
+
+ 13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation. If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+ 14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission. For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this. Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+ NO WARRANTY
+
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Libraries
+
+ If you develop a new library, and you want it to be of the greatest
+possible use to the public, we recommend making it free software that
+everyone can redistribute and change. You can do so by permitting
+redistribution under these terms (or, alternatively, under the terms of the
+ordinary General Public License).
+
+ To apply these terms, attach the following notices to the library. It is
+safest to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the library's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This library 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 library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the library, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+ <signature of Ty Coon>, 1 April 1990
+ Ty Coon, President of Vice
+
+That's all there is to it!
+
+
Modified: branches/3.2.x/ui/assembly/src/main/assembly/richfaces.xml
===================================================================
--- branches/3.2.x/ui/assembly/src/main/assembly/richfaces.xml 2008-12-07 01:54:54 UTC (rev 11612)
+++ branches/3.2.x/ui/assembly/src/main/assembly/richfaces.xml 2008-12-07 02:08:14 UTC (rev 11613)
@@ -10,6 +10,8 @@
<include>README*</include>
<include>LICENSE*</include>
<include>NOTICE*</include>
+ <include>JBossORG-EULA.txt</include>
+ <include>lgpl.txt</include>
</includes>
</fileSet>
<fileSet>
Modified: branches/3.2.x/ui/assembly/src/main/assembly/src.xml
===================================================================
--- branches/3.2.x/ui/assembly/src/main/assembly/src.xml 2008-12-07 01:54:54 UTC (rev 11612)
+++ branches/3.2.x/ui/assembly/src/main/assembly/src.xml 2008-12-07 02:08:14 UTC (rev 11613)
@@ -6,6 +6,12 @@
</formats>
<fileSets>
<fileSet>
+ <includes>
+ <include>JBossORG-EULA.txt</include>
+ <include>lgpl.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
<directory>${basedir}/../..</directory>
<outputDirectory>/</outputDirectory>
<excludes>
17 years, 5 months
JBoss Rich Faces SVN: r11612 - in branches/3.1.x/sandbox/ui: dialog-window/src/main/java/org/richfaces/renderkit and 6 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 20:54:54 -0500 (Sat, 06 Dec 2008)
New Revision: 11612
Modified:
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/ActionPrefixHolder.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogActionState.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseEvent.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListener.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListenerImpl.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContext.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContextManager.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogEvent.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenEvent.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListener.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListenerImpl.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogWindowClosedEvent.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogAction.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogButton.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogClose.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogCloseButton.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogLink.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogVerticalFiller.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindow.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowButton.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowOutputLink.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIOutputLink.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogBaseActionRenderer.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogButtonRenderer.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogCloseRenderer.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogLinkRenderer.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogMethodBinding.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogVerticalFillerRenderer.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowOutputLinkRenderer.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowRenderer.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowUtils.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/taglib/DialogWindowComponentHandler.java
branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/taglib/DialogWindowTagBase.java
branches/3.1.x/sandbox/ui/panel2/src/test/java/org/richfaces/component/html/HtmlPanel2Test.java
branches/3.1.x/sandbox/ui/panel2/src/test/java/org/richfaces/taglib/Panel2TagTest.java
branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/application/StatePropertyResolver.java
branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/application/StateResolver.java
branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/component/UIState.java
branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/component/UIStates.java
branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/model/State.java
Log:
https://jira.jboss.org/jira/browse/RF-4578
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/ActionPrefixHolder.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/ActionPrefixHolder.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/ActionPrefixHolder.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
public interface ActionPrefixHolder {
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogActionState.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogActionState.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogActionState.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import java.io.Serializable;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseEvent.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseEvent.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseEvent.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.component.UIComponent;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListener.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListener.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListener.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.event.FacesListener;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListenerImpl.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListenerImpl.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListenerImpl.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.application.ViewHandler;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContext.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContext.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContext.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import java.io.Serializable;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContextManager.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContextManager.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContextManager.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import java.io.Serializable;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogEvent.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogEvent.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogEvent.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.component.ActionSource;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenEvent.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenEvent.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenEvent.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.component.UIComponent;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListener.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListener.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListener.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.event.FacesListener;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListenerImpl.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListenerImpl.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListenerImpl.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.application.ViewHandler;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogWindowClosedEvent.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogWindowClosedEvent.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogWindowClosedEvent.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogAction.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogAction.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogAction.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.FacesException;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogButton.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogButton.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogButton.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogClose.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogClose.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogClose.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogCloseButton.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogCloseButton.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogCloseButton.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import org.ajax4jsf.component.UIAjaxCommandButton;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogLink.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogLink.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogLink.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogVerticalFiller.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogVerticalFiller.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogVerticalFiller.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.component.UIComponentBase;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindow.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindow.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindow.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
-/*
- * Created on 03.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowButton.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowButton.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowButton.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import org.ajax4jsf.component.UIAjaxCommandButton;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowOutputLink.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowOutputLink.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowOutputLink.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
public abstract class UIDialogWindowOutputLink extends UIDialogWindow {
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIOutputLink.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIOutputLink.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIOutputLink.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
public class UIOutputLink {
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogBaseActionRenderer.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogBaseActionRenderer.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogBaseActionRenderer.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import javax.faces.component.UIComponent;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogButtonRenderer.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogButtonRenderer.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogButtonRenderer.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogCloseRenderer.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogCloseRenderer.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogCloseRenderer.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogLinkRenderer.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogLinkRenderer.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogLinkRenderer.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogMethodBinding.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogMethodBinding.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogMethodBinding.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import javax.faces.component.StateHolder;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogVerticalFillerRenderer.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogVerticalFillerRenderer.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogVerticalFillerRenderer.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import org.ajax4jsf.renderkit.AjaxComponentRendererBase;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowOutputLinkRenderer.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowOutputLinkRenderer.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowOutputLinkRenderer.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import javax.faces.application.ViewHandler;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowRenderer.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowRenderer.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowRenderer.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
-/*
- * Created on 03.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowUtils.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowUtils.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowUtils.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import java.util.Iterator;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/taglib/DialogWindowComponentHandler.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/taglib/DialogWindowComponentHandler.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/taglib/DialogWindowComponentHandler.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.taglib;
Modified: branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/taglib/DialogWindowTagBase.java
===================================================================
--- branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/taglib/DialogWindowTagBase.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/dialog-window/src/main/java/org/richfaces/taglib/DialogWindowTagBase.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.taglib;
Modified: branches/3.1.x/sandbox/ui/panel2/src/test/java/org/richfaces/component/html/HtmlPanel2Test.java
===================================================================
--- branches/3.1.x/sandbox/ui/panel2/src/test/java/org/richfaces/component/html/HtmlPanel2Test.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/panel2/src/test/java/org/richfaces/component/html/HtmlPanel2Test.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component.html;
import javax.faces.context.FacesContext;
Modified: branches/3.1.x/sandbox/ui/panel2/src/test/java/org/richfaces/taglib/Panel2TagTest.java
===================================================================
--- branches/3.1.x/sandbox/ui/panel2/src/test/java/org/richfaces/taglib/Panel2TagTest.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/panel2/src/test/java/org/richfaces/taglib/Panel2TagTest.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.taglib;
Modified: branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/application/StatePropertyResolver.java
===================================================================
--- branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/application/StatePropertyResolver.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/application/StatePropertyResolver.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.ui.application;
Modified: branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/application/StateResolver.java
===================================================================
--- branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/application/StateResolver.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/application/StateResolver.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.ui.application;
Modified: branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/component/UIState.java
===================================================================
--- branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/component/UIState.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/component/UIState.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
/**
+ * License Agreement.
*
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.ui.component;
Modified: branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/component/UIStates.java
===================================================================
--- branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/component/UIStates.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/component/UIStates.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
/**
+ * License Agreement.
*
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.ui.component;
Modified: branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/model/State.java
===================================================================
--- branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/model/State.java 2008-12-07 01:53:30 UTC (rev 11611)
+++ branches/3.1.x/sandbox/ui/state/src/main/java/org/richfaces/ui/model/State.java 2008-12-07 01:54:54 UTC (rev 11612)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.ui.model;
17 years, 5 months
JBoss Rich Faces SVN: r11611 - in branches/3.1.x/ui: assembly/src/main/assembly and 47 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 20:53:30 -0500 (Sat, 06 Dec 2008)
New Revision: 11611
Added:
branches/3.1.x/ui/assembly/JBossORG-EULA.txt
branches/3.1.x/ui/assembly/lgpl.txt
Modified:
branches/3.1.x/ui/assembly/src/main/assembly/richfaces.xml
branches/3.1.x/ui/assembly/src/main/assembly/src.xml
branches/3.1.x/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java
branches/3.1.x/ui/calendar/src/test/java/org/richfaces/renderkit/html/iconimages/CalendarIconTest.java
branches/3.1.x/ui/componentControl/src/main/java/org/richfaces/component/UIComponentControl.java
branches/3.1.x/ui/componentControl/src/main/java/org/richfaces/renderkit/ComponentControlRendererBase.java
branches/3.1.x/ui/core/src/main/java/org/ajax4jsf/component/UIPortlet.java
branches/3.1.x/ui/core/src/test/java/org/ajax4jsf/component/UIAjaxFormTest.java
branches/3.1.x/ui/drag-drop/src/test/java/org/richfaces/component/DragDropTest.java
branches/3.1.x/ui/effect/src/main/java/org/richfaces/renderkit/EffectRendererBase.java
branches/3.1.x/ui/inputnumber-spinner/src/test/java/org/richfaces/renderkit/html/images/buttons/SpinnerButtonImageTest.java
branches/3.1.x/ui/insert/src/main/java/org/ajax4jsf/renderkit/AbstractInsertRenderer.java
branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/DummyHighLight.java
branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/Highlight.java
branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/HighlightImpl.java
branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/UIInsert.java
branches/3.1.x/ui/jQuery/src/main/java/org/richfaces/renderkit/JQueryRendererBase.java
branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java
branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleControlsHelper.java
branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleRendererBase.java
branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopy.java
branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyAll.java
branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyAllDisabled.java
branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyDisabled.java
branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemove.java
branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveAll.java
branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveAllDisabled.java
branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveDisabled.java
branches/3.1.x/ui/menu-components/src/main/java/org/richfaces/renderkit/html/images/MenuNodeImage.java
branches/3.1.x/ui/menu-components/src/test/java/org/richfaces/renderkit/html/images/MenuNodeImageTest.java
branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingBaseComponent.java
branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java
branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingComponentControlsHelper.java
branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingComponentRendererBase.java
branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java
branches/3.1.x/ui/panel/src/test/java/org/richfaces/component/html/HtmlPanelTest.java
branches/3.1.x/ui/panel/src/test/java/org/richfaces/taglib/PanelTagTest.java
branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/component/UIPanelMenu.java
branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconChevronBasic.java
branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconTriangleBasic.java
branches/3.1.x/ui/panelmenu/src/test/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconBasicTest.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/component/UIScrollableDataTable.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/convert/selection/ClientSelectionConverter.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/MultiColumnSortListener.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/SingleColumnSortListener.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/NullExpression.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/SimplePropertyExpression.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/ValueBindingExpression.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/WrappedBeanComparator.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/selection/ClientSelection.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/selection/SelectionRange.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/AjaxFunctionBuilder.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ColumnVisitor.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ColumnWalker.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ExtendedColumnVisitor.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/GridScrollSettings.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/HTMLEncodingContributor.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableBaseRenderer.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableHeaderRendererBase.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableRendererState.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableScrollData.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableUtils.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SelectionRendererContributor.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SortIconRenderer.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasic.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSortAsc.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSortDesc.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSplit.java
branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/utils/TemplateLoader.java
branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/convert/selection/ClientSelectionConverterTest.java
branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/model/selection/ClientSelectionTest.java
branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/model/selection/SelectionRangeTest.java
branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/JSFComponentTest.java
branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/ScrollableDataTableRendererStateTest.java
branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/ScrollableDataTableRendererTest.java
branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/SelectionRendererContributorTest.java
branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasicTest.java
branches/3.1.x/ui/separator/src/test/java/org/richfaces/renderkit/html/images/BevelSeparatorImageTest.java
branches/3.1.x/ui/separator/src/test/java/org/richfaces/renderkit/html/images/SimpleSeparatorImageTest.java
branches/3.1.x/ui/simpleTogglePanel/src/main/java/org/richfaces/taglib/SimpleTogglePanelTagHandlerBase.java
branches/3.1.x/ui/suggestionbox/src/main/java/org/richfaces/component/SelectSuggestionEvent.java
branches/3.1.x/ui/tabPanel/src/test/java/org/richfaces/component/UITabPanelTest.java
branches/3.1.x/ui/toolBar/src/test/java/org/richfaces/renderkit/html/images/ToolBarSeparatorImageTest.java
branches/3.1.x/ui/tooltip/src/main/java/org/richfaces/component/UIToolTip.java
branches/3.1.x/ui/tooltip/src/main/java/org/richfaces/renderkit/html/ToolTipRenderer.java
branches/3.1.x/ui/tooltip/src/test/java/org/richfaces/renderkit/html/ToolTipRendererTest.java
branches/3.1.x/ui/tree/src/main/java/org/richfaces/component/UITreeNode.java
branches/3.1.x/ui/tree/src/main/java/org/richfaces/renderkit/NodeRendererBase.java
branches/3.1.x/ui/treeModel/src/main/java/org/richfaces/component/UIRecursiveTreeNodesAdaptor.java
branches/3.1.x/ui/treeModel/src/main/java/org/richfaces/component/UITreeNodesAdaptor.java
Log:
https://jira.jboss.org/jira/browse/RF-4578
https://jira.jboss.org/jira/browse/RF-4789
https://jira.jboss.org/jira/browse/RF-4788
Copied: branches/3.1.x/ui/assembly/JBossORG-EULA.txt (from rev 11598, trunk/ui/assembly/JBossORG-EULA.txt)
===================================================================
--- branches/3.1.x/ui/assembly/JBossORG-EULA.txt (rev 0)
+++ branches/3.1.x/ui/assembly/JBossORG-EULA.txt 2008-12-07 01:53:30 UTC (rev 11611)
@@ -0,0 +1,104 @@
+LICENSE AGREEMENT
+JBOSS(r)
+
+This License Agreement governs the use of the Software Packages and any updates to the Software
+Packages, regardless of the delivery mechanism. Each Software Package is a collective work
+under U.S. Copyright Law. Subject to the following terms, Red Hat, Inc. ("Red Hat") grants to
+the user ("Client") a license to the applicable collective work(s) pursuant to the
+GNU Lesser General Public License v. 2.1 except for the following Software Packages:
+(a) JBoss Portal Forums and JBoss Transactions JTS, each of which is licensed pursuant to the
+GNU General Public License v.2;
+
+(b) JBoss Rules, which is licensed pursuant to the Apache License v.2.0;
+
+(c) an optional download for JBoss Cache for the Berkeley DB for Java database, which is licensed under the
+(open source) Sleepycat License (if Client does not wish to use the open source version of this database,
+it may purchase a license from Sleepycat Software);
+
+and (d) the BPEL extension for JBoss jBPM, which is licensed under the Common Public License v.1,
+and, pursuant to the OASIS BPEL4WS standard, requires parties wishing to redistribute to enter various
+royalty-free patent licenses.
+
+Each of the foregoing licenses is available at http://www.opensource.org/licenses/index.php.
+
+1. The Software. "Software Packages" refer to the various software modules that are created and made available
+for distribution by the JBoss.org open source community at http://www.jboss.org. Each of the Software Packages
+may be comprised of hundreds of software components. The end user license agreement for each component is located in
+the component's source code. With the exception of certain image files identified in Section 2 below,
+the license terms for the components permit Client to copy, modify, and redistribute the component,
+in both source code and binary code forms. This agreement does not limit Client's rights under,
+or grant Client rights that supersede, the license terms of any particular component.
+
+2. Intellectual Property Rights. The Software Packages are owned by Red Hat and others and are protected under copyright
+and other laws. Title to the Software Packages and any component, or to any copy, modification, or merged portion shall
+remain with the aforementioned, subject to the applicable license. The "JBoss" trademark, "Red Hat" trademark, the
+individual Software Package trademarks, and the "Shadowman" logo are registered trademarks of Red Hat and its affiliates
+in the U.S. and other countries. This agreement permits Client to distribute unmodified copies of the Software Packages
+using the Red Hat trademarks that Red Hat has inserted in the Software Packages on the condition that Client follows Red Hat's
+trademark guidelines for those trademarks located at http://www.redhat.com/about/corporate/trademark/. Client must abide by
+these trademark guidelines when distributing the Software Packages, regardless of whether the Software Packages have been modified.
+If Client modifies the Software Packages, then Client must replace all Red Hat trademarks and logos identified at
+http://www.jboss.com/company/logos unless a separate agreement with Red Hat is executed or other permission granted.
+Merely deleting the files containing the Red Hat trademarks may corrupt the Software Packages.
+
+3. Limited Warranty. Except as specifically stated in this Paragraph 3 or a license for a particular
+component, to the maximum extent permitted under applicable law, the Software Packages and the
+components are provided and licensed "as is" without warranty of any kind, expressed or implied,
+including the implied warranties of merchantability, non-infringement or fitness for a particular purpose.
+Red Hat warrants that the media on which Software Packages may be furnished will be free from defects in
+materials and manufacture under normal use for a period of 30 days from the date of delivery to Client.
+Red Hat does not warrant that the functions contained in the Software Packages will meet Client's requirements
+or that the operation of the Software Packages will be entirely error free or appear precisely as described
+in the accompanying documentation. This warranty extends only to the party that purchases the Services
+pertaining to the Software Packages from Red Hat or a Red Hat authorized distributor.
+
+4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, the remedies
+described below are accepted by Client as its only remedies. Red Hat's entire liability, and Client's
+exclusive remedies, shall be: If the Software media is defective, Client may return it within 30 days of
+delivery along with a copy of Client's payment receipt and Red Hat, at its option, will replace it or
+refund the money paid by Client for the Software. To the maximum extent permitted by applicable law,
+Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential
+damages, including lost profits or lost savings arising out of the use or inability to use the Software,
+even if Red Hat or such dealer has been advised of the possibility of such damages. In no event shall
+Red Hat's liability under this agreement exceed the amount that Client paid to Red Hat under this
+Agreement during the twelve months preceding the action.
+
+5. Export Control. As required by U.S. law, Client represents and warrants that it:
+(a) understands that the Software Packages are subject to export controls under the
+U.S. Commerce Department's Export Administration Regulations ("EAR");
+
+(b) is not located in a prohibited destination country under the EAR or U.S. sanctions regulations
+(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria);
+
+(c) will not export, re-export, or transfer the Software Packages to any prohibited destination, entity,
+or individual without the necessary export license(s) or authorizations(s) from the U.S. Government;
+
+(d) will not use or transfer the Software Packages for use in any sensitive nuclear, chemical or
+biological weapons, or missile technology end-uses unless authorized by the U.S. Government by
+regulation or specific license;
+
+(e) understands and agrees that if it is in the United States and exports or transfers the Software
+Packages to eligible end users, it will, as required by EAR Section 740.17(e), submit semi-annual
+reports to the Commerce Department's Bureau of Industry & Security (BIS), which include the name and
+address (including country) of each transferee;
+
+and (f) understands that countries other than the United States may restrict the import, use, or
+export of encryption products and that it shall be solely responsible for compliance with any such
+import, use, or export restrictions.
+
+6. Third Party Programs. Red Hat may distribute third party software programs with the Software Packages
+that are not part of the Software Packages and which Client must install separately. These third party
+programs are subject to their own license terms. The license terms either accompany the programs or
+can be viewed at http://www.redhat.com/licenses/. If Client does not agree to abide by the applicable
+license terms for such programs, then Client may not install them. If Client wishes to install the programs
+on more than one system or transfer the programs to another party, then Client must contact the licensor
+of the programs.
+
+7. General. If any provision of this agreement is held to be unenforceable, that shall not affect the
+enforceability of the remaining provisions. This License Agreement shall be governed by the laws of the
+State of North Carolina and of the United States, without regard to any conflict of laws provisions,
+except that the United Nations Convention on the International Sale of Goods shall not apply.
+
+Copyright 2006-2008 Red Hat, Inc. All rights reserved.
+"JBoss" and the JBoss logo are registered trademarks of Red Hat, Inc.
+All other trademarks are the property of their respective owners.
Copied: branches/3.1.x/ui/assembly/lgpl.txt (from rev 11598, trunk/ui/assembly/lgpl.txt)
===================================================================
--- branches/3.1.x/ui/assembly/lgpl.txt (rev 0)
+++ branches/3.1.x/ui/assembly/lgpl.txt 2008-12-07 01:53:30 UTC (rev 11611)
@@ -0,0 +1,504 @@
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL. It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+ This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it. You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations below.
+
+ When we speak of free software, we are referring to freedom of use,
+not price. Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+ To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights. These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+ For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you. You must make sure that they, too, receive or can get the source
+code. If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it. And you must show them these terms so they know their rights.
+
+ We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+ To protect each distributor, we want to make it very clear that
+there is no warranty for the free library. Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+
+ Finally, software patents pose a constant threat to the existence of
+any free program. We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder. Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+ Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License. This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License. We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+ When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library. The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom. The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+ We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License. It also provides other free software developers Less
+of an advantage over competing non-free programs. These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries. However, the Lesser license provides advantages in certain
+special circumstances.
+
+ For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it becomes
+a de-facto standard. To achieve this, non-free programs must be
+allowed to use the library. A more frequent case is that a free
+library does the same job as widely used non-free libraries. In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+ In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software. For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+ Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+ The precise terms and conditions for copying, distribution and
+modification follow. Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library". The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+ A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+ The "Library", below, refers to any such software library or work
+which has been distributed under these terms. A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language. (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+ "Source code" for a work means the preferred form of the work for
+making modifications to it. For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
+
+ Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it). Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+
+ 1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+ You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+ 2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) The modified work must itself be a software library.
+
+ b) You must cause the files modified to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ c) You must cause the whole of the work to be licensed at no
+ charge to all third parties under the terms of this License.
+
+ d) If a facility in the modified Library refers to a function or a
+ table of data to be supplied by an application program that uses
+ the facility, other than as an argument passed when the facility
+ is invoked, then you must make a good faith effort to ensure that,
+ in the event an application does not supply such function or
+ table, the facility still operates, and performs whatever part of
+ its purpose remains meaningful.
+
+ (For example, a function in a library to compute square roots has
+ a purpose that is entirely well-defined independent of the
+ application. Therefore, Subsection 2d requires that any
+ application-supplied function or table used by this function must
+ be optional: if the application does not supply it, the square
+ root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library. To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License. (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.) Do not make any other change in
+these notices.
+
+ Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+ This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+ 4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+ If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library". Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+ However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library". The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+ When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library. The
+threshold for this to be true is not precisely defined by law.
+
+ If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work. (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+ Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+ 6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+ You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License. You must supply a copy of this License. If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License. Also, you must do one
+of these things:
+
+ a) Accompany the work with the complete corresponding
+ machine-readable source code for the Library including whatever
+ changes were used in the work (which must be distributed under
+ Sections 1 and 2 above); and, if the work is an executable linked
+ with the Library, with the complete machine-readable "work that
+ uses the Library", as object code and/or source code, so that the
+ user can modify the Library and then relink to produce a modified
+ executable containing the modified Library. (It is understood
+ that the user who changes the contents of definitions files in the
+ Library will not necessarily be able to recompile the application
+ to use the modified definitions.)
+
+ b) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (1) uses at run time a
+ copy of the library already present on the user's computer system,
+ rather than copying library functions into the executable, and (2)
+ will operate properly with a modified version of the library, if
+ the user installs one, as long as the modified version is
+ interface-compatible with the version that the work was made with.
+
+ c) Accompany the work with a written offer, valid for at
+ least three years, to give the same user the materials
+ specified in Subsection 6a, above, for a charge no more
+ than the cost of performing this distribution.
+
+ d) If distribution of the work is made by offering access to copy
+ from a designated place, offer equivalent access to copy the above
+ specified materials from the same place.
+
+ e) Verify that the user has already received a copy of these
+ materials or that you have already sent this user a copy.
+
+ For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it. However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+ It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system. Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+ 7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+ a) Accompany the combined library with a copy of the same work
+ based on the Library, uncombined with any other library
+ facilities. This must be distributed under the terms of the
+ Sections above.
+
+ b) Give prominent notice with the combined library of the fact
+ that part of it is a work based on the Library, and explaining
+ where to find the accompanying uncombined form of the same work.
+
+ 8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License. Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License. However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+ 9. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Library or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+ 10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all. For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded. In such case, this License incorporates the limitation as if
+written in the body of this License.
+
+ 13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation. If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+ 14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission. For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this. Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+ NO WARRANTY
+
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Libraries
+
+ If you develop a new library, and you want it to be of the greatest
+possible use to the public, we recommend making it free software that
+everyone can redistribute and change. You can do so by permitting
+redistribution under these terms (or, alternatively, under the terms of the
+ordinary General Public License).
+
+ To apply these terms, attach the following notices to the library. It is
+safest to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the library's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This library 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 library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the library, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+ <signature of Ty Coon>, 1 April 1990
+ Ty Coon, President of Vice
+
+That's all there is to it!
+
+
Modified: branches/3.1.x/ui/assembly/src/main/assembly/richfaces.xml
===================================================================
--- branches/3.1.x/ui/assembly/src/main/assembly/richfaces.xml 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/assembly/src/main/assembly/richfaces.xml 2008-12-07 01:53:30 UTC (rev 11611)
@@ -10,6 +10,8 @@
<include>README*</include>
<include>LICENSE*</include>
<include>NOTICE*</include>
+ <include>JBossORG-EULA.txt</include>
+ <include>lgpl.txt</include>
</includes>
</fileSet>
<fileSet>
Modified: branches/3.1.x/ui/assembly/src/main/assembly/src.xml
===================================================================
--- branches/3.1.x/ui/assembly/src/main/assembly/src.xml 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/assembly/src/main/assembly/src.xml 2008-12-07 01:53:30 UTC (rev 11611)
@@ -6,6 +6,12 @@
</formats>
<fileSets>
<fileSet>
+ <includes>
+ <include>JBossORG-EULA.txt</include>
+ <include>lgpl.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
<directory>${basedir}/../..</directory>
<outputDirectory>/</outputDirectory>
<excludes>
Modified: branches/3.1.x/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java
===================================================================
--- branches/3.1.x/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/ui/calendar/src/test/java/org/richfaces/renderkit/html/iconimages/CalendarIconTest.java
===================================================================
--- branches/3.1.x/ui/calendar/src/test/java/org/richfaces/renderkit/html/iconimages/CalendarIconTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/calendar/src/test/java/org/richfaces/renderkit/html/iconimages/CalendarIconTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.iconimages;
import java.awt.Color;
Modified: branches/3.1.x/ui/componentControl/src/main/java/org/richfaces/component/UIComponentControl.java
===================================================================
--- branches/3.1.x/ui/componentControl/src/main/java/org/richfaces/component/UIComponentControl.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/componentControl/src/main/java/org/richfaces/component/UIComponentControl.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,7 +1,23 @@
/**
+ * License Agreement.
*
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-
package org.richfaces.component;
import java.util.Iterator;
Modified: branches/3.1.x/ui/componentControl/src/main/java/org/richfaces/renderkit/ComponentControlRendererBase.java
===================================================================
--- branches/3.1.x/ui/componentControl/src/main/java/org/richfaces/renderkit/ComponentControlRendererBase.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/componentControl/src/main/java/org/richfaces/renderkit/ComponentControlRendererBase.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import javax.faces.FacesException;
Modified: branches/3.1.x/ui/core/src/main/java/org/ajax4jsf/component/UIPortlet.java
===================================================================
--- branches/3.1.x/ui/core/src/main/java/org/ajax4jsf/component/UIPortlet.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/core/src/main/java/org/ajax4jsf/component/UIPortlet.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.component;
Modified: branches/3.1.x/ui/core/src/test/java/org/ajax4jsf/component/UIAjaxFormTest.java
===================================================================
--- branches/3.1.x/ui/core/src/test/java/org/ajax4jsf/component/UIAjaxFormTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/core/src/test/java/org/ajax4jsf/component/UIAjaxFormTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.component;
import java.io.Serializable;
Modified: branches/3.1.x/ui/drag-drop/src/test/java/org/richfaces/component/DragDropTest.java
===================================================================
--- branches/3.1.x/ui/drag-drop/src/test/java/org/richfaces/component/DragDropTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/drag-drop/src/test/java/org/richfaces/component/DragDropTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import java.util.HashSet;
Modified: branches/3.1.x/ui/effect/src/main/java/org/richfaces/renderkit/EffectRendererBase.java
===================================================================
--- branches/3.1.x/ui/effect/src/main/java/org/richfaces/renderkit/EffectRendererBase.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/effect/src/main/java/org/richfaces/renderkit/EffectRendererBase.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified: branches/3.1.x/ui/inputnumber-spinner/src/test/java/org/richfaces/renderkit/html/images/buttons/SpinnerButtonImageTest.java
===================================================================
--- branches/3.1.x/ui/inputnumber-spinner/src/test/java/org/richfaces/renderkit/html/images/buttons/SpinnerButtonImageTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/inputnumber-spinner/src/test/java/org/richfaces/renderkit/html/images/buttons/SpinnerButtonImageTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images.buttons;
Modified: branches/3.1.x/ui/insert/src/main/java/org/ajax4jsf/renderkit/AbstractInsertRenderer.java
===================================================================
--- branches/3.1.x/ui/insert/src/main/java/org/ajax4jsf/renderkit/AbstractInsertRenderer.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/insert/src/main/java/org/ajax4jsf/renderkit/AbstractInsertRenderer.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.renderkit;
Modified: branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/DummyHighLight.java
===================================================================
--- branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/DummyHighLight.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/DummyHighLight.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.ui.component;
Modified: branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/Highlight.java
===================================================================
--- branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/Highlight.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/Highlight.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.ui.component;
import java.io.IOException;
Modified: branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/HighlightImpl.java
===================================================================
--- branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/HighlightImpl.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/HighlightImpl.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.ui.component;
Modified: branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/UIInsert.java
===================================================================
--- branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/UIInsert.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/insert/src/main/java/org/richfaces/ui/component/UIInsert.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
+ * License Agreement.
*
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.ui.component;
Modified: branches/3.1.x/ui/jQuery/src/main/java/org/richfaces/renderkit/JQueryRendererBase.java
===================================================================
--- branches/3.1.x/ui/jQuery/src/main/java/org/richfaces/renderkit/JQueryRendererBase.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/jQuery/src/main/java/org/richfaces/renderkit/JQueryRendererBase.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import javax.faces.FacesException;
Modified: branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
+ * License Agreement.
*
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleControlsHelper.java
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleControlsHelper.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleControlsHelper.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import javax.faces.context.FacesContext;
Modified: branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleRendererBase.java
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleRendererBase.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleRendererBase.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified: branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopy.java
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopy.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopy.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import java.awt.Color;
Modified: branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyAll.java
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyAll.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyAll.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import java.awt.Color;
Modified: branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyAllDisabled.java
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyAllDisabled.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyAllDisabled.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import javax.faces.context.FacesContext;
Modified: branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyDisabled.java
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyDisabled.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconCopyDisabled.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import javax.faces.context.FacesContext;
Modified: branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemove.java
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemove.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemove.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import java.awt.Color;
Modified: branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveAll.java
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveAll.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveAll.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import java.awt.Color;
Modified: branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveAllDisabled.java
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveAllDisabled.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveAllDisabled.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import javax.faces.context.FacesContext;
Modified: branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveDisabled.java
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveDisabled.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/listShuttle/src/main/java/org/richfaces/renderkit/html/images/ListShuttleIconRemoveDisabled.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import javax.faces.context.FacesContext;
Modified: branches/3.1.x/ui/menu-components/src/main/java/org/richfaces/renderkit/html/images/MenuNodeImage.java
===================================================================
--- branches/3.1.x/ui/menu-components/src/main/java/org/richfaces/renderkit/html/images/MenuNodeImage.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/menu-components/src/main/java/org/richfaces/renderkit/html/images/MenuNodeImage.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import java.awt.Color;
Modified: branches/3.1.x/ui/menu-components/src/test/java/org/richfaces/renderkit/html/images/MenuNodeImageTest.java
===================================================================
--- branches/3.1.x/ui/menu-components/src/test/java/org/richfaces/renderkit/html/images/MenuNodeImageTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/menu-components/src/test/java/org/richfaces/renderkit/html/images/MenuNodeImageTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import java.awt.Color;
Modified: branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingBaseComponent.java
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingBaseComponent.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingBaseComponent.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import java.io.IOException;
Modified: branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingComponentControlsHelper.java
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingComponentControlsHelper.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingComponentControlsHelper.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import javax.faces.context.FacesContext;
Modified: branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingComponentRendererBase.java
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingComponentRendererBase.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingComponentRendererBase.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified: branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import java.io.IOException;
Modified: branches/3.1.x/ui/panel/src/test/java/org/richfaces/component/html/HtmlPanelTest.java
===================================================================
--- branches/3.1.x/ui/panel/src/test/java/org/richfaces/component/html/HtmlPanelTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/panel/src/test/java/org/richfaces/component/html/HtmlPanelTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component.html;
import javax.faces.context.FacesContext;
Modified: branches/3.1.x/ui/panel/src/test/java/org/richfaces/taglib/PanelTagTest.java
===================================================================
--- branches/3.1.x/ui/panel/src/test/java/org/richfaces/taglib/PanelTagTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/panel/src/test/java/org/richfaces/taglib/PanelTagTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.taglib;
Modified: branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/component/UIPanelMenu.java
===================================================================
--- branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/component/UIPanelMenu.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/component/UIPanelMenu.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.component.UIInput;
Modified: branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconChevronBasic.java
===================================================================
--- branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconChevronBasic.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconChevronBasic.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.iconimages;
import java.awt.BasicStroke;
Modified: branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconTriangleBasic.java
===================================================================
--- branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconTriangleBasic.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/panelmenu/src/main/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconTriangleBasic.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html.iconimages;
Modified: branches/3.1.x/ui/panelmenu/src/test/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconBasicTest.java
===================================================================
--- branches/3.1.x/ui/panelmenu/src/test/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconBasicTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/panelmenu/src/test/java/org/richfaces/renderkit/html/iconimages/PanelMenuIconBasicTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.iconimages;
import java.awt.Color;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/component/UIScrollableDataTable.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/component/UIScrollableDataTable.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/component/UIScrollableDataTable.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/convert/selection/ClientSelectionConverter.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/convert/selection/ClientSelectionConverter.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/convert/selection/ClientSelectionConverter.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.convert.selection;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/MultiColumnSortListener.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/MultiColumnSortListener.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/MultiColumnSortListener.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.event.sort;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/SingleColumnSortListener.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/SingleColumnSortListener.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/SingleColumnSortListener.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.event.sort;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/NullExpression.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/NullExpression.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/NullExpression.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.model.internal;
/**
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/SimplePropertyExpression.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/SimplePropertyExpression.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/SimplePropertyExpression.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.model.internal;
import javax.faces.el.EvaluationException;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/ValueBindingExpression.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/ValueBindingExpression.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/ValueBindingExpression.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.model.internal;
import java.util.Map;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/WrappedBeanComparator.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/WrappedBeanComparator.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/internal/WrappedBeanComparator.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.model.internal;
import java.util.Comparator;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/selection/ClientSelection.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/selection/ClientSelection.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/selection/ClientSelection.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model.selection;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/selection/SelectionRange.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/selection/SelectionRange.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/model/selection/SelectionRange.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model.selection;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/AjaxFunctionBuilder.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/AjaxFunctionBuilder.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/AjaxFunctionBuilder.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ColumnVisitor.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ColumnVisitor.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ColumnVisitor.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ColumnWalker.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ColumnWalker.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ColumnWalker.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ExtendedColumnVisitor.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ExtendedColumnVisitor.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ExtendedColumnVisitor.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/GridScrollSettings.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/GridScrollSettings.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/GridScrollSettings.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/HTMLEncodingContributor.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/HTMLEncodingContributor.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/HTMLEncodingContributor.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html;
import java.io.IOException;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableBaseRenderer.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableBaseRenderer.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableBaseRenderer.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html;
import java.io.IOException;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableHeaderRendererBase.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableHeaderRendererBase.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableHeaderRendererBase.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableRendererState.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableRendererState.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableRendererState.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableScrollData.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableScrollData.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableScrollData.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableUtils.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableUtils.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableUtils.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SelectionRendererContributor.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SelectionRendererContributor.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SelectionRendererContributor.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SortIconRenderer.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SortIconRenderer.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/SortIconRenderer.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasic.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasic.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasic.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.iconimages;
import java.awt.Color;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSortAsc.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSortAsc.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSortAsc.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.iconimages;
import java.awt.Color;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSortDesc.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSortDesc.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSortDesc.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.iconimages;
import java.awt.Color;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSplit.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSplit.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconSplit.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.iconimages;
import java.awt.Color;
Modified: branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/utils/TemplateLoader.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/utils/TemplateLoader.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/main/java/org/richfaces/utils/TemplateLoader.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- * (c) 2006 Exadel Inc.
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.utils;
Modified: branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/convert/selection/ClientSelectionConverterTest.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/convert/selection/ClientSelectionConverterTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/convert/selection/ClientSelectionConverterTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.convert.selection;
Modified: branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/model/selection/ClientSelectionTest.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/model/selection/ClientSelectionTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/model/selection/ClientSelectionTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.model.selection;
import junit.framework.TestCase;
Modified: branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/model/selection/SelectionRangeTest.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/model/selection/SelectionRangeTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/model/selection/SelectionRangeTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.model.selection;
import junit.framework.TestCase;
Modified: branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/JSFComponentTest.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/JSFComponentTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/JSFComponentTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html;
import junit.framework.Test;
Modified: branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/ScrollableDataTableRendererStateTest.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/ScrollableDataTableRendererStateTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/ScrollableDataTableRendererStateTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html;
import java.util.ArrayList;
Modified: branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/ScrollableDataTableRendererTest.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/ScrollableDataTableRendererTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/ScrollableDataTableRendererTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html;
import java.util.Collections;
Modified: branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/SelectionRendererContributorTest.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/SelectionRendererContributorTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/SelectionRendererContributorTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;
Modified: branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasicTest.java
===================================================================
--- branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasicTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/scrollableDataTable/src/test/java/org/richfaces/renderkit/html/iconimages/ScrollableDataTableIconBasicTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html.iconimages;
Modified: branches/3.1.x/ui/separator/src/test/java/org/richfaces/renderkit/html/images/BevelSeparatorImageTest.java
===================================================================
--- branches/3.1.x/ui/separator/src/test/java/org/richfaces/renderkit/html/images/BevelSeparatorImageTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/separator/src/test/java/org/richfaces/renderkit/html/images/BevelSeparatorImageTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import java.awt.Color;
Modified: branches/3.1.x/ui/separator/src/test/java/org/richfaces/renderkit/html/images/SimpleSeparatorImageTest.java
===================================================================
--- branches/3.1.x/ui/separator/src/test/java/org/richfaces/renderkit/html/images/SimpleSeparatorImageTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/separator/src/test/java/org/richfaces/renderkit/html/images/SimpleSeparatorImageTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html.images;
import java.awt.Color;
Modified: branches/3.1.x/ui/simpleTogglePanel/src/main/java/org/richfaces/taglib/SimpleTogglePanelTagHandlerBase.java
===================================================================
--- branches/3.1.x/ui/simpleTogglePanel/src/main/java/org/richfaces/taglib/SimpleTogglePanelTagHandlerBase.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/simpleTogglePanel/src/main/java/org/richfaces/taglib/SimpleTogglePanelTagHandlerBase.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.taglib;
import javax.faces.context.FacesContext;
Modified: branches/3.1.x/ui/suggestionbox/src/main/java/org/richfaces/component/SelectSuggestionEvent.java
===================================================================
--- branches/3.1.x/ui/suggestionbox/src/main/java/org/richfaces/component/SelectSuggestionEvent.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/suggestionbox/src/main/java/org/richfaces/component/SelectSuggestionEvent.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.component.UIComponent;
Modified: branches/3.1.x/ui/tabPanel/src/test/java/org/richfaces/component/UITabPanelTest.java
===================================================================
--- branches/3.1.x/ui/tabPanel/src/test/java/org/richfaces/component/UITabPanelTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/tabPanel/src/test/java/org/richfaces/component/UITabPanelTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import org.ajax4jsf.tests.AbstractAjax4JsfTestCase;
Modified: branches/3.1.x/ui/toolBar/src/test/java/org/richfaces/renderkit/html/images/ToolBarSeparatorImageTest.java
===================================================================
--- branches/3.1.x/ui/toolBar/src/test/java/org/richfaces/renderkit/html/images/ToolBarSeparatorImageTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/toolBar/src/test/java/org/richfaces/renderkit/html/images/ToolBarSeparatorImageTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html.images;
Modified: branches/3.1.x/ui/tooltip/src/main/java/org/richfaces/component/UIToolTip.java
===================================================================
--- branches/3.1.x/ui/tooltip/src/main/java/org/richfaces/component/UIToolTip.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/tooltip/src/main/java/org/richfaces/component/UIToolTip.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import java.io.IOException;
Modified: branches/3.1.x/ui/tooltip/src/main/java/org/richfaces/renderkit/html/ToolTipRenderer.java
===================================================================
--- branches/3.1.x/ui/tooltip/src/main/java/org/richfaces/renderkit/html/ToolTipRenderer.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/tooltip/src/main/java/org/richfaces/renderkit/html/ToolTipRenderer.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html;
import java.io.IOException;
Modified: branches/3.1.x/ui/tooltip/src/test/java/org/richfaces/renderkit/html/ToolTipRendererTest.java
===================================================================
--- branches/3.1.x/ui/tooltip/src/test/java/org/richfaces/renderkit/html/ToolTipRendererTest.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/tooltip/src/test/java/org/richfaces/renderkit/html/ToolTipRendererTest.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit.html;
import java.util.HashSet;
Modified: branches/3.1.x/ui/tree/src/main/java/org/richfaces/component/UITreeNode.java
===================================================================
--- branches/3.1.x/ui/tree/src/main/java/org/richfaces/component/UITreeNode.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/tree/src/main/java/org/richfaces/component/UITreeNode.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/ui/tree/src/main/java/org/richfaces/renderkit/NodeRendererBase.java
===================================================================
--- branches/3.1.x/ui/tree/src/main/java/org/richfaces/renderkit/NodeRendererBase.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/tree/src/main/java/org/richfaces/renderkit/NodeRendererBase.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified: branches/3.1.x/ui/treeModel/src/main/java/org/richfaces/component/UIRecursiveTreeNodesAdaptor.java
===================================================================
--- branches/3.1.x/ui/treeModel/src/main/java/org/richfaces/component/UIRecursiveTreeNodesAdaptor.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/treeModel/src/main/java/org/richfaces/component/UIRecursiveTreeNodesAdaptor.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,7 +1,23 @@
/**
+ * License Agreement.
*
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-
package org.richfaces.component;
import java.util.Iterator;
Modified: branches/3.1.x/ui/treeModel/src/main/java/org/richfaces/component/UITreeNodesAdaptor.java
===================================================================
--- branches/3.1.x/ui/treeModel/src/main/java/org/richfaces/component/UITreeNodesAdaptor.java 2008-12-07 01:35:23 UTC (rev 11610)
+++ branches/3.1.x/ui/treeModel/src/main/java/org/richfaces/component/UITreeNodesAdaptor.java 2008-12-07 01:53:30 UTC (rev 11611)
@@ -1,7 +1,23 @@
/**
+ * License Agreement.
*
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-
package org.richfaces.component;
import org.richfaces.model.StackingTreeModel;
17 years, 5 months
JBoss Rich Faces SVN: r11610 - in branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt: client/ui and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 20:35:23 -0500 (Sat, 06 Dec 2008)
New Revision: 11610
Modified:
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/client/ComponentEntryPoint.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/client/ui/JSFImage.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtCallListener.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtEvent.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListener.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerHandler.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerHelper.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerMethodHelper.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerServiceHelper.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtPhaseListener.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/PageRenderer.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/WidgetRenderer.java
branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/server/GwtFacesServlet.java
Log:
https://jira.jboss.org/jira/browse/RF-4578
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/client/ComponentEntryPoint.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/client/ComponentEntryPoint.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/client/ComponentEntryPoint.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.gwt.client;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/client/ui/JSFImage.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/client/ui/JSFImage.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/client/ui/JSFImage.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.gwt.client.ui;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtCallListener.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtCallListener.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtCallListener.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.gwt.jsf;
import javax.faces.event.PhaseEvent;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtEvent.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtEvent.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtEvent.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.gwt.jsf;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListener.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListener.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListener.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.gwt.jsf;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerHandler.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerHandler.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerHandler.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.gwt.jsf;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerHelper.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerHelper.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerHelper.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.gwt.jsf;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerMethodHelper.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerMethodHelper.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerMethodHelper.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.gwt.jsf;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerServiceHelper.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerServiceHelper.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtListenerServiceHelper.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.gwt.jsf;
import com.google.gwt.user.server.rpc.RPCRequest;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtPhaseListener.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtPhaseListener.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/GwtPhaseListener.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.gwt.jsf;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/PageRenderer.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/PageRenderer.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/PageRenderer.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.gwt.jsf;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/WidgetRenderer.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/WidgetRenderer.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/jsf/WidgetRenderer.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.gwt.jsf;
Modified: branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/server/GwtFacesServlet.java
===================================================================
--- branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/server/GwtFacesServlet.java 2008-12-07 01:34:40 UTC (rev 11609)
+++ branches/3.1.x/extensions/gwt/src/main/java/org/ajax4jsf/gwt/server/GwtFacesServlet.java 2008-12-07 01:35:23 UTC (rev 11610)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.gwt.server;
17 years, 5 months
JBoss Rich Faces SVN: r11609 - in branches/3.1.x/framework: api/src/main/java/org/ajax4jsf/cache and 33 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 20:34:40 -0500 (Sat, 06 Dec 2008)
New Revision: 11609
Modified:
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/application/AjaxSingleException.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/Cache.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheEntry.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheException.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheFactory.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheListener.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheLoader.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/context/AjaxContext.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/event/AjaxSingleEvent.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/event/PushEventListener.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/javascript/JSLiteral.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/renderkit/AjaxRenderer.java
branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/renderkit/UserResourceRenderer.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/component/ScriptExportable.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/component/Selectable.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/component/TemplateComponent.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/event/CurrentDateChangeEvent.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/event/scroll/ScrollEvent.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ListShuttleDataModel.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ListShuttleRowKey.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/MapDataModel.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/OrderingListDataModel.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ScrollableTableDataModel.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SequenceDataModel.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SortField.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SortOrder.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModel.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModelDataProvider.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModelProvider.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/TreeModelVisualComponentProvider.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/VisualStackingTreeModel.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/selection/Selection.java
branches/3.1.x/framework/api/src/main/java/org/richfaces/model/selection/SimpleSelection.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/application/ComponentsLoader.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/application/ComponentsLoaderImpl.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/cache/CacheManager.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/component/SequenceDataAdaptor.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/context/ContextInitParameters.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/context/ViewResources.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/event/EventsQueue.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CacheContext.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CompressedScriptRenderer.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CountingOutputWriter.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/ELUtils.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/LRUMap.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/Zipper.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ConfigurableFilter.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ConfigurableXMLFilter.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ParserConfig.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/PollEventsManager.java
branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/PushEventsCounter.java
branches/3.1.x/framework/impl/src/main/java/org/richfaces/component/util/ComponentUtil.java
branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/DataModelCache.java
branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/ArrayDataModel.java
branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/ListDataModel.java
branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/SimpleGridDataModel.java
branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/Expression.java
branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/MacroDefinitionJSContentHandler.java
branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/TemplateEncoderRendererBase.java
branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/cache/LRUMapCacheThreadedTest.java
branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/css/CssCompressorTest.java
branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/framework/ajax/xmlfilter/nekko/HtmlCorrectionFilterTestCase.java
branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/javascript/JSMinTest.java
branches/3.1.x/framework/impl/src/test/java/org/richfaces/component/util/ComponentUtilTest.java
branches/3.1.x/framework/test/src/main/java/org/ajax4jsf/tests/DummyScriptEngine.java
branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/application/AjaxStateManagerTest.java
branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/application/ComponentLoaderTest.java
branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/resource/ParametersEncodingTestCase.java
branches/3.1.x/framework/test/src/test/java/org/richfaces/json/JsonTest.java
branches/3.1.x/framework/test/src/test/java/org/richfaces/model/StackingTreeDataModelTest.java
branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Directory.java
branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/File.java
branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Named.java
branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Project.java
branches/3.1.x/framework/test/src/test/java/org/richfaces/renderkit/CompositeRendererTest.java
Log:
https://jira.jboss.org/jira/browse/RF-4578
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/application/AjaxSingleException.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/application/AjaxSingleException.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/application/AjaxSingleException.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.application;
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/Cache.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/Cache.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/Cache.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,19 @@
+/*
+ * Copyright [yyyy] [name of copyright owner].
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.ajax4jsf.cache;
import java.util.Collection;
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheEntry.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheEntry.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheEntry.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,19 @@
+/*
+ * Copyright [yyyy] [name of copyright owner].
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.ajax4jsf.cache;
import java.util.Map;
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheException.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheException.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheException.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,19 @@
+/*
+ * Copyright [yyyy] [name of copyright owner].
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.ajax4jsf.cache;
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheFactory.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheFactory.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheFactory.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,19 @@
+/*
+ * Copyright [yyyy] [name of copyright owner].
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.ajax4jsf.cache;
import java.util.Map;
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheListener.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheListener.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheListener.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,19 @@
+/*
+ * Copyright [yyyy] [name of copyright owner].
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.ajax4jsf.cache;
/** Interface describing various events that can happen as elements are added to
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheLoader.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheLoader.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/cache/CacheLoader.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,19 @@
+/*
+ * Copyright [yyyy] [name of copyright owner].
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.ajax4jsf.cache;
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/context/AjaxContext.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/context/AjaxContext.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/context/AjaxContext.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.context;
import java.io.BufferedReader;
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/event/AjaxSingleEvent.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/event/AjaxSingleEvent.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/event/AjaxSingleEvent.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.event;
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/event/PushEventListener.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/event/PushEventListener.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/event/PushEventListener.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.event;
import java.util.EventListener;
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/javascript/JSLiteral.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/javascript/JSLiteral.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/javascript/JSLiteral.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,7 +1,22 @@
-/*
- * JSLiteral.java Date created: 29.01.2008
- * Last modified by: $Author$
- * $Revision$ $Date$
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.javascript;
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/renderkit/AjaxRenderer.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/renderkit/AjaxRenderer.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/renderkit/AjaxRenderer.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.renderkit;
import java.io.IOException;
Modified: branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/renderkit/UserResourceRenderer.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/renderkit/UserResourceRenderer.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/ajax4jsf/renderkit/UserResourceRenderer.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.renderkit;
import java.util.LinkedHashSet;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/component/ScriptExportable.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/component/ScriptExportable.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/component/ScriptExportable.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/component/Selectable.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/component/Selectable.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/component/Selectable.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/component/TemplateComponent.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/component/TemplateComponent.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/component/TemplateComponent.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/event/CurrentDateChangeEvent.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/event/CurrentDateChangeEvent.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/event/CurrentDateChangeEvent.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.event;
import java.util.Date;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/event/scroll/ScrollEvent.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/event/scroll/ScrollEvent.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/event/scroll/ScrollEvent.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.event.scroll;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ListShuttleDataModel.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ListShuttleDataModel.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ListShuttleDataModel.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ListShuttleRowKey.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ListShuttleRowKey.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ListShuttleRowKey.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/MapDataModel.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/MapDataModel.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/MapDataModel.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/OrderingListDataModel.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/OrderingListDataModel.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/OrderingListDataModel.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ScrollableTableDataModel.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ScrollableTableDataModel.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/ScrollableTableDataModel.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SequenceDataModel.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SequenceDataModel.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SequenceDataModel.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SortField.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SortField.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SortField.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SortOrder.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SortOrder.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/SortOrder.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.model;
import java.io.Serializable;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModel.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModel.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModel.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModelDataProvider.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModelDataProvider.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModelDataProvider.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModelProvider.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModelProvider.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/StackingTreeModelProvider.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/TreeModelVisualComponentProvider.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/TreeModelVisualComponentProvider.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/TreeModelVisualComponentProvider.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/VisualStackingTreeModel.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/VisualStackingTreeModel.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/VisualStackingTreeModel.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/selection/Selection.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/selection/Selection.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/selection/Selection.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model.selection;
Modified: branches/3.1.x/framework/api/src/main/java/org/richfaces/model/selection/SimpleSelection.java
===================================================================
--- branches/3.1.x/framework/api/src/main/java/org/richfaces/model/selection/SimpleSelection.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/api/src/main/java/org/richfaces/model/selection/SimpleSelection.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model.selection;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/application/ComponentsLoader.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/application/ComponentsLoader.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/application/ComponentsLoader.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.application;
import javax.faces.component.UIComponent;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/application/ComponentsLoaderImpl.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/application/ComponentsLoaderImpl.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/application/ComponentsLoaderImpl.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.application;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/cache/CacheManager.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/cache/CacheManager.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/cache/CacheManager.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,19 @@
+/*
+ * Copyright [yyyy] [name of copyright owner].
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
package org.ajax4jsf.cache;
import java.io.BufferedReader;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/component/SequenceDataAdaptor.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/component/SequenceDataAdaptor.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/component/SequenceDataAdaptor.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.component;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/context/ContextInitParameters.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/context/ContextInitParameters.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/context/ContextInitParameters.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.context;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/context/ViewResources.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/context/ViewResources.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/context/ViewResources.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.context;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/event/EventsQueue.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/event/EventsQueue.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/event/EventsQueue.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.event;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CacheContext.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CacheContext.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CacheContext.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.resource;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CompressedScriptRenderer.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CompressedScriptRenderer.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CompressedScriptRenderer.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.resource;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CountingOutputWriter.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CountingOutputWriter.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/resource/CountingOutputWriter.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,7 +1,22 @@
-/*
- * CountingOutputWriter.java Date created: 21.11.2007
- * Last modified by: $Author$
- * $Revision$ $Date$
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.resource;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/ELUtils.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/ELUtils.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/ELUtils.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.util;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/LRUMap.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/LRUMap.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/LRUMap.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.util;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/Zipper.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/Zipper.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/util/Zipper.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.util;
public class Zipper {
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ConfigurableFilter.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ConfigurableFilter.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ConfigurableFilter.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.webapp;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ConfigurableXMLFilter.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ConfigurableXMLFilter.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ConfigurableXMLFilter.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.webapp;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ParserConfig.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ParserConfig.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/ParserConfig.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.webapp;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/PollEventsManager.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/PollEventsManager.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/PollEventsManager.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.webapp;
Modified: branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/PushEventsCounter.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/PushEventsCounter.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/ajax4jsf/webapp/PushEventsCounter.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.webapp;
import java.io.Serializable;
Modified: branches/3.1.x/framework/impl/src/main/java/org/richfaces/component/util/ComponentUtil.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/richfaces/component/util/ComponentUtil.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/richfaces/component/util/ComponentUtil.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component.util;
Modified: branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/DataModelCache.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/DataModelCache.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/DataModelCache.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/ArrayDataModel.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/ArrayDataModel.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/ArrayDataModel.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model.impl;
Modified: branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/ListDataModel.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/ListDataModel.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/ListDataModel.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model.impl;
Modified: branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/SimpleGridDataModel.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/SimpleGridDataModel.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/richfaces/model/impl/SimpleGridDataModel.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.model.impl;
import java.util.Comparator;
Modified: branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/Expression.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/Expression.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/Expression.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified: branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/MacroDefinitionJSContentHandler.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/MacroDefinitionJSContentHandler.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/MacroDefinitionJSContentHandler.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified: branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/TemplateEncoderRendererBase.java
===================================================================
--- branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/TemplateEncoderRendererBase.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/main/java/org/richfaces/renderkit/TemplateEncoderRendererBase.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified: branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/cache/LRUMapCacheThreadedTest.java
===================================================================
--- branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/cache/LRUMapCacheThreadedTest.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/cache/LRUMapCacheThreadedTest.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.cache;
Modified: branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/css/CssCompressorTest.java
===================================================================
--- branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/css/CssCompressorTest.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/css/CssCompressorTest.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,24 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
/*
* CssCompressorTest.java Date created: 21.11.2007
* Last modified by: $Author$
Modified: branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/framework/ajax/xmlfilter/nekko/HtmlCorrectionFilterTestCase.java
===================================================================
--- branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/framework/ajax/xmlfilter/nekko/HtmlCorrectionFilterTestCase.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/framework/ajax/xmlfilter/nekko/HtmlCorrectionFilterTestCase.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.framework.ajax.xmlfilter.nekko;
Modified: branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/javascript/JSMinTest.java
===================================================================
--- branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/javascript/JSMinTest.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/test/java/org/ajax4jsf/javascript/JSMinTest.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.javascript;
Modified: branches/3.1.x/framework/impl/src/test/java/org/richfaces/component/util/ComponentUtilTest.java
===================================================================
--- branches/3.1.x/framework/impl/src/test/java/org/richfaces/component/util/ComponentUtilTest.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/impl/src/test/java/org/richfaces/component/util/ComponentUtilTest.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component.util;
import java.util.ArrayList;
Modified: branches/3.1.x/framework/test/src/main/java/org/ajax4jsf/tests/DummyScriptEngine.java
===================================================================
--- branches/3.1.x/framework/test/src/main/java/org/ajax4jsf/tests/DummyScriptEngine.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/test/src/main/java/org/ajax4jsf/tests/DummyScriptEngine.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.tests;
Modified: branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/application/AjaxStateManagerTest.java
===================================================================
--- branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/application/AjaxStateManagerTest.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/application/AjaxStateManagerTest.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.application;
Modified: branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/application/ComponentLoaderTest.java
===================================================================
--- branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/application/ComponentLoaderTest.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/application/ComponentLoaderTest.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.application;
Modified: branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/resource/ParametersEncodingTestCase.java
===================================================================
--- branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/resource/ParametersEncodingTestCase.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/test/src/test/java/org/ajax4jsf/resource/ParametersEncodingTestCase.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.resource;
import java.util.Arrays;
Modified: branches/3.1.x/framework/test/src/test/java/org/richfaces/json/JsonTest.java
===================================================================
--- branches/3.1.x/framework/test/src/test/java/org/richfaces/json/JsonTest.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/test/src/test/java/org/richfaces/json/JsonTest.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.json;
Modified: branches/3.1.x/framework/test/src/test/java/org/richfaces/model/StackingTreeDataModelTest.java
===================================================================
--- branches/3.1.x/framework/test/src/test/java/org/richfaces/model/StackingTreeDataModelTest.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/test/src/test/java/org/richfaces/model/StackingTreeDataModelTest.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model;
Modified: branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Directory.java
===================================================================
--- branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Directory.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Directory.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model.entity;
Modified: branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/File.java
===================================================================
--- branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/File.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/File.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model.entity;
Modified: branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Named.java
===================================================================
--- branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Named.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Named.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model.entity;
Modified: branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Project.java
===================================================================
--- branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Project.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/test/src/test/java/org/richfaces/model/entity/Project.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.model.entity;
Modified: branches/3.1.x/framework/test/src/test/java/org/richfaces/renderkit/CompositeRendererTest.java
===================================================================
--- branches/3.1.x/framework/test/src/test/java/org/richfaces/renderkit/CompositeRendererTest.java 2008-12-07 01:33:19 UTC (rev 11608)
+++ branches/3.1.x/framework/test/src/test/java/org/richfaces/renderkit/CompositeRendererTest.java 2008-12-07 01:34:40 UTC (rev 11609)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import java.io.IOException;
17 years, 5 months
JBoss Rich Faces SVN: r11608 - branches/3.1.x/docs/highlight/src/main/java/org/richfaces/highlight.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 20:33:19 -0500 (Sat, 06 Dec 2008)
New Revision: 11608
Modified:
branches/3.1.x/docs/highlight/src/main/java/org/richfaces/highlight/CssXhtmlRenderer.java
Log:
https://jira.jboss.org/jira/browse/RF-4578
Modified: branches/3.1.x/docs/highlight/src/main/java/org/richfaces/highlight/CssXhtmlRenderer.java
===================================================================
--- branches/3.1.x/docs/highlight/src/main/java/org/richfaces/highlight/CssXhtmlRenderer.java 2008-12-07 01:32:57 UTC (rev 11607)
+++ branches/3.1.x/docs/highlight/src/main/java/org/richfaces/highlight/CssXhtmlRenderer.java 2008-12-07 01:33:19 UTC (rev 11608)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.highlight;
import java.awt.Color;
import java.io.ByteArrayOutputStream;
17 years, 5 months
JBoss Rich Faces SVN: r11607 - in branches/3.1.x/cdk: generator/src/main/java/org/ajax4jsf/builder/generator and 7 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 20:32:57 -0500 (Sat, 06 Dec 2008)
New Revision: 11607
Modified:
branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ComponentBaseBean.java
branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ConverterBean.java
branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/TestClassHolder.java
branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ValidatorBean.java
branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/ComponentTestGenerator.java
branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/TagTestGenerator.java
branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/TestDataGenerator.java
branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XMLBodyMerge.java
branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XMLBodySerializer.java
branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XPathComparator.java
branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/vcp/AjaxRenderedAreaElement.java
branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XMLBodyMergeTest.java
branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XMLBodySerializerTest.java
branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XPathComparatorTest.java
branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/MavenXMLMerge.java
branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/VelocityTaglibMergeCallBack.java
branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/XMLMergeCallback.java
branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/mojo/GenerateTestMojo.java
branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/Aggregation.java
branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/ErrorReporter4Mojo.java
branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/JSLintChecker.java
branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/JSLintMojo.java
branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/MojoSupport.java
branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/SourceFile.java
branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/YuiCompressorMojo.java
branches/3.1.x/cdk/maven-javascript-plugin/src/test/java/net/sf/alchim/mojo/yuicompressor/AggregationTestCase.java
Log:
https://jira.jboss.org/jira/browse/RF-4578
Modified: branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ComponentBaseBean.java
===================================================================
--- branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ComponentBaseBean.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ComponentBaseBean.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.builder.config;
import java.beans.PropertyDescriptor;
Modified: branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ConverterBean.java
===================================================================
--- branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ConverterBean.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ConverterBean.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.builder.config;
public class ConverterBean extends ComponentBaseBean {
Modified: branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/TestClassHolder.java
===================================================================
--- branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/TestClassHolder.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/TestClassHolder.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.builder.config;
/**
Modified: branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ValidatorBean.java
===================================================================
--- branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ValidatorBean.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/config/ValidatorBean.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.builder.config;
public class ValidatorBean extends ComponentBaseBean {
Modified: branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/ComponentTestGenerator.java
===================================================================
--- branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/ComponentTestGenerator.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/ComponentTestGenerator.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.builder.generator;
import java.io.BufferedWriter;
Modified: branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/TagTestGenerator.java
===================================================================
--- branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/TagTestGenerator.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/TagTestGenerator.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.builder.generator;
import java.io.BufferedWriter;
Modified: branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/TestDataGenerator.java
===================================================================
--- branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/TestDataGenerator.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/generator/TestDataGenerator.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.builder.generator;
Modified: branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XMLBodyMerge.java
===================================================================
--- branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XMLBodyMerge.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XMLBodyMerge.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.builder.xml;
Modified: branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XMLBodySerializer.java
===================================================================
--- branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XMLBodySerializer.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XMLBodySerializer.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.builder.xml;
Modified: branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XPathComparator.java
===================================================================
--- branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XPathComparator.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/builder/xml/XPathComparator.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.builder.xml;
Modified: branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/vcp/AjaxRenderedAreaElement.java
===================================================================
--- branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/vcp/AjaxRenderedAreaElement.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/main/java/org/ajax4jsf/templatecompiler/elements/vcp/AjaxRenderedAreaElement.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.templatecompiler.elements.vcp;
Modified: branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XMLBodyMergeTest.java
===================================================================
--- branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XMLBodyMergeTest.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XMLBodyMergeTest.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.builder.xml;
Modified: branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XMLBodySerializerTest.java
===================================================================
--- branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XMLBodySerializerTest.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XMLBodySerializerTest.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.builder.xml;
Modified: branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XPathComparatorTest.java
===================================================================
--- branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XPathComparatorTest.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/generator/src/test/java/org/ajax4jsf/builder/xml/XPathComparatorTest.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.builder.xml;
Modified: branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/MavenXMLMerge.java
===================================================================
--- branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/MavenXMLMerge.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/MavenXMLMerge.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.builder.maven;
Modified: branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/VelocityTaglibMergeCallBack.java
===================================================================
--- branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/VelocityTaglibMergeCallBack.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/VelocityTaglibMergeCallBack.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.builder.maven;
Modified: branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/XMLMergeCallback.java
===================================================================
--- branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/XMLMergeCallback.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/maven/XMLMergeCallback.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.ajax4jsf.builder.maven;
Modified: branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/mojo/GenerateTestMojo.java
===================================================================
--- branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/mojo/GenerateTestMojo.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-cdk-plugin/src/main/java/org/ajax4jsf/builder/mojo/GenerateTestMojo.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.builder.mojo;
import org.ajax4jsf.builder.config.BuilderConfig;
Modified: branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/Aggregation.java
===================================================================
--- branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/Aggregation.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/Aggregation.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,24 @@
+/**
+ * License Agreement.
+ *
+ * YUI Compressor Maven Mojo
+ *
+ * Copyright (C) 2007 Alchim31 Team
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
package net.sf.alchim.mojo.yuicompressor;
import java.io.File;
Modified: branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/ErrorReporter4Mojo.java
===================================================================
--- branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/ErrorReporter4Mojo.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/ErrorReporter4Mojo.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,24 @@
+/**
+ * License Agreement.
+ *
+ * YUI Compressor Maven Mojo
+ *
+ * Copyright (C) 2007 Alchim31 Team
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
package net.sf.alchim.mojo.yuicompressor;
import org.apache.maven.plugin.logging.Log;
Modified: branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/JSLintChecker.java
===================================================================
--- branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/JSLintChecker.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/JSLintChecker.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,24 @@
+/**
+ * License Agreement.
+ *
+ * YUI Compressor Maven Mojo
+ *
+ * Copyright (C) 2007 Alchim31 Team
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
package net.sf.alchim.mojo.yuicompressor;
import java.io.File;
Modified: branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/JSLintMojo.java
===================================================================
--- branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/JSLintMojo.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/JSLintMojo.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,24 @@
+/**
+ * License Agreement.
+ *
+ * YUI Compressor Maven Mojo
+ *
+ * Copyright (C) 2007 Alchim31 Team
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
package net.sf.alchim.mojo.yuicompressor;
Modified: branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/MojoSupport.java
===================================================================
--- branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/MojoSupport.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/MojoSupport.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,24 @@
+/**
+ * License Agreement.
+ *
+ * YUI Compressor Maven Mojo
+ *
+ * Copyright (C) 2007 Alchim31 Team
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
package net.sf.alchim.mojo.yuicompressor;
import java.io.File;
Modified: branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/SourceFile.java
===================================================================
--- branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/SourceFile.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/SourceFile.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,24 @@
+/**
+ * License Agreement.
+ *
+ * YUI Compressor Maven Mojo
+ *
+ * Copyright (C) 2007 Alchim31 Team
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
package net.sf.alchim.mojo.yuicompressor;
import java.io.File;
Modified: branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/YuiCompressorMojo.java
===================================================================
--- branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/YuiCompressorMojo.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-javascript-plugin/src/main/java/net/sf/alchim/mojo/yuicompressor/YuiCompressorMojo.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,24 @@
+/**
+ * License Agreement.
+ *
+ * YUI Compressor Maven Mojo
+ *
+ * Copyright (C) 2007 Alchim31 Team
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
package net.sf.alchim.mojo.yuicompressor;
import java.io.File;
Modified: branches/3.1.x/cdk/maven-javascript-plugin/src/test/java/net/sf/alchim/mojo/yuicompressor/AggregationTestCase.java
===================================================================
--- branches/3.1.x/cdk/maven-javascript-plugin/src/test/java/net/sf/alchim/mojo/yuicompressor/AggregationTestCase.java 2008-12-07 01:32:08 UTC (rev 11606)
+++ branches/3.1.x/cdk/maven-javascript-plugin/src/test/java/net/sf/alchim/mojo/yuicompressor/AggregationTestCase.java 2008-12-07 01:32:57 UTC (rev 11607)
@@ -1,3 +1,24 @@
+/**
+ * License Agreement.
+ *
+ * YUI Compressor Maven Mojo
+ *
+ * Copyright (C) 2007 Alchim31 Team
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
package net.sf.alchim.mojo.yuicompressor;
import java.io.File;
17 years, 5 months
JBoss Rich Faces SVN: r11606 - branches/3.1.x/docs/highlight/src/main/java/org/richfaces/highlight.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 20:32:08 -0500 (Sat, 06 Dec 2008)
New Revision: 11606
Modified:
branches/3.1.x/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java
Log:
https://jira.jboss.org/jira/browse/RF-4578
Modified: branches/3.1.x/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java
===================================================================
--- branches/3.1.x/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java 2008-12-07 01:31:41 UTC (rev 11605)
+++ branches/3.1.x/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java 2008-12-07 01:32:08 UTC (rev 11606)
@@ -1,3 +1,14 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2005 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
package org.richfaces.highlight;
import java.awt.Color;
17 years, 5 months
JBoss Rich Faces SVN: r11605 - branches/3.2.x/docs/highlight/src/main/java/org/richfaces/highlight.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 20:31:41 -0500 (Sat, 06 Dec 2008)
New Revision: 11605
Modified:
branches/3.2.x/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java
Log:
https://jira.jboss.org/jira/browse/RF-4578
Modified: branches/3.2.x/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java
===================================================================
--- branches/3.2.x/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java 2008-12-07 01:30:44 UTC (rev 11604)
+++ branches/3.2.x/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java 2008-12-07 01:31:41 UTC (rev 11605)
@@ -1,3 +1,14 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2005 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
package org.richfaces.highlight;
import java.awt.Color;
17 years, 5 months
JBoss Rich Faces SVN: r11604 - trunk/docs/highlight/src/main/java/org/richfaces/highlight.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 20:30:44 -0500 (Sat, 06 Dec 2008)
New Revision: 11604
Modified:
trunk/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java
Log:
https://jira.jboss.org/jira/browse/RF-4578
Modified: trunk/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java
===================================================================
--- trunk/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java 2008-12-06 18:19:44 UTC (rev 11603)
+++ trunk/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java 2008-12-07 01:30:44 UTC (rev 11604)
@@ -1,23 +1,14 @@
-/**
- * License Agreement.
+/*******************************************************************************
+ * Copyright (c) 2004, 2005 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
*
- * Rich Faces - Natural Ajax for Java Server Faces (JSF)
- *
- * Copyright (C) 2007 Exadel, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
package org.richfaces.highlight;
import java.awt.Color;
17 years, 5 months
JBoss Rich Faces SVN: r11603 - trunk/ui/dataTable/src/main/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 13:19:44 -0500 (Sat, 06 Dec 2008)
New Revision: 11603
Modified:
trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java
Log:
https://jira.jboss.org/jira/browse/RF-2977
Modified: trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java
===================================================================
--- trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java 2008-12-06 07:31:55 UTC (rev 11602)
+++ trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java 2008-12-06 18:19:44 UTC (rev 11603)
@@ -121,6 +121,7 @@
Object key = table.getRowKey();
table.captureOrigValue(context);
table.setRowKey(context, null);
+ encodeCaption(context, table);
int columns = getColumnsCount(table);
// Encode colgroup definition.
writer.startElement("colgroup", table);
@@ -138,7 +139,6 @@
}
}
writer.endElement("colgroup");
- encodeCaption(context, table);
encodeHeader(context, table, columns);
encodeFooter(context, table, columns);
table.setRowKey(context,key);
17 years, 5 months
JBoss Rich Faces SVN: r11602 - trunk/ui/tooltip/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 02:31:55 -0500 (Sat, 06 Dec 2008)
New Revision: 11602
Modified:
trunk/ui/tooltip/src/main/resources/org/richfaces/renderkit/html/scripts/tooltip.js
Log:
https://jira.jboss.org/jira/browse/RF-5202
Modified: trunk/ui/tooltip/src/main/resources/org/richfaces/renderkit/html/scripts/tooltip.js
===================================================================
--- trunk/ui/tooltip/src/main/resources/org/richfaces/renderkit/html/scripts/tooltip.js 2008-12-06 07:09:43 UTC (rev 11601)
+++ trunk/ui/tooltip/src/main/resources/org/richfaces/renderkit/html/scripts/tooltip.js 2008-12-06 07:31:55 UTC (rev 11602)
@@ -64,7 +64,7 @@
new Insertion.Before(this.toolTip,
"<iframe src=\"javascript:''\" frameborder=\"0\" scrolling=\"no\" id=\"" + this.id + "iframe\"" +
"style=\"position: absolute; width: " + this.toolTipOffsetW + "px; height: " + this.toolTipOffsetH + "px; display: none;background-color:black; z-index: " +
- + (toolTipZindex-1) + ";\">" + "</iframe>");
+ (toolTipZindex-1) + ";\">" + "</iframe>");
this.iframe = $(this.id + 'iframe');
}
17 years, 5 months
JBoss Rich Faces SVN: r11601 - in trunk/ui/core/src: test/java/org/ajax4jsf/component and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 02:09:43 -0500 (Sat, 06 Dec 2008)
New Revision: 11601
Modified:
trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/scripts/QueueScriptResourceRenderer.java
trunk/ui/core/src/test/java/org/ajax4jsf/component/QueueRendererTest.java
Log:
https://jira.jboss.org/jira/browse/RF-5216
Modified: trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/scripts/QueueScriptResourceRenderer.java
===================================================================
--- trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/scripts/QueueScriptResourceRenderer.java 2008-12-06 05:22:03 UTC (rev 11600)
+++ trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/scripts/QueueScriptResourceRenderer.java 2008-12-06 07:09:43 UTC (rev 11601)
@@ -79,11 +79,11 @@
Map<String, Object> queues = (Map<String, Object>) data;
ResponseWriter writer = context.getResponseWriter();
- writer.writeText("with (A4J.AJAX) {", null);
+ writer.writeText("if (A4J) { if (A4J.AJAX) { with (A4J.AJAX) {", null);
for (Entry<String, Object> entry : queues.entrySet()) {
encodeQueue(writer, entry.getKey(), (QueueRendererData) entry.getValue());
}
- writer.writeText("};", null);
+ writer.writeText("}}};", null);
}
protected void doEncode(InternetResource resource, FacesContext context,
Modified: trunk/ui/core/src/test/java/org/ajax4jsf/component/QueueRendererTest.java
===================================================================
--- trunk/ui/core/src/test/java/org/ajax4jsf/component/QueueRendererTest.java 2008-12-06 05:22:03 UTC (rev 11600)
+++ trunk/ui/core/src/test/java/org/ajax4jsf/component/QueueRendererTest.java 2008-12-06 07:09:43 UTC (rev 11601)
@@ -84,7 +84,7 @@
DomText text = (DomText) list.get(0);
String scriptData = text.getData();
- return scriptData.replaceAll("^\\Qwith (A4J.AJAX) {\\E|\\Q};\\E$", "");
+ return scriptData.replaceAll("^\\Qif (A4J) { if (A4J.AJAX) { with (A4J.AJAX) {\\E|\\Q}}};\\E$", "");
}
private String[] splitScript(String s) {
17 years, 5 months
JBoss Rich Faces SVN: r11600 - trunk/ui/listShuttle/src/main/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 00:22:03 -0500 (Sat, 06 Dec 2008)
New Revision: 11600
Modified:
trunk/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleRendererBase.java
Log:
https://jira.jboss.org/jira/browse/RF-2073
Modified: trunk/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleRendererBase.java
===================================================================
--- trunk/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleRendererBase.java 2008-12-06 05:21:31 UTC (rev 11599)
+++ trunk/ui/listShuttle/src/main/java/org/richfaces/renderkit/ListShuttleRendererBase.java 2008-12-06 05:22:03 UTC (rev 11600)
@@ -308,16 +308,15 @@
String clientId = listShuttle.getBaseClientId(context);
ExternalContext externalContext = context.getExternalContext();
- Map requestParameterMap = externalContext
- .getRequestParameterMap();
+ Map<String, String[]> requestParameterValuesMap = externalContext
+ .getRequestParameterValuesMap();
+ String[] strings = (String[]) requestParameterValuesMap.get(clientId);
-
- if (requestParameterMap.containsKey(clientId)) {
+ if (strings != null && strings.length != 0) {
Set sourceSelection = new HashSet();
Set targetSelection = new HashSet();
Object activeItem = null;
- String[] strings = (String[]) externalContext.getRequestParameterValuesMap().get(clientId);
Map map = new LinkedHashMap();
boolean facadeSource = true;
17 years, 5 months
JBoss Rich Faces SVN: r11599 - trunk/ui/orderingList/src/main/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 00:21:31 -0500 (Sat, 06 Dec 2008)
New Revision: 11599
Modified:
trunk/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java
Log:
https://jira.jboss.org/jira/browse/RF-2073
Modified: trunk/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java
===================================================================
--- trunk/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java 2008-12-06 05:07:58 UTC (rev 11598)
+++ trunk/ui/orderingList/src/main/java/org/richfaces/renderkit/OrderingListRendererBase.java 2008-12-06 05:21:31 UTC (rev 11599)
@@ -249,13 +249,14 @@
String clientId = orderingList.getBaseClientId(context);
ExternalContext externalContext = context.getExternalContext();
- Map requestParameterMap = externalContext
- .getRequestParameterMap();
+ Map<String, String[]> requestParameterValuesMap = externalContext
+ .getRequestParameterValuesMap();
- if (requestParameterMap.containsKey(clientId)) {
+ String[] strings = (String[]) requestParameterValuesMap.get(clientId);
+
+ if (strings != null && strings.length != 0) {
Set selection = new HashSet();
Object activeItem = null;
- String[] strings = (String[]) externalContext.getRequestParameterValuesMap().get(clientId);
Map map = new LinkedHashMap();
Converter converter = getConverter(context, orderingList, false);
for (int i = 0; i < strings.length; i++) {
17 years, 5 months
JBoss Rich Faces SVN: r11598 - trunk/ui/assembly/src/main/assembly.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-06 00:07:58 -0500 (Sat, 06 Dec 2008)
New Revision: 11598
Modified:
trunk/ui/assembly/src/main/assembly/src.xml
Log:
https://jira.jboss.org/jira/browse/RF-4789
https://jira.jboss.org/jira/browse/RF-4788
Modified: trunk/ui/assembly/src/main/assembly/src.xml
===================================================================
--- trunk/ui/assembly/src/main/assembly/src.xml 2008-12-06 04:45:07 UTC (rev 11597)
+++ trunk/ui/assembly/src/main/assembly/src.xml 2008-12-06 05:07:58 UTC (rev 11598)
@@ -6,6 +6,12 @@
</formats>
<fileSets>
<fileSet>
+ <includes>
+ <include>JBossORG-EULA.txt</include>
+ <include>lgpl.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
<directory>${basedir}/../..</directory>
<outputDirectory>/</outputDirectory>
<excludes>
17 years, 6 months
JBoss Rich Faces SVN: r11597 - in trunk/ui/assembly: src/main/assembly and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-05 23:45:07 -0500 (Fri, 05 Dec 2008)
New Revision: 11597
Added:
trunk/ui/assembly/JBossORG-EULA.txt
trunk/ui/assembly/lgpl.txt
Modified:
trunk/ui/assembly/src/main/assembly/richfaces.xml
Log:
https://jira.jboss.org/jira/browse/RF-4789
https://jira.jboss.org/jira/browse/RF-4788
Added: trunk/ui/assembly/JBossORG-EULA.txt
===================================================================
--- trunk/ui/assembly/JBossORG-EULA.txt (rev 0)
+++ trunk/ui/assembly/JBossORG-EULA.txt 2008-12-06 04:45:07 UTC (rev 11597)
@@ -0,0 +1,104 @@
+LICENSE AGREEMENT
+JBOSS(r)
+
+This License Agreement governs the use of the Software Packages and any updates to the Software
+Packages, regardless of the delivery mechanism. Each Software Package is a collective work
+under U.S. Copyright Law. Subject to the following terms, Red Hat, Inc. ("Red Hat") grants to
+the user ("Client") a license to the applicable collective work(s) pursuant to the
+GNU Lesser General Public License v. 2.1 except for the following Software Packages:
+(a) JBoss Portal Forums and JBoss Transactions JTS, each of which is licensed pursuant to the
+GNU General Public License v.2;
+
+(b) JBoss Rules, which is licensed pursuant to the Apache License v.2.0;
+
+(c) an optional download for JBoss Cache for the Berkeley DB for Java database, which is licensed under the
+(open source) Sleepycat License (if Client does not wish to use the open source version of this database,
+it may purchase a license from Sleepycat Software);
+
+and (d) the BPEL extension for JBoss jBPM, which is licensed under the Common Public License v.1,
+and, pursuant to the OASIS BPEL4WS standard, requires parties wishing to redistribute to enter various
+royalty-free patent licenses.
+
+Each of the foregoing licenses is available at http://www.opensource.org/licenses/index.php.
+
+1. The Software. "Software Packages" refer to the various software modules that are created and made available
+for distribution by the JBoss.org open source community at http://www.jboss.org. Each of the Software Packages
+may be comprised of hundreds of software components. The end user license agreement for each component is located in
+the component's source code. With the exception of certain image files identified in Section 2 below,
+the license terms for the components permit Client to copy, modify, and redistribute the component,
+in both source code and binary code forms. This agreement does not limit Client's rights under,
+or grant Client rights that supersede, the license terms of any particular component.
+
+2. Intellectual Property Rights. The Software Packages are owned by Red Hat and others and are protected under copyright
+and other laws. Title to the Software Packages and any component, or to any copy, modification, or merged portion shall
+remain with the aforementioned, subject to the applicable license. The "JBoss" trademark, "Red Hat" trademark, the
+individual Software Package trademarks, and the "Shadowman" logo are registered trademarks of Red Hat and its affiliates
+in the U.S. and other countries. This agreement permits Client to distribute unmodified copies of the Software Packages
+using the Red Hat trademarks that Red Hat has inserted in the Software Packages on the condition that Client follows Red Hat's
+trademark guidelines for those trademarks located at http://www.redhat.com/about/corporate/trademark/. Client must abide by
+these trademark guidelines when distributing the Software Packages, regardless of whether the Software Packages have been modified.
+If Client modifies the Software Packages, then Client must replace all Red Hat trademarks and logos identified at
+http://www.jboss.com/company/logos unless a separate agreement with Red Hat is executed or other permission granted.
+Merely deleting the files containing the Red Hat trademarks may corrupt the Software Packages.
+
+3. Limited Warranty. Except as specifically stated in this Paragraph 3 or a license for a particular
+component, to the maximum extent permitted under applicable law, the Software Packages and the
+components are provided and licensed "as is" without warranty of any kind, expressed or implied,
+including the implied warranties of merchantability, non-infringement or fitness for a particular purpose.
+Red Hat warrants that the media on which Software Packages may be furnished will be free from defects in
+materials and manufacture under normal use for a period of 30 days from the date of delivery to Client.
+Red Hat does not warrant that the functions contained in the Software Packages will meet Client's requirements
+or that the operation of the Software Packages will be entirely error free or appear precisely as described
+in the accompanying documentation. This warranty extends only to the party that purchases the Services
+pertaining to the Software Packages from Red Hat or a Red Hat authorized distributor.
+
+4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, the remedies
+described below are accepted by Client as its only remedies. Red Hat's entire liability, and Client's
+exclusive remedies, shall be: If the Software media is defective, Client may return it within 30 days of
+delivery along with a copy of Client's payment receipt and Red Hat, at its option, will replace it or
+refund the money paid by Client for the Software. To the maximum extent permitted by applicable law,
+Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential
+damages, including lost profits or lost savings arising out of the use or inability to use the Software,
+even if Red Hat or such dealer has been advised of the possibility of such damages. In no event shall
+Red Hat's liability under this agreement exceed the amount that Client paid to Red Hat under this
+Agreement during the twelve months preceding the action.
+
+5. Export Control. As required by U.S. law, Client represents and warrants that it:
+(a) understands that the Software Packages are subject to export controls under the
+U.S. Commerce Department's Export Administration Regulations ("EAR");
+
+(b) is not located in a prohibited destination country under the EAR or U.S. sanctions regulations
+(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria);
+
+(c) will not export, re-export, or transfer the Software Packages to any prohibited destination, entity,
+or individual without the necessary export license(s) or authorizations(s) from the U.S. Government;
+
+(d) will not use or transfer the Software Packages for use in any sensitive nuclear, chemical or
+biological weapons, or missile technology end-uses unless authorized by the U.S. Government by
+regulation or specific license;
+
+(e) understands and agrees that if it is in the United States and exports or transfers the Software
+Packages to eligible end users, it will, as required by EAR Section 740.17(e), submit semi-annual
+reports to the Commerce Department's Bureau of Industry & Security (BIS), which include the name and
+address (including country) of each transferee;
+
+and (f) understands that countries other than the United States may restrict the import, use, or
+export of encryption products and that it shall be solely responsible for compliance with any such
+import, use, or export restrictions.
+
+6. Third Party Programs. Red Hat may distribute third party software programs with the Software Packages
+that are not part of the Software Packages and which Client must install separately. These third party
+programs are subject to their own license terms. The license terms either accompany the programs or
+can be viewed at http://www.redhat.com/licenses/. If Client does not agree to abide by the applicable
+license terms for such programs, then Client may not install them. If Client wishes to install the programs
+on more than one system or transfer the programs to another party, then Client must contact the licensor
+of the programs.
+
+7. General. If any provision of this agreement is held to be unenforceable, that shall not affect the
+enforceability of the remaining provisions. This License Agreement shall be governed by the laws of the
+State of North Carolina and of the United States, without regard to any conflict of laws provisions,
+except that the United Nations Convention on the International Sale of Goods shall not apply.
+
+Copyright 2006-2008 Red Hat, Inc. All rights reserved.
+"JBoss" and the JBoss logo are registered trademarks of Red Hat, Inc.
+All other trademarks are the property of their respective owners.
Added: trunk/ui/assembly/lgpl.txt
===================================================================
--- trunk/ui/assembly/lgpl.txt (rev 0)
+++ trunk/ui/assembly/lgpl.txt 2008-12-06 04:45:07 UTC (rev 11597)
@@ -0,0 +1,504 @@
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL. It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+ This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it. You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations below.
+
+ When we speak of free software, we are referring to freedom of use,
+not price. Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+ To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights. These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+ For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you. You must make sure that they, too, receive or can get the source
+code. If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it. And you must show them these terms so they know their rights.
+
+ We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+ To protect each distributor, we want to make it very clear that
+there is no warranty for the free library. Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+
+ Finally, software patents pose a constant threat to the existence of
+any free program. We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder. Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+ Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License. This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License. We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+ When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library. The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom. The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+ We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License. It also provides other free software developers Less
+of an advantage over competing non-free programs. These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries. However, the Lesser license provides advantages in certain
+special circumstances.
+
+ For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it becomes
+a de-facto standard. To achieve this, non-free programs must be
+allowed to use the library. A more frequent case is that a free
+library does the same job as widely used non-free libraries. In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+ In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software. For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+ Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+ The precise terms and conditions for copying, distribution and
+modification follow. Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library". The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+ A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+ The "Library", below, refers to any such software library or work
+which has been distributed under these terms. A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language. (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+ "Source code" for a work means the preferred form of the work for
+making modifications to it. For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
+
+ Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it). Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+
+ 1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+ You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+ 2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) The modified work must itself be a software library.
+
+ b) You must cause the files modified to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ c) You must cause the whole of the work to be licensed at no
+ charge to all third parties under the terms of this License.
+
+ d) If a facility in the modified Library refers to a function or a
+ table of data to be supplied by an application program that uses
+ the facility, other than as an argument passed when the facility
+ is invoked, then you must make a good faith effort to ensure that,
+ in the event an application does not supply such function or
+ table, the facility still operates, and performs whatever part of
+ its purpose remains meaningful.
+
+ (For example, a function in a library to compute square roots has
+ a purpose that is entirely well-defined independent of the
+ application. Therefore, Subsection 2d requires that any
+ application-supplied function or table used by this function must
+ be optional: if the application does not supply it, the square
+ root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library. To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License. (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.) Do not make any other change in
+these notices.
+
+ Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+ This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+ 4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+ If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library". Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+ However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library". The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+ When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library. The
+threshold for this to be true is not precisely defined by law.
+
+ If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work. (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+ Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+ 6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+ You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License. You must supply a copy of this License. If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License. Also, you must do one
+of these things:
+
+ a) Accompany the work with the complete corresponding
+ machine-readable source code for the Library including whatever
+ changes were used in the work (which must be distributed under
+ Sections 1 and 2 above); and, if the work is an executable linked
+ with the Library, with the complete machine-readable "work that
+ uses the Library", as object code and/or source code, so that the
+ user can modify the Library and then relink to produce a modified
+ executable containing the modified Library. (It is understood
+ that the user who changes the contents of definitions files in the
+ Library will not necessarily be able to recompile the application
+ to use the modified definitions.)
+
+ b) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (1) uses at run time a
+ copy of the library already present on the user's computer system,
+ rather than copying library functions into the executable, and (2)
+ will operate properly with a modified version of the library, if
+ the user installs one, as long as the modified version is
+ interface-compatible with the version that the work was made with.
+
+ c) Accompany the work with a written offer, valid for at
+ least three years, to give the same user the materials
+ specified in Subsection 6a, above, for a charge no more
+ than the cost of performing this distribution.
+
+ d) If distribution of the work is made by offering access to copy
+ from a designated place, offer equivalent access to copy the above
+ specified materials from the same place.
+
+ e) Verify that the user has already received a copy of these
+ materials or that you have already sent this user a copy.
+
+ For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it. However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+ It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system. Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+ 7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+ a) Accompany the combined library with a copy of the same work
+ based on the Library, uncombined with any other library
+ facilities. This must be distributed under the terms of the
+ Sections above.
+
+ b) Give prominent notice with the combined library of the fact
+ that part of it is a work based on the Library, and explaining
+ where to find the accompanying uncombined form of the same work.
+
+ 8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License. Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License. However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+ 9. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Library or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+ 10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all. For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded. In such case, this License incorporates the limitation as if
+written in the body of this License.
+
+ 13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation. If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+ 14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission. For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this. Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+ NO WARRANTY
+
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Libraries
+
+ If you develop a new library, and you want it to be of the greatest
+possible use to the public, we recommend making it free software that
+everyone can redistribute and change. You can do so by permitting
+redistribution under these terms (or, alternatively, under the terms of the
+ordinary General Public License).
+
+ To apply these terms, attach the following notices to the library. It is
+safest to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the library's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This library 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 library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the library, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+ <signature of Ty Coon>, 1 April 1990
+ Ty Coon, President of Vice
+
+That's all there is to it!
+
+
Modified: trunk/ui/assembly/src/main/assembly/richfaces.xml
===================================================================
--- trunk/ui/assembly/src/main/assembly/richfaces.xml 2008-12-06 01:42:50 UTC (rev 11596)
+++ trunk/ui/assembly/src/main/assembly/richfaces.xml 2008-12-06 04:45:07 UTC (rev 11597)
@@ -10,6 +10,8 @@
<include>README*</include>
<include>LICENSE*</include>
<include>NOTICE*</include>
+ <include>JBossORG-EULA.txt</include>
+ <include>lgpl.txt</include>
</includes>
</fileSet>
<fileSet>
17 years, 6 months
JBoss Rich Faces SVN: r11596 - in trunk/samples/seamIntegration: src/main/java/org/ajax4jsf and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2008-12-05 20:42:50 -0500 (Fri, 05 Dec 2008)
New Revision: 11596
Added:
trunk/samples/seamIntegration/src/main/webapp/pages/trinidad.xhtml
Modified:
trunk/samples/seamIntegration/pom.xml
trunk/samples/seamIntegration/src/main/java/org/ajax4jsf/Bean.java
trunk/samples/seamIntegration/src/main/webapp/WEB-INF/faces-config.xml
trunk/samples/seamIntegration/src/main/webapp/WEB-INF/web.xml
Log:
https://jira.jboss.org/jira/browse/RF-4561 tests.
Modified: trunk/samples/seamIntegration/pom.xml
===================================================================
--- trunk/samples/seamIntegration/pom.xml 2008-12-05 18:20:20 UTC (rev 11595)
+++ trunk/samples/seamIntegration/pom.xml 2008-12-06 01:42:50 UTC (rev 11596)
@@ -13,7 +13,7 @@
<packaging>war</packaging>
<name>seamIntegration Maven Webapp</name>
<properties>
- <seam.version>2.1.1-SNAPSHOT</seam.version>
+ <seam.version>2.1.1-SNAPSHOT</seam.version>
</properties>
<build>
<finalName>seamIntegration</finalName>
@@ -86,6 +86,17 @@
<version>${seam.version}</version>
</dependency>
<dependency>
+ <groupId>org.jboss.el</groupId>
+ <artifactId>jboss-el</artifactId>
+ <version>2.0.2.CR1</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>jboss-seam-ui</artifactId>
<version>${seam.version}</version>
@@ -106,5 +117,16 @@
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.trinidad</groupId>
+ <artifactId>trinidad-api</artifactId>
+ <version>1.2.10</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.trinidad</groupId>
+ <artifactId>trinidad-impl</artifactId>
+ <version>1.2.10</version>
+ <scope>runtime</scope>
+ </dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: trunk/samples/seamIntegration/src/main/java/org/ajax4jsf/Bean.java
===================================================================
--- trunk/samples/seamIntegration/src/main/java/org/ajax4jsf/Bean.java 2008-12-05 18:20:20 UTC (rev 11595)
+++ trunk/samples/seamIntegration/src/main/java/org/ajax4jsf/Bean.java 2008-12-06 01:42:50 UTC (rev 11596)
@@ -22,6 +22,7 @@
package org.ajax4jsf;
import java.io.Serializable;
+import java.util.Date;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
@@ -45,8 +46,40 @@
private static final long serialVersionUID = -4209339000953631111L;
private String text;
private String text2;
+
+ private Date date;
+
+ private Date date1 = new Date();
/**
+ * @return the date
+ */
+ public Date getDate() {
+ return date;
+ }
+
+ /**
+ * @param date the date to set
+ */
+ public void setDate(Date date) {
+ this.date = date;
+ }
+
+ /**
+ * @return the date1
+ */
+ public Date getDate1() {
+ return date1;
+ }
+
+ /**
+ * @param date1 the date1 to set
+ */
+ public void setDate1(Date date1) {
+ this.date1 = date1;
+ }
+
+ /**
* @return the text
*/
public String getText() {
Modified: trunk/samples/seamIntegration/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/samples/seamIntegration/src/main/webapp/WEB-INF/faces-config.xml 2008-12-05 18:20:20 UTC (rev 11595)
+++ trunk/samples/seamIntegration/src/main/webapp/WEB-INF/faces-config.xml 2008-12-06 01:42:50 UTC (rev 11596)
@@ -13,6 +13,8 @@
<!--
<view-handler>com.sun.facelets.FaceletViewHandler</view-handler>
-->
+ <default-render-kit-id>
+ org.apache.myfaces.trinidad.core
+ </default-render-kit-id>
</application>
-
</faces-config>
Modified: trunk/samples/seamIntegration/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/samples/seamIntegration/src/main/webapp/WEB-INF/web.xml 2008-12-05 18:20:20 UTC (rev 11595)
+++ trunk/samples/seamIntegration/src/main/webapp/WEB-INF/web.xml 2008-12-06 01:42:50 UTC (rev 11596)
@@ -1,17 +1,19 @@
<?xml version="1.0" ?>
-<web-app version="2.5"
- xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
+<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<!-- Ajax4jsf -->
-
+ <!--
+ <context-param> <param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>
+ <param-value>com.sun.facelets.FaceletViewHandler</param-value>
+ </context-param>
+ -->
<context-param>
- <param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>
+ <param-name>org.apache.myfaces.trinidad.ALTERNATE_VIEW_HANDLER</param-name>
<param-value>com.sun.facelets.FaceletViewHandler</param-value>
</context-param>
-
<context-param>
<param-name>org.ajax4jsf.SKIN</param-name>
<param-value>blueSky</param-value>
@@ -22,64 +24,75 @@
</context-param>
<!-- Seam -->
-
<listener>
- <listener-class>
- org.jboss.seam.servlet.SeamListener
- </listener-class>
+ <listener-class>org.jboss.seam.servlet.SeamListener</listener-class>
</listener>
-
<filter>
<filter-name>Seam Filter</filter-name>
<filter-class>org.jboss.seam.servlet.SeamFilter</filter-class>
</filter>
-
<filter-mapping>
<filter-name>Seam Filter</filter-name>
- <url-pattern>/*</url-pattern>
+ <servlet-name>Faces Servlet</servlet-name>
+ <dispatcher>REQUEST</dispatcher>
+ <dispatcher>FORWARD</dispatcher>
+ <dispatcher>INCLUDE</dispatcher>
+ <dispatcher>ERROR</dispatcher>
</filter-mapping>
-
+ <filter>
+ <filter-name>trinidad</filter-name>
+ <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
+ </filter>
+ <filter-mapping>
+ <filter-name>trinidad</filter-name>
+ <!-- This assumes that the FacesServlet has been registered -->
+ <!-- under the name "faces" -->
+ <servlet-name>Faces Servlet</servlet-name>
+ <dispatcher>REQUEST</dispatcher>
+ <dispatcher>FORWARD</dispatcher>
+ <dispatcher>INCLUDE</dispatcher>
+ <dispatcher>ERROR</dispatcher>
+ </filter-mapping>
<servlet>
<servlet-name>Seam Resource Servlet</servlet-name>
- <servlet-class>
- org.jboss.seam.servlet.SeamResourceServlet
- </servlet-class>
+ <servlet-class>org.jboss.seam.servlet.SeamResourceServlet</servlet-class>
</servlet>
-
<servlet-mapping>
<servlet-name>Seam Resource Servlet</servlet-name>
<url-pattern>/seam/resource/*</url-pattern>
</servlet-mapping>
<!-- Facelets development mode (disable in production) -->
-
<context-param>
<param-name>facelets.DEVELOPMENT</param-name>
<param-value>true</param-value>
</context-param>
<!-- JSF -->
-
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
</context-param>
-
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
-
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.seam</url-pattern>
</servlet-mapping>
-
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
-
-
-</web-app>
+ <servlet>
+ <servlet-name>resources</servlet-name>
+ <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
+ </servlet>
+ <!-- This cannot be configured currently -->
+ <servlet-mapping>
+ <servlet-name>resources</servlet-name>
+ <url-pattern>/adf/*</url-pattern>
+ </servlet-mapping>
+</web-app>
\ No newline at end of file
Added: trunk/samples/seamIntegration/src/main/webapp/pages/trinidad.xhtml
===================================================================
--- trunk/samples/seamIntegration/src/main/webapp/pages/trinidad.xhtml (rev 0)
+++ trunk/samples/seamIntegration/src/main/webapp/pages/trinidad.xhtml 2008-12-06 01:42:50 UTC (rev 11596)
@@ -0,0 +1,43 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<f:view xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:tr="http://myfaces.apache.org/trinidad">
+ <tr:document title="InputText Demo">
+ <tr:form>
+ <tr:panelGroupLayout layout="vertical">
+ <f:facet name="separator">
+ <tr:separator/>
+ </f:facet>
+ <tr:panelGroupLayout layout="horizontal">
+ <tr:commandLink immediate="true" text="Component Guide" action="guide"/>
+ <tr:spacer width="10"/>
+ <tr:goLink destination="http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_inputText.html"
+ text="Tag Documentation"/>
+ <tr:spacer width="10"/>
+ <tr:goLink destination="http://myfaces.apache.org/trinidad/skin-selectors.html#inputText"
+ text="Skinning Key Documentation"/>
+ </tr:panelGroupLayout>
+ <tr:outputFormatted styleUsage="instruction" value="<b>inputText</b>"/>
+ <tr:inputText label="Label" value="Some text"/>
+ <tr:commandButton text="Submit"/>
+ <tr:outputFormatted styleUsage="instruction"
+ value="<b>InputText Bound To Date</b>"/>
+ <tr:inputText label="Label2" value="#{seamBean.date1}" autoSubmit="true">
+ <f:convertDateTime dateStyle="long"/>
+ </tr:inputText>
+ <a4j:commandButton value="RichFaces AJAX Submit" reRender="output"/>
+ <tr:outputText styleClass="AFInstructionText" value="The submitted value was: "/>
+ <tr:outputText id="output" value="#{seamBean.date1}"/>
+ <tr:outputFormatted styleUsage="instruction"
+ value="<b>InputText with help facet</b>"/>
+ <tr:inputText label="Label3">
+ <f:facet name="help">
+ <tr:outputText value="Help facet text"/>
+ </f:facet>
+ </tr:inputText>
+ </tr:panelGroupLayout>
+ </tr:form>
+ </tr:document>
+</f:view>
\ No newline at end of file
Property changes on: trunk/samples/seamIntegration/src/main/webapp/pages/trinidad.xhtml
___________________________________________________________________
Name: svn:mime-type
+ text/plain
17 years, 6 months
JBoss Rich Faces SVN: r11595 - trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-12-05 13:20:20 -0500 (Fri, 05 Dec 2008)
New Revision: 11595
Modified:
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
Log:
https://jira.jboss.org/jira/browse/RF-5247
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-05 18:12:58 UTC (rev 11594)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-05 18:20:20 UTC (rev 11595)
@@ -555,6 +555,72 @@
Assert.assertEquals(currentDate, month_year, "Calendar shows wrong current date");
}
+ @Test
+ public void testDatePatternNonPopupMode(Template template) {
+ renderPage(template, null);
+ initIds(getParentId());
+ String originalPattern = "MM/dd/yyyy HH:mm";
+ writeStatus("Check 'datePattern' attribute in non-popup mode");
+
+ String selectedDate = "03/03/2007 11:00";
+ String expectedSelectedDate = "03/2007";
+ String expectedPattern = "MM/yyyy";
+
+ setValueById(selectedDateId, selectedDate);
+ setValueById(currentDateId, "");
+ setValueById(datePatternId, expectedPattern);
+ setPopup(false);
+ setup();
+
+ try {
+ writeStatus("Check displayed date. It should be in 'MM/yyyy' format - time part is not visible at all");
+ String date = selenium.getText(dateSelectionXpath);
+ Assert.assertEquals(date, expectedSelectedDate, "Calendar shows date in wrong format");
+ Assert.assertFalse(isVisible(timeSelectionXpathMinusDiv), "Time part has to be invisible");
+ } catch (AssertionError ae) {
+ Assert.fail(ae.getMessage());
+ } finally {
+ setValueById(datePatternId, originalPattern);
+ setup();
+ }
+ }
+
+ @Test
+ public void testDatePatternPopupMode(Template template) {
+ renderPage(template, null);
+ initIds(getParentId());
+ String originalPattern = "MM/dd/yyyy HH:mm";
+ writeStatus("Check 'datePattern' attribute in popup mode");
+
+ String selectedDate = "03/03/2007 11:00";
+ String expectedSelectedDate = "03/2007";
+ String expectedPattern = "MM/yyyy";
+
+ setValueById(selectedDateId, selectedDate);
+ setValueById(currentDateId, "");
+ setValueById(datePatternId, expectedPattern);
+
+ setPopup(true);
+ setup();
+ showPopup();
+
+ try {
+ writeStatus("Check calendar popup is shown up and date in the input field is in proper format");
+ Assert.assertTrue(isVisible(calendarId), "Calendar popup is not visible");
+ AssertValueEquals(inputDateId, expectedSelectedDate, "Calendar input field shows wrong date");
+
+ writeStatus("Check displayed date again. It as before should be in 'MM/yyyy' format - time part is not visible at all");
+ String date = selenium.getText(dateSelectionXpath);
+ Assert.assertEquals(date, expectedSelectedDate, "Calendar shows date in wrong format");
+ Assert.assertFalse(isVisible(timeSelectionXpathMinusDiv), "Time part has to be invisible");
+ } catch (AssertionError ae) {
+ Assert.fail(ae.getMessage());
+ } finally {
+ setValueById(datePatternId, originalPattern);
+ setup();
+ }
+ }
+
private void setPopup(boolean isPopup) {
runScript("$('" + isPopupId + "').checked=" + isPopup);
}
17 years, 6 months
JBoss Rich Faces SVN: r11594 - in trunk/ui/inputnumber-slider/src/main: java/org/richfaces/renderkit and 4 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-05 13:12:58 -0500 (Fri, 05 Dec 2008)
New Revision: 11594
Added:
trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageLeft.java
trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageRight.java
trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageTop.java
trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageLeft.java
trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageRight.java
trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageTop.java
trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderTrackGradientVertical.java
Modified:
trunk/ui/inputnumber-slider/src/main/config/component/inputNumberSlider.xml
trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/InputNumberSliderRendererBase.java
trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/css/slider.xcss
trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js
trunk/ui/inputnumber-slider/src/main/templates/inputNumberSlider.jspx
Log:
https://jira.jboss.org/jira/browse/RF-5266
Modified: trunk/ui/inputnumber-slider/src/main/config/component/inputNumberSlider.xml
===================================================================
--- trunk/ui/inputnumber-slider/src/main/config/component/inputNumberSlider.xml 2008-12-05 17:46:45 UTC (rev 11593)
+++ trunk/ui/inputnumber-slider/src/main/config/component/inputNumberSlider.xml 2008-12-05 18:12:58 UTC (rev 11594)
@@ -44,41 +44,60 @@
-->
<property>
- <name> value </name>
- <classname>java.lang.String</classname>
- <description> Value to set as a result of working with a slider control</description>
- <defaultvalue><![CDATA[""]]></defaultvalue>
- </property>
+ <name>orientation</name>
+ <classname>java.lang.String</classname>
+ <description>Attribute can have the values "vertical" and "horizontal" to define in which direction the slider should be moveable.</description>
+ <defaultvalue><![CDATA[""]]></defaultvalue>
+ </property>
+ <property>
+ <name>showArrows</name>
+ <classname>boolean</classname>
+ <description>False value for this attribute makes increase/decrease arrows invisible. Default value is "false".</description>
+ <defaultvalue>false</defaultvalue>
+ </property>
+ <property>
+ <name>delay</name>
+ <classname>int</classname>
+ <description>Delay in pressed increase/decrease arrows in miliseconds. Default value is "200". </description>
+ <defaultvalue><![CDATA[200]]></defaultvalue>
+ </property>
+ <property>
+ <name>value</name>
+ <classname>java.lang.String</classname>
+ <description>Value to set as a result of working with a slider control</description>
+ <defaultvalue><![CDATA[""]]></defaultvalue>
+ </property>
+ <property>
+ <name>minValue</name>
+ <classname>java.lang.String</classname>
+ <description>Attribute to set the "start" value. Default value is "0". </description>
+ <defaultvalue><![CDATA["0"]]></defaultvalue>
+ </property>
+ <property>
+ <name>maxValue</name>
+ <classname>java.lang.String</classname>
+ <description>Attribute to set an "end" value. Default value is "100" </description>
+ <defaultvalue><![CDATA["100"]]></defaultvalue>
+ </property>
+ <property>
+ <name>step</name>
+ <classname>java.lang.String</classname>
+ <description>Parameter that determines a step between the nearest values while using a handle. Default value is "1".</description>
+ <defaultvalue><![CDATA["1"]]></defaultvalue>
+ </property>
+ <property>
+ <name>width</name>
+ <classname>java.lang.String</classname>
+ <description>The width of a slider control. Default value is "200px", for orientation="vertical" value is "20px"</description>
+ <defaultvalue><![CDATA["200px"]]></defaultvalue>
+ </property>
+ <property >
+ <name>height</name>
+ <classname>java.lang.String</classname>
+ <description>The height of a slider control. Default value is "20px", for orientation="vertical" value is "200px"</description>
+ <defaultvalue><![CDATA["20px"]]></defaultvalue>
+ </property>
<property>
- <name> minValue </name>
- <classname>java.lang.String</classname>
- <description> Attribute to set the "start" value. Default value is "0". </description>
- <defaultvalue><![CDATA["0"]]></defaultvalue>
- </property>
- <property>
- <name> maxValue </name>
- <classname>java.lang.String</classname>
- <description>Attribute to set an "end" value. Default value is "100" </description>
- <defaultvalue><![CDATA["100"]]></defaultvalue>
- </property>
- <property>
- <name> step </name>
- <classname>java.lang.String</classname>
- <description>Parameter that determines a step between the nearest values while using a handle. Default value is "1".</description>
- <defaultvalue><![CDATA["1"]]></defaultvalue>
- </property>
- <property>
- <name> width </name>
- <classname>java.lang.String</classname>
- <description> The width of a slider control. Default value is "200px"</description>
- <defaultvalue><![CDATA["200px"]]></defaultvalue>
- </property>
- <property hidden="true">
- <name> height </name>
- <classname>java.lang.String</classname>
- <description> The height of a slider control</description>
- </property>
- <property>
<name> enableManualInput </name>
<classname>boolean</classname>
<description>If set to "false" this attribute makes the text field "read-only", so the value can be
@@ -211,6 +230,44 @@
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
+ <name>increaseStyle</name>
+ <classname>java.lang.String</classname>
+ <description>A style for the increase arrow element
+ </description>
+ <defaultvalue><![CDATA[""]]></defaultvalue>
+ </property>
+ <property>
+ <name>increaseClass</name>
+ <classname>java.lang.String</classname>
+ <description>A name of CSS class for increase arrow element</description>
+ <defaultvalue><![CDATA[""]]></defaultvalue>
+ </property>
+ <property>
+ <name>increaseSelectedClass</name>
+ <classname>java.lang.String</classname>
+ <description>A name of CSS class for a selected control increase arrow element</description>
+ <defaultvalue><![CDATA[""]]></defaultvalue>
+ </property>
+ <property>
+ <name>decreaseStyle</name>
+ <classname>java.lang.String</classname>
+ <description>A style for the decrease arrow element
+ </description>
+ <defaultvalue><![CDATA[""]]></defaultvalue>
+ </property>
+ <property>
+ <name>decreaseClass</name>
+ <classname>java.lang.String</classname>
+ <description>A name of CSS class for the decrease arrow element</description>
+ <defaultvalue><![CDATA[""]]></defaultvalue>
+ </property>
+ <property>
+ <name>decreaseSelectedClass</name>
+ <classname>java.lang.String</classname>
+ <description>A name of CSS class for a selected control decrease arrow element</description>
+ <defaultvalue><![CDATA[""]]></defaultvalue>
+ </property>
+ <property>
<name>converterMessage</name>
<classname>java.lang.String</classname>
<description>
Modified: trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/InputNumberSliderRendererBase.java
===================================================================
--- trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/InputNumberSliderRendererBase.java 2008-12-05 17:46:45 UTC (rev 11593)
+++ trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/InputNumberSliderRendererBase.java 2008-12-05 18:12:58 UTC (rev 11594)
@@ -55,10 +55,20 @@
public void prepareVariables(FacesContext context, UIInputNumberSlider slider) {
ComponentVariables variables = ComponentsVariableResolver.getVariables(this, slider);
- String inputPosition = (String)slider.getAttributes().get("inputPosition");
- if (!"right".equals(inputPosition) && !"left".equals(inputPosition)) {
+ String inputPosition = (String) slider.getAttributes().get(
+ "inputPosition");
+ if (!"right".equals(inputPosition) && !"left".equals(inputPosition)
+ && !"top".equals(inputPosition)
+ && !"bottom".equals(inputPosition)) {
inputPosition = "right";
}
+ if ("bottom".equals(inputPosition)) {
+ inputPosition = "left";
+ }
+ if ("top".equals(inputPosition)) {
+ inputPosition = "right";
+ }
+
variables.setVariable("inputPosition", inputPosition);
boolean disabled = attributeToBoolean(slider, "disabled");
@@ -78,6 +88,12 @@
variables.setVariable("inputSize", slider.getAttributes().get("inputSize"));
variables.setVariable("style", getStyleValue(slider));
+
+ variables.setVariable("orientation", slider.getAttributes().get(
+ "orientation"));
+ boolean showArrows = attributeToBoolean(slider, "showArrows");
+ variables.setVariable("showArrows", new Boolean(showArrows));
+ variables.setVariable("delay", slider.getAttributes().get("delay"));
}
public String getStyleValue(UIInputNumberSlider slider) {
Added: trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageLeft.java
===================================================================
--- trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageLeft.java (rev 0)
+++ trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageLeft.java 2008-12-05 18:12:58 UTC (rev 11594)
@@ -0,0 +1,52 @@
+/**
+* License Agreement.
+*
+* JBoss RichFaces - Ajax4jsf Component Library
+*
+* Copyright (C) 2008 CompuGROUP Holding AG
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License version 2.1 as published by the Free Software Foundation.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+*/
+
+package org.richfaces.renderkit.html.images;
+
+import java.awt.Color;
+import java.awt.Graphics2D;
+import java.awt.RenderingHints;
+
+import org.ajax4jsf.resource.ResourceContext;
+import org.richfaces.renderkit.html.images.SliderArrowImage;
+
+/**
+ * @author mpopiolek
+ *
+ */
+public class SliderArrowImageLeft extends SliderArrowImage {
+
+ @Override
+ protected void paint(ResourceContext context, Graphics2D g2d) {
+ Integer color = (Integer) restoreData(context);
+ g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
+ RenderingHints.VALUE_ANTIALIAS_ON);
+ g2d.setColor(new Color(color.intValue()));
+ g2d.drawLine(4, 0, 4, 0);
+ g2d.drawLine(3, 1, 4, 1);
+ g2d.drawLine(2, 2, 4, 2);
+ g2d.drawLine(1, 3, 4, 3);
+ g2d.drawLine(2, 4, 4, 4);
+ g2d.drawLine(3, 5, 4, 5);
+ g2d.drawLine(4, 6, 4, 6);
+ }
+}
Added: trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageRight.java
===================================================================
--- trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageRight.java (rev 0)
+++ trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageRight.java 2008-12-05 18:12:58 UTC (rev 11594)
@@ -0,0 +1,52 @@
+/**
+* License Agreement.
+*
+* JBoss RichFaces - Ajax4jsf Component Library
+*
+* Copyright (C) 2008 CompuGROUP Holding AG
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License version 2.1 as published by the Free Software Foundation.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+*/
+
+package org.richfaces.renderkit.html.images;
+
+import java.awt.Color;
+import java.awt.Graphics2D;
+import java.awt.RenderingHints;
+
+import org.ajax4jsf.resource.ResourceContext;
+import org.richfaces.renderkit.html.images.SliderArrowImage;
+
+/**
+ * @author mpopiolek
+ *
+ */
+public class SliderArrowImageRight extends SliderArrowImage {
+
+ @Override
+ protected void paint(ResourceContext context, Graphics2D g2d) {
+ Integer color = (Integer) restoreData(context);
+ g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
+ RenderingHints.VALUE_ANTIALIAS_ON);
+ g2d.setColor(new Color(color.intValue()));
+ g2d.drawLine(1, 0, 1, 0);
+ g2d.drawLine(1, 1, 2, 1);
+ g2d.drawLine(1, 2, 3, 2);
+ g2d.drawLine(1, 3, 4, 3);
+ g2d.drawLine(1, 4, 3, 4);
+ g2d.drawLine(1, 5, 2, 5);
+ g2d.drawLine(1, 6, 1, 6);
+ }
+}
Added: trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageTop.java
===================================================================
--- trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageTop.java (rev 0)
+++ trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowImageTop.java 2008-12-05 18:12:58 UTC (rev 11594)
@@ -0,0 +1,48 @@
+/**
+* License Agreement.
+*
+* JBoss RichFaces - Ajax4jsf Component Library
+*
+* Copyright (C) 2008 CompuGROUP Holding AG
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License version 2.1 as published by the Free Software Foundation.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+*/
+package org.richfaces.renderkit.html.images;
+
+import java.awt.Color;
+import java.awt.Graphics2D;
+import java.awt.RenderingHints;
+
+import org.ajax4jsf.resource.ResourceContext;
+import org.richfaces.renderkit.html.images.SliderArrowImage;
+
+/**
+ * @author mpopiolek
+ *
+ */
+public class SliderArrowImageTop extends SliderArrowImage {
+
+ @Override
+ protected void paint(ResourceContext context, Graphics2D g2d) {
+ Integer color = (Integer) restoreData(context);
+ g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
+ RenderingHints.VALUE_ANTIALIAS_ON);
+ g2d.setColor(new Color(color.intValue()));
+ g2d.drawLine(3,2,3,2);
+ g2d.drawLine(2,3,4,3);
+ g2d.drawLine(1,4,5,4);
+ g2d.drawLine(0,5,6,5);
+ }
+}
Added: trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageLeft.java
===================================================================
--- trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageLeft.java (rev 0)
+++ trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageLeft.java 2008-12-05 18:12:58 UTC (rev 11594)
@@ -0,0 +1,48 @@
+/**
+* License Agreement.
+*
+* JBoss RichFaces - Ajax4jsf Component Library
+*
+* Copyright (C) 2008 CompuGROUP Holding AG
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License version 2.1 as published by the Free Software Foundation.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+*/
+package org.richfaces.renderkit.html.images;
+
+import javax.faces.context.FacesContext;
+
+import org.ajax4jsf.util.HtmlColor;
+import org.richfaces.skin.Skin;
+import org.richfaces.skin.SkinFactory;
+
+/**
+ * @author mpopiolek
+ *
+ */
+public class SliderArrowSelectedImageLeft extends SliderArrowImageLeft {
+ protected Object getDataToStore(FacesContext context, Object data) {
+ Skin skin = SkinFactory.getInstance().getSkin(context);
+
+ String skinParameter = "tipBorderColor";
+ String tmp = (String) skin.getParameter(context, skinParameter);
+ if (null == tmp || "".equals(tmp)) {
+ Skin defaultSkin = SkinFactory.getInstance()
+ .getDefaultSkin(context);
+ tmp = (String) defaultSkin.getParameter(context, skinParameter);
+ }
+ int intValue = HtmlColor.decode(tmp == null ? "#000000" : tmp).getRGB();
+ return new Integer(intValue);
+ }
+}
Added: trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageRight.java
===================================================================
--- trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageRight.java (rev 0)
+++ trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageRight.java 2008-12-05 18:12:58 UTC (rev 11594)
@@ -0,0 +1,48 @@
+/**
+* License Agreement.
+*
+* JBoss RichFaces - Ajax4jsf Component Library
+*
+* Copyright (C) 2008 CompuGROUP Holding AG
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License version 2.1 as published by the Free Software Foundation.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+*/
+package org.richfaces.renderkit.html.images;
+
+import javax.faces.context.FacesContext;
+
+import org.ajax4jsf.util.HtmlColor;
+import org.richfaces.skin.Skin;
+import org.richfaces.skin.SkinFactory;
+
+/**
+ * @author mpopiolek
+ *
+ */
+public class SliderArrowSelectedImageRight extends SliderArrowImageRight {
+ protected Object getDataToStore(FacesContext context, Object data) {
+ Skin skin = SkinFactory.getInstance().getSkin(context);
+
+ String skinParameter = "tipBorderColor";
+ String tmp = (String) skin.getParameter(context, skinParameter);
+ if (null == tmp || "".equals(tmp)) {
+ Skin defaultSkin = SkinFactory.getInstance()
+ .getDefaultSkin(context);
+ tmp = (String) defaultSkin.getParameter(context, skinParameter);
+ }
+ int intValue = HtmlColor.decode(tmp == null ? "#000000" : tmp).getRGB();
+ return new Integer(intValue);
+ }
+}
Added: trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageTop.java
===================================================================
--- trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageTop.java (rev 0)
+++ trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderArrowSelectedImageTop.java 2008-12-05 18:12:58 UTC (rev 11594)
@@ -0,0 +1,48 @@
+/**
+* License Agreement.
+*
+* JBoss RichFaces - Ajax4jsf Component Library
+*
+* Copyright (C) 2008 CompuGROUP Holding AG
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License version 2.1 as published by the Free Software Foundation.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+*/
+package org.richfaces.renderkit.html.images;
+
+import javax.faces.context.FacesContext;
+
+import org.ajax4jsf.util.HtmlColor;
+import org.richfaces.skin.Skin;
+import org.richfaces.skin.SkinFactory;
+
+/**
+ * @author mpopiolek
+ *
+ */
+public class SliderArrowSelectedImageTop extends SliderArrowImageTop {
+ protected Object getDataToStore(FacesContext context, Object data) {
+ Skin skin = SkinFactory.getInstance().getSkin(context);
+
+ String skinParameter = "tipBorderColor";
+ String tmp = (String) skin.getParameter(context, skinParameter);
+ if (null == tmp || "".equals(tmp)) {
+ Skin defaultSkin = SkinFactory.getInstance()
+ .getDefaultSkin(context);
+ tmp = (String) defaultSkin.getParameter(context, skinParameter);
+ }
+ int intValue = HtmlColor.decode(tmp == null ? "#000000" : tmp).getRGB();
+ return new Integer(intValue);
+ }
+}
Added: trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderTrackGradientVertical.java
===================================================================
--- trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderTrackGradientVertical.java (rev 0)
+++ trunk/ui/inputnumber-slider/src/main/java/org/richfaces/renderkit/html/images/SliderTrackGradientVertical.java 2008-12-05 18:12:58 UTC (rev 11594)
@@ -0,0 +1,34 @@
+/**
+* License Agreement.
+*
+* JBoss RichFaces - Ajax4jsf Component Library
+*
+* Copyright (C) 2008 CompuGROUP Holding AG
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License version 2.1 as published by the Free Software Foundation.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the Free Software
+* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+*/
+package org.richfaces.renderkit.html.images;
+
+import org.richfaces.renderkit.html.BaseGradient;
+
+/**
+ * @author mpopiolek
+ *
+ */
+public class SliderTrackGradientVertical extends BaseGradient {
+ public SliderTrackGradientVertical() {
+ super(7, 10, 7, "tabBackgroundColor", "controlBackgroundColor", true);
+ }
+}
Modified: trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/css/slider.xcss
===================================================================
--- trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/css/slider.xcss 2008-12-05 17:46:45 UTC (rev 11593)
+++ trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/css/slider.xcss 2008-12-05 18:12:58 UTC (rev 11594)
@@ -8,17 +8,25 @@
/*width : 200px;*/
height : 20px;
}
+.dr-insldr-vertical {
+ width : 20px;
+}
.dr-insldr-tip {
- position : absolute;
- white-space : nowrap;
- padding : 0px 2px 0px 2px;
- border : 1px solid;
+ position : absolute;
+ white-space : nowrap;
+ padding : 2px 2px 2px 2px;
+ border : 1px solid;
}
.dr-insldr-size {
width: 100%;
}
+.dr-insldr-size-height {
+ height: 100%;
+ width: 7px;
+ padding: 0px 3px;
+}
.dr-insldr-left-num {
text-align : left;
@@ -30,8 +38,30 @@
border-right : 1px solid;
padding : 0px 3px 0px 3px;
}
+.dr-insldr-top-num {
+ text-align : left;
+ border-top: 1px solid;
+ border-color: #C4C0B9;
+ color: #000000;
+ font-family: Arial,Verdana,sans-serif;
+ font-size: 11px;
+ line-height: 11px;
+ vertical-align: top;
+}
+.dr-insldr-bottom-num{
+ text-align : left;
+ border-bottom : 1px solid;
+ padding : 0px 3px 0px 3px;
+ border-color: #C4C0B9;
+ color: #000000;
+ font-family: Arial,Verdana,sans-serif;
+ font-size: 11px;
+ line-height: 11px;
+ vertical-align: bottom;
+}
.dr-insldr-vert-spacer{
- padding-top : 3px;
+ padding : 3px 0px;
+ vertical-align: bottom;
}
.dr-insldr-handler{
background-color : transparent;
@@ -42,6 +72,24 @@
text-align : center;
z-index : 1;
}
+
+.dr-insldr-handler-vertical {
+ background-color : transparent;
+ width : 7px;
+ height : 8px;
+ font-size : 1px;
+ position : absolute;
+ text-align : center;
+ z-index : 1;
+}
+
+.dr-insldr-tip {
+ position : absolute;
+ white-space : nowrap;
+ padding : 2px 2px 2px 2px;
+ border : 1px solid;
+}
+
.dr-insldr-handler-sel{
background-color : transparent;
width : 7px;
@@ -57,6 +105,14 @@
height : 8px;
font-size : 1px;
}
+.dr-insldr-track-vertical{
+ background-position: left top;
+ background-repeat: repeat-y;
+ height : 100%;
+ font-size : 1px;
+ width: 7px;
+ background-color:#FFFFFF;
+}
.dr-insldr-track-decor-1 {
height : 100%;
width : 100%;
@@ -80,6 +136,45 @@
.dr-insldr-field-right {
margin-left: 10px;
}
+.dr-insldr-field-top {
+ margin-bottom: 7px;
+}
+.dr-insldr-field-bottom {
+ margin-top: 7px;
+}
+.dr-insldr-arrow {
+ background-repeat:no-repeat;
+ width: 15px;
+ height: 15px;
+}
+.dr-insldr-dec-horizontal {
+ background-position: 5px 4px;
+}
+.dr-insldr-inc-horizontal {
+ background-position: 4px 4px;
+}
+.dr-insldr-inc-vertical {
+ background-position: 3px 5px;
+}
+.dr-insldr-dec-vertical {
+ background-position: 3px 3px;
+}
+.dr-insldr-dec-horizontal-sel {
+ background-position: 5px 4px;
+}
+.dr-insldr-inc-horizontal-sel {
+ background-position: 4px 4px;
+}
+.dr-insldr-inc-vertical-sel {
+ background-position: 3px 5px;
+}
+.dr-insldr-dec-vertical-sel {
+ background-position: 3px 3px;
+}
+.dr-insldr-td-arrow {
+ text-align: left;
+ vertical-align: bottom;
+}
]]>
</f:verbatim>
@@ -91,6 +186,13 @@
<u:style name="font-size" skin="generalSizeFont"/>
</u:selector>
+ <u:selector name=".dr-insldr-tip-step">
+ <u:style name="background-color" skin="tipBackgroundColor"/>
+ <u:style name="border-color" skin="tipBorderColor"/>
+ <u:style name="font-family" skin="generalFamilyFont"/>
+ <u:style name="font-size" skin="generalSizeFont"/>
+ </u:selector>
+
<u:selector name=".dr-insldr-left-num">
<u:style name="font-family" skin="generalFamilyFont"/>
<u:style name="font-size" skin="generalSizeFont"/>
@@ -123,12 +225,72 @@
<f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowImage" />
</u:style>
</u:selector>
+
+ <u:selector name=".dr-insldr-handler-vertical">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowImageRight" />
+ </u:style>
+ </u:selector>
+
+ <u:selector name=".dr-insldr-track-vertical">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.html.images.SliderTrackGradientVertical" />
+ </u:style>
+ </u:selector>
+
+ <u:selector name=".dr-insldr-dec-horizontal">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowImageLeft" />
+ </u:style>
+ </u:selector>
+ <u:selector name=".dr-insldr-inc-horizontal">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowImageRight" />
+ </u:style>
+ </u:selector>
+ <u:selector name=".dr-insldr-inc-vertical">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowImageTop" />
+ </u:style>
+ </u:selector>
+ <u:selector name=".dr-insldr-dec-vertical">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowImage" />
+ </u:style>
+ </u:selector>
+
+ <u:selector name=".dr-insldr-dec-horizontal-sel">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowSelectedImageLeft" />
+ </u:style>
+ </u:selector>
+ <u:selector name=".dr-insldr-inc-horizontal-sel">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowSelectedImageRight" />
+ </u:style>
+ </u:selector>
+ <u:selector name=".dr-insldr-inc-vertical-sel">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowSelectedImageTop" />
+ </u:style>
+ </u:selector>
+ <u:selector name=".dr-insldr-dec-vertical-sel">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowSelectedImage" />
+ </u:style>
+ </u:selector>
<u:selector name=".dr-insldr-handler-sel">
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowSelectedImage" />
</u:style>
</u:selector>
+
+ <u:selector name=".dr-insldr-handler-sel-vertical">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.html.images.SliderArrowSelectedImageRight" />
+ </u:style>
+ </u:selector>
<u:selector name=".dr-insldr-track-decor-2">
<u:style name="border-color" skin="controlBackgroundColor"/>
Modified: trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js
===================================================================
--- trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js 2008-12-05 17:46:45 UTC (rev 11593)
+++ trunk/ui/inputnumber-slider/src/main/resources/org/richfaces/renderkit/html/script/SliderScript.js 2008-12-05 18:12:58 UTC (rev 11594)
@@ -1,7 +1,7 @@
if(!window.Richfaces) window.Richfaces = {};
Richfaces.Slider = Class.create();
Richfaces.Slider.prototype = {
- initialize: function(handle, track, tip, table, handleSelectedClass, options) {
+ initialize: function(handle, track, tip, table, handleSelectedClass, increaseSelectedClass, decreaseSelectedClass, options) {
var slider = this;
this.handle = $( handle );
this.tip = $( tip );
@@ -13,13 +13,28 @@
//this.optionInput = $(this.optionsInputId) || document.getElementById(this.optionsInputId);
this.input = $( options.inputId ) || document.getElementsByName(options.inputId)[0];
+ if(options.showArrows){
+ this.arrowInc = $( options.arrowInc ) || document.getElementsByName(options.arrowInc)[0];
+ this.arrowDec = $( options.arrowDec ) || document.getElementsByName(options.arrowDec)[0];
+ this.tipArrowInc = $( options.tipArrowInc ) || document.getElementsByName(options.tipArrowInc)[0];
+ this.tipArrowDec = $( options.tipArrowDec ) || document.getElementsByName(options.tipArrowDec)[0];
+ }
this.options= options || {};
+ this.orientation = this.options.orientation;
+
this.classes = {};
this.classes.arrow = "dr-insldr-handler rich-inslider-handler";
this.classes.arrowSelected = "dr-insldr-handler-sel rich-inslider-handler-selected";
this.classes.temp = this.handle.className;
this.classes.base = " " + this.trim(this.classes.temp.replace("dr-insldr-handler rich-inslider-handler",""));
+
+ if(this.orientation=="vertical"){
+ this.classes.arrow = "dr-insldr-handler-vertical rich-inslider-handler-vertical";
+ this.classes.arrowSelected = "dr-insldr-handler-sel-vertical rich-inslider-handler-selected-vertical";
+ this.classes.base = " " + this.trim(this.classes.temp.replace("dr-insldr-handler-vertical rich-inslider-handler-vertical",""));
+ }
+
this.classes.handleSelected = " " + handleSelectedClass;
this.table = this.findTableForTrack(this.track);
@@ -32,6 +47,10 @@
this.minimum = this.options.minimum || this.range.start;
this.maximum = this.options.maximum || this.range.end;
this.digCount = 0;
+ this.delay = this.options.delay;
+ if("" == this.input.value){
+ this.input.value = this.options.minimum;
+ }
this.step = this.options.step;
if ( (this.step+"").indexOf(".")!=-1 ){
@@ -41,7 +60,11 @@
this.availableValues = this.calculateAvailableValues();
this.tip.maxlength = (this.maximum + "").length + (this.digCount != 0 ? this.digCount + 1 : 0);
-
+ if(this.options.showArrows){
+ this.tipArrowInc.maxlength = this.tip.maxlength;
+ this.tipArrowDec.maxlength = this.tip.maxlength;
+ }
+
this.handleLength = 9;
this.active = false;
@@ -60,6 +83,8 @@
this.eventWindowResized = this.windowResized.bindAsEventListener(this);
Event.observe(window, "resize", this.eventWindowResized);
+
+ this.period = "";
if(!this.options.disabled){
//this.eventMouseUp = this.endDrag.bindAsEventListener(this);
@@ -72,6 +97,12 @@
this.eventEditValidate = this.inputValidate.bindAsEventListener(this);
this.eventInputChange = this.inputChange.bindAsEventListener(this);
this.eventWindowMouseOut= this.windowMouseOut.bindAsEventListener(this);
+ this.eventIncrease = this.increase.bindAsEventListener(this);
+ this.eventDecrease = this.decrease.bindAsEventListener(this);
+ this.eventIncreaseDown = this.increaseDown.bindAsEventListener(this);
+ this.eventDecreaseDown = this.decreaseDown.bindAsEventListener(this);
+ this.eventIncreaseUp = this.increaseUp.bindAsEventListener(this);
+ this.eventDecreaseUp = this.decreaseUp.bindAsEventListener(this);
if (this.options.onerr) {
this.eventError = new Function("event","clientErrorMessage",this.options.onerr);
@@ -92,6 +123,12 @@
this.input.onchange = null;
}
Event.observe(this.input, "change", this.eventInputChange);
+ if(this.options.showArrows){
+ Event.observe(this.arrowInc, "mousedown", this.eventIncreaseDown);
+ Event.observe(this.arrowDec, "mousedown", this.eventDecreaseDown);
+ Event.observe(this.arrowInc, "mouseup", this.eventIncreaseUp);
+ Event.observe(this.arrowDec, "mouseup", this.eventDecreaseUp);
+ }
}
this.initialized = true;
@@ -110,6 +147,10 @@
{
this.handle = null;
this.tip = null;
+ this.tipArrowInc = null;
+ this.tipArrowDec = null;
+ this.arrowInc = null;
+ this.arrowDec = null;
this.track = null;
this.mainTable.component = null;
this.mainTable = null;
@@ -128,6 +169,16 @@
this.handle.style.visibility="visible";
this.prevValue = this.value;
this.valueChanged = false;
+ if(this.options.showArrows){
+ if(this.orientation=="vertical"){
+ this.tipArrowInc.style.left = (this.arrowInc.offsetWidth) + "px";
+ this.tipArrowDec.style.left = (this.arrowDec.offsetWidth) + "px";
+ //this.tipArrowDec.style.top = "-" + (this.arrowDec.offsetHeight) + "px";
+ } else {
+ this.tipArrowInc.style.top = "-" + (this.arrowInc.offsetHeight + 3) + "px";
+ this.tipArrowDec.style.top = "-" + (this.arrowDec.offsetHeight + 3) + "px";
+ }
+ }
},
calculateAvailableValues : function(){
@@ -213,32 +264,67 @@
if ((!this.editInFocus || newValue==sliderValue) && (this.required || "" != this.input.value || this.updating)){
this.input.value = this.value;
// this.optionInput.value = this.value;
- this.handle.style.left = this.translateToPx(this.value);
+ if(this.options.orientation == "vertical"){
+ this.handle.style.top = this.translateToPx(this.value);
+ } else {
+ this.handle.style.left = this.translateToPx(this.value);
+ }
} else
{
- this.handle.style.left = "-2px";
+ if(this.options.orientation == "vertical"){
+ this.handle.style.top = "-9px";
+ } else {
+ this.handle.style.left = "0px";
+ }
}
if (!this.tip.firstChild) {
this.tip.appendChild(window.document.createTextNode(this.value));
}
- this.tip.firstChild.nodeValue= this.value;
- this.tip.style.left = this.handle.offsetLeft /*+ this.handle.offsetWidth*/ + "px";
+ if(this.options.showArrows){
+ if (!this.tipArrowInc.firstChild) {
+ this.tipArrowInc.appendChild(window.document.createTextNode(this.value));
+ }
+ if (!this.tipArrowDec.firstChild) {
+ this.tipArrowDec.appendChild(window.document.createTextNode(this.value));
+ }
+ this.tipArrowInc.firstChild.nodeValue= this.value;
+ this.tipArrowDec.firstChild.nodeValue= this.value;
+ }
+
+ this.tip.firstChild.nodeValue= this.value;
+ if(this.options.orientation == "vertical"){
+ this.tip.style.top = (this.handle.offsetTop) + "px";
+ } else {
+ this.tip.style.left = this.handle.offsetLeft /*+ this.handle.offsetWidth*/ + "px";
+ }
},
translateToPx: function(value) {
+ if(this.options.orientation == "vertical"){
+ return Math.round(
+ ((this.maximumOffset() - this.handleLength)/(this.range.end-this.range.start)) *
+ (this.range.end - value) - this.maximumOffset()) + "px";
+ }
return Math.round(
((this.maximumOffset() - this.handleLength)/(this.range.end-this.range.start)) *
(value - this.range.start)) + "px";
},
translateToValue: function(offset) {
+ if(this.options.orientation == "vertical"){
+ return (this.range.end -((offset/(this.maximumOffset() - this.handleLength) *
+ (this.range.end-this.range.start))));
+ }
return ((offset/(this.maximumOffset() - this.handleLength) *
(this.range.end-this.range.start)) + this.range.start);
},
maximumOffset: function(){
+ if(this.options.orientation == "vertical"){
+ return this.removePx(this.track.style.height || this.track.offsetHeight || this.options.height);
+ }
return this.removePx(this.track.style.width || this.track.offsetWidth || this.options.width);
},
@@ -268,18 +354,33 @@
Richfaces.createEvent("mousedown", this.mainTable, null, null).fire();
this.active = true;
var handle = Event.element(event);
- var pointer = Event.pointerX(event);
+
+ var pointer;
+ if(this.orientation=="vertical"){
+ pointer = Event.pointerY(event);
+ } else {
+ pointer = Event.pointerX(event);
+ }
var offsets = Position.cumulativeOffset(this.track);
this.updating = true;
- var value = this.translateToValue( ( pointer - offsets[0] ) -(this.handleLength/2));
+ var value;
+ if(this.orientation=="vertical"){
+ value = this.translateToValue( ( pointer - offsets[1] ) -(this.handleLength/2));
+ } else {
+ value = this.translateToValue( ( pointer - offsets[0] ) -(this.handleLength/2));
+ }
if(this.invokeEvent("slide",event,this.getNearestValue(value),this.input)){
this.setValue(value);
}
this.updating = false;
var offsets = Position.cumulativeOffset(this.handle);
- this.offsetX = pointer - offsets[0];
+ if(this.orientation=="vertical"){
+ this.offsetX = pointer - offsets[1];
+ } else {
+ this.offsetX = pointer - offsets[0];
+ }
}
Event.stop(event);
}
@@ -296,10 +397,17 @@
},
draw: function(event) {
- var pointer = Event.pointerX(event);
- var offsets = Position.cumulativeOffset(this.track);
- pointer -= this.offsetX + offsets[0];
- this.setValue(this.translateToValue( pointer ));
+ if(this.orientation=="vertical"){
+ var pointer = Event.pointerY(event);
+ var offsets = Position.cumulativeOffset(this.track);
+ pointer -= this.offsetX + offsets[1];
+ this.setValue(this.translateToValue( pointer ));
+ } else{
+ var pointer = Event.pointerX(event);
+ var offsets = Position.cumulativeOffset(this.track);
+ pointer -= this.offsetX + offsets[0];
+ this.setValue(this.translateToValue( pointer ));
+ }
},
processMouseUp: function(event) {
@@ -344,6 +452,68 @@
return ret;
},
+ increase : function(event){
+ var v = parseFloat(this.value) + parseFloat(this.step);
+ this.setValue(Number( v < this.maximum ? v : this.maximum));
+ this.input.value = this.value;
+ if (this.eventChanged && this.isValueChanged()){
+ this.eventChanged(event);
+ }
+ },
+
+ decrease : function(event){
+ var v = parseFloat(this.value) - parseFloat(this.step);
+ this.setValue(Number(v > this.minimum ? v : this.minimum));
+ this.input.value = this.value;
+ if (this.eventChanged && this.isValueChanged()){
+ this.eventChanged(event);
+ }
+ },
+
+ increaseDown : function(event){
+ this.arrowButton = $(event.target);
+ this.arrowButton.className = this.arrowButton.className.replace("Class","SelectedClass").replace("al","al-sel");
+ window.document.onmouseup = this.eventIncreaseUp.bindAsEventListener(this);
+ if(!this.disabled){
+ if (this.options.currValue){
+ Element.show(this.tipArrowInc);
+ }
+ }
+ this.eventIncrease(event);
+ this._periodicalExecuter = new PeriodicalExecuter(this.eventIncrease,this.delay/1000);
+ },
+
+ decreaseDown : function(event){
+ this.arrowButton = $(event.target);
+ this.arrowButton.className = this.arrowButton.className.replace("Class","SelectedClass").replace("al","al-sel");
+ window.document.onmouseup = this.eventDecreaseUp.bindAsEventListener(this);
+ if(!this.disabled){
+ if (this.options.currValue){
+ Element.show(this.tipArrowDec);
+ }
+ }
+ this.eventDecrease(event);
+ this._periodicalExecuter = new PeriodicalExecuter(this.eventDecrease,this.delay/1000);
+ },
+
+ increaseUp : function(event){
+ this._periodicalExecuter.stop();
+ if (this.options.currValue){
+ Element.hide(this.tipArrowInc);
+ }
+ this.arrowButton.className = this.arrowButton.className.replace("SelectedClass","Class").replace("al-sel","al");
+ window.document.onmouseup = this.prevMouseUp;
+ },
+
+ decreaseUp : function(event){
+ this._periodicalExecuter.stop();
+ if (this.options.currValue){
+ Element.hide(this.tipArrowDec);
+ }
+ this.arrowButton.className = this.arrowButton.className.replace("SelectedClass","Class").replace("al-sel","al");
+ window.document.onmouseup = this.prevMouseUp;
+ },
+
inputChange: function(e) {
this.editInFocus = false;
if (isNaN(Number(this.input.value))){
Modified: trunk/ui/inputnumber-slider/src/main/templates/inputNumberSlider.jspx
===================================================================
--- trunk/ui/inputnumber-slider/src/main/templates/inputNumberSlider.jspx 2008-12-05 17:46:45 UTC (rev 11593)
+++ trunk/ui/inputnumber-slider/src/main/templates/inputNumberSlider.jspx 2008-12-05 18:12:58 UTC (rev 11594)
@@ -5,6 +5,7 @@
xmlns:ui=" http://ajax4jsf.org/cdk/ui"
xmlns:u=" http://ajax4jsf.org/cdk/u"
xmlns:x=" http://ajax4jsf.org/cdk/x"
+ xmlns:h="http://jsf.exadel.com/header"
class="org.richfaces.renderkit.html.InputNumberSliderRenderer"
baseclass="org.richfaces.renderkit.InputNumberSliderRendererBase"
component="org.richfaces.component.UIInputNumberSlider"
@@ -13,8 +14,8 @@
<h:styles>css/slider.xcss</h:styles>
<h:scripts>new org.ajax4jsf.javascript.PrototypeScript(),script/SliderScript.js,/org/richfaces/renderkit/html/scripts/browser_info.js,/org/richfaces/renderkit/html/scripts/events.js</h:scripts>
- <f:clientid var="clientId"/>
-
+ <f:clientid var="clientId"/>
+
<f:call name="prepareVariables" />
<f:resource name="/org/richfaces/renderkit/html/images/spacer.gif" var="spacer" />
@@ -23,15 +24,292 @@
<jsp:scriptlet>
<![CDATA[
- String width = (String) component.getAttributes().get("width");
- if (width == null || width.length() == 0) {
- width = "200px";
- } else {
- width = HtmlUtil.qualifySize(width);
- }
- variables.setVariable("width", width);
- ]]>
+ String width = (String) component.getAttributes().get("width");
+ if (width == null || width.length() == 0) {
+ if ("vertical".equalsIgnoreCase((String)variables.getVariable("orientation"))) {
+ width = "20px";
+ } else {
+ width = "200px";
+ }
+ } else {
+ width = HtmlUtil.qualifySize(width);
+ }
+ variables.setVariable("width", width);
+ String height = (String) component.getAttributes().get("height");
+ if (height == null || height.length() == 0) {
+ if ("vertical".equalsIgnoreCase((String)variables.getVariable("orientation"))) {
+ height = "200px";
+ } else {
+ height = "20px";
+ }
+ } else {
+ height = HtmlUtil.qualifySize(height);
+ }
+ variables.setVariable("height", height);
+ ]]>
</jsp:scriptlet>
+
+ <jsp:scriptlet>
+ <![CDATA[
+ if ("vertical".equalsIgnoreCase((String)variables.getVariable("orientation"))) {
+
+ ]]>
+ </jsp:scriptlet>
+
+ <table id="#{clientId}" border="0" cellpadding="0" cellspacing="0" class="dr-insldr-vertical rich-slider #{component.attributes['styleClass']}"
+ style="height: #{height};#{style}" x:passThruWithExclusions="id,boundClass,tipClass,class,width,height,style,border">
+ <tbody>
+ <tr>
+ <jsp:scriptlet><![CDATA[
+ if ("right".equalsIgnoreCase((String)variables.getVariable("inputPosition"))) {
+ ]]></jsp:scriptlet>
+ <td style="text-align: left; vertical-align: bottom">
+ <jsp:scriptlet><![CDATA[
+ if (((Boolean)variables.getVariable("showInput")).booleanValue()) {
+ ]]></jsp:scriptlet>
+ <input id="#{clientId}Input"
+ name="#{clientId}"
+ value="#{this:getInputValue(context,component)}"
+ type="text"
+ class="dr-insldr-field dr-insldr-field-top rich-inslider-field #{component.attributes['inputClass']}"
+ style="#{component.attributes['inputStyle']}; #{color}"
+ readonly="#{inputReadOnly}"
+ disabled="#{inputDisabled}"
+ onselect="#{component.attributes['onselect']}"
+ onfocus="#{component.attributes['onfocus']}"
+ onblur="#{component.attributes['onblur']}"
+ accesskey="#{component.attributes['accesskey']}"
+ size="#{inputSize}"
+ maxlength="#{component.attributes['maxlength']}"
+
+ onclick='#{component.attributes["oninputclick"]}'
+ ondblclick='#{component.attributes["oninputdblclick"]}'
+ onkeydown='#{component.attributes["oninputkeydown"]}'
+ onkeypress='#{component.attributes["oninputkeypress"]}'
+ onkeyup='#{component.attributes["oninputkeyup"]}'
+ onmousedown='#{component.attributes["oninputmousedown"]}'
+ onmousemove='#{component.attributes["oninputmousemove"]}'
+ onmouseout='#{component.attributes["oninputmouseout"]}'
+ onmouseover='#{component.attributes["oninputmouseover"]}'
+ onmouseup='#{component.attributes["oninputmouseup"]}'
+ />
+ <jsp:scriptlet><![CDATA[
+ } else {
+ ]]></jsp:scriptlet>
+ <input id="#{clientId}Input"
+ name="#{clientId}"
+ value="#{this:getInputValue(context,component)}"
+ type="hidden"
+ />
+ <jsp:scriptlet><![CDATA[
+ }
+ ]]></jsp:scriptlet>
+ </td>
+ <jsp:scriptlet><![CDATA[
+ }
+ ]]></jsp:scriptlet>
+ </tr>
+ <jsp:scriptlet><![CDATA[
+ if (((Boolean)variables.getVariable("showArrows")).booleanValue()) {
+ ]]></jsp:scriptlet>
+ <tr>
+ <td class="dr-insldr-td-arrow">
+ <div style="position : relative">
+ <div id="#{clientId}TipArrowInc" class="dr-insldr-tip rich-inslider-tip #{component.attributes['tipClass']}" style="display: none; #{component.attributes['tipStyle']}">
+ <jsp:scriptlet><![CDATA[
+ writer.write(" ");
+ ]]></jsp:scriptlet>
+ </div>
+ <div id="#{clientId}ArrowInc"
+ class="dr-insldr-inc-vertical dr-insldr-arrow #{component.attributes['increaseClass']}"
+ style="#{component.attributes['increaseStyle']}"
+ />
+ </div>
+ </td>
+ </tr>
+ <jsp:scriptlet><![CDATA[
+ }
+ ]]></jsp:scriptlet>
+ <tr>
+ <td style="height: 100%;">
+ <table border="0" cellpadding="0" cellspacing="0" style="height: 100%;">
+ <tbody>
+ <tr>
+ <td rowspan="2" id="#{clientId}Track" class="dr-insldr-size-height">
+ <div class="dr-insldr-track-vertical rich-inslider-track #{component.attributes['barClass']}"
+ style="#{component.attributes['barStyle']}">
+ <table class="dr-insldr-track-decor-1 rich-inslider-track-border" cellpadding="0" cellspacing="0" >
+ <tbody>
+ <tr style="height: 98%">
+ <td class="dr-insldr-track-decor-2">
+ <img src="#{spacer}" style="display: block;" />
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+ <div style="position : relative">
+ <div id="#{clientId}Tip" class="dr-insldr-tip rich-inslider-tip #{component.attributes['tipClass']}" style="display: none;left: 9px; #{component.attributes['tipStyle']}">
+ <jsp:scriptlet><![CDATA[
+ writer.write(" ");
+ ]]></jsp:scriptlet>
+ </div>
+ <div class="dr-insldr-handler-vertical #{component.attributes['handleClass']}" id="#{clientId}Handle" style="visibility:visible; top: -7px; left:1px;">
+ <jsp:scriptlet><![CDATA[
+ writer.write(" ");
+ ]]></jsp:scriptlet>
+ </div>
+ </div>
+ </td>
+ <jsp:scriptlet><![CDATA[
+ if (attributeToBoolean(component, "showBoundaryValues")){
+ ]]></jsp:scriptlet>
+ <td class="dr-insldr-top-num #{component.attributes['boundClass']}">
+ #{component.attributes['maxValue']}
+ </td>
+ <jsp:scriptlet><![CDATA[
+ } else{
+ ]]></jsp:scriptlet>
+ <td></td>
+ <jsp:scriptlet><![CDATA[
+ }
+ ]]></jsp:scriptlet>
+ </tr>
+ <tr>
+ <jsp:scriptlet><![CDATA[
+ if (attributeToBoolean(component, "showBoundaryValues")){
+ ]]></jsp:scriptlet>
+ <td class="dr-insldr-bottom-num #{component.attributes['boundClass']}">
+ #{component.attributes['minValue']}
+ </td>
+ <jsp:scriptlet><![CDATA[
+ } else {
+ ]]></jsp:scriptlet>
+ <td></td>
+ <jsp:scriptlet><![CDATA[
+ }
+ ]]></jsp:scriptlet>
+ </tr>
+
+ </tbody>
+ </table>
+ </td>
+ </tr>
+ <jsp:scriptlet><![CDATA[
+ if (((Boolean)variables.getVariable("showArrows")).booleanValue()) {
+ ]]></jsp:scriptlet>
+ <tr>
+ <td class="dr-insldr-td-arrow">
+ <div style="position : relative">
+ <div id="#{clientId}TipArrowDec" class="dr-insldr-tip rich-inslider-tip #{component.attributes['tipClass']}" style="display: none; #{component.attributes['tipStyle']}">
+ <jsp:scriptlet><![CDATA[
+ writer.write(" ");
+ ]]></jsp:scriptlet>
+ </div>
+ <div id="#{clientId}ArrowDec"
+ class="dr-insldr-dec-vertical dr-insldr-arrow #{component.attributes['decreaseClass']}"
+ style="#{component.attributes['decreaseStyle']}"
+ />
+ </div>
+ </td>
+ </tr>
+ <jsp:scriptlet><![CDATA[
+ }
+ ]]></jsp:scriptlet>
+ <tr>
+ <jsp:scriptlet><![CDATA[
+ if ("left".equalsIgnoreCase((String)variables.getVariable("inputPosition"))) {
+ ]]></jsp:scriptlet>
+ <td style="text-align: left; vertical-align: bottom">
+ <jsp:scriptlet><![CDATA[
+ if (((Boolean)variables.getVariable("showInput")).booleanValue()) {
+ ]]></jsp:scriptlet>
+ <input id="#{clientId}Input"
+ name="#{clientId}"
+ value="#{this:getInputValue(context,component)}"
+ type="text"
+ class="dr-insldr-field dr-insldr-field-bottom rich-inslider-field #{component.attributes['inputClass']}"
+ style="#{component.attributes['inputStyle']}; #{color}"
+ readonly="#{inputReadOnly}"
+ disabled="#{inputDisabled}"
+ onselect="#{component.attributes['onselect']}"
+ onfocus="#{component.attributes['onfocus']}"
+ onblur="#{component.attributes['onblur']}"
+ accesskey="#{component.attributes['accesskey']}"
+ size="#{inputSize}"
+ maxlength="#{component.attributes['maxlength']}"
+
+ onclick='#{component.attributes["oninputclick"]}'
+ ondblclick='#{component.attributes["oninputdblclick"]}'
+ onkeydown='#{component.attributes["oninputkeydown"]}'
+ onkeypress='#{component.attributes["oninputkeypress"]}'
+ onkeyup='#{component.attributes["oninputkeyup"]}'
+ onmousedown='#{component.attributes["oninputmousedown"]}'
+ onmousemove='#{component.attributes["oninputmousemove"]}'
+ onmouseout='#{component.attributes["oninputmouseout"]}'
+ onmouseover='#{component.attributes["oninputmouseover"]}'
+ onmouseup='#{component.attributes["oninputmouseup"]}'
+ />
+ <jsp:scriptlet><![CDATA[
+ } else {
+ ]]></jsp:scriptlet>
+ <input id="#{clientId}Input"
+ name="#{clientId}"
+ value="#{this:getInputValue(context,component)}"
+ type="hidden"
+ />
+ <jsp:scriptlet><![CDATA[
+ }
+ ]]></jsp:scriptlet>
+ </td>
+ <jsp:scriptlet><![CDATA[
+ }
+ ]]></jsp:scriptlet>
+ </tr>
+ <tr><td>
+ <script type="text/javascript">
+ new Richfaces.Slider(
+ "#{clientId}Handle",
+ "#{clientId}Track",
+ "#{clientId}Tip",
+ "#{clientId}",
+ "#{component.attributes['handleSelectedClass']}",
+ "#{component.attributes['decreaseSelectedClass']}",
+ "#{component.attributes['increaseSelectedClass']}",
+ {
+ range : $R(#{component.attributes['minValue']},#{component.attributes['maxValue']}),
+ step : "#{component.attributes['step']}",
+ sliderValue : "#{this:getInputValue(context,component)}",
+ disabled : #{component.attributes['disabled']},
+ currValue : #{component.attributes['showToolTip']},
+ inputId : "#{clientId}Input",
+ arrowInc : "#{clientId}ArrowInc",
+ arrowDec : "#{clientId}ArrowDec",
+ tipArrowInc : "#{clientId}TipArrowInc",
+ tipArrowDec : "#{clientId}TipArrowDec",
+ arrowSelected : "#{arrowSelected}",
+ onerr : "#{component.attributes['onerror']}",
+ clientErrorMsg : "#{component.attributes['clientErrorMessage']}",
+ <f:call name="writeEventHandlerFunction"><f:parameter value="onslide" /></f:call>,
+ onchange : "#{component.attributes['onchange']}",
+ required : #{component.attributes['required']},
+ height : "#{height}",
+ width : "#{width}",
+ orientation : "vertical",
+ showArrows : #{component.attributes['showArrows']},
+ delay : "#{component.attributes['delay']}"
+ })
+ </script>
+ </td></tr>
+ </tbody>
+ </table>
+
+ <jsp:scriptlet>
+ <![CDATA[
+ } else {
+ ]]>
+ </jsp:scriptlet>
+
<table id="#{clientId}" border="0" cellpadding="0" cellspacing="0" class="dr-insldr rich-slider #{component.attributes['styleClass']}"
style="width: #{width};#{style}" x:passThruWithExclusions="id,boundClass,tipClass,class,width,height,style,border">
<tbody>
@@ -56,17 +334,17 @@
onblur="#{component.attributes['onblur']}"
accesskey="#{component.attributes['accesskey']}"
size="#{inputSize}"
- maxlength="#{component.attributes['maxlength']}"
-
- onclick='#{component.attributes["oninputclick"]}'
- ondblclick='#{component.attributes["oninputdblclick"]}'
- onkeydown='#{component.attributes["oninputkeydown"]}'
- onkeypress='#{component.attributes["oninputkeypress"]}'
- onkeyup='#{component.attributes["oninputkeyup"]}'
- onmousedown='#{component.attributes["oninputmousedown"]}'
- onmousemove='#{component.attributes["oninputmousemove"]}'
- onmouseout='#{component.attributes["oninputmouseout"]}'
- onmouseover='#{component.attributes["oninputmouseover"]}'
+ maxlength="#{component.attributes['maxlength']}"
+
+ onclick='#{component.attributes["oninputclick"]}'
+ ondblclick='#{component.attributes["oninputdblclick"]}'
+ onkeydown='#{component.attributes["oninputkeydown"]}'
+ onkeypress='#{component.attributes["oninputkeypress"]}'
+ onkeyup='#{component.attributes["oninputkeyup"]}'
+ onmousedown='#{component.attributes["oninputmousedown"]}'
+ onmousemove='#{component.attributes["oninputmousemove"]}'
+ onmouseout='#{component.attributes["oninputmouseout"]}'
+ onmouseover='#{component.attributes["oninputmouseover"]}'
onmouseup='#{component.attributes["oninputmouseup"]}'
/>
<jsp:scriptlet><![CDATA[
@@ -85,6 +363,26 @@
}
]]></jsp:scriptlet>
+ <jsp:scriptlet><![CDATA[
+ if (((Boolean)variables.getVariable("showArrows")).booleanValue()) {
+ ]]></jsp:scriptlet>
+ <td rowspan="2" class="dr-insldr-td-arrow">
+ <div style="position : relative">
+ <div id="#{clientId}TipArrowDec" class="dr-insldr-tip rich-inslider-tip #{component.attributes['tipClass']}" style="display: none; #{component.attributes['tipStyle']}">
+ <jsp:scriptlet><![CDATA[
+ writer.write(" ");
+ ]]></jsp:scriptlet>
+ </div>
+ <div id="#{clientId}ArrowDec"
+ class="dr-insldr-dec-horizontal dr-insldr-arrow #{component.attributes['decreaseClass']}"
+ style="#{component.attributes['decreaseStyle']}"
+ />
+ </div>
+ </td>
+ <jsp:scriptlet><![CDATA[
+ }
+ ]]></jsp:scriptlet>
+
<td class="dr-insldr-left-num rich-inslider-left-num #{component.attributes['boundClass']}">
<jsp:scriptlet><![CDATA[
if (attributeToBoolean(component, "showBoundaryValues")){
@@ -103,6 +401,26 @@
}
]]></jsp:scriptlet>
</td>
+
+ <jsp:scriptlet><![CDATA[
+ if (((Boolean)variables.getVariable("showArrows")).booleanValue()) {
+ ]]></jsp:scriptlet>
+ <td rowspan="2" class="dr-insldr-td-arrow">
+ <div style="position : relative">
+ <div id="#{clientId}TipArrowInc" class="dr-insldr-tip rich-inslider-tip #{component.attributes['tipClass']}" style="display: none; #{component.attributes['tipStyle']}">
+ <jsp:scriptlet><![CDATA[
+ writer.write(" ");
+ ]]></jsp:scriptlet>
+ </div>
+ <div id="#{clientId}ArrowInc"
+ class="dr-insldr-inc-horizontal dr-insldr-arrow #{component.attributes['increaseClass']}"
+ style="#{component.attributes['increaseStyle']}"
+ />
+ </div>
+ </td>
+ <jsp:scriptlet><![CDATA[
+ }
+ ]]></jsp:scriptlet>
<jsp:scriptlet><![CDATA[
if ("right".equalsIgnoreCase((String)variables.getVariable("inputPosition"))) {
@@ -124,17 +442,17 @@
onblur="#{component.attributes['onblur']}"
accesskey="#{component.attributes['accesskey']}"
size="#{inputSize}"
- maxlength="#{component.attributes['maxlength']}"
-
- onclick='#{component.attributes["oninputclick"]}'
- ondblclick='#{component.attributes["oninputdblclick"]}'
- onkeydown='#{component.attributes["oninputkeydown"]}'
- onkeypress='#{component.attributes["oninputkeypress"]}'
- onkeyup='#{component.attributes["oninputkeyup"]}'
- onmousedown='#{component.attributes["oninputmousedown"]}'
- onmousemove='#{component.attributes["oninputmousemove"]}'
- onmouseout='#{component.attributes["oninputmouseout"]}'
- onmouseover='#{component.attributes["oninputmouseover"]}'
+ maxlength="#{component.attributes['maxlength']}"
+
+ onclick='#{component.attributes["oninputclick"]}'
+ ondblclick='#{component.attributes["oninputdblclick"]}'
+ onkeydown='#{component.attributes["oninputkeydown"]}'
+ onkeypress='#{component.attributes["oninputkeypress"]}'
+ onkeyup='#{component.attributes["oninputkeyup"]}'
+ onmousedown='#{component.attributes["oninputmousedown"]}'
+ onmousemove='#{component.attributes["oninputmousemove"]}'
+ onmouseout='#{component.attributes["oninputmouseout"]}'
+ onmouseover='#{component.attributes["oninputmouseover"]}'
onmouseup='#{component.attributes["oninputmouseup"]}'
/>
<jsp:scriptlet><![CDATA[
@@ -189,6 +507,8 @@
"#{clientId}Tip",
"#{clientId}",
"#{component.attributes['handleSelectedClass']}",
+ "#{component.attributes['increaseSelectedClass']}",
+ "#{component.attributes['decreaseSelectedClass']}",
{
range : $R(#{component.attributes['minValue']},#{component.attributes['maxValue']}),
step : "#{component.attributes['step']}",
@@ -196,13 +516,21 @@
disabled : #{component.attributes['disabled']},
currValue : #{component.attributes['showToolTip']},
inputId : "#{clientId}Input",
- arrowSelected : "#{arrowSelected}",
+ arrowInc : "#{clientId}ArrowInc",
+ arrowDec : "#{clientId}ArrowDec",
+ tipArrowInc : "#{clientId}TipArrowInc",
+ tipArrowDec : "#{clientId}TipArrowDec",
+ arrowSelected : "#{arrowSelected}",
onerr : "#{component.attributes['onerror']}",
clientErrorMsg : "#{component.attributes['clientErrorMessage']}",
<f:call name="writeEventHandlerFunction"><f:parameter value="onslide" /></f:call>,
onchange : "#{component.attributes['onchange']}",
required : #{component.attributes['required']},
- width : "#{width}"
+ width : "#{width}",
+ height : "#{height}",
+ orientation : "horizontal",
+ showArrows : #{component.attributes['showArrows']},
+ delay : "#{component.attributes['delay']}"
})
</script>
</td>
@@ -213,4 +541,11 @@
</tr>
</tbody>
</table>
+
+ <jsp:scriptlet>
+ <![CDATA[
+ }
+ ]]>
+ </jsp:scriptlet>
+
</f:root>
17 years, 6 months
JBoss Rich Faces SVN: r11593 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2008-12-05 12:46:45 -0500 (Fri, 05 Dec 2008)
New Revision: 11593
Modified:
trunk/docs/userguide/en/src/main/docbook/included/editor.xml
Log:
RF-5042 - added info about skinning
Modified: trunk/docs/userguide/en/src/main/docbook/included/editor.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/editor.xml 2008-12-05 17:14:13 UTC (rev 11592)
+++ trunk/docs/userguide/en/src/main/docbook/included/editor.xml 2008-12-05 17:46:45 UTC (rev 11593)
@@ -65,8 +65,8 @@
<title>Details of Usage</title>
<para>The <emphasis role="bold"> <property><rich:editor></property></emphasis> is fully
- based on TinyMCE web based Javascript HTML WYSIWYG editor control and supports all of the features has.
-The rich:editor adjusts TinyMCE editor of JSF environment adding some functional capabilities.
+ based on TinyMCE web based Javascript HTML WYSIWYG editor control and supports all of the features it has.
+ The <emphasis role="bold"> <property><rich:editor></property></emphasis> adapts the TinyMCE editor for JSF environment and adds some functional capabilities.
</para>
@@ -89,21 +89,27 @@
</orderedlist>
- <para>The most important properties are implemented as attributes and you can define them as any other attribute.
+ <para>The three methods are described in details in the chapter.</para>
+
+ <para>The most important properties are implemented as attributes and you can define them as any other attribute.
The attributes of the <emphasis role="bold"> <property><rich:editor></property></emphasis> component
match the corresponding properties of TinyMCE editor.</para>
- <para>For example, a theme for the editor an be defined using the <property>"theme"</property> attribute like this: </para>
+ <para>For example, a theme for the editor can be defined using the <property>"theme"</property> attribute like this: </para>
<programlisting role="XML"><![CDATA[
<rich:editor value="#{bean.editorValue}" theme="advanced"/>
]]></programlisting>
+ <para>Setting a different skin for the editor can be done using the <property>"skin"</property> attribute.</para>
+
+ <para>Another useful property that is implemented at attribute level is <property>"viewmode"</property>.
+ The attribute switches between "visual" and "source" modes, toggling between modes is performed setting the attribute to "visual" and "source" respectively.</para>
<para>
- Apart from the attributes that define the editor's properties there are a some attributes that help handle events(custom event handlers).
+ Apart from the attributes that define the editor's properties there are some attributes that help handle events(custom event handlers).
</para>
<para>
- All custom event handlers can be found in the table of attributes and you can use them the same way as standard HTML event handlers. For example, like this:
+ All custom event handlers are listed in the table of attributes and you can use them the same way as standard HTML event handlers.
</para>
@@ -137,11 +143,11 @@
</figure>
- <para>The last way to configure the <emphasis role="bold"> <property><rich:editor></property></emphasis> is
+ <para>The third way to configure the <emphasis role="bold"> <property><rich:editor></property></emphasis> is
to use configuration file (.properties)</para>
- <para> This method is can easy your life if you need to configure multiple instances
- of the <emphasis role="bold"> <property><rich:editor></property></emphasis>. </para>
+ <para> This method eases your life if you need to configure multiple instances
+ of the <emphasis role="bold"> <property><rich:editor></property></emphasis>: you configure the editor once and in one spot and the configuration properties can be applied to any <emphasis role="bold"> <property><rich:editor></property></emphasis>in your application.</para>
<para>To implement this type of configuration you need to take a few steps:</para>
<itemizedlist>
@@ -157,15 +163,15 @@
</listitem>
<listitem><para>The properties stored in configuration file are passed to the
<emphasis role="bold"> <property><rich:editor></property></emphasis> via
- <property>"configuration"</property>attribute which takes the name of the configuration file as a value (with out .properties extension). </para></listitem>
- <para>For example, you named the configuration file "editorconfig", you would address it as follows:
+ <property>"configuration"</property>attribute which takes the name of the configuration file as a value (with out .properties extension). </para>
+ <para>For example, if you named the configuration file "editorconfig", you would address it as follows:
</para>
<programlisting role="XML"><![CDATA[...
<rich:editor value="#{bean.editorValue}" configuration="editorconfig"/>
...]]></programlisting>
-
+ </listitem>
<listitem><para>
Alternately, you can use a EL-binding to define a configuration file. This way you can dynamically change the sets of configuration properties. </para>
@@ -202,14 +208,15 @@
</para>
<para>
- Adding a custom plug-in also requires a few steps to take. Though the procedure is very similar to adding a configuration file.
+ Adding a custom plug-in also requires a few steps to take. Though, the procedure is very similar to adding a configuration file.
</para>
<para>This is what you need to add a plug-in:</para>
<itemizedlist>
- <listitem><para>Create a .properties file and put the name of the plug-in and a path to it there. The file can contain multiple plug-ins declarations. Your .properties file should be like this. </para>
+ <listitem><para>Create a .properties file and put the name of the plug-in and a path to it into the file.
+ The file can contain multiple plug-in declarations. Your .properties file should be like this. </para>
<programlisting role="XML"><![CDATA[...
pluginName=/mytinymceplugins/plugin1Name/editor_plugin.js
...]]></programlisting>
@@ -229,29 +236,39 @@
<para>
-Some plug-ins which available for download could have some dependencies to TinyMCE scripts.
-For example, dialog pop-ups requires tiny_mce_popup.js.
-Taking into consideration that developer will not plug our custom plugins to the RF jar with editor component
-(as opposite to standard tinyMCE plugins creation, which means that plugins will be put into tinyMCE corersponding directory) -
- the developer should manually add needed tinyMCE scripts to some folder and correct the js includes.
+Some plug-ins which available for download might have some dependencies on TinyMCE scripts.
+For example, dialog pop-ups require tiny_mce_popup.js script file.
+Assuming that you will not plug custom plugins to the RF jar with editor component
+(standard TinyMCE plugins creation implies that plugins are put into TinyMCE's corresponding directory)
+ you should manually add required TinyMCE scripts to some project folder and correct the js includes.
</para>
</note>
</itemizedlist>
+ <para>The <emphasis role="bold"> <property><rich:editor></property></emphasis>
+ component has a build-in converter that renders HTML code generated by the editor
+ to Seam text (you can read more Seam text <ulink url="http://docs.jboss.org/seam/1.1.5.GA/reference/en/html/text.html">here</ulink>.), it also interprets Seam text
+ passed to the <emphasis role="bold"> <property><rich:editor></property></emphasis> and renders it to HTML.
+ The converter can be enable with the <property>"seamTest"</property> attribute.</para>
+ <para>Example:</para>
+
+ <para>This HTML code generated by editor</para>
+ <programlisting role="XML"><![CDATA[...
+<p><a href="http://mysite.com">Lorem ipsum</a> <i>dolor sit</i> amet, ea <u>commodo</u> consequat.</p>
+...]]></programlisting>
+ <para>will be parsed to the following Seam text:</para>
+
+ <programlisting role="XML"><![CDATA[...
+[Lorem ipsum=>http://mysite.com] *dolor sit* amet, ea _commodo_ consequat.
+...]]></programlisting>
+ <para>Accordingly, if the Seam text is passed to the component it will be parsed to HTML code.</para>
+
</section>
-
- <!-- JavaScript API-->
- <section>
- <title>JavaScript API</title>
-
-
-
- </section>
- <!-- End of JavaScript API-->
+
<section>
<title>JavaScript API</title>
@@ -287,15 +304,421 @@
</itemizedlist>
</para>
</section>
-
+
<section>
<title>Skin Parameters Redefinition</title>
+
+ <table>
+ <title>Skin parameters redefinition for containers</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>additionalBackgroundColor</entry>
+
+ <entry>background</entry>
+ </row>
+
+ </tbody>
+ </tgroup>
+ </table>
-
- <title>Skin parameters redefinition for a component</title>
-
- </section>
+
+ <table>
+ <title>Skin parameters redefinition for external controls</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>panelBorderColor</entry>
+
+ <entry>border-color</entry>
+ </row>
+
+ </tbody>
+ </tgroup>
+ </table>
+
+
+ <table>
+ <title>Skin parameters redefinition for layout</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>panelBorderColor</entry>
+
+ <entry>border-left-color</entry>
+ </row>
+
+
+ <row>
+ <entry>panelBorderColor</entry>
+
+ <entry>border-right-color</entry>
+ </row>
+
+
+
+ <row>
+ <entry>panelBorderColor</entry>
+
+ <entry>border-top-color</entry>
+ </row>
+
+
+ <row>
+ <entry>panelBorderColor</entry>
+
+ <entry>border-bottom-color</entry>
+ </row>
+
+ <row>
+
+ <entry>generalFamilyFont</entry>
+
+ <entry>font-family</entry>
+ </row>
+
+
+
+ <row>
+ <entry>generalTextColor</entry>
+
+ <entry>color</entry>
+ </row>
+
+
+ <row>
+ <entry>headerBackgroundColor</entry>
+
+ <entry>background-color</entry>
+ </row>
+
+ </tbody>
+ </tgroup>
+ </table>
+ <table>
+ <title>Skin parameters redefinition for buttons</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+
+ <tbody>
+
+
+ <row>
+ <entry>headerBackgroundColor</entry>
+
+ <entry>background-color</entry>
+ </row>
+
+ </tbody>
+ </tgroup>
+ </table>
+
+
+
+
+
+ <table>
+ <title>Skin parameters redefinition for list box</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+
+ <tbody>
+
+
+ <row>
+ <entry>tableBackgroundColor</entry>
+
+ <entry>background</entry>
+ </row>
+
+
+ <row>
+ <entry>panelBorderColor</entry>
+
+ <entry>border-color</entry>
+ </row>
+
+
+ <row>
+ <entry>generalFamilyFont</entry>
+
+ <entry>font-family</entry>
+ </row>
+
+
+
+
+ </tbody>
+ </tgroup>
+ </table>
+
+
+
+ <table>
+ <title>Skin parameters redefinition for color split button</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+
+ <tbody>
+
+
+ <row>
+ <entry>tableBackgroundColor</entry>
+
+ <entry>background</entry>
+ </row>
+
+
+ <row>
+ <entry>panelBorderColor</entry>
+
+ <entry>border-color</entry>
+ </row>
+
+
+ <row>
+ <entry>generalFamilyFont</entry>
+
+ <entry>font-family</entry>
+ </row>
+
+
+ <row>
+ <entry>additionalBackgroundColor</entry>
+
+ <entry>background-color</entry>
+ </row>
+
+
+ </tbody>
+ </tgroup>
+ </table>
+
+
+ <table>
+ <title>Skin parameters redefinition for hovered color split button</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+
+ <tbody>
+
+ <row>
+ <entry>headerBackgroundColor</entry>
+
+ <entry>border-color</entry>
+ </row>
+
+
+ </tbody>
+ </tgroup>
+ </table>
+
+
+
+ <table>
+ <title>Skin parameters redefinition for menu</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+
+ <tbody>
+
+ <row>
+ <entry>panelBorderColor</entry>
+
+ <entry>border-color</entry>
+ </row>
+
+ <row>
+ <entry>tableBackgroundColor</entry>
+
+ <entry>background</entry>
+ </row>
+
+
+ <row>
+ <entry>generalFamilyFont</entry>
+
+ <entry>font-family</entry>
+ </row>
+
+ <row>
+ <entry>generalTextColor</entry>
+
+ <entry>color</entry>
+ </row>
+
+ <row>
+ <entry>additionalBackgroundColor</entry>
+
+ <entry>background-color</entry>
+ </row>
+
+
+ <row>
+ <entry>additionalBackgroundColor</entry>
+
+ <entry>background-color</entry>
+ </row>
+
+ </tbody>
+ </tgroup>
+ </table>
+
+ <table>
+ <title>Skin parameters redefinition for menu item</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+
+ <tbody>
+
+ <row>
+ <entry>additionalBackgroundColor</entry>
+
+ <entry>background</entry>
+ </row>
+
+ <row>
+ <entry>panelBorderColor</entry>
+
+ <entry>border-bottom-color</entry>
+ </row>
+
+
+ <row>
+ <entry>generalTextColor</entry>
+
+ <entry>color</entry>
+ </row>
+
+ <row>
+ <entry>generalTextColor</entry>
+
+ <entry>color</entry>
+ </row>
+
+ <row>
+ <entry>tabDisabledTextColor</entry>
+
+ <entry>color</entry>
+ </row>
+
+
+
+
+ </tbody>
+ </tgroup>
+ </table>
+
+
+
+ <table>
+ <title>Skin parameters redefinition for progress and resize states</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+
+ <tbody>
+
+ <row>
+ <entry>tableBackgroundColor</entry>
+
+ <entry>background</entry>
+ </row>
+
+ <row>
+ <entry>tableBorderColor</entry>
+
+ <entry>border-color</entry>
+ </row>
+
+
+
+
+
+
+ </tbody>
+ </tgroup>
+ </table>
+
+
+
+
<section>
<title>Definition of Custom Style Classes</title>
17 years, 6 months
JBoss Rich Faces SVN: r11592 - in trunk/test-applications/seleniumTest/richfaces: src/test/java/org/richfaces and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-12-05 12:14:13 -0500 (Fri, 05 Dec 2008)
New Revision: 11592
Modified:
trunk/test-applications/seleniumTest/richfaces/pom.xml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java
Log:
RF-5197
only for test
Modified: trunk/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/pom.xml 2008-12-05 17:05:13 UTC (rev 11591)
+++ trunk/test-applications/seleniumTest/richfaces/pom.xml 2008-12-05 17:14:13 UTC (rev 11592)
@@ -85,52 +85,6 @@
</plugin>
</plugins>
</build>
- <profiles>
- <profile>
- <id>linux</id>
- <activation>
- <os>
- <family>unix</family>
- </os>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>1.1</version>
- <executions>
- <execution>
- <phase>pre-integration-test</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <executable>
-#find firefox
-PATHS=( '/usr/lib/firefox-1.0.4/' '/usr/lib/firefox-1.5.0.10/' '/usr/lib/firefox-1.5.0.12/' '/usr/lib64/firefox-1.5.0.12/' '/usr/lib/firefox-3.0b5/' '/usr/lib64/firefox-3.0b5/' '/usr/lib/firefox-3.0.1/' '/usr/lib64/firefox-3.0.1/' '/usr/lib/firefox/' '/opt/MozillaFirefox/lib/')
-for ELEMENT in ${PATHS[@]}
- do
- if [ -f $ELEMENT/firefox ]
- then
- export FF_BIN=$ELEMENT/firefox
- export LD_LIBRARY_PATH=$ELEMENT
- fi
- if [ -f $ELEMENT/firefox-bin ]
- then
- export FF_BIN=$ELEMENT/firefox-bin
- export LD_LIBRARY_PATH=$ELEMENT
- fi
-done
- </executable>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
<repositories>
<repository>
<releases>
@@ -143,10 +97,4 @@
<url>http://snapshots.jboss.org/maven2</url>
</repository>
</repositories>
- <pluginRepositories>
- <pluginRepository>
- <id>codehaus</id>
- <url>http://repository.codehaus.org/</url>
- </pluginRepository>
- </pluginRepositories>
</project>
\ No newline at end of file
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java 2008-12-05 17:05:13 UTC (rev 11591)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/SeleniumTestBase.java 2008-12-05 17:14:13 UTC (rev 11592)
@@ -141,6 +141,30 @@
@BeforeClass
@Parameters({"browser", "filterPrefix"})
public void startSelenium(String browser, String filterPrefix) {
+ String[] paths = {"/usr/lib/firefox-1.0.4/firefox",
+ "/usr/bin/firefox-1.5.0.10/firefox",
+ "/usr/bin/firefox-1.5.0.12/firefox",
+ "/usr/bin64/firefox-1.5.0.12/firefox",
+ "/usr/bin/firefox-3.0b5/firefox",
+ "/usr/bin64/firefox-3.0b5/firefox",
+ "/usr/bin/firefox-3.0.1/firefox",
+ "/usr/bin64/firefox-3.0.1/firefox",
+ "/usr/bin/firefox/firefox"
+ };
+ if ("*firefox".equals(browser)) {
+ for (int i = 0; i < paths.length && "*firefox".equals(browser); i++) {
+ String path = paths[i];
+ File file = new File(path);
+ if (file.isFile()) {
+ browser += " " + path;
+ } else {
+ file = new File(path + "-bin");
+ if (file.isFile()) {
+ browser += " " + path + "-bin";
+ }
+ }
+ }
+ }
synchronized (MUTEX) {
this.filterPrefix = filterPrefix;
selenium = createSeleniumClient(protocol + "://" + host + ":" + port + "/", browser);
17 years, 6 months
JBoss Rich Faces SVN: r11591 - trunk/test-applications/seamApp/web/src/main/webapp/pages/Rich.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2008-12-05 12:05:13 -0500 (Fri, 05 Dec 2008)
New Revision: 11591
Modified:
trunk/test-applications/seamApp/web/src/main/webapp/pages/Rich/Rich.xhtml
Log:
remove columns from panelGrid.
Modified: trunk/test-applications/seamApp/web/src/main/webapp/pages/Rich/Rich.xhtml
===================================================================
--- trunk/test-applications/seamApp/web/src/main/webapp/pages/Rich/Rich.xhtml 2008-12-05 16:45:29 UTC (rev 11590)
+++ trunk/test-applications/seamApp/web/src/main/webapp/pages/Rich/Rich.xhtml 2008-12-05 17:05:13 UTC (rev 11591)
@@ -41,18 +41,17 @@
<h:messages showDetail="true" showSummary="true"></h:messages>
<h:panelGrid id="richGridID" columns="1" width="100%">
- <h:column rendered="#{option.reComponent}">
- <ui:include src="#{richBean.pathComponent}" />
- </h:column>
+ <h:panelGroup rendered="#{option.reComponent}">
+ <ui:include src="#{richBean.pathComponent}"/>
+ </h:panelGroup>
- <h:column rendered="#{option.reStraightforward}">
+ <h:panelGroup rendered="#{option.reStraightforward}">
<ui:include src="#{richBean.pathStraightforward}" />
- </h:column>
+ </h:panelGroup>
- <h:column rendered="#{option.reProperty}">
+ <h:panelGroup rendered="#{option.reProperty}">
<ui:include src="#{richBean.pathProperty}" />
- </h:column>
-
+ </h:panelGroup>
</h:panelGrid>
<ui:include src="/pages/Info/Info.xhtml" />
17 years, 6 months
JBoss Rich Faces SVN: r11590 - trunk/samples/richfaces-demo/src/main/webapp/WEB-INF.
by richfaces-svn-commits@lists.jboss.org
Author: alevkovsky
Date: 2008-12-05 11:45:29 -0500 (Fri, 05 Dec 2008)
New Revision: 11590
Modified:
trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/faces-config.xml
Log:
Fix editor example
Modified: trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/faces-config.xml 2008-12-05 16:37:52 UTC (rev 11589)
+++ trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/faces-config.xml 2008-12-05 16:45:29 UTC (rev 11590)
@@ -411,7 +411,7 @@
<managed-bean>
<managed-bean-name>editorBean</managed-bean-name>
<managed-bean-class>org.richfaces.demo.editor.EditorBean</managed-bean-class>
- <managed-bean-scope>request</managed-bean-scope>
+ <managed-bean-scope>session</managed-bean-scope>
</managed-bean>
<navigation-rule>
<from-view-id>/richfaces/include/examples/wstep1.xhtml</from-view-id>
17 years, 6 months
JBoss Rich Faces SVN: r11589 - in trunk/test-applications/seleniumTest/richfaces/src: main/webapp/pages/calendar and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: andrei_exadel
Date: 2008-12-05 11:37:52 -0500 (Fri, 05 Dec 2008)
New Revision: 11589
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/calendarTest.xhtml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
Log:
RF-5152
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2008-12-05 16:01:56 UTC (rev 11588)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2008-12-05 16:37:52 UTC (rev 11589)
@@ -73,6 +73,11 @@
private String mode = UICalendar.AJAX_MODE;
private String status;
+
+ private Date preloadDateRangeStart;
+
+ private Date preloadDateRangeEnd;
+
public CalendarTestBean() {
selectedDate = DEFAULT_DATE;
@@ -81,6 +86,11 @@
datePattern = DATE_PATTERN;
locale = LOCALE;
timeZone = TIME_ZONE;
+ Calendar c = getLocale()!=null ? Calendar.getInstance(getLocale()) : Calendar.getInstance();
+ c.set(c.get(Calendar.YEAR), c.get(Calendar.MONTH) - 1, 1);
+ preloadDateRangeStart = c.getTime(); // Set preloadBegin by the first day of the last month
+ c.set(c.get(Calendar.YEAR), c.get(Calendar.MONTH) + 3, 0);
+ preloadDateRangeEnd = c.getTime(); // Set preloadEnd by the last day of the next month
}
public Date getSelectedDate() {
@@ -204,6 +214,7 @@
status = "";
selectedDate = new Date();
isPopup = false;
+ currentDate = new Date();
}
public String resetAction() {
@@ -274,4 +285,32 @@
this.isPopup = isPopup;
}
+ /**
+ * @return the preloadDateRangeStart
+ */
+ public Date getPreloadDateRangeStart() {
+ return preloadDateRangeStart;
+ }
+
+ /**
+ * @param preloadDateRangeStart the preloadDateRangeStart to set
+ */
+ public void setPreloadDateRangeStart(Date preloadDateRangeStart) {
+ this.preloadDateRangeStart = preloadDateRangeStart;
+ }
+
+ /**
+ * @return the preloadDateRangeEnd
+ */
+ public Date getPreloadDateRangeEnd() {
+ return preloadDateRangeEnd;
+ }
+
+ /**
+ * @param preloadDateRangeEnd the preloadDateRangeEnd to set
+ */
+ public void setPreloadDateRangeEnd(Date preloadDateRangeEnd) {
+ this.preloadDateRangeEnd = preloadDateRangeEnd;
+ }
+
}
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/calendarTest.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-05 16:01:56 UTC (rev 11588)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-05 16:37:52 UTC (rev 11589)
@@ -152,13 +152,25 @@
String weekNumId = calendarId + "WeekNum2";
selenium.click("//tr[@id='" + weekNumId + "']/td[starts-with(@class, '" + availableDayCellClass + "')]");
}
-
+
void changeCurrentDate(boolean wait4ajax) {
selenium.click("//td[@id='" + calendarHeaderId + "']/table/tbody/tr/td/div");
if (wait4ajax) {
waitForAjaxCompletion();
}
}
+
+ Calendar changeCurrentDate(Calendar c, boolean wait4ajax) {
+ selenium.click("//td[@id='" + calendarHeaderId + "']/table/tbody/tr/td/div");
+ if (wait4ajax) {
+ waitForAjaxCompletion();
+ }
+ c.set(Calendar.YEAR, c.get(Calendar.YEAR) - 1);
+ if (getCalendarDate().indexOf(c.get(Calendar.YEAR)) == -1) {
+ Assert.fail("Date is incorrect");
+ }
+ return c;
+ }
void reset() {
clickCommandAndWait(resetActionId);
@@ -172,7 +184,27 @@
selenium.click(timeSelectionXpath);
}
- void _testModelDataAppliedToClient() {
+ String getCalendarDate() {
+ return selenium.getText(currentDateHeaderXpath);
+ }
+
+ Calendar nextMonth(Calendar c) {
+ String date = getCalendarDate();
+ selenium.click("//td[@id='" + calendarHeaderId + "']/table/tbody/tr/td[@class='rich-calendar-tool'][3]/div");
+ Assert.assertFalse(getCalendarDate().equals(date), "Current date has not been changed after next month clicked");
+ c.set(Calendar.MONTH, c.get(Calendar.MONTH) + 1);
+ return c;
+ }
+
+ Calendar previousMonth(Calendar c) {
+ String date = getCalendarDate();
+ selenium.click("//td[@id='" + calendarHeaderId + "']/table/tbody/tr/td[@class='rich-calendar-tool'][2]/div");
+ Assert.assertFalse(getCalendarDate().equals(date), "Current date has not been changed after previous month clicked");
+ c.set(Calendar.MONTH, c.get(Calendar.MONTH) - 1);
+ return c;
+ }
+
+ void _testModelDataAppliedToClient(Calendar c) {
String currentDate = selenium.getText(dateSelectionXpath);
selenium.click("//table[@id='"+calendarId+"']/tbody/tr/td[text() = '13']");
@@ -180,8 +212,6 @@
Assert.fail("Enabled attribute of data model was not applied for client data. 13th day should disabled and should force date change after click.");
}
- Calendar c = Calendar.getInstance();
- c.setTime(new Date());
int currentMonth = c.get(Calendar.MONTH);
String cellDay7StyleClass = selenium.getAttribute("//table[@id='"+calendarId+"']/tbody/tr/td[text() = '7']/@class");
@@ -198,19 +228,55 @@
}
@Test
+ public void testClientMode(Template template) {
+ renderPage(template, RESET_METHOD);
+ initIds(getParentId());
+ switchToClientMode();
+
+ Calendar c = Calendar.getInstance();
+ c = previousMonth(c);
+ Assert.assertTrue(runScript("window.done").equals(Boolean.FALSE.toString().toLowerCase()), "Change of current date should not force ajax request in client mode.");
+
+ try {
+ _testModelDataAppliedToClient(c);
+ c = nextMonth(c);
+ _testModelDataAppliedToClient(c);
+ c = nextMonth(c);
+ _testModelDataAppliedToClient(c);
+ } catch (AssertionError e) {
+ Assert.fail("Calendar does not preload data in client mode for interval defined by 'preloadDateRangeBegin' & 'preloadDateRangeEnd'. It should preload data for last, current & next month. " + e);
+ }
+
+ boolean error = false;
+ c = nextMonth(c);
+ try {
+ _testModelDataAppliedToClient(c);
+ }catch (AssertionError e) {
+ error = true;
+ }
+
+ if (!error) {
+ Assert.fail("Calendar pre-loaded data for interval that not defined by 'preloadDateRangeBegin' & 'preloadDateRangeEnd'");
+ }
+
+ }
+
+ @Test
public void testDataModelAttribute(Template template) {
renderPage(template, RESET_METHOD);
initIds(getParentId());
- _testModelDataAppliedToClient();
+ Calendar c = Calendar.getInstance();
+ _testModelDataAppliedToClient(c);
+
try {
- changeCurrentDate(true);
+ c = changeCurrentDate(c, true);
}catch (SeleniumException exception) {
Assert.fail("Celendar in ajax mode does not request for the next portion of data after current date has been changed");
}
- _testModelDataAppliedToClient();
+ _testModelDataAppliedToClient(c);
}
@@ -378,7 +444,7 @@
@Test
public void testValueAndCurrentDateOfCalendarInCaseOfPopupTrue(Template template) {
- renderPage(template);
+ renderPage(template, RESET_METHOD);
initIds(getParentId());
String expectedSelectedDate = "03/03/2007 11:00";
String expectedCurrentDate = "04/04/2008 13:00";
@@ -425,7 +491,7 @@
@Test
public void testValueAndCurrentDateOfCalendarWithPopupFalse(Template template) {
- renderPage(template, null);
+ renderPage(template, RESET_METHOD);
initIds(getParentId());
String expectedSelectedDate = "03/03/2007 11:00";
String expectedCurrentDate = "04/04/2008 13:00";
17 years, 6 months
JBoss Rich Faces SVN: r11588 - trunk/test-applications/seleniumTest/richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-12-05 11:01:56 -0500 (Fri, 05 Dec 2008)
New Revision: 11588
Modified:
trunk/test-applications/seleniumTest/richfaces/pom.xml
Log:
RF-5197
Modified: trunk/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/pom.xml 2008-12-05 15:47:37 UTC (rev 11587)
+++ trunk/test-applications/seleniumTest/richfaces/pom.xml 2008-12-05 16:01:56 UTC (rev 11588)
@@ -108,7 +108,23 @@
</execution>
</executions>
<configuration>
- <executable>src/find_firefox.sh</executable>
+ <executable>
+#find firefox
+PATHS=( '/usr/lib/firefox-1.0.4/' '/usr/lib/firefox-1.5.0.10/' '/usr/lib/firefox-1.5.0.12/' '/usr/lib64/firefox-1.5.0.12/' '/usr/lib/firefox-3.0b5/' '/usr/lib64/firefox-3.0b5/' '/usr/lib/firefox-3.0.1/' '/usr/lib64/firefox-3.0.1/' '/usr/lib/firefox/' '/opt/MozillaFirefox/lib/')
+for ELEMENT in ${PATHS[@]}
+ do
+ if [ -f $ELEMENT/firefox ]
+ then
+ export FF_BIN=$ELEMENT/firefox
+ export LD_LIBRARY_PATH=$ELEMENT
+ fi
+ if [ -f $ELEMENT/firefox-bin ]
+ then
+ export FF_BIN=$ELEMENT/firefox-bin
+ export LD_LIBRARY_PATH=$ELEMENT
+ fi
+done
+ </executable>
</configuration>
</plugin>
</plugins>
17 years, 6 months
JBoss Rich Faces SVN: r11587 - trunk/docs/userguide/en/src/main/resources/images.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-05 10:47:37 -0500 (Fri, 05 Dec 2008)
New Revision: 11587
Removed:
trunk/docs/userguide/en/src/main/resources/images/GettingStarted_RFGtreeterApp.png
Log:
Updating the image
Deleted: trunk/docs/userguide/en/src/main/resources/images/GettingStarted_RFGtreeterApp.png
===================================================================
(Binary files differ)
17 years, 6 months
JBoss Rich Faces SVN: r11586 - trunk/docs/userguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-05 10:45:52 -0500 (Fri, 05 Dec 2008)
New Revision: 11586
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
Log:
RF-2063: outside information resources
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2008-12-05 15:38:49 UTC (rev 11585)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2008-12-05 15:45:52 UTC (rev 11586)
@@ -18,12 +18,7 @@
downloading the libraries to running the application in a browser. The process
of application creation described here is common and does not depend on used
IDE. </para>
- <para>See "<ulink
- url="http://docs.jboss.org/tools/movies/demos/rich_faces_demo/rich_faces_demo.htm"
- > RichFaces Toolkit for developing Web application</ulink>"
- video tutorial for benefits that gives the JBoss Developer Studio for developing
- applications using RichFaces. </para>
-
+
<section id="DownloadingRichFaces">
<?dbhtml filename="DownloadingRichFaces.html" ?>
@@ -45,7 +40,7 @@
</para>
</section>
- <section id="Simple JSF application with RichFaces">
+ <section id="SimpleJSFapplicationwithRichFaces">
<?dbhtml filename="Installation.html" ?>
<title>Simple JSF application with RichFaces</title>
<para> "RichFaces Greeter"—the simple application—is hello-world like
@@ -55,7 +50,7 @@
<para> Create standard JSF 1.2 project with all necessary libraries; name the project
"Greeter" and follow the decription. </para>
- <section id="Adding RichFaces libraries into the project">
+ <section id="AddingRichFaceslibrariesintotheproject">
<title>Adding RichFaces libraries into the project</title>
<para>Pass to the folder with unzipped earlier RichFaces binary files
and open <code>lib</code> folder. This folder contains three
@@ -65,7 +60,7 @@
of "Greeter" JSF application. </para>
</section>
- <section id="Registering RichFaces in web.xml">
+ <section id="RegisteringRichFacesinwebxml">
<title>Registering RichFaces in web.xml</title>
<para> After RichFaces libraries where added into the project it is
necessary to register them in project <code>web.xml</code>
@@ -147,7 +142,7 @@
</web-app>]]></programlisting>
</section>
- <section id="Managed bean">
+ <section id="Managedbean">
<title>Managed bean</title>
<para>The "RichFaces Greeter" application needs a managed bean. In
project <code>JavaSource</code> folder create a new managed
@@ -166,7 +161,7 @@
}</programlisting>
</section>
- <section id="Registering bean in faces-cofig.xml">
+ <section id="Registeringbeaninfacescofig">
<title>Registering bean in faces-cofig.xml</title>
<para>With the next step the <code>user</code> bean should be
registered in <code>faces-config.xml</code> file: </para>
@@ -191,7 +186,7 @@
]]></programlisting>
</section>
- <section id="RichFaces Greeter index.jsp">
+ <section id="RichFacesGreeterindex">
<title>RichFaces Greeter index.jsp</title>
<para> The "RichFaces Greeter" application has only one JSP page.
Create <code>index.jsp</code> page in root of <code>WEB
@@ -250,11 +245,40 @@
<mediaobject>
<imageobject>
<imagedata
- fileref="images/RichFaces Greeter.png"
+ fileref="images/GettingStarted_RFGreeterApp.png"
/>
</imageobject>
</mediaobject>
</figure>
</section>
</section>
+
+<!-- RELEVANT RESOURCES LINKS -->
+
+ <section id="RelevantResourcesLinks">
+ <title>Relevant Resources Links</title>
+ <para><ulink url="https://www.redhat.com/apps/store/developers/jboss_developer_studio.html">JBoss Developer Studio</ulink> comes with a tight integration with RichFaces component framework.
+ Following links might be useful for those who already use this IDE and RichFaces for developing applications and those who wish to improve their development process:</para>
+ <itemizedlist>
+ <listitem>
+ <para>"<ulink url="http://download.jboss.org/jbosstools/nightly-docs/en/GettingStartedGuide/...">Rich Components</ulink>" chapter
+ in "Getting Started with JBoss Developer Studio Guide" describes how to add RichFaces components into a CRUD application;
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ "<ulink url="http://download.jboss.org/jbosstools/nightly-docs/en/jsf/html/palette.html">JBoss Tools Palette</ulink>" chapter in "Visual Web Tools Reference Guide"
+ describes advantages that gives Tools Pallete (comes together with JBDS) for quick and easy pages creation processs including RichFaces applications;
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ "<ulink url="http://docs.jboss.org/tools/movies/demos/rich_faces_demo/rich_faces_demo.htm">RichFaces Toolkit for developing Web application</ulink>" video tutorial
+ demonstrates some aspects of interaction with JBoss Developer Studio while working with RichFaces.
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>Read also the <ulink url="http://mkblog.exadel.com/?p=110">quick overview</ulink> to "Practical RichFaces " book by Max Katz at his blog.</para>
+ </section>
+
</chapter>
17 years, 6 months
JBoss Rich Faces SVN: r11585 - in trunk/test-applications/seleniumTest/richfaces: src and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-12-05 10:38:49 -0500 (Fri, 05 Dec 2008)
New Revision: 11585
Added:
trunk/test-applications/seleniumTest/richfaces/src/find_firefox.sh
Modified:
trunk/test-applications/seleniumTest/richfaces/pom.xml
Log:
RF-5197
Modified: trunk/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/pom.xml 2008-12-05 15:38:09 UTC (rev 11584)
+++ trunk/test-applications/seleniumTest/richfaces/pom.xml 2008-12-05 15:38:49 UTC (rev 11585)
@@ -85,6 +85,36 @@
</plugin>
</plugins>
</build>
+ <profiles>
+ <profile>
+ <id>linux</id>
+ <activation>
+ <os>
+ <family>unix</family>
+ </os>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.1</version>
+ <executions>
+ <execution>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <executable>src/find_firefox.sh</executable>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
<repositories>
<repository>
<releases>
@@ -97,4 +127,10 @@
<url>http://snapshots.jboss.org/maven2</url>
</repository>
</repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>codehaus</id>
+ <url>http://repository.codehaus.org/</url>
+ </pluginRepository>
+ </pluginRepositories>
</project>
\ No newline at end of file
Added: trunk/test-applications/seleniumTest/richfaces/src/find_firefox.sh
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/find_firefox.sh (rev 0)
+++ trunk/test-applications/seleniumTest/richfaces/src/find_firefox.sh 2008-12-05 15:38:49 UTC (rev 11585)
@@ -0,0 +1,15 @@
+#find firefox
+PATHS=( '/usr/lib/firefox-1.0.4/' '/usr/lib/firefox-1.5.0.10/' '/usr/lib/firefox-1.5.0.12/' '/usr/lib64/firefox-1.5.0.12/' '/usr/lib/firefox-3.0b5/' '/usr/lib64/firefox-3.0b5/' '/usr/lib/firefox-3.0.1/' '/usr/lib64/firefox-3.0.1/' '/usr/lib/firefox/' '/opt/MozillaFirefox/lib/')
+for ELEMENT in ${PATHS[@]}
+ do
+ if [ -f $ELEMENT/firefox ]
+ then
+ export FF_BIN=$ELEMENT/firefox
+ export LD_LIBRARY_PATH=$ELEMENT
+ fi
+ if [ -f $ELEMENT/firefox-bin ]
+ then
+ export FF_BIN=$ELEMENT/firefox-bin
+ export LD_LIBRARY_PATH=$ELEMENT
+ fi
+done
\ No newline at end of file
17 years, 6 months
JBoss Rich Faces SVN: r11584 - in trunk/test-applications/realworld: ear and 19 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2008-12-05 10:38:09 -0500 (Fri, 05 Dec 2008)
New Revision: 11584
Added:
trunk/test-applications/realworld/ear/src/main/jboss-app.xml
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/FriendshipRequest.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ISearchService.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/SearchService.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBean.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBeanHelper.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/RatingHelper.java
trunk/test-applications/realworld/web/src/main/webapp/img/Thumbs.db
trunk/test-applications/realworld/web/src/main/webapp/layout/menuShared.xhtml
trunk/test-applications/realworld/web/src/main/webapp/sharedAlbum.xhtml
Removed:
trunk/test-applications/realworld/ear/src/main/application/jboss-app.xml
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileTest.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileTestTest.java
Modified:
trunk/test-applications/realworld/ear/pom.xml
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Image.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Message.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/MetaTag.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/User.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/AlbumAction.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IImageAction.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IMessageAction.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IUserAction.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ImageAction.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/MessageAction.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/UserAction.java
trunk/test-applications/realworld/ejb/src/main/resources/META-INF/persistence.xml
trunk/test-applications/realworld/ejb/src/main/resources/import.sql
trunk/test-applications/realworld/ejb/src/main/resources/realworld-ds.xml
trunk/test-applications/realworld/pom.xml
trunk/test-applications/realworld/web/META-INF/MANIFEST.MF
trunk/test-applications/realworld/web/pom.xml
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/AvatarUpload.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileUploadBean.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/session/Authenticator.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/tree/TreeActionManager.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/tree/TreeSelectionManager.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ModalPanelHelper.java
trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/components.xml
trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/tags/templates/message.xhtml
trunk/test-applications/realworld/web/src/main/webapp/imagePreview.xhtml
trunk/test-applications/realworld/web/src/main/webapp/layout/menu.xhtml
trunk/test-applications/realworld/web/src/main/webapp/main.xhtml
trunk/test-applications/realworld/web/src/main/webapp/navigation.xhtml
trunk/test-applications/realworld/web/src/main/webapp/readMessages.xhtml
trunk/test-applications/realworld/web/src/main/webapp/register.xhtml
trunk/test-applications/realworld/web/src/main/webapp/search.xhtml
Log:
Modified: trunk/test-applications/realworld/ear/pom.xml
===================================================================
--- trunk/test-applications/realworld/ear/pom.xml 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ear/pom.xml 2008-12-05 15:38:09 UTC (rev 11584)
@@ -28,6 +28,7 @@
<version>1.0-SNAPSHOT</version>
<type>ejb</type>
</dependency>
+
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-core</artifactId>
Deleted: trunk/test-applications/realworld/ear/src/main/application/jboss-app.xml
===================================================================
--- trunk/test-applications/realworld/ear/src/main/application/jboss-app.xml 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ear/src/main/application/jboss-app.xml 2008-12-05 15:38:09 UTC (rev 11584)
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE jboss-app
- PUBLIC "-//JBoss//DTD J2EE Application 4.2//EN"
- "http://www.jboss.org/j2ee/dtd/jboss-app_4_2.dtd">
-
-<jboss-app>
- <loader-repository>
- seam.jboss.org:loader=realworld-ear-1.0-SNAPSHOT.ear
- </loader-repository>
-</jboss-app>
\ No newline at end of file
Added: trunk/test-applications/realworld/ear/src/main/jboss-app.xml
===================================================================
--- trunk/test-applications/realworld/ear/src/main/jboss-app.xml (rev 0)
+++ trunk/test-applications/realworld/ear/src/main/jboss-app.xml 2008-12-05 15:38:09 UTC (rev 11584)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+ <!DOCTYPE jboss-app
+ PUBLIC "-//JBoss//DTD J2EE Application 4.2//EN"
+ "http://www.jboss.org/j2ee/dtd/jboss-app_4_2.dtd">
+
+<jboss-app>
+ <loader-repository>
+ seam.jboss.org:loader=realworld-ear-1.0-SNAPSHOT.ear
+ </loader-repository>
+</jboss-app>
\ No newline at end of file
Property changes on: trunk/test-applications/realworld/ear/src/main/jboss-app.xml
___________________________________________________________________
Name: svn:mime-type
+ text/xml
Name: svn:eol-style
+ native
Added: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/FriendshipRequest.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/FriendshipRequest.java (rev 0)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/FriendshipRequest.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -0,0 +1,56 @@
+package org.richfaces.realworld.domain;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.FetchType;
+import javax.persistence.GeneratedValue;
+import javax.persistence.Id;
+import javax.persistence.JoinColumn;
+import javax.persistence.ManyToOne;
+import javax.persistence.Table;
+
+import org.hibernate.validator.Length;
+import org.hibernate.validator.NotEmpty;
+import org.hibernate.validator.NotNull;
+import org.jboss.seam.annotations.Name;
+
+@Entity
+@Name("friendshipRequest")
+@Table(name = "friendship_requests")
+public class FriendshipRequest {
+
+ @Id
+ @GeneratedValue
+ @Column(name = "REQUEST_ID")
+ private Long id;
+
+ @ManyToOne(fetch = FetchType.LAZY)
+ @JoinColumn(name = "USER_ID", nullable = false, updatable = false)
+ @org.hibernate.annotations.ForeignKey(name = "FK_FROM_USERSFRIEND_ID")
+ private User user;
+
+ @ManyToOne(fetch = FetchType.EAGER)
+ @JoinColumn(name = "FRIEND_ID", nullable = false, updatable = false)
+ @org.hibernate.annotations.ForeignKey(name = "FK_FROM_USERSFRIEND2_ID")
+ private User friend;
+
+ public User getUser() {
+ return user;
+ }
+
+ public void setUser(User user) {
+ this.user = user;
+ }
+
+ public User getFriend() {
+ return friend;
+ }
+
+ public void setFriend(User friend) {
+ this.friend = friend;
+ }
+
+ public Long getId() {
+ return id;
+ }
+}
Property changes on: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/FriendshipRequest.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Image.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Image.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Image.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -8,9 +8,7 @@
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Date;
-import java.util.HashSet;
import java.util.List;
-import java.util.Set;
import javax.persistence.CascadeType;
import javax.persistence.Column;
@@ -18,7 +16,6 @@
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
-import javax.persistence.JoinTable;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Message.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Message.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Message.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -13,6 +13,7 @@
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
+import javax.persistence.Transient;
import org.hibernate.validator.Length;
import org.hibernate.validator.NotEmpty;
@@ -36,6 +37,11 @@
private boolean readed;
+ private boolean friendshipRequest;
+
+ @Transient
+ private String ownerLogin;
+
@Column(length = 256, nullable = false)
@NotNull
@NotEmpty
@@ -110,4 +116,20 @@
this.theme = theme;
}
+ public boolean isFriendshipRequest() {
+ return friendshipRequest;
+ }
+
+ public void setFriendshipRequest(boolean friendshipRequest) {
+ this.friendshipRequest = friendshipRequest;
+ }
+
+ public String getOwnerLogin() {
+ return ownerLogin;
+ }
+
+ public void setOwnerLogin(String ownerLogin) {
+ this.ownerLogin = ownerLogin;
+ }
+
}
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/MetaTag.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/MetaTag.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/MetaTag.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -9,14 +9,11 @@
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
-import javax.persistence.Version;
import org.hibernate.validator.Length;
import org.hibernate.validator.NotEmpty;
import org.hibernate.validator.NotNull;
-import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.Name;
-import org.jboss.seam.annotations.Scope;
@Entity
@Name("metaTag")
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/User.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/User.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/User.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -120,7 +120,9 @@
@org.hibernate.annotations.LazyCollection(org.hibernate.annotations.LazyCollectionOption.EXTRA)
@org.hibernate.annotations.OrderBy(clause = "Date desc")
private List<Message> messages = new ArrayList<Message>();
- //private Address address;
+
+ @OneToMany(mappedBy = "user", cascade = { CascadeType.ALL }, fetch = FetchType.LAZY)
+ private List<FriendshipRequest> friendshipRequests = new ArrayList<FriendshipRequest>();
/**
* No-arg constructor for JavaBean tools
@@ -284,4 +286,37 @@
public void setMessages(List<Message> messages) {
this.messages = messages;
}
+
+ public List<FriendshipRequest> getFriendshipRequests() {
+ return friendshipRequests;
+ }
+
+ public void setFriendshipRequests(List<FriendshipRequest> friendshipRequests) {
+ this.friendshipRequests = friendshipRequests;
+ }
+
+ public void addFriendshipRequest(User owner) {
+ FriendshipRequest request = new FriendshipRequest();
+ request.setUser(this);
+ request.setFriend(owner);
+ this.friendshipRequests.add(request);
+ }
+
+ public void removeFriendshipRequest(FriendshipRequest request) {
+ this.friendshipRequests.remove(request);
+ }
+
+ public void addFriend(User friend) {
+ this.friends.add(friend);
+ }
+
+ public FriendshipRequest getFriendshipRequest(User friend, User user) {
+ for(FriendshipRequest req: this.friendshipRequests){
+ if(req.getUser().getLogin().equals(user.getLogin()) && req.getFriend().getLogin().equals(friend.getLogin())){
+ return req;
+ }
+ }
+ return null;
+ }
+
}
\ No newline at end of file
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/AlbumAction.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/AlbumAction.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/AlbumAction.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -16,7 +16,8 @@
@Stateful
@Name("albumAction")
public class AlbumAction implements IAlbumAction {
- @PersistenceContext(unitName = "realworld", type=PersistenceContextType.EXTENDED)
+ //@PersistenceContext(unitName = "entityManager", type=PersistenceContextType.EXTENDED)
+ @In(value="entityManager")
EntityManager em;
@In @Out
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IImageAction.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IImageAction.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IImageAction.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -33,4 +33,6 @@
public abstract void editComment(Comment comment);
+ public abstract void vote(Image image, Long value);
+
}
\ No newline at end of file
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IMessageAction.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IMessageAction.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IMessageAction.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -1,11 +1,13 @@
package org.richfaces.realworld.service;
+import javax.ejb.Local;
import javax.ejb.Remove;
import org.jboss.seam.annotations.Destroy;
import org.richfaces.realworld.domain.Comment;
import org.richfaces.realworld.domain.Message;
+@Local
public interface IMessageAction {
public abstract void sendMessage(Message message);
Added: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ISearchService.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ISearchService.java (rev 0)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ISearchService.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -0,0 +1,24 @@
+package org.richfaces.realworld.service;
+
+import java.util.List;
+
+import javax.ejb.Local;
+import javax.ejb.Remove;
+
+import org.jboss.seam.annotations.Destroy;
+import org.richfaces.realworld.domain.Image;
+@Local
+public interface ISearchService {
+
+ public abstract List<Image> searchImages(String searchPattern);
+
+ public List<Image> popularImages();
+
+ public List<Image> worstImages();
+
+ @Remove
+ public void remove();
+
+ @Destroy
+ public void destroy();
+}
\ No newline at end of file
Property changes on: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ISearchService.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IUserAction.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IUserAction.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/IUserAction.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -8,6 +8,7 @@
import javax.ejb.Remove;
import org.jboss.seam.annotations.Destroy;
+import org.richfaces.realworld.domain.FriendshipRequest;
import org.richfaces.realworld.domain.User;
@Local
@@ -24,7 +25,9 @@
public void updateUser(User user);
public void resetUser(User user);
- public List<User> getUsers(String suggest);
+ public List<String> getUsers(String suggest);
public long countNotReadedMessages(User user);
public void removeFromFriends(User owner, User removed);
+ public boolean friendExist(User user, User friend);
+ public void addFriend(User user, User friend, FriendshipRequest request);
}
\ No newline at end of file
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ImageAction.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ImageAction.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ImageAction.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -15,10 +15,10 @@
import org.richfaces.realworld.domain.Image;
import org.richfaces.realworld.domain.User;
-@Stateful
@Name("imageAction")
public class ImageAction implements IImageAction {
- @PersistenceContext(unitName = "realworld", type=PersistenceContextType.EXTENDED)
+ //@PersistenceContext(unitName = "entityManager", type=PersistenceContextType.EXTENDED)
+ @In(value="entityManager")
EntityManager em;
/* (non-Javadoc)
@@ -83,4 +83,15 @@
em.merge(comment);
em.flush();
}
+
+ public void vote(Image image, Long value) {
+ image = em.merge(image);
+ Long total = image.getRank().getTotal();
+ Long votes = image.getRank().getHits();
+ total += value;
+ votes++;
+ image.getRank().setHits(votes);
+ image.getRank().setTotal(total);
+ em.flush();
+ }
}
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/MessageAction.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/MessageAction.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/MessageAction.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -7,20 +7,32 @@
import javax.persistence.PersistenceContextType;
import org.jboss.seam.annotations.Destroy;
+import org.jboss.seam.annotations.In;
import org.jboss.seam.annotations.Name;
import org.richfaces.realworld.domain.Comment;
import org.richfaces.realworld.domain.Message;
+import org.richfaces.realworld.domain.User;
-@Stateful
@Name("messageAction")
public class MessageAction implements IMessageAction {
- @PersistenceContext(unitName = "realworld", type=PersistenceContextType.EXTENDED)
+ //@PersistenceContext(unitName = "entityManager", type=PersistenceContextType.EXTENDED)
+ @In(value="entityManager")
EntityManager em;
/* (non-Javadoc)
* @see org.richfaces.realworld.service.IMessageAction#sendMessage(org.richfaces.realworld.domain.Message)
*/
public void sendMessage(Message message){
+ if(message.getOwnerLogin() != null){
+ User user = (User)em.createQuery("from User u where u.login = :login")
+ .setParameter("login", message.getOwnerLogin())
+ .getSingleResult();
+ message.setOwner(user);
+ message.setOwnerLogin(null);
+ }
+ if(message.isFriendshipRequest()){
+ message.getAuthor().addFriendshipRequest(message.getOwner());
+ }
em.persist(message);
em.flush();
}
@@ -30,8 +42,8 @@
*/
public void deleteMessage(Message message){
message = em.merge(message);
+ em.remove(message);
message.getOwner().removeMessage(message);
- em.remove(message);
em.flush();
}
Added: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/SearchService.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/SearchService.java (rev 0)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/SearchService.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -0,0 +1,66 @@
+package org.richfaces.realworld.service;
+
+import java.io.Serializable;
+import java.util.List;
+
+import javax.ejb.Remove;
+import javax.ejb.Stateful;
+import javax.persistence.EntityManager;
+import javax.persistence.PersistenceContext;
+import javax.persistence.PersistenceContextType;
+
+import org.jboss.seam.annotations.Begin;
+import org.jboss.seam.annotations.Destroy;
+import org.jboss.seam.annotations.In;
+import org.jboss.seam.annotations.Name;
+import org.richfaces.realworld.domain.Image;
+
+@Name("searchService")
+public class SearchService implements ISearchService, Serializable
+ {
+
+ /**
+ *
+ */
+ private static final long serialVersionUID = -2750591521413940277L;
+ //@PersistenceContext(unitName = "entityManager", type=PersistenceContextType.EXTENDED)
+ @In(value="entityManager")
+ EntityManager em;
+
+ /* (non-Javadoc)
+ * @see org.richfaces.realworld.service.ISearchService#searchImages(java.lang.String)
+ */
+ @Begin(join=true)
+ public List<Image> searchImages(String searchPattern){
+ List<Image> images = em.createQuery("select i from MetaTag t join t.parent i where t.tag like:metatag and i.album.shared=true order by i.rank.total/i.rank.hits desc").setParameter("metatag", searchPattern+"%").getResultList();
+ return images;
+ }
+
+ @Begin(join=true)
+ public List<Image> popularImages(){
+ List<Image> images = em.createQuery("select i from Image i join i.rank r where i.album.shared=true order by r.total/r.hits desc").setMaxResults(10).getResultList();
+ return images;
+ }
+
+ @Begin(join=true)
+ public List<Image> worstImages(){
+ List<Image> images = em.createQuery("select i from Image i join i.rank r where i.album.shared=true order by r.total/r.hits asc").setMaxResults(10).getResultList();
+ return images;
+ }
+
+ /* (non-Javadoc)
+ * @see org.richfaces.realworld.service.IAlbumAction#remove()
+ */
+ @Remove
+ public void remove(){
+
+ }
+
+ /* (non-Javadoc)
+ * @see org.richfaces.realworld.service.IAlbumAction#destroy()
+ */
+ @Destroy
+ public void destroy(){
+
+ }
+}
Property changes on: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/SearchService.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/UserAction.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/UserAction.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/UserAction.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -21,14 +21,15 @@
import org.jboss.seam.annotations.Scope;
import org.richfaces.realworld.domain.Album;
import org.richfaces.realworld.domain.Comment;
+import org.richfaces.realworld.domain.FriendshipRequest;
import org.richfaces.realworld.domain.Image;
import org.richfaces.realworld.domain.User;
-@Stateful
@Name("userAction")
public class UserAction implements IUserAction {
- @PersistenceContext(unitName = "realworld", type=PersistenceContextType.EXTENDED)
+ //@PersistenceContext(unitName = "entityManager", type=PersistenceContextType.EXTENDED)
+ @In(value="entityManager")
EntityManager em;
@In(create = true, required = true) @Out
@@ -39,7 +40,6 @@
.setParameter("username", username)
.setParameter("password", password)
.getSingleResult();
- long result = countNotReadedMessages(user);
return user != null;
}
@@ -81,8 +81,8 @@
return true;
}
- public List<User> getUsers(String suggest) {
- List<User> users = em.createQuery("from User u where u.login like :login").setParameter("login", suggest + "%").setMaxResults(10).getResultList();
+ public List<String> getUsers(String suggest) {
+ List<String> users = em.createQuery("select u.login from User u where u.login like :login").setParameter("login", suggest + "%").setMaxResults(10).getResultList();
return users;
}
@@ -93,6 +93,17 @@
public void removeFromFriends(User owner, User removed) {
owner.removeFriend(removed);
- em.flush();
+ removed.removeFriend(owner);
}
+
+ public boolean friendExist(User user, User friend) {
+ Long result = (Long)em.createQuery("SELECT count(u) FROM User u JOIN u.friendshipRequests fr WHERE u.login=:login and fr.friend.login=:friend").setParameter("login", user.getLogin()).setParameter("friend", friend.getLogin()).getSingleResult();
+ return result > 0;
+ }
+
+ public void addFriend(User user, User friend, FriendshipRequest request) {
+ friend.removeFriendshipRequest(request);
+ user.addFriend(friend);
+ friend.addFriend(user);
+ }
}
\ No newline at end of file
Modified: trunk/test-applications/realworld/ejb/src/main/resources/META-INF/persistence.xml
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/resources/META-INF/persistence.xml 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/resources/META-INF/persistence.xml 2008-12-05 15:38:09 UTC (rev 11584)
@@ -5,21 +5,23 @@
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
version="1.0">
- <persistence-unit name="realworld">
+ <persistence-unit name="entityManager">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>java:/realWorldDatasource</jta-data-source>
- <!--<properties>
+ <properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
<property name="hibernate.hbm2ddl.auto" value="create-drop"/>
<property name="hibernate.show_sql" value="true"/>
<property name="hibernate.format_sql" value="true"/>
- </properties>-->
- <properties>
+ <property name="jboss.entity.manager.factory.jndi.name"
+ value="java:/realWorldEntityManager"/>
+ </properties>
+ <!--<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect"/>
<property name="hibernate.hbm2ddl.auto" value="create-drop"/>
<property name="hibernate.show_sql" value="true"/>
<property name="hibernate.format_sql" value="true"/>
- </properties>
+ </properties>-->
</persistence-unit>
</persistence>
Modified: trunk/test-applications/realworld/ejb/src/main/resources/import.sql
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/resources/import.sql 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/resources/import.sql 2008-12-05 15:38:09 UTC (rev 11584)
@@ -9,25 +9,25 @@
INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (6, 0, 'Album 3', 'Simple Album 3', false, 2);
INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (7, 0, 'Album 1', 'Simple Album', true, 3);
INSERT INTO Ranks(rank_id, total, hits) VALUES (1, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (2, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (3, 100, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (2, 200, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (3, 100, 31);
INSERT INTO Ranks(rank_id, total, hits) VALUES (4, 100, 21);
INSERT INTO Ranks(rank_id, total, hits) VALUES (5, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (6, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (7, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (8, 100, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (6, 100, 41);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (7, 100, 20);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (8, 55, 11);
INSERT INTO Ranks(rank_id, total, hits) VALUES (9, 100, 21);
INSERT INTO Ranks(rank_id, total, hits) VALUES (10, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (11, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (12, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (13, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (14, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (15, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (16, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (17, 100, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (11, 100, 25);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (12, 110, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (13, 100, 19);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (14, 101, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (15, 102, 17);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (16, 103, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (17, 104, 15);
INSERT INTO Ranks(rank_id, total, hits) VALUES (18, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (19, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (20, 100, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (19, 110, 13);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (20, 160, 21);
INSERT INTO Ranks(rank_id, total, hits) VALUES (21, 100, 21);
INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (1, 0, 'Picture 1', 'pic1.jpg', 'Just picture', true, '1985-01-08', 1, 1);
INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (2, 0, 'Picture 2', 'pic2.jpg', 'Just picture', true, '1985-01-08', 1, 2);
@@ -52,28 +52,30 @@
INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (21, 0, 'Picture 33', 'pic3.jpg', 'Just picture', true, '1985-01-08', 7, 21);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (1, 'Cool', 1);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (2, 'Cool2', 1);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (3, 'Cool', 2);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (3, 'richfaces', 2);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (4, 'Cool', 3);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (5, 'Cool', 4);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (5, 'theCool', 4);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (6, 'Cool', 5);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (7, 'Cool', 6);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (7, 'rich', 6);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (8, 'Cool', 7);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (9, 'Cool', 8);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (9, 'New year', 8);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (10, 'Cool', 9);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (11, 'Cool', 10);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (12, 'Cool', 11);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (12, 'Minsk', 11);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (13, 'Cool', 12);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (14, 'Cool', 13);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (14, 'Minsk', 13);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (15, 'Cool', 14);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (16, 'Cool', 15);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (17, 'Cool', 16);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (17, 'Minsk', 16);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (18, 'Cool', 17);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (19, 'Cool', 18);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (19, 'friend', 18);
INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (20, 'Cool', 19);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (21, 'Cool', 20);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (21, 'Cool2', 20);
INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (1, '1985-01-08', 'Hello I am user', 1, 2);
INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (2, '1985-01-08', 'Hello I am user2', 1, 3);
-INSERT INTO messages(message_id, date, message, author_id, owner_id, readed, theme) VALUES (1, '1985-01-08', 'Hello I am user', 2, 1, false, 'Hello, amarkhel');
+INSERT INTO messages(message_id, date, message, author_id, owner_id, readed, theme, friendshipRequest) VALUES (1, '1985-01-08', 'Hello I am user', 2, 1, false, 'Hello, amarkhel', false);
+INSERT INTO messages(message_id, date, message, author_id, owner_id, readed, theme, friendshipRequest) VALUES (2, '1985-01-08', 'Please, add meto your friends', 3, 1, false, 'Request for friendship', true);
INSERT INTO shared_albums(album_id, user_id) VALUES(4, 1);
INSERT INTO shared_albums(album_id, user_id) VALUES(7, 1);
-INSERT INTO user_friends(user1_id, user2_id) VALUES(1, 2);
\ No newline at end of file
+INSERT INTO user_friends(user1_id, user2_id) VALUES(1, 2);
+INSERT INTO friendship_requests(REQUEST_ID, USER_ID, FRIEND_ID) VALUES(1, 3, 1);
\ No newline at end of file
Modified: trunk/test-applications/realworld/ejb/src/main/resources/realworld-ds.xml
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/resources/realworld-ds.xml 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/ejb/src/main/resources/realworld-ds.xml 2008-12-05 15:38:09 UTC (rev 11584)
@@ -7,14 +7,14 @@
<datasources>
<local-tx-datasource>
<jndi-name>realWorldDatasource</jndi-name>
- <connection-url>jdbc:postgresql://localhost:5432/realworld</connection-url>
+ <!-- <connection-url>jdbc:postgresql://localhost:5432/realworld</connection-url>
<driver-class>org.postgresql.Driver</driver-class>
<user-name>realworld</user-name>
- <password>realworld</password>
- <!--<connection-url>jdbc:hsqldb:.</connection-url>
+ <password>realworld</password>-->
+ <connection-url>jdbc:hsqldb:.</connection-url>
<driver-class>org.hsqldb.jdbcDriver</driver-class>
<user-name>sa</user-name>
- <password></password>-->
+ <password></password>
</local-tx-datasource>
</datasources>
Modified: trunk/test-applications/realworld/pom.xml
===================================================================
--- trunk/test-applications/realworld/pom.xml 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/pom.xml 2008-12-05 15:38:09 UTC (rev 11584)
@@ -9,13 +9,13 @@
<parent>
<groupId>org.jboss.seam</groupId>
<artifactId>root</artifactId>
- <version>2.0.1.GA</version>
+ <version>2.1.0.SP1</version>
</parent>
<properties>
<projectName>realworld</projectName>
<richfacesVersion>3.3.0-SNAPSHOT</richfacesVersion>
- <seamVersion>2.0.1.GA</seamVersion>
+ <seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
<droolsVersion>4.0.0</droolsVersion>
@@ -39,7 +39,6 @@
<module>ejb</module>
<module>web</module>
</modules>
-
<build>
<plugins>
<plugin>
Modified: trunk/test-applications/realworld/web/META-INF/MANIFEST.MF
===================================================================
--- trunk/test-applications/realworld/web/META-INF/MANIFEST.MF 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/web/META-INF/MANIFEST.MF 2008-12-05 15:38:09 UTC (rev 11584)
@@ -1,7 +1,8 @@
Manifest-Version: 1.0
Class-Path: avalon-framework-4.1.3.jar commons-beanutils-1.7.0.jar com
- mons-digester-1.8.jar commons-logging-1.1.jar jboss-seam-debug-2.0.1.
- GA.jar jboss-seam-remoting-2.0.1.GA.jar jboss-seam-ui-2.0.1.GA.jar js
- f-facelets-1.1.14.jar log4j-1.2.14.jar logkit-1.0.1.jar richfaces-imp
- l-3.3.0-SNAPSHOT.jar richfaces-ui-3.3.0-SNAPSHOT.jar
+ mons-digester-1.8.jar commons-logging-1.1.jar jboss-seam-debug-2.1.0.
+ SP1.jar jboss-seam-jul-2.1.0.SP1.jar jboss-seam-remoting-2.1.0.SP1.ja
+ r jboss-seam-ui-2.1.0.SP1.jar jsf-facelets-1.1.14.jar log4j-1.2.14.ja
+ r logkit-1.0.1.jar richfaces-impl-3.3.0-SNAPSHOT.jar richfaces-ui-3.3
+ .0-SNAPSHOT.jar
Modified: trunk/test-applications/realworld/web/pom.xml
===================================================================
--- trunk/test-applications/realworld/web/pom.xml 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/web/pom.xml 2008-12-05 15:38:09 UTC (rev 11584)
@@ -35,7 +35,7 @@
<version>3.0.0.ga</version>
<scope>provided</scope>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
<version>3.3.0.ga</version>
Modified: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/AvatarUpload.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/AvatarUpload.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/AvatarUpload.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -7,6 +7,7 @@
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
+import java.io.Serializable;
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.In;
@@ -20,7 +21,7 @@
@Name("avatarUpload")
@Scope(ScopeType.PAGE)
-public class AvatarUpload {
+public class AvatarUpload implements Serializable{
@In(create=true)
private FileManager fileManager;
Deleted: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileTest.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileTest.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileTest.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -1,104 +0,0 @@
-package org.richfaces.realworld.fileupload;
-
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.IOException;
-
-public class FileTest {
-
- private String uploadRoot = "F:/Upload/";
-
- public String getUploadRoot() {
- return uploadRoot;
- }
-
- private String getFileSeparator() {
- return System.getProperty("file.separator");
- }
-
- public boolean isDirectoryPresent(String directory) {
- String fullPath = getAbsolutePath(directory);
- File file = new File(fullPath);
- return file.exists() && file.isDirectory();
- }
-
- public void deleteDirectory(String directory) {
- String fullPath = getAbsolutePath(directory);
- File file = new File(fullPath);
- if(file.exists()){
- for(String f :file.list()){
- File temp = new File(fullPath+getFileSeparator()+f);
- temp.delete();
- }
- file.delete();
- }
- }
-
- public void renameDirectory(String directoryOld, String directoryNew) throws Exception {
- String fullPath = getAbsolutePath(directoryOld);
- File fileOld = new File(fullPath);
- File fileNew = new File(getUploadRoot() + directoryNew);
- createDirectoryIfNotExist(directoryNew);
- if(fileNew.exists())
- if( fileNew.isDirectory() ){
- throw new Exception("exc");
- }else{
- fileNew.delete();
- }
- fileOld.renameTo(fileNew);
- }
-
- public void addDirectory(String directory) {
- String fullPath = getAbsolutePath(directory);
- File file = new File(fullPath);
- file.mkdirs();
- }
-
- public void addImage(String fileName, byte[] data) throws IOException {
- createDirectoryIfNotExist(fileName);
- FileOutputStream b = new FileOutputStream(getUploadRoot() + fileName);
- b.write(data);
- b.close();
- }
-
- public void deleteImage(String fileName) {
- String fullPath = getAbsolutePath(fileName);
- File file = new File(fullPath);
- if(file.exists()){
- file.delete();
- }
- }
-
- public void renameImage(String fileNameOld, String fileNameNew) {
- createDirectoryIfNotExist(fileNameNew);
- String fullPath = getAbsolutePath(fileNameOld);
- File fileOld = new File(fullPath);
- File fileNew = new File(getAbsolutePath(fileNameNew));
- if(fileNew.exists()){
- fileNew.delete();
- }
- fileOld.renameTo(fileNew);
- }
-
- private void createDirectoryIfNotExist(String fileNameNew) {
- int lastIndexOf = fileNameNew.lastIndexOf(getFileSeparator());
- if(lastIndexOf > 0){
- String directory = fileNameNew.substring(0, lastIndexOf);
- File file = new File(getUploadRoot()+directory);
- if(!file.exists()){
- file.mkdirs();
- }
- }
- }
-
- public boolean isImagePresent(String fileName) {
- String fullPath = getAbsolutePath(fileName);
- File file = new File(fullPath);
- return file.exists() && !file.isDirectory();
- }
-
- private String getAbsolutePath(String fileName) {
- return getUploadRoot() + fileName;
- }
-
-}
Deleted: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileTestTest.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileTestTest.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileTestTest.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -1,129 +0,0 @@
-package org.richfaces.realworld.fileupload;
-
-import java.io.IOException;
-
-import junit.framework.TestCase;
-
-public class FileTestTest extends TestCase {
-
- FileTest fileManager = new FileTest();
-
- private byte[] image = new byte[40];
-
- public void testIsDirectoryPresent() {
- fileManager.addDirectory("amarkhel");
- assertEquals(fileManager.isDirectoryPresent("amarkhel"), true);
- assertEquals(fileManager.isDirectoryPresent("amarkhel2"), false);
- fileManager.deleteDirectory("amarkhel");
- }
-
- public void testDeleteDirectory() {
- fileManager.addDirectory("amarkhel");
- assertEquals(fileManager.isDirectoryPresent("amarkhel"), true);
- fileManager.deleteDirectory("amarkhel");
- assertEquals(fileManager.isDirectoryPresent("amarkhel"), false);
- }
-
- public void testRenameDirectory() throws Exception {
- fileManager.addDirectory("amarkhel");
- assertEquals(fileManager.isDirectoryPresent("amarkhel"), true);
- fileManager.renameDirectory("amarkhel", "amarkhel2");
- assertEquals(fileManager.isDirectoryPresent("amarkhel"), false);
- assertEquals(fileManager.isDirectoryPresent("amarkhel2"), true);
- fileManager.deleteDirectory("amarkhel2");
- }
-
- public void testRenameDirectory2(){
- fileManager.addDirectory("amarkhel");
- fileManager.addDirectory("amarkhel2");
- assertEquals(fileManager.isDirectoryPresent("amarkhel"), true);
- try {
- fileManager.renameDirectory("amarkhel", "amarkhel2");
- } catch (Exception e) {
- assertTrue(true);
- }
-
- assertEquals(fileManager.isDirectoryPresent("amarkhel"), true);
- assertEquals(fileManager.isDirectoryPresent("amarkhel2"), true);
- fileManager.deleteDirectory("amarkhel");
- fileManager.deleteDirectory("amarkhel2");
- }
-
- public void testRenameDirectory3() throws Exception {
- fileManager.addDirectory("a"+System.getProperty("file.separator")+"amarkhel");
- assertEquals(fileManager.isDirectoryPresent("a"+System.getProperty("file.separator")+"amarkhel"), true);
- fileManager.renameDirectory("a"+System.getProperty("file.separator")+"amarkhel", "b"+System.getProperty("file.separator")+"amarkhel");
- assertEquals(fileManager.isDirectoryPresent("a"+System.getProperty("file.separator")+"amarkhel"), false);
- assertEquals(fileManager.isDirectoryPresent("b"+System.getProperty("file.separator")+"amarkhel"), true);
- fileManager.deleteDirectory("b"+System.getProperty("file.separator")+"amarkhel");
- }
-
- public void testRenameDirectory4() throws Exception {
- fileManager.addDirectory("a"+System.getProperty("file.separator")+"a"+System.getProperty("file.separator")+"amarkhel");
- assertEquals(fileManager.isDirectoryPresent("a"+System.getProperty("file.separator")+"a"+System.getProperty("file.separator")+"amarkhel"), true);
- fileManager.renameDirectory("a"+System.getProperty("file.separator")+"a"+System.getProperty("file.separator")+"amarkhel", "b"+System.getProperty("file.separator")+"b"+System.getProperty("file.separator")+"amarkhel");
- assertEquals(fileManager.isDirectoryPresent("a"+System.getProperty("file.separator")+"a"+System.getProperty("file.separator")+"amarkhel"), false);
- assertEquals(fileManager.isDirectoryPresent("b"+System.getProperty("file.separator")+"b"+System.getProperty("file.separator")+"amarkhel"), true);
- fileManager.deleteDirectory("b"+System.getProperty("file.separator")+"b"+System.getProperty("file.separator")+"amarkhel");
- }
-
- public void testAddDirectory() {
- assertEquals(fileManager.isDirectoryPresent("amarkhel"), false);
- fileManager.addDirectory("amarkhel");
- assertEquals(fileManager.isDirectoryPresent("amarkhel"), true);
- fileManager.deleteDirectory("amarkhel");
- }
-
- public void testAddDirectory2() {
- assertEquals(fileManager.isDirectoryPresent("a"+System.getProperty("file.separator")+"amarkhel"), false);
- fileManager.addDirectory("a"+System.getProperty("file.separator")+"amarkhel");
- assertEquals(fileManager.isDirectoryPresent("a"+System.getProperty("file.separator")+"amarkhel"), true);
- fileManager.deleteDirectory("a"+System.getProperty("file.separator")+"amarkhel");
- }
-
- public void testAddImage() throws IOException {
- assertEquals(fileManager.isImagePresent("amarkhel.gif"), false);
- fileManager.addImage("amarkhel.gif", image);
- assertEquals(fileManager.isImagePresent("amarkhel.gif"), true);
- fileManager.deleteImage("amarkhel.gif");
- }
-
- public void testDeleteImage() throws IOException {
- fileManager.addImage("amarkhel.gif", image);
- assertEquals(fileManager.isImagePresent("amarkhel.gif"), true);
- fileManager.deleteImage("amarkhel.gif");
- assertEquals(fileManager.isImagePresent("amarkhel.gif"), false);
- }
-
- public void testRenameImage() throws IOException {
- fileManager.addImage("amarkhel.gif", image);
- assertEquals(fileManager.isImagePresent("amarkhel.gif"), true);
- fileManager.renameImage("amarkhel.gif", "amarkhel2.gif");
- assertEquals(fileManager.isImagePresent("amarkhel.gif"), false);
- assertEquals(fileManager.isImagePresent("amarkhel2.gif"), true);
- fileManager.deleteImage("amarkhel2.gif");
- }
-
- public void testRenameImage2() throws IOException {
- fileManager.addImage("a"+System.getProperty("file.separator")+"amarkhel.gif", image);
- assertEquals(fileManager.isImagePresent("a"+System.getProperty("file.separator")+"amarkhel.gif"), true);
- fileManager.renameImage("a"+System.getProperty("file.separator")+"amarkhel.gif", "b"+System.getProperty("file.separator")+"amarkhel2.gif");
- assertEquals(fileManager.isImagePresent("a"+System.getProperty("file.separator")+"amarkhel.gif"), false);
- assertEquals(fileManager.isImagePresent("b"+System.getProperty("file.separator")+"amarkhel2.gif"), true);
- fileManager.deleteImage("b"+System.getProperty("file.separator")+"amarkhel2.gif");
- fileManager.deleteDirectory("b");
- fileManager.deleteDirectory("a");
- }
-
- public void testIsImagePresent() throws IOException {
- fileManager.addImage("amarkhel.gif", image);
- assertEquals(fileManager.isImagePresent("amarkhel.gif"), true);
- assertEquals(fileManager.isImagePresent("amarkhel3.gif"), false);
- fileManager.deleteImage("amarkhel.gif");
- fileManager.addImage("am"+System.getProperty("file.separator")+"amarkhel.gif", image);
- assertEquals(fileManager.isImagePresent("am"+System.getProperty("file.separator")+"amarkhel.gif"), true);
- fileManager.deleteImage("am"+System.getProperty("file.separator")+"amarkhel.gif");
- fileManager.deleteDirectory("am");
- }
-
-}
Modified: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileUploadBean.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileUploadBean.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/fileupload/FileUploadBean.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -23,6 +23,7 @@
import java.io.IOException;
import java.io.OutputStream;
+import java.io.Serializable;
import java.util.ArrayList;
import java.util.Date;
@@ -47,7 +48,7 @@
@Name("fileUploadBean")
@Scope(ScopeType.SESSION)
@Synchronized(timeout=2000)
-public class FileUploadBean {
+public class FileUploadBean implements Serializable{
@In @Out
private User user;
Added: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBean.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBean.java (rev 0)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBean.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -0,0 +1,182 @@
+package org.richfaces.realworld.search;
+
+import java.io.BufferedInputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileNotFoundException;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.io.Serializable;
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+
+import javax.faces.model.SelectItem;
+
+import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.AutoCreate;
+import org.jboss.seam.annotations.In;
+import org.jboss.seam.annotations.Name;
+import org.jboss.seam.annotations.Out;
+import org.jboss.seam.annotations.Scope;
+import org.richfaces.component.UIInputNumberSpinner;
+import org.richfaces.realworld.domain.Image;
+import org.richfaces.realworld.fileupload.FileManager;
+import org.richfaces.realworld.service.ISearchService;
+
+@Name("searchBean")
+public class SearchBean implements Serializable {
+
+ /**
+ *
+ */
+ private static final long serialVersionUID = 5071655218132021316L;
+
+ @In(required=false)
+ private SearchBeanHelper helper;
+
+ @In(create=true)
+ private ISearchService searchService;
+
+ @In(create=true)
+ private FileManager fileManager;
+
+ private String searchPattern;
+
+ private Long spinnerChoice;
+
+ private Long dateChoice;
+
+ private Long votesChoice;
+
+ private Long numberOfVotes;
+
+ private Date date;
+
+ private List<Image> findedImages = new ArrayList<Image>();
+
+ public List<SelectItem> getItems() {
+ List<SelectItem> list = new ArrayList<SelectItem>(4);
+ list.add(new SelectItem(Long.valueOf(1L), "More"));
+ list.add(new SelectItem(Long.valueOf(2L), "Less"));
+ list.add(new SelectItem(Long.valueOf(3L), "Equals"));
+ return list;
+ }
+
+ public synchronized void paint(OutputStream stream, Object object) throws IOException {
+ Image painted = (Image)object;
+
+ File image = fileManager.getImage(painted.getAlbum().getOwner().getLogin() + fileManager.getFileSeparator() + painted.getAlbum().getName()+ fileManager.getFileSeparator() + painted.getPath());
+ InputStream paintData = null;
+ byte[] data = new byte[(int)image.length() - 1];
+ FileInputStream fileInputStream = null;
+ BufferedInputStream bufferedInputStream = null;
+ if (image != null) {
+ try {
+ fileInputStream = new FileInputStream(image);
+ bufferedInputStream = new BufferedInputStream(fileInputStream);
+ paintData = bufferedInputStream;
+ paintData.read(data);
+ } catch (FileNotFoundException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+ catch (IOException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }finally{
+ try {
+ fileInputStream.close();
+ } catch (IOException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+ try {
+ bufferedInputStream.close();
+ } catch (IOException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+ try {
+ paintData.close();
+ } catch (IOException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+ }
+ }
+ stream.write(data);
+ }
+
+ public List<Image> searchImages(){
+ findedImages = searchService.searchImages(this.searchPattern);
+ return findedImages;
+ }
+
+ public List<Image> popularImages(){
+ findedImages = searchService.popularImages();
+ return findedImages;
+ }
+
+ public List<Image> worstImages(){
+ findedImages = searchService.worstImages();
+ return findedImages;
+ }
+
+ public String getSearchPattern() {
+ return searchPattern;
+ }
+
+ public void setSearchPattern(String searchPattern) {
+ this.searchPattern = searchPattern;
+ }
+
+ public Long getSpinnerChoice() {
+ return spinnerChoice;
+ }
+
+ public void setSpinnerChoice(Long spinnerChoice) {
+ this.spinnerChoice = spinnerChoice;
+ }
+
+ public Long getDateChoice() {
+ return dateChoice;
+ }
+
+ public void setDateChoice(Long dateChoice) {
+ this.dateChoice = dateChoice;
+ }
+
+ public Long getVotesChoice() {
+ return votesChoice;
+ }
+
+ public void setVotesChoice(Long votesChoice) {
+ this.votesChoice = votesChoice;
+ }
+
+ public Long getNumberOfVotes() {
+ return numberOfVotes;
+ }
+
+ public void setNumberOfVotes(Long numberOfVotes) {
+ this.numberOfVotes = numberOfVotes;
+ }
+
+ public Date getDate() {
+ return date;
+ }
+
+ public void setDate(Date date) {
+ this.date = date;
+ }
+
+ public List<Image> getFindedImages() {
+ return findedImages;
+ }
+
+ public void setFindedImages(List<Image> findedImages) {
+ this.findedImages = findedImages;
+ }
+}
Property changes on: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBean.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Added: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBeanHelper.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBeanHelper.java (rev 0)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBeanHelper.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -0,0 +1,22 @@
+package org.richfaces.realworld.search;
+
+import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.Name;
+import org.jboss.seam.annotations.Scope;
+import org.richfaces.component.UIInputNumberSpinner;
+
+@Name("helper")
+(a)Scope(ScopeType.EVENT)
+public class SearchBeanHelper {
+
+ private UIInputNumberSpinner inputSpinner;
+
+ public UIInputNumberSpinner getInputSpinner() {
+ return inputSpinner;
+ }
+
+ public void setInputSpinner(UIInputNumberSpinner inputSpinner) {
+ this.inputSpinner = inputSpinner;
+ }
+
+}
Property changes on: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBeanHelper.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Modified: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/session/Authenticator.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/session/Authenticator.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/session/Authenticator.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -6,6 +6,7 @@
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
+import org.jboss.seam.annotations.Begin;
import org.jboss.seam.annotations.In;
import org.jboss.seam.annotations.Logger;
import org.jboss.seam.annotations.Name;
@@ -39,6 +40,7 @@
/* (non-Javadoc)
* @see org.richfaces.realworld.service.IAuthenticator#authenticate()
*/
+ @Begin
public boolean authenticate()
{
log.info("authenticating #0", identity.getUsername());
Modified: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/tree/TreeActionManager.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/tree/TreeActionManager.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/tree/TreeActionManager.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -1,5 +1,6 @@
package org.richfaces.realworld.tree;
+import java.io.Serializable;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@@ -13,6 +14,7 @@
import org.jboss.seam.annotations.Scope;
import org.richfaces.realworld.domain.Album;
import org.richfaces.realworld.domain.Comment;
+import org.richfaces.realworld.domain.FriendshipRequest;
import org.richfaces.realworld.domain.Image;
import org.richfaces.realworld.domain.Message;
import org.richfaces.realworld.domain.User;
@@ -21,20 +23,22 @@
import org.richfaces.realworld.service.IImageAction;
import org.richfaces.realworld.service.IMessageAction;
import org.richfaces.realworld.service.IUserAction;
+import org.richfaces.realworld.util.RatingHelper;
@Name("treeActionManager")
@Scope(ScopeType.PAGE)
-public class TreeActionManager {
+public class TreeActionManager implements Serializable{
@In
private User user;
- private long countUnreadedMessages;
-
@In(create=true, required=true)
private IAlbumAction albumAction;
@In(create=true, required=true)
+ private RatingHelper ratingHelper;
+
+ @In(create=true, required=true)
private IMessageAction messageAction;
@In(create=true, required=true)
@@ -65,8 +69,8 @@
}
- public List<User> availableUsers(Object suggest){
- List<User> suggestions = userAction.getUsers((String)suggest);
+ public List<String> availableUserLogins(Object suggest){
+ List<String> suggestions = userAction.getUsers((String)suggest);
return suggestions;
}
@@ -161,11 +165,45 @@
messageAction.sendMessage(message);
}
- public long getCountUnreadedMessages() {
- return userAction.countNotReadedMessages(user);
+ public Long getCountUnreadedMessages() {
+ Long count = userAction.countNotReadedMessages(user);
+ return count!= null? count:0;
}
public void removeFromFriends(User owner, User removed){
userAction.removeFromFriends(owner, removed);
+ Message message = new Message();
+ message.setAuthor(user);
+ message.setDate(new Date());
+ message.setOwner(removed);
+ message.setFriendshipRequest(false);
+ message.setReaded(false);
+ message.setMessage("You are were removed from friends of "+ user.getLogin());
+ message.setTheme("You are were removed from friends");
+ messageAction.sendMessage(message);
}
+
+ public void addToFriends(User friend){
+ FriendshipRequest request = friend.getFriendshipRequest(user, friend);
+ if(request != null){
+ if(!userAction.friendExist(user, friend)){
+ userAction.addFriend(user, friend, request);
+ Message message = new Message();
+ message.setAuthor(user);
+ message.setDate(new Date());
+ message.setOwner(friend);
+ message.setFriendshipRequest(false);
+ message.setReaded(false);
+ message.setMessage("You are were added to friends by User "+ user.getLogin());
+ message.setTheme("You are were added to friends");
+ messageAction.sendMessage(message);
+ }
+ }/*else{
+ throw new Exception("This user won't be your friend!");
+ }*/
+ }
+
+ public void vote(Image image){
+ imageAction.vote(image, (Long)Long.valueOf(ratingHelper.getInputSlider().getValue().toString()));
+ }
}
Modified: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/tree/TreeSelectionManager.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/tree/TreeSelectionManager.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/tree/TreeSelectionManager.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -7,6 +7,7 @@
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
+import java.io.Serializable;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
@@ -46,7 +47,7 @@
@Name("treeSelectionManager")
@Synchronized(timeout=2000)
@Scope(ScopeType.SESSION)
-public class TreeSelectionManager {
+public class TreeSelectionManager implements Serializable{
private static final FacesContext FacesContext = null;
Modified: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ModalPanelHelper.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ModalPanelHelper.java 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ModalPanelHelper.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -1,5 +1,6 @@
package org.richfaces.realworld.util;
+import java.io.Serializable;
import java.util.Date;
import javax.faces.event.ActionEvent;
@@ -18,7 +19,7 @@
@Name("modalPanelHelper")
@Scope(ScopeType.SESSION)
-public class ModalPanelHelper {
+public class ModalPanelHelper implements Serializable{
private String caption;
@@ -105,6 +106,7 @@
public void initMessage(boolean sendRequired, Message message){
this.sendRequired = sendRequired;
this.message = message;
+ this.message.setReaded(true);
this.searchRequired = false;
}
@@ -130,6 +132,19 @@
this.searchRequired = false;
}
+ public void initModalPanelData( String actionName, boolean sendRequired, User owner, String theme, String message, boolean friendshipRequest){
+ this.actionName = actionName;
+ this.sendRequired = sendRequired;
+ this.message = new Message();
+ this.message.setAuthor(user);
+ this.message.setOwner(owner);
+ this.message.setReaded(false);
+ this.message.setTheme(theme);
+ this.message.setMessage(message);
+ this.message.setFriendshipRequest(friendshipRequest);
+ this.searchRequired = false;
+ }
+
public void initModalPanelData( String actionName, String caption, Comment comment, User user, Image image){
this.caption = caption;
this.actionName = actionName;
Added: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/RatingHelper.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/RatingHelper.java (rev 0)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/RatingHelper.java 2008-12-05 15:38:09 UTC (rev 11584)
@@ -0,0 +1,24 @@
+package org.richfaces.realworld.util;
+
+import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.AutoCreate;
+import org.jboss.seam.annotations.In;
+import org.jboss.seam.annotations.Name;
+import org.jboss.seam.annotations.Scope;
+import org.richfaces.component.UIInputNumberSlider;
+import org.richfaces.realworld.domain.Image;
+import org.richfaces.realworld.service.IImageAction;
+
+@Name("ratingHelper")
+public class RatingHelper {
+
+ private UIInputNumberSlider inputSlider;
+
+ public UIInputNumberSlider getInputSlider() {
+ return inputSlider;
+ }
+
+ public void setInputSlider(UIInputNumberSlider inputSlider) {
+ this.inputSlider = inputSlider;
+ }
+}
Property changes on: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/RatingHelper.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Modified: trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/components.xml
===================================================================
--- trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/components.xml 2008-12-05 15:26:04 UTC (rev 11583)
+++ trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/components.xml 2008-12-05 15:38:09 UTC (rev 11584)
@@ -9,33 +9,30 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:transaction="http://jboss.com/products/seam/transaction"
xsi:schemaLocation=
- "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.0.xsd
- http://jboss.com/products/seam/transaction http://jboss.com/products/seam/transaction-2.0.xsd
- http://jboss.com/products/seam/persistence http://jboss.com/products/seam/persistence-2.0.xsd
- http://jboss.com/products/seam/drools http://jboss.com/products/seam/drools-2.0.xsd
- http://jboss.com/products/seam/bpm http://jboss.com/products/seam/bpm-2.0.xsd
- http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.0.xsd
- http://jboss.com/products/seam/mail http://jboss.com/products/seam/mail-2.0.xsd
- http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.0.xsd">
+ "http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.1.0.xsd
+ http://jboss.com/products/seam/transaction http://jboss.com/products/seam/transaction-2.1.0.xsd
+ http://jboss.com/products/seam/persistence http://jboss.com/products/seam/persistence-2.1.0.xsd
+ http://jboss.com/products/seam/drools http://jboss.com/products/seam/drools-2.1.0.xsd
+ http://jboss.com/products/seam/bpm http://jboss.com/products/seam/bpm-2.1.0.xsd
+ http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.1.0.xsd
+ http://jboss.com/products/seam/mail http://jboss.com/products/seam/mail-2.1.0.xsd
+ http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.1.0.xsd">
<core:init debug="true" jndi-pattern="@jndiPattern@"/>
<core:manager concurrent-request-timeout="500"
conversation-timeout="120000"
conversation-id-parameter="cid"/>
-
-<drools:rule-base name="securityRules">
- <drools:rule-files>
- <value>/security.drl</value>
- </drools:rule-files>
- </drools:rule-base>
-
- <security:identity security-rules="#{securityRules}" authenticate-method="#{authenticator.authenticate}"/>
+ <persistence:managed-persistence-context name="entityManager"
+ auto-create="true"
+ persistence-unit-jndi-name="java:/realWorldEntityManager"/>
+ <transaction:ejb-transaction />
+ <security:identity authenticate-method="#{authenticator.authenticate}"/>
<event type="org.jboss.seam.security.notLoggedIn">
- <action execute="#{redirect.captureCurrentView}"/>
- </event>
- <event type="org.jboss.seam.security.loginSuccessful">
- <action execute="#{redirect.returnToCapturedView}"/>
- </event>
-
+ <action execute="#{redirect.captureCurrentView}"/>
+ <action execute="#{identity.tryLogin()}"/>
+ </event>
+ <event type="org.jboss.seam.security.loginSuccessful">
+ <action execute="#{redirect.returnToCapturedView}"/>
+ </event>
</components>
Modified: trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/tags/templates/message.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld/web/src/main/webapp/imagePreview.xhtml
===================================================================
(Binary files differ)
Added: trunk/test-applications/realworld/web/src/main/webapp/img/Thumbs.db
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/web/src/main/webapp/img/Thumbs.db
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/test-applications/realworld/web/src/main/webapp/layout/menu.xhtml
===================================================================
(Binary files differ)
Added: trunk/test-applications/realworld/web/src/main/webapp/layout/menuShared.xhtml
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/web/src/main/webapp/layout/menuShared.xhtml
___________________________________________________________________
Name: svn:mime-type
+ application/xhtml+xml
Modified: trunk/test-applications/realworld/web/src/main/webapp/main.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld/web/src/main/webapp/navigation.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld/web/src/main/webapp/readMessages.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld/web/src/main/webapp/register.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld/web/src/main/webapp/search.xhtml
===================================================================
(Binary files differ)
Added: trunk/test-applications/realworld/web/src/main/webapp/sharedAlbum.xhtml
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/web/src/main/webapp/sharedAlbum.xhtml
___________________________________________________________________
Name: svn:mime-type
+ application/xhtml+xml
17 years, 6 months