JBoss Rich Faces SVN: r13311 - trunk/ui/colorPicker/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2009-03-30 18:48:22 -0400 (Mon, 30 Mar 2009)
New Revision: 13311
Modified:
trunk/ui/colorPicker/src/main/config/component/colorPicker.xml
Log:
https://jira.jboss.org/jira/browse/RF-6643 - requiredMessage, and required attributes were added
Modified: trunk/ui/colorPicker/src/main/config/component/colorPicker.xml
===================================================================
--- trunk/ui/colorPicker/src/main/config/component/colorPicker.xml 2009-03-30 19:51:25 UTC (rev 13310)
+++ trunk/ui/colorPicker/src/main/config/component/colorPicker.xml 2009-03-30 22:48:22 UTC (rev 13311)
@@ -69,16 +69,6 @@
</description>
</property>
<property hidden="true">
- <name>required</name>
- <classname>boolean</classname>
- <description>If "true", this component is checked for non-empty input</description>
- </property>
- <property hidden="true">
- <name>requiredMessage</name>
- <classname>java.lang.String</classname>
- <description>A ValueExpression enabled attribute that, if present, will be used as the text of the validation message for the "required" facility, if the "required" facility is used</description>
- </property>
- <property hidden="true">
<name>localValueSet</name>
<classname>boolean</classname>
<description>localValueSet</description>
15 years, 9 months
JBoss Rich Faces SVN: r13310 - in trunk/test-applications/seleniumTest/richfaces/src: main/webapp/WEB-INF and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2009-03-30 15:51:25 -0400 (Mon, 30 Mar 2009)
New Revision: 13310
Added:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/AjaxPageBean.java
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/ajaxPage/
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/ajaxPage/ajaxPageAutoTest.xhtml
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/ajaxPage/ajaxPageTest.xhtml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/AjaxPageTest.java
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml
Log:
https://jira.jboss.org/jira/browse/RF-6330
Added: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/AjaxPageBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/AjaxPageBean.java (rev 0)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/AjaxPageBean.java 2009-03-30 19:51:25 UTC (rev 13310)
@@ -0,0 +1,53 @@
+package org.ajax4jsf.bean;
+
+import java.util.Date;
+
+import org.ajax4jsf.event.AjaxEvent;
+
+public class AjaxPageBean {
+
+ private String value = "value";
+
+ /**
+ * Gets value of value field.
+ * @return value of value field
+ */
+ public String getValue() {
+ return value;
+ }
+
+ /**
+ * Set a new value for value field.
+ * @param value a new value for value field
+ */
+ public void setValue(String value) {
+ this.value = value;
+ }
+
+ private String status = "";
+
+ /**
+ * Gets value of status field.
+ * @return value of status field
+ */
+ public String getStatus() {
+ return status;
+ }
+
+ /**
+ * Set a new value for status field.
+ * @param status a new value for status field
+ */
+ public void setStatus(String status) {
+ this.status = status;
+ }
+
+ public String getTime() {
+ return String.valueOf(new Date().getTime());
+ }
+
+ public void ajaxListener(AjaxEvent event) {
+ setStatus("AjaxEvent");
+ }
+
+}
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/AjaxPageBean.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml 2009-03-30 19:26:22 UTC (rev 13309)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/webapp/WEB-INF/faces-config.xml 2009-03-30 19:51:25 UTC (rev 13310)
@@ -378,6 +378,11 @@
<managed-bean-name>tooltipBean</managed-bean-name>
<managed-bean-class>org.ajax4jsf.bean.TooltipBean</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
+ </managed-bean>
+ <managed-bean>
+ <managed-bean-name>pageBean</managed-bean-name>
+ <managed-bean-class>org.ajax4jsf.bean.AjaxPageBean</managed-bean-class>
+ <managed-bean-scope>request</managed-bean-scope>
</managed-bean>
<navigation-rule>
<from-view-id>/pages/ajaxInclude/step1.xhtml</from-view-id>
Added: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/ajaxPage/ajaxPageAutoTest.xhtml
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/ajaxPage/ajaxPageAutoTest.xhtml
___________________________________________________________________
Name: svn:mime-type
+ application/xhtml+xml
Added: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/ajaxPage/ajaxPageTest.xhtml
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/ajaxPage/ajaxPageTest.xhtml
___________________________________________________________________
Name: svn:mime-type
+ application/xhtml+xml
Added: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/AjaxPageTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/AjaxPageTest.java (rev 0)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/AjaxPageTest.java 2009-03-30 19:51:25 UTC (rev 13310)
@@ -0,0 +1,137 @@
+package org.richfaces.testng;
+
+import org.ajax4jsf.template.Template;
+import org.richfaces.AutoTester;
+import org.richfaces.SeleniumTestBase;
+import org.richfaces.AutoTester.TestSetupEntry;
+import org.testng.Assert;
+import org.testng.annotations.Test;
+
+public class AjaxPageTest extends SeleniumTestBase {
+
+ private final static String TIMESTAMP_ID = "form:timestamp";
+
+ private final static String STATUS_ID = "form:status";
+
+ private final static String INPUT_ID = "form:input";
+
+ private final static String SUBMIT_ID = "form:submit";
+
+ @Test
+ public void testRenderer(Template template) {
+ AutoTester tester = getAutoTester(this);
+ tester.renderPage(template, null);
+ selenium.selectFrame("page");
+ try {
+ String contentType = selenium.getAttribute("//meta@content");
+ Assert.assertEquals(contentType, "application/xhtml+xml");
+ } finally {
+ selenium.selectFrame("relative=parent");
+ }
+ writeStatus("Check facets");
+ selenium.selectFrame("page");
+ try {
+ String bodyText = selenium.getText("//body");
+ if (!bodyText.contains("Page Content here")) {
+ Assert.fail("Page Content is not output at all");
+ }
+ if (bodyText.contains("Head Content here")) {
+ Assert.fail("Head facet is output to wrong place (must to head but really to body)");
+ }
+ } finally {
+ selenium.selectFrame("relative=parent");
+ }
+ }
+
+ @Test
+ public void testAjaxListener(Template template) {
+ AutoTester tester = getAutoTester(this);
+ tester.renderPage(template, null);
+ writeStatus("Check ajaxListener fires on each AJAX request");
+ selenium.selectFrame("page");
+ try {
+ clickAjaxCommandAndWait(SUBMIT_ID);
+ AssertTextEquals(STATUS_ID, "AjaxEvent", "ajaxListeners are not triggered");
+ } finally {
+ selenium.selectFrame("relative=parent");
+ }
+ }
+
+ @Test
+ public void testSelfRenderedAttribute(Template template) {
+ AutoTester tester = getAutoTester(this);
+ tester.renderPage(template, null);
+ writeStatus("Check selfRendered attribute. Each ajax request should cause component to be rerendered");
+ selenium.selectFrame("page");
+ try {
+ String was = selenium.getText(TIMESTAMP_ID);
+ clickAjaxCommandAndWait(SUBMIT_ID);
+ AssertTextNotEquals(TIMESTAMP_ID, was, "selfRendered attribute does not work");
+ } finally {
+ selenium.selectFrame("relative=parent");
+ }
+ }
+
+ @Test
+ public void testImmediate(Template template) {
+ AutoTester tester = getAutoTester(this);
+ tester.renderPage(template, null);
+ tester.reset();
+ tester.setupControl(TestSetupEntry.immediate, Boolean.TRUE);
+ tester.clickLoad();
+ writeStatus("Check that AjaxEvents are delivered in Apply Request Values instead of Invoke Application phase");
+ writeStatus("Move input to invalid state");
+ selenium.selectFrame("page");
+ try {
+ type(INPUT_ID, "A");
+ clickAjaxCommandAndWait(SUBMIT_ID);
+ AssertTextEquals(STATUS_ID, "AjaxEvent", "immediate attribute does not work");
+ } finally {
+ selenium.selectFrame("relative=parent");
+ }
+ }
+
+ @Test
+ public void testStylesAndClassesAndHtmlAttributes(Template template) {
+ AutoTester tester = getAutoTester(this);
+ tester.renderPage(template, null);
+
+ writeStatus("Check styles and classes are output to client");
+
+ writeStatus("Check styleClass/style attributes");
+ selenium.selectFrame("page");
+ try {
+ assertStyleAttributeContains("//body", "font-size: 13px", "Style attribute was not output to client");
+ assertClassAttributeContains("//body", "noclass", "Class attribute was not output to client");
+ } finally {
+ selenium.selectFrame("relative=parent");
+ }
+ }
+
+ @Test
+ public void testRenderedAttribute(Template template) {
+ AutoTester tester = getAutoTester(this);
+ tester.renderPage(template, null);
+ tester.reset();
+ tester.setupControl(TestSetupEntry.rendered, Boolean.FALSE);
+ tester.clickLoad();
+
+ selenium.selectFrame("page");
+ try {
+ AssertTextEquals("//body", "", "Rendered attribute does not work");
+ } finally {
+ selenium.selectFrame("relative=parent");
+ }
+ }
+
+ @Override
+ public String getAutoTestUrl(){
+ return "pages/ajaxPage/ajaxPageAutoTest.xhtml";
+ }
+
+ @Override
+ public String getTestUrl() {
+ return null;
+ }
+
+}
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/AjaxPageTest.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:keywords
+ Author Id Revision Date
Name: svn:eol-style
+ native
15 years, 9 months
JBoss Rich Faces SVN: r13309 - trunk/ui/panelbar/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-03-30 15:26:22 -0400 (Mon, 30 Mar 2009)
New Revision: 13309
Modified:
trunk/ui/panelbar/src/main/config/component/panelbar.xml
Log:
https://jira.jboss.org/jira/browse/RF-5968
Modified: trunk/ui/panelbar/src/main/config/component/panelbar.xml
===================================================================
--- trunk/ui/panelbar/src/main/config/component/panelbar.xml 2009-03-30 18:40:48 UTC (rev 13308)
+++ trunk/ui/panelbar/src/main/config/component/panelbar.xml 2009-03-30 19:26:22 UTC (rev 13309)
@@ -70,13 +70,7 @@
<classname>java.lang.String</classname>
<description>Id of expanded panelBarItem</description>
</property>
- <property >
- <name>converter</name>
- <classname>javax.faces.convert.Converter</classname>
- <description>
- Id of Converter to be used or reference to a Converter.
- </description>
- </property>
+
<property hidden="true">
<name>localValueSet</name>
<classname>boolean</classname>
@@ -141,14 +135,29 @@
-->
<property hidden="true">
+ <name>converter</name>
+ </property>
+ <property hidden="true">
+ <name>converterMessage</name>
+ </property>
+
+ <property hidden="true">
+ <name>validator</name>
+ </property>
+ <property hidden="true">
+ <name>validatorMessage</name>
+ </property>
+
+ <property hidden="true">
+ <name>required</name>
+ </property>
+ <property hidden="true">
+ <name>requiredMessage</name>
+ </property>
+
+ <property hidden="true">
<name>valid</name>
</property>
-
- <property>
- <name>label</name>
- <classname>java.lang.String</classname>
- <description>A localized user presentable name for this component.</description>
- </property>
</component>
<component>
15 years, 9 months
JBoss Rich Faces SVN: r13308 - in trunk/test-applications/realworld2/web/src/main: java/org/richfaces/realworld/search and 14 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2009-03-30 14:40:48 -0400 (Mon, 30 Mar 2009)
New Revision: 13308
Modified:
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/AlbumManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/DnDManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Model.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ShelfManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/UserManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/search/ImageSearchHelper.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/startup/CopyImageStuff.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/FileUploadBean.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/DirectLinkHelper.java
trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml
trunk/test-applications/realworld2/web/src/main/webapp/includes/album/albumEditInfo.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/album/albumInfo.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/album/albumsList.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/albumUnvisited.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/contextMenu/CMForShelf.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/directImage.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/fileUpload/fileUploader.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/fileUpload/uploadResult.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageInfo.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageList.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/index/tree.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/search.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/search/result/albumsResult.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/shelf/shelfInfo.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/shelfUnvisited.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/tag.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/userPrefs.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/userPrefs/userPrefs.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/userSharedImages.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/layout/template.xhtml
Log:
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/AlbumManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/AlbumManager.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/AlbumManager.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -21,6 +21,7 @@
package org.richfaces.realworld.manager;
import java.io.Serializable;
+import java.util.List;
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.AutoCreate;
@@ -31,6 +32,7 @@
import org.jboss.seam.core.Events;
import org.jboss.seam.faces.FacesMessages;
import org.richfaces.realworld.domain.Album;
+import org.richfaces.realworld.domain.Image;
import org.richfaces.realworld.domain.Shelf;
import org.richfaces.realworld.domain.User;
import org.richfaces.realworld.service.FlushStrategy;
@@ -65,7 +67,7 @@
albumAction.addAlbum(album);
//TODO nick - addDirectory() uses this.album, do we need: this.album = album?
addDirectory();
- model.resetModel(model.getMainArea(), model.getSelectedUser(), model.getSelectedShelf(), album, null);
+ model.resetModel(NavigationEnum.ALBUM_PREVIEW, album.getShelf().getOwner(), album.getShelf(), album, null);
Events.instance().raiseEvent("albumAdded");
Events.instance().raiseEvent("clearTree");
setOncomplete();
@@ -94,11 +96,11 @@
Events.instance().raiseEvent("clearTree");
}
- public Long getCountUnvisitedImages(Album album){
+ public List<Image> getUnvisitedImages(Album album){
if(album.getCountUnvisitedImages() == 0){
album.setUnvisitedImages(albumAction.getUnvisitedImages(album));
}
- return album.getCountUnvisitedImages();
+ return album.getUnvisitedImages();
}
private void setOncomplete() {
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -48,6 +48,12 @@
private String HAVENT_ACCESS;
@In @Out Model model;
+
+ @In UserManager userManager;
+
+ @In ShelfManager shelfManager;
+
+ @In AlbumManager albumManager;
@In
private User user;
@@ -83,7 +89,8 @@
pushEvent(Constants.ADD_ERROR_EVENT, new Exception(HAVENT_ACCESS));
return;
}
- model.resetModel(NavigationEnum.ALBUM_PREVIEW, album.getOwner(), album.getShelf(), album, null);
+ model.resetModel(NavigationEnum.ALBUM_PREVIEW, album.getOwner(), album.getShelf(), album, null);
+ model.setImages(album.getImages());
}
public void showImage(Image image){
@@ -135,18 +142,20 @@
}
public void startEditAlbum(Album album){
- if(!album.getOwner().equals(user)){
+ if(!album.getOwner().getLogin().equals(user.getLogin())){
pushEvent(Constants.ADD_ERROR_EVENT, new Exception(HAVENT_ACCESS));
return;
}
//TODO nick - resetModel?
model.setSelectedAlbum(album);
+ model.setImages(album.getImages());
model.setMainArea(NavigationEnum.ALBUM_EDIT);
}
public void cancelEditAlbum(Album album){
//TODO nick - unused "album" argument
model.setMainArea(NavigationEnum.ALBUM_PREVIEW);
+ model.setImages(album.getImages());
}
public void showFileUpload(){
@@ -164,6 +173,7 @@
public void showSharedImages(User user){
model.resetModel(NavigationEnum.USER_SHARED_IMAGES, user, null, null, null);
+ model.setImages(userManager.getSharedImages(model.getSelectedUser()));
}
public boolean isUserShelf(Shelf shelf){
@@ -184,29 +194,32 @@
}
public void showUnvisitedImages(Shelf shelf){
- model.resetModel(NavigationEnum.SHELF_UNVISITED, shelf.getOwner(), shelf, shelf.getFirstAlbum(), null);
+ model.resetModel(NavigationEnum.SHELF_UNVISITED, shelf.getOwner(), shelf, null, null);
+ model.setImages(shelfManager.getUnvisitedImages(shelf));
}
public void showUnvisitedImages(Album album){
model.resetModel(NavigationEnum.ALBUM_UNVISITED, album.getShelf().getOwner(), album.getShelf(), album, null);
+ model.setImages(album.getUnvisitedImages());
}
public void showTag(MetaTag metatag){
//TODO nick - model.setMainArea()?
model.resetModel(NavigationEnum.TAGS, model.getSelectedUser(), model.getSelectedShelf(), model.getSelectedAlbum(), model.getSelectedImage());
model.setSelectedTag(metatag);
+ model.setImages(metatag.getImages());
}
private boolean canViewShelf(Shelf shelf) {
- return shelf.getOwner().equals(user);
+ return shelf.getOwner().getLogin().equals(user.getLogin());
}
private boolean canViewImage(Image image) {
- return image.getAlbum().getShelf().isShared() || image.getAlbum().getOwner().equals(user);
+ return image.getAlbum().getShelf().isShared() || image.getAlbum().getOwner().getLogin().equals(user.getLogin());
}
private boolean canViewAlbum(Album album) {
- return album.getShelf().isShared() || album.getOwner().equals(user);
+ return album.getShelf().isShared() || album.getOwner().getLogin().equals(user.getLogin());
}
private void pushEvent(String type, Object... parameters) {
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/DnDManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/DnDManager.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/DnDManager.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -46,7 +46,7 @@
Object dragValue = dropEvent.getDragValue();
Object dropValue = dropzone.getDropValue();
if(dragValue instanceof Image){
- if(!((Album)dropValue).getOwner().equals(user)){
+ if(!((Album)dropValue).getOwner().getLogin().equals(user.getLogin())){
Events.instance().raiseEvent(Constants.ADD_ERROR_EVENT, new Exception("You can't add photo's to that album"));
return;
}
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileManager.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileManager.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -395,26 +395,33 @@
return ret;
}
- public boolean writeFile(String newFileName, String fileName, String pattern, int size, boolean includeUploadRoot) {
- BufferedImage bsrc = null;
- try {
- bsrc = bitmapToImage(fileName, "JPG");
- } catch (IOException e1) {
- return false;
- }
- final int i = bsrc.getWidth() > bsrc.getHeight() ? bsrc.getWidth() : bsrc.getHeight();
- final double d = ((double) size) / i;
- final int width = (int) d * bsrc.getWidth();
- final int height = (int) d * bsrc.getHeight();
- final BufferedImage bdest = getScaledInstance(bsrc, width, height, RenderingHints.VALUE_INTERPOLATION_BICUBIC, true);
- final String dest = includeUploadRoot ? this.uploadRootPath + transformPath(newFileName, pattern) : transformPath(newFileName, pattern);
- try {
- imageToBitmap(bdest, dest, "JPG");
- } catch (IOException ex) {
- return false;
- }
- return true;
- }
+ public boolean writeFile(String newFileName, String fileName,
+ String pattern, int size, boolean includeUploadRoot) {
+ BufferedImage bsrc = null;
+ try {
+ bsrc = bitmapToImage(fileName, "JPG");
+ } catch (IOException e1) {
+ return false;
+ }
+ int i = bsrc.getWidth() > bsrc.getHeight() ? bsrc.getWidth() : bsrc
+ .getHeight();
+ double d = (double) size / i;
+ Double yy = ((Double) d * bsrc.getWidth());
+ int width = yy.intValue();
+ yy = ((Double) d * bsrc.getHeight());
+ int height = yy.intValue();
+ BufferedImage bdest = getScaledInstance(bsrc, width, height,
+ RenderingHints.VALUE_INTERPOLATION_BICUBIC, true);
+ String dest = includeUploadRoot ? this.uploadRootPath
+ + transformPath(newFileName, pattern) : transformPath(
+ newFileName, pattern);
+ try {
+ imageToBitmap(bdest, dest, "JPG");
+ } catch (IOException ex) {
+ return false;
+ }
+ return true;
+ }
public String transformPath(String target, String substitute) {
final String begin = target.substring(0, target.lastIndexOf(Constants.DOT));
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Model.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Model.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Model.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -1,5 +1,7 @@
package org.richfaces.realworld.manager;
+import java.util.List;
+
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.AutoCreate;
import org.jboss.seam.annotations.Name;
@@ -32,6 +34,8 @@
private NavigationEnum mainArea;
+ private List<Image> images;
+
public void resetModel(NavigationEnum mainArea, User selectedUser, Shelf selectedShelf, Album selectedAlbum, Image selectedImage){
this.setMainArea(mainArea);
this.setSelectedAlbum(selectedAlbum);
@@ -106,4 +110,12 @@
public void setSelectedTag(MetaTag selectedTag) {
this.selectedTag = selectedTag;
}
+
+ public List<Image> getImages() {
+ return images;
+ }
+
+ public void setImages(List<Image> images) {
+ this.images = images;
+ }
}
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -38,7 +38,7 @@
SHELF_UNVISITED("/includes/shelfUnvisited.xhtml"),
USER_SHARED_ALBUMS("/includes/userSharedAlbums.xhtml"),
USER_SHARED_IMAGES("/includes/userSharedImages.xhtml"),
- ALBUM_UNVISITED("/includes/albumInvisited.xhtml");
+ ALBUM_UNVISITED("/includes/albumUnvisited.xhtml");
private NavigationEnum(String t){
template=t;
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ShelfManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ShelfManager.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ShelfManager.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -34,6 +34,7 @@
import org.jboss.seam.contexts.Contexts;
import org.jboss.seam.core.Events;
import org.richfaces.realworld.domain.Album;
+import org.richfaces.realworld.domain.Image;
import org.richfaces.realworld.domain.Shelf;
import org.richfaces.realworld.domain.User;
import org.richfaces.realworld.service.FlushStrategy;
@@ -70,7 +71,7 @@
public void addShelf(Shelf shelf) {
shelfAction.addShelf(shelf);
- model.resetModel(model.getMainArea(), model.getSelectedUser(), shelf, null, null);
+ model.resetModel(NavigationEnum.SHELF_PREVIEW, shelf.getOwner(), shelf, null, null);
setOncomplete();
Events.instance().raiseEvent("clearTree");
}
@@ -119,15 +120,15 @@
public String getOncomplete() {
return oncomplete;
}
-
+
public void setOncomplete(String oncomplete) {
this.oncomplete = oncomplete;
}
- public Long getCountUnvisitedImages(Shelf shelf) {
+ public List<Image> getUnvisitedImages(Shelf shelf) {
if (shelf.getCountUnvisitedImages() == 0) {
shelf.setUnvisitedImages(shelfAction.getUnvisitedImages(shelf));
}
- return shelf.getCountUnvisitedImages();
+ return shelf.getUnvisitedImages();
}
}
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -66,6 +66,15 @@
this.selectedImage.getAlbum().getShelf().visitImage(selectedImage);
}
+ public void startSlideshow(List<Image> images, Image selectedImage){
+ active = true;
+ this.images = images;
+ this.slideshowIndex = images.indexOf(selectedImage);
+ this.selectedImage = selectedImage;
+ this.selectedImage.getAlbum().visitImage(selectedImage);
+ this.selectedImage.getAlbum().getShelf().visitImage(selectedImage);
+ }
+
public void stopSlideshow(){
active = false;
this.images = null;
@@ -98,11 +107,16 @@
}
public void showNextImage(){
+ if(!active){
+ return;
+ }
if(slideshowIndex == images.size() - 1){
slideshowIndex = -1;
}
//TODO nick - this will start slideshow from the 2nd image (slideshowIndex == 1)
slideshowIndex++;
selectedImage = images.get(slideshowIndex);
+ this.selectedImage.getAlbum().visitImage(selectedImage);
+ this.selectedImage.getAlbum().getShelf().visitImage(selectedImage);
}
}
\ No newline at end of file
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/UserManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/UserManager.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/UserManager.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -24,6 +24,7 @@
import java.util.List;
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.Observer;
@@ -35,6 +36,7 @@
@Name("userManager")
@Scope(ScopeType.CONVERSATION)
+@AutoCreate
public class UserManager implements Serializable{
private static final long serialVersionUID = 6027103521084558931L;
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/search/ImageSearchHelper.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/search/ImageSearchHelper.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/search/ImageSearchHelper.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -31,6 +31,8 @@
String searchQuery;
+ String selectedKeyword;
+
List<String> keywords = new ArrayList<String>();
boolean seachInMyAlbums;
@@ -53,7 +55,9 @@
s.append(option.getName() + ",");
}
}
-
+ if (s.length() >= 2) {
+ s.delete(s.length() - 2, s.length());
+ }
//TODO nick - remove trailing comma
return s.toString();
}
@@ -63,11 +67,12 @@
Events.instance().raiseEvent(Constants.UPDATE_MAIN_AREA_EVENT, NavigationEnum.SEARCH);
keywords = parse(searchQuery);
Iterator<ISearchOption> it = options.iterator();
+ selectedKeyword = keywords.get(0).trim();
while (it.hasNext()) {
ISearchOption option = it.next();
if (option.getSelected()) {
//TODO nick - use search(keyword)
- option.search(searchAction, keywords.get(0).trim(), seachInMyAlbums, searchInShared);
+ option.search(searchAction, selectedKeyword , seachInMyAlbums, searchInShared);
}else {
option.setSearchResult(null);
}
@@ -76,10 +81,11 @@
public void search(String keyword) {
Iterator<ISearchOption> it = options.iterator();
+ selectedKeyword = keyword.trim();
while (it.hasNext()) {
ISearchOption option = it.next();
if (option.getSelected()) {
- option.search(searchAction, keyword.trim(), seachInMyAlbums, searchInShared);
+ option.search(searchAction,selectedKeyword , seachInMyAlbums, searchInShared);
}else {
option.setSearchResult(null);
}
@@ -158,5 +164,13 @@
public void setKeywords(List<String> keywords) {
this.keywords = keywords;
}
+
+ public String getSelectedKeyword() {
+ return selectedKeyword;
+ }
+
+ public void setSelectedKeyword(String selectedKeyword) {
+ this.selectedKeyword = selectedKeyword;
+ }
}
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/startup/CopyImageStuff.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/startup/CopyImageStuff.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/startup/CopyImageStuff.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -86,7 +86,11 @@
}
void resolveUploadRoot()throws IOException {
- String uploadRootPath = System.getProperty("java.io.tmpdir") + REALWORLD_FOLDER + File.separator;
+ String property = System.getProperty("java.io.tmpdir");
+ if(!property.endsWith(File.separator)){
+ property+=File.separator;
+ }
+ String uploadRootPath = property + REALWORLD_FOLDER + File.separator;
if (uploadRootPath != null) {
uploadRoot = new File(uploadRootPath);
if (uploadRoot.exists()) {
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/FileUploadBean.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/FileUploadBean.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/FileUploadBean.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -121,12 +121,12 @@
Image image = new Image();
image.setUploaded(new Date());
image.setDescription(SAMPLE_DESCRIPTION);
- image.setName(SAMPLE_NAME);
+ image.setName(item.getFileName());
image.setSize(item.getFileSize());
image.setAllowComments(true);
return image;
}
-
+
private void extractMetadata(UploadItem item, Image image)
throws JpegProcessingException, MetadataException, IOException {
InputStream in = new FileInputStream(item.getFile());
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/DirectLinkHelper.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/DirectLinkHelper.java 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/DirectLinkHelper.java 2009-03-30 18:40:48 UTC (rev 13308)
@@ -27,7 +27,7 @@
import org.richfaces.realworld.service.Constants;
@Name("directLink")
-(a)Scope(ScopeType.SESSION)
+(a)Scope(ScopeType.EVENT)
@AutoCreate
//TODO nick - session-scoped bean depending on request parameters? i'm in doubts...
public class DirectLinkHelper {
@@ -35,19 +35,16 @@
protected EntityManager em;
@In(create = true)
FileManager fileManager;
- @RequestParameter
- protected Long imageId;
@In Identity identity;
- private Long id;
-
private static final String IMAGE_DIRECT_LINK = "/includes/directImage.seam?imageId=";
private static String imageDirectLinkPrefix;
public synchronized void paintImage(OutputStream out, Object data)
throws IOException {
+ Long id=Long.valueOf(data.toString());
Image im = em.find(Image.class, id);
//TODO nick - '&&' so only admins can see their own unshared images?
if(im.getAlbum().getShelf().isShared() || (identity.hasRole("admin") && im.getAlbum().getOwner().getLogin().equals(identity.getUsername()))){
@@ -80,10 +77,6 @@
return;
}
}
-
- public void start(){
- id=imageId;
- }
public String getDirectImageLink(Image image) {
if (imageDirectLinkPrefix == null) {
Modified: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml 2009-03-30 18:40:48 UTC (rev 13308)
@@ -31,9 +31,6 @@
<redirect view-id="/index.xhtml"/>
</navigation>
</page>
-<page view-id="/includes/directImage.xhtml">
-<action execute="#{directLink.start}"/>
-</page>
<exception class="org.jboss.seam.framework.EntityNotFoundException">
<redirect view-id="/error.xhtml">
<message>Not found</message>
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/album/albumEditInfo.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/album/albumInfo.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/album/albumsList.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/albumUnvisited.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/contextMenu/CMForShelf.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/directImage.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/fileUpload/fileUploader.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/fileUpload/uploadResult.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageInfo.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageList.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/index/tree.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/search/result/albumsResult.xhtml
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/includes/search/result/albumsResult.xhtml 2009-03-30 18:40:13 UTC (rev 13307)
+++ trunk/test-applications/realworld2/web/src/main/webapp/includes/search/result/albumsResult.xhtml 2009-03-30 18:40:48 UTC (rev 13308)
@@ -10,7 +10,6 @@
<h:panelGrid cellpadding="0">
<h:panelGroup>
<a4j:commandLink
- rendered="#{controller.isUserAlbum(album)}"
actionListener="#{controller.showAlbum(album)}"
reRender="mainArea, tree">
<a4j:mediaOutput rendered="#{!album.isEmpty()}" id="img" element="img"
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/search.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/shelf/shelfInfo.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/shelfUnvisited.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/tag.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/userPrefs/userPrefs.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/userPrefs.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/userSharedImages.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/layout/template.xhtml
===================================================================
(Binary files differ)
15 years, 9 months
JBoss Rich Faces SVN: r13307 - in trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld: service and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2009-03-30 14:40:13 -0400 (Mon, 30 Mar 2009)
New Revision: 13307
Modified:
trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/User.java
trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/ShelfAction.java
Log:
Modified: trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/User.java
===================================================================
--- trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/User.java 2009-03-30 18:36:53 UTC (rev 13306)
+++ trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/User.java 2009-03-30 18:40:13 UTC (rev 13307)
@@ -202,11 +202,11 @@
throw new IllegalArgumentException("Null shelf");
}
//TODO nick - check if owner is current user?
- if(shelf.getOwner().equals(this)){
+ if(shelf.getOwner().getLogin().equals(this.getLogin())){
shelf.setOwner(null);
shelfs.remove(shelf);
}else{
- throw new IllegalArgumentException("Shelf not belonfs to this user!");
+ throw new IllegalArgumentException("Shelf not belongs to this user!");
}
}
Modified: trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/ShelfAction.java
===================================================================
--- trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/ShelfAction.java 2009-03-30 18:36:53 UTC (rev 13306)
+++ trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/ShelfAction.java 2009-03-30 18:40:13 UTC (rev 13307)
@@ -59,7 +59,6 @@
public void deleteShelf(Shelf shelf){
user.removeShelf(shelf);
- em.remove(shelf);
if(flushStrategy.isDatabaseStoreStrategy()){
em.flush();
}
15 years, 9 months
JBoss Rich Faces SVN: r13306 - in trunk/test-applications/realworld2/ejb/src/main: resources and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: alevkovsky
Date: 2009-03-30 14:36:53 -0400 (Mon, 30 Mar 2009)
New Revision: 13306
Modified:
trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Album.java
trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Comment.java
trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Image.java
trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Shelf.java
trunk/test-applications/realworld2/ejb/src/main/resources/import.sql
Log:
Rename db columns for domain objects
Add new tags and change import.sql for actual domain objects
Modified: trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Album.java
===================================================================
--- trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Album.java 2009-03-30 17:40:20 UTC (rev 13305)
+++ trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Album.java 2009-03-30 18:36:53 UTC (rev 13306)
@@ -83,8 +83,8 @@
@NotNull
@ManyToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
- @JoinColumn(name = "PARENT_SHELF_ID", nullable = false)
- @org.hibernate.annotations.ForeignKey(name = "FK_SHELF_PARENT_ID")
+ @JoinColumn(name = "SHELF_ID", nullable = false)
+ @org.hibernate.annotations.ForeignKey(name = "FK_SHELF_ID")
private Shelf shelf;
@Temporal(TemporalType.TIMESTAMP)
@@ -270,6 +270,7 @@
this.coveringImage = coveringImage;
}
+ @Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
@@ -283,9 +284,10 @@
return true;
}
+ @Override
public int hashCode() {
int result;
- result = (id != null ? id.hashCode() : 0);
+ result = id != null ? id.hashCode() : 0;
result = 31 * result + name.hashCode();
result = 31 * result + shelf.hashCode();
return result;
Modified: trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Comment.java
===================================================================
--- trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Comment.java 2009-03-30 17:40:20 UTC (rev 13305)
+++ trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Comment.java 2009-03-30 18:36:53 UTC (rev 13306)
@@ -55,13 +55,13 @@
private Date date;
@ManyToOne(optional=false)
- @JoinColumn(name = "IMAGE_COMMENT_ID", referencedColumnName = "IMAGE_ID")
+ @JoinColumn(name = "IMAGE_ID", referencedColumnName = "IMAGE_ID")
//TODO nick - add @NotNull
private Image image;
@ManyToOne(fetch = FetchType.LAZY)
- @JoinColumn(name = "FROM_USER_ID", nullable = false, updatable = false)
- @org.hibernate.annotations.ForeignKey(name = "FK_FROM_USER_ID")
+ @JoinColumn(name = "USER_ID", nullable = false, updatable = false)
+ @org.hibernate.annotations.ForeignKey(name = "FK_USER_ID")
private User author;
@Column(length = 1024, nullable = false)
Modified: trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Image.java
===================================================================
--- trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Image.java 2009-03-30 17:40:20 UTC (rev 13305)
+++ trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Image.java 2009-03-30 18:36:53 UTC (rev 13306)
@@ -142,7 +142,7 @@
private List<Comment> comments = new ArrayList<Comment>();
@ManyToOne(fetch = FetchType.LAZY)
- @JoinColumn(name = "IMG_ALBUM_ID", referencedColumnName = "ALBUM_ID")
+ @JoinColumn(name = "ALBUM_ID", referencedColumnName = "ALBUM_ID")
private Album album;
@NotNull
@@ -258,7 +258,7 @@
}
public String getMeta() {
- StringBuilder s = new StringBuilder();
+ final StringBuilder s = new StringBuilder();
for (MetaTag tag : this.imageTags) {
s.append(tag.getTag()).append(", ");
}
Modified: trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Shelf.java
===================================================================
--- trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Shelf.java 2009-03-30 17:40:20 UTC (rev 13305)
+++ trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/Shelf.java 2009-03-30 18:36:53 UTC (rev 13306)
@@ -51,7 +51,7 @@
private String description;
@ManyToOne(fetch = FetchType.LAZY)
- @JoinColumn(name = "SHELF_USER_ID", referencedColumnName = "USER_ID")
+ @JoinColumn(name = "USER_ID", referencedColumnName = "USER_ID")
private User owner;
@OneToMany(mappedBy = "shelf", cascade = {CascadeType.ALL})
Modified: trunk/test-applications/realworld2/ejb/src/main/resources/import.sql
===================================================================
--- trunk/test-applications/realworld2/ejb/src/main/resources/import.sql 2009-03-30 17:40:20 UTC (rev 13305)
+++ trunk/test-applications/realworld2/ejb/src/main/resources/import.sql 2009-03-30 18:36:53 UTC (rev 13306)
@@ -1,512 +1,657 @@
INSERT INTO Users(user_id, firstname, secondname, email, login, passwordHash, birthdate, sex, hasAvatar) VALUES (1, 'Andrey', 'Markhel', 'amarkhel(a)exadel.com', 'amarkhel', '8cb2237d0679ca88db6464eac60da96345513964', '1985-01-08', 0, 0);
-INSERT INTO Users(user_id, firstname, secondname, email, login, passwordHash, birthdate, sex, hasAvatar) VALUES (2, 'Nick', 'Curtis', 'nkurtis(a)iba.com', 'Viking', '8cb2237d0679ca88db6464eac60da96345513964', '1978-01-08', 1, 0);
-INSERT INTO Users(user_id, firstname, secondname, email, login, passwordHash, birthdate, sex, hasAvatar) VALUES (3, 'John', 'Smith', 'jsmith(a)jboss.com', 'Noname', '8cb2237d0679ca88db6464eac60da96345513964', '1970-01-08', 1, 0);
+INSERT INTO Users(user_id, firstname, secondname, email, login, passwordHash, birthdate, sex, hasAvatar) VALUES (2, 'Nick', 'Curtis', 'nkurtis(a)iba.com', 'Viking', '8cb2237d0679ca88db6464eac60da96345513964', '1978-01-08', 1, 0);
+INSERT INTO Users(user_id, firstname, secondname, email, login, passwordHash, birthdate, sex, hasAvatar) VALUES (3, 'John', 'Smith', 'jsmith(a)jboss.com', 'Noname', '8cb2237d0679ca88db6464eac60da96345513964', '1970-01-08', 1, 0);
-INSERT INTO shelves(shelf_id, name, description, shelf_user_id, created, shared) VALUES (1, 'Nature', 'Nature pictures', 1, '2009-12-18', true);
-INSERT INTO shelves(shelf_id, name, description, shelf_user_id, created,shared) VALUES (2, 'Sport', 'Nature pictures', 1, '2009-12-18', false);
-INSERT INTO shelves(shelf_id, name, description, shelf_user_id, created,shared) VALUES (3, 'Water', 'Nature pictures', 2, '2009-12-18', true);
-INSERT INTO shelves(shelf_id, name, description, shelf_user_id, created,shared) VALUES (4, 'Flowers', 'Nature pictures', 3, '2009-12-18', true);
+INSERT INTO shelves(shelf_id, name, description, user_id, created, shared) VALUES (1, 'Nature', 'Nature pictures', 1, '2009-12-18', true);
+INSERT INTO shelves(shelf_id, name, description, user_id, created, shared) VALUES (2, 'Sport', 'Nature pictures', 1, '2009-12-18', false);
+INSERT INTO shelves(shelf_id, name, description, user_id, created, shared) VALUES (3, 'Water', 'Nature pictures', 2, '2009-12-18', true);
+INSERT INTO shelves(shelf_id, name, description, user_id, created, shared) VALUES (4, 'Flowers', 'Nature pictures', 3, '2009-12-18', true);
---------------------------------------------------------------------
-- ALBUM - Animals
---------------------------------------------------------------------
-INSERT INTO albums(album_id, name, description, parent_shelf_id, created) VALUES (0, 'Animals', 'Animals pictures', 1, '2009-12-18');
+INSERT INTO albums(album_id, name, description, shelf_id, created) VALUES (0, 'Animals', 'Animals pictures', 1, '2009-12-18');
INSERT INTO metatags(metatag_id, tag) VALUES (0, 'Animals');
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (0, '067.JPG', 'amarkhel/0/067.JPG', 'Animals - 067.JPG image', '2009-12-18', 0, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (0, '067.jpg', 'amarkhel/0/067.jpg', 'Animals - 067.jpg image', '2009-12-18', 0, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 0);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (1, '10005.JPG', 'amarkhel/0/10005.JPG', 'Animals - 10005.JPG image', '2009-12-18', 0, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (1, '10005.jpg', 'amarkhel/0/10005.jpg', 'Animals - 10005.jpg image', '2009-12-18', 0, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (0, '1985-01-08', 'that is a beautiful flower with great colours ',1, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (1, '1985-01-08', 'Such a lovely colour azaga!',1, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (2, '1985-01-08', 'nice shot =) ',1, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (2, '400004.JPG', 'amarkhel/0/400004.JPG', 'Animals - 400004.JPG image', '2009-12-18', 0, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (0, '1985-01-08', 'I Think this is Art!',1, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (1, '1985-01-08', 'nice shot =) ',1, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (2, '1985-01-08', 'nice shot =) ',1, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (2, '400004.jpg', 'amarkhel/0/400004.jpg', 'Animals - 400004.jpg image', '2009-12-18', 0, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (3, '1985-01-08', 'Perfecft!',2, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (4, '1985-01-08', 'nice shot =) ',2, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (3, '400008.JPG', 'amarkhel/0/400008.JPG', 'Animals - 400008.JPG image', '2009-12-18', 0, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (3, '400008.jpg', 'amarkhel/0/400008.jpg', 'Animals - 400008.jpg image', '2009-12-18', 0, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (4, '400027.JPG', 'amarkhel/0/400027.JPG', 'Animals - 400027.JPG image', '2009-12-18', 0, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (3, '1985-01-08', 'love every thing about this picture, really beautiful... :))',3, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (4, '1985-01-08', 'Amazing shot..',3, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (5, '1985-01-08', 'love every thing about this picture, really beautiful... :))',3, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (4, '400027.jpg', 'amarkhel/0/400027.jpg', 'Animals - 400027.jpg image', '2009-12-18', 0, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 4);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (5, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',4, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (6, '1985-01-08', 'fantastic shot !!!!!!',4, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (7, '1985-01-08', 'Stunning capture! :-)',4, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (8, '1985-01-08', 'this is extremely Good:) Congratulations!',4, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (5, '400028.JPG', 'amarkhel/0/400028.JPG', 'Animals - 400028.JPG image', '2009-12-18', 0, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (6, '1985-01-08', 'Such a lovely colour azaga!',4, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (7, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',4, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (8, '1985-01-08', 'Bellissima macro!',4, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (9, '1985-01-08', 'this is extremely Good:) Congratulations!',4, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (5, '400028.jpg', 'amarkhel/0/400028.jpg', 'Animals - 400028.jpg image', '2009-12-18', 0, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 5);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (6, '400034.JPG', 'amarkhel/0/400034.JPG', 'Animals - 400034.JPG image', '2009-12-18', 0, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (10, '1985-01-08', 'Stunning capture! :-)',5, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (11, '1985-01-08', '++Beautiful',5, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (6, '400034.jpg', 'amarkhel/0/400034.jpg', 'Animals - 400034.jpg image', '2009-12-18', 0, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 6);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (9, '1985-01-08', 'Wonderful.',6, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (10, '1985-01-08', 'Wonderful.',6, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (7, '400035.JPG', 'amarkhel/0/400035.JPG', 'Animals - 400035.JPG image', '2009-12-18', 0, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (12, '1985-01-08', 'Very *lovely*',6, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (7, '400035.jpg', 'amarkhel/0/400035.jpg', 'Animals - 400035.jpg image', '2009-12-18', 0, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 7);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (11, '1985-01-08', 'Amazing shot..',7, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (12, '1985-01-08', 'nice shot =) ',7, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (8, '400063.JPG', 'amarkhel/0/400063.JPG', 'Animals - 400063.JPG image', '2009-12-18', 0, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (13, '1985-01-08', 'whoah ! wonderful',7, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (14, '1985-01-08', 'I Think this is Art!',7, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (15, '1985-01-08', 'I Think this is Art!',7, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (16, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',7, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (8, '400063.jpg', 'amarkhel/0/400063.jpg', 'Animals - 400063.jpg image', '2009-12-18', 0, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 8);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (9, '400095.JPG', 'amarkhel/0/400095.JPG', 'Animals - 400095.JPG image', '2009-12-18', 0, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (17, '1985-01-08', 'whoah ! wonderful',8, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (18, '1985-01-08', 'love every thing about this picture, really beautiful... :))',8, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (9, '400095.jpg', 'amarkhel/0/400095.jpg', 'Animals - 400095.jpg image', '2009-12-18', 0, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 9);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (13, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',9, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (14, '1985-01-08', 'Such a lovely colour azaga!',9, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (10, 'DEER.JPG', 'amarkhel/0/DEER.JPG', 'Animals - DEER.JPG image', '2009-12-18', 0, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (19, '1985-01-08', 'Gorgeous! Lovely color!',9, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (20, '1985-01-08', 'whoah ! wonderful',9, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (21, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',9, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (22, '1985-01-08', 'Stunning capture! :-)',9, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (10, 'deer.jpg', 'amarkhel/0/deer.jpg', 'Animals - deer.jpg image', '2009-12-18', 0, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 10);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (11, 'DOG2.JPG', 'amarkhel/0/DOG2.JPG', 'Animals - DOG2.JPG image', '2009-12-18', 0, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (23, '1985-01-08', 'Bellísima.!!! saludos.',10, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (24, '1985-01-08', '++Beautiful',10, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (11, 'dog2.jpg', 'amarkhel/0/dog2.jpg', 'Animals - dog2.jpg image', '2009-12-18', 0, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 11);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (15, '1985-01-08', 'Very lovely',11, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (12, 'PINN40.JPG', 'amarkhel/0/PINN40.JPG', 'Animals - PINN40.JPG image', '2009-12-18', 0, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (25, '1985-01-08', '++Beautiful',11, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (26, '1985-01-08', 'love every thing about this picture, really beautiful... :))',11, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (12, 'pinn40.jpg', 'amarkhel/0/pinn40.jpg', 'Animals - pinn40.jpg image', '2009-12-18', 0, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 12);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (16, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',12, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (13, 'PINN51.JPG', 'amarkhel/0/PINN51.JPG', 'Animals - PINN51.JPG image', '2009-12-18', 0, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (13, 'pinn51.jpg', 'amarkhel/0/pinn51.jpg', 'Animals - pinn51.jpg image', '2009-12-18', 0, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 13);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (14, 'TURTLE.JPG', 'amarkhel/0/TURTLE.JPG', 'Animals - TURTLE.JPG image', '2009-12-18', 0, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (27, '1985-01-08', 'nice shot =) ',13, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (28, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',13, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (29, '1985-01-08', 'whoah ! wonderful',13, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (30, '1985-01-08', 'fantastic shot !!!!!!',13, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (14, 'thumbs.db', 'amarkhel/0/thumbs.db', 'Animals - thumbs.db image', '2009-12-18', 0, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 14);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (17, '1985-01-08', 'Stunning capture! :-)',14, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (31, '1985-01-08', 'fantastic shot !!!!!!',14, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (32, '1985-01-08', 'Wonderful.',14, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (15, 'turtle.jpg', 'amarkhel/0/turtle.jpg', 'Animals - turtle.jpg image', '2009-12-18', 0, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(0, 15);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (33, '1985-01-08', 'I Think this is Art!',15, 1);
---------------------------------------------------------------------
-- ALBUM - Building
---------------------------------------------------------------------
-INSERT INTO albums(album_id, name, description, parent_shelf_id, created) VALUES (1, 'Building', 'Building pictures', 3, '2009-12-18');
+INSERT INTO albums(album_id, name, description, shelf_id, created) VALUES (1, 'Building', 'Building pictures', 2, '2009-12-18');
INSERT INTO metatags(metatag_id, tag) VALUES (1, 'Building');
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (15, '1.jpg', 'Viking/1/1.jpg', 'Building - 1.jpg image', '2009-12-18', 1, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 15);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (16, '2.jpg', 'Viking/1/2.jpg', 'Building - 2.jpg image', '2009-12-18', 1, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (16, '1.jpg', 'Viking/1/1.jpg', 'Building - 1.jpg image', '2009-12-18', 1, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 16);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (18, '1985-01-08', 'Bellissima macro!',16, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (19, '1985-01-08', 'Bellissima macro!',16, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (20, '1985-01-08', 'Such a lovely colour azaga!',16, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (21, '1985-01-08', 'really pretty. it looks like there is a lady in the center, blowing kisses!!',16, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (17, '3.jpg', 'Viking/1/3.jpg', 'Building - 3.jpg image', '2009-12-18', 1, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (34, '1985-01-08', 'whoah ! wonderful',16, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (35, '1985-01-08', 'Bellísima.!!! saludos.',16, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (36, '1985-01-08', 'Amazing shot..',16, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (37, '1985-01-08', 'Bellísima.!!! saludos.',16, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (17, '2.jpg', 'Viking/1/2.jpg', 'Building - 2.jpg image', '2009-12-18', 1, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 17);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (22, '1985-01-08', 'I Think this is Art!',17, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (23, '1985-01-08', 'Stunning capture! :-)',17, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (24, '1985-01-08', 'Very lovely',17, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (18, '4.jpg', 'Viking/1/4.jpg', 'Building - 4.jpg image', '2009-12-18', 1, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (38, '1985-01-08', 'Bellísima.!!! saludos.',17, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (39, '1985-01-08', 'that is a beautiful flower with great colours ',17, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (40, '1985-01-08', 'Very *lovely*',17, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (41, '1985-01-08', 'Stunning capture! :-)',17, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (18, '3.jpg', 'Viking/1/3.jpg', 'Building - 3.jpg image', '2009-12-18', 1, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 18);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (25, '1985-01-08', 'fantastic shot !!!!!!',18, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (26, '1985-01-08', 'Bellisima.!!! saludos.',18, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (27, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',18, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (19, '400018.JPG', 'Viking/1/400018.JPG', 'Building - 400018.JPG image', '2009-12-18', 1, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (42, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',18, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (43, '1985-01-08', 'whoah ! wonderful',18, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (19, '4.jpg', 'Viking/1/4.jpg', 'Building - 4.jpg image', '2009-12-18', 1, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 19);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (28, '1985-01-08', 'Gorgeous! Lovely color!',19, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (29, '1985-01-08', 'Stunning capture! :-)',19, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (30, '1985-01-08', 'that is a beautiful flower with great colours ',19, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (31, '1985-01-08', 'that is a beautiful flower with great colours ',19, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (20, '400036.JPG', 'Viking/1/400036.JPG', 'Building - 400036.JPG image', '2009-12-18', 1, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (44, '1985-01-08', 'Amazing shot..',19, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (45, '1985-01-08', 'that is a beautiful flower with great colours ',19, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (20, '400018.jpg', 'Viking/1/400018.jpg', 'Building - 400018.jpg image', '2009-12-18', 1, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 20);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (32, '1985-01-08', 'Bellisima.!!! saludos.',20, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (33, '1985-01-08', 'Bellissima macro!',20, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (34, '1985-01-08', 'really pretty. it looks like there is a lady in the center, blowing kisses!!',20, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (21, '400069.JPG', 'Viking/1/400069.JPG', 'Building - 400069.JPG image', '2009-12-18', 1, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (46, '1985-01-08', 'Very *lovely*',20, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (47, '1985-01-08', 'Very *lovely*',20, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (48, '1985-01-08', 'nice shot =) ',20, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (49, '1985-01-08', 'Stunning capture! :-)',20, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (21, '400036.jpg', 'Viking/1/400036.jpg', 'Building - 400036.jpg image', '2009-12-18', 1, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 21);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (35, '1985-01-08', 'that is a beautiful flower with great colours ',21, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (36, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',21, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (22, '400076.JPG', 'Viking/1/400076.JPG', 'Building - 400076.JPG image', '2009-12-18', 1, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (50, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',21, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (51, '1985-01-08', 'Stunning capture! :-)',21, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (22, '400069.jpg', 'Viking/1/400069.jpg', 'Building - 400069.jpg image', '2009-12-18', 1, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 22);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (37, '1985-01-08', 'I Think this is Art!',22, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (23, '400083.JPG', 'Viking/1/400083.JPG', 'Building - 400083.JPG image', '2009-12-18', 1, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (52, '1985-01-08', 'Bellissima macro!',22, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (53, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',22, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (54, '1985-01-08', 'this is extremely Good:) Congratulations!',22, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (55, '1985-01-08', 'I Think this is Art!',22, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (23, '400076.jpg', 'Viking/1/400076.jpg', 'Building - 400076.jpg image', '2009-12-18', 1, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 23);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (38, '1985-01-08', 'nice shot =) ',23, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (39, '1985-01-08', 'I Think this is Art!',23, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (40, '1985-01-08', 'fantastic shot !!!!!!',23, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (41, '1985-01-08', 'Wonderful.',23, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (24, '5.jpg', 'Viking/1/5.jpg', 'Building - 5.jpg image', '2009-12-18', 1, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (56, '1985-01-08', 'Stunning capture! :-)',23, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (57, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',23, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (58, '1985-01-08', 'this is extremely Good:) Congratulations!',23, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (59, '1985-01-08', 'Wonderful.',23, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (24, '400083.jpg', 'Viking/1/400083.jpg', 'Building - 400083.jpg image', '2009-12-18', 1, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 24);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (42, '1985-01-08', 'Bellissima macro!',24, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (25, '6.jpg', 'Viking/1/6.jpg', 'Building - 6.jpg image', '2009-12-18', 1, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (60, '1985-01-08', 'fantastic shot !!!!!!',24, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (61, '1985-01-08', 'Wonderful.',24, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (25, '5.jpg', 'Viking/1/5.jpg', 'Building - 5.jpg image', '2009-12-18', 1, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 25);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (43, '1985-01-08', 'Wonderful coloured flower .... excellent macro .... nice details!!!',25, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (26, '7.jpg', 'Viking/1/7.jpg', 'Building - 7.jpg image', '2009-12-18', 1, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (62, '1985-01-08', 'Amazing shot..',25, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (63, '1985-01-08', '++Beautiful',25, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (64, '1985-01-08', 'fantastic shot !!!!!!',25, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (26, '6.jpg', 'Viking/1/6.jpg', 'Building - 6.jpg image', '2009-12-18', 1, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 26);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (44, '1985-01-08', 'this is extremely Good:) Congratulations!',26, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (27, 'CHURCH.JPG', 'Viking/1/CHURCH.JPG', 'Building - CHURCH.JPG image', '2009-12-18', 1, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (65, '1985-01-08', 'this is extremely Good:) Congratulations!',26, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (27, '7.jpg', 'Viking/1/7.jpg', 'Building - 7.jpg image', '2009-12-18', 1, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 27);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (28, 'PINN71.JPG', 'Viking/1/PINN71.JPG', 'Building - PINN71.JPG image', '2009-12-18', 1, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (66, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',27, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (67, '1985-01-08', 'Bellísima.!!! saludos.',27, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (68, '1985-01-08', 'love every thing about this picture, really beautiful... :))',27, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (69, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',27, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (28, 'church.jpg', 'Viking/1/church.jpg', 'Building - church.jpg image', '2009-12-18', 1, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 28);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (45, '1985-01-08', 'whoah ! wonderful',28, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (29, 'PINN82.JPG', 'Viking/1/PINN82.JPG', 'Building - PINN82.JPG image', '2009-12-18', 1, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (70, '1985-01-08', 'Beautiful colours. Nice close up. ',28, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (71, '1985-01-08', 'Bellissima macro!',28, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (72, '1985-01-08', 'Bellísima.!!! saludos.',28, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (29, 'pinn71.jpg', 'Viking/1/pinn71.jpg', 'Building - pinn71.jpg image', '2009-12-18', 1, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 29);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (30, 'pinn82.jpg', 'Viking/1/pinn82.jpg', 'Building - pinn82.jpg image', '2009-12-18', 1, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 30);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (73, '1985-01-08', '++Beautiful',30, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (74, '1985-01-08', 'Bellissima macro!',30, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (31, 'thumbs.db', 'Viking/1/thumbs.db', 'Building - thumbs.db image', '2009-12-18', 1, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(1, 31);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (75, '1985-01-08', 'Stunning capture! :-)',31, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (76, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',31, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (77, '1985-01-08', 'I Think this is Art!',31, 2);
---------------------------------------------------------------------
-- ALBUM - Coasts
---------------------------------------------------------------------
-INSERT INTO albums(album_id, name, description, parent_shelf_id, created) VALUES (2, 'Coasts', 'Coasts pictures', 4, '2009-12-18');
+INSERT INTO albums(album_id, name, description, shelf_id, created) VALUES (2, 'Coasts', 'Coasts pictures', 3, '2009-12-18');
INSERT INTO metatags(metatag_id, tag) VALUES (2, 'Coasts');
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (30, '203015.JPG', 'Noname/2/203015.JPG', 'Coasts - 203015.JPG image', '2009-12-18', 2, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 30);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (31, '203034.JPG', 'Noname/2/203034.JPG', 'Coasts - 203034.JPG image', '2009-12-18', 2, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 31);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (46, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',31, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (47, '1985-01-08', 'whoah ! wonderful',31, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (48, '1985-01-08', 'Stunning capture! :-)',31, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (49, '1985-01-08', 'Such a lovely colour azaga!',31, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (32, '203036.JPG', 'Noname/2/203036.JPG', 'Coasts - 203036.JPG image', '2009-12-18', 2, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (32, '203015.jpg', 'Noname/2/203015.jpg', 'Coasts - 203015.jpg image', '2009-12-18', 2, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 32);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (50, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',32, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (51, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',32, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (52, '1985-01-08', 'Stunning capture! :-)',32, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (53, '1985-01-08', 'Perfecft!',32, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (33, '203043.JPG', 'Noname/2/203043.JPG', 'Coasts - 203043.JPG image', '2009-12-18', 2, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (78, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',32, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (79, '1985-01-08', 'Bellísima.!!! saludos.',32, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (80, '1985-01-08', 'nice shot =) ',32, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (33, '203034.jpg', 'Noname/2/203034.jpg', 'Coasts - 203034.jpg image', '2009-12-18', 2, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 33);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (54, '1985-01-08', 'Beautiful',33, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (55, '1985-01-08', 'nice shot =) ',33, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (56, '1985-01-08', 'really pretty. it looks like there is a lady in the center, blowing kisses!!',33, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (57, '1985-01-08', 'Very lovely',33, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (34, '203049.JPG', 'Noname/2/203049.JPG', 'Coasts - 203049.JPG image', '2009-12-18', 2, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (81, '1985-01-08', 'nice shot =) ',33, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (82, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',33, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (34, '203036.jpg', 'Noname/2/203036.jpg', 'Coasts - 203036.jpg image', '2009-12-18', 2, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 34);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (58, '1985-01-08', 'Gorgeous! Lovely color!',34, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (59, '1985-01-08', 'Very lovely',34, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (35, '203052.JPG', 'Noname/2/203052.JPG', 'Coasts - 203052.JPG image', '2009-12-18', 2, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (83, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',34, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (84, '1985-01-08', 'nice shot =) ',34, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (85, '1985-01-08', 'Perfecft!',34, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (35, '203043.jpg', 'Noname/2/203043.jpg', 'Coasts - 203043.jpg image', '2009-12-18', 2, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 35);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (60, '1985-01-08', 'Such a lovely colour azaga!',35, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (36, '203053.JPG', 'Noname/2/203053.JPG', 'Coasts - 203053.JPG image', '2009-12-18', 2, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (86, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',35, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (87, '1985-01-08', 'Stunning capture! :-)',35, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (88, '1985-01-08', 'Bellissima macro!',35, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (89, '1985-01-08', 'I Think this is Art!',35, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (36, '203049.jpg', 'Noname/2/203049.jpg', 'Coasts - 203049.jpg image', '2009-12-18', 2, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 36);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (61, '1985-01-08', 'whoah ! wonderful',36, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (62, '1985-01-08', 'Bellisima.!!! saludos.',36, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (63, '1985-01-08', 'this is extremely Good:) Congratulations!',36, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (37, '203054.JPG', 'Noname/2/203054.JPG', 'Coasts - 203054.JPG image', '2009-12-18', 2, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (90, '1985-01-08', 'Bellissima macro!',36, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (91, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',36, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (92, '1985-01-08', 'Beautiful colours. Nice close up. ',36, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (93, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',36, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (37, '203052.jpg', 'Noname/2/203052.jpg', 'Coasts - 203052.jpg image', '2009-12-18', 2, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 37);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (64, '1985-01-08', 'Perfecft!',37, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (38, '203058.JPG', 'Noname/2/203058.JPG', 'Coasts - 203058.JPG image', '2009-12-18', 2, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (94, '1985-01-08', 'Gorgeous! Lovely color!',37, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (38, '203053.jpg', 'Noname/2/203053.jpg', 'Coasts - 203053.jpg image', '2009-12-18', 2, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 38);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (65, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',38, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (39, '203066.JPG', 'Noname/2/203066.JPG', 'Coasts - 203066.JPG image', '2009-12-18', 2, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (95, '1985-01-08', 'Bellissima macro!',38, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (96, '1985-01-08', 'whoah ! wonderful',38, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (97, '1985-01-08', 'this is extremely Good:) Congratulations!',38, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (39, '203054.jpg', 'Noname/2/203054.jpg', 'Coasts - 203054.jpg image', '2009-12-18', 2, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 39);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (40, '203067.JPG', 'Noname/2/203067.JPG', 'Coasts - 203067.JPG image', '2009-12-18', 2, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (98, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',39, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (99, '1985-01-08', 'fantastic shot !!!!!!',39, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (40, '203058.jpg', 'Noname/2/203058.jpg', 'Coasts - 203058.jpg image', '2009-12-18', 2, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 40);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (66, '1985-01-08', 'love every thing about this picture, really beautiful... :))',40, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (67, '1985-01-08', 'Beautiful colours. Nice close up. ',40, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (68, '1985-01-08', 'Bellissima macro!',40, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (69, '1985-01-08', 'I Think this is Art!',40, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (41, '203071.JPG', 'Noname/2/203071.JPG', 'Coasts - 203071.JPG image', '2009-12-18', 2, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (100, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',40, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (41, '203066.jpg', 'Noname/2/203066.jpg', 'Coasts - 203066.jpg image', '2009-12-18', 2, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 41);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (42, '203072.JPG', 'Noname/2/203072.JPG', 'Coasts - 203072.JPG image', '2009-12-18', 2, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (42, '203067.jpg', 'Noname/2/203067.jpg', 'Coasts - 203067.jpg image', '2009-12-18', 2, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 42);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (43, '203073.JPG', 'Noname/2/203073.JPG', 'Coasts - 203073.JPG image', '2009-12-18', 2, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (101, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',42, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (43, '203071.jpg', 'Noname/2/203071.jpg', 'Coasts - 203071.jpg image', '2009-12-18', 2, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 43);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (70, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',43, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (71, '1985-01-08', 'this is extremely Good:) Congratulations!',43, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (72, '1985-01-08', 'Such a lovely colour azaga!',43, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (44, '203076.JPG', 'Noname/2/203076.JPG', 'Coasts - 203076.JPG image', '2009-12-18', 2, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (102, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',43, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (44, '203072.jpg', 'Noname/2/203072.jpg', 'Coasts - 203072.jpg image', '2009-12-18', 2, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 44);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (103, '1985-01-08', 'Bellissima macro!',44, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (104, '1985-01-08', 'I Think this is Art!',44, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (105, '1985-01-08', 'Such a lovely colour azaga!',44, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (45, '203073.jpg', 'Noname/2/203073.jpg', 'Coasts - 203073.jpg image', '2009-12-18', 2, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 45);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (106, '1985-01-08', 'this is extremely Good:) Congratulations!',45, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (107, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',45, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (108, '1985-01-08', 'Bellísima.!!! saludos.',45, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (46, '203076.jpg', 'Noname/2/203076.jpg', 'Coasts - 203076.jpg image', '2009-12-18', 2, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 46);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (109, '1985-01-08', 'that is a beautiful flower with great colours ',46, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (47, 'thumbs.db', 'Noname/2/thumbs.db', 'Coasts - thumbs.db image', '2009-12-18', 2, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(2, 47);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (110, '1985-01-08', 'love every thing about this picture, really beautiful... :))',47, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (111, '1985-01-08', 'Bellísima.!!! saludos.',47, 3);
---------------------------------------------------------------------
-- ALBUM - Flora
---------------------------------------------------------------------
-INSERT INTO albums(album_id, name, description, parent_shelf_id, created) VALUES (3, 'Flora', 'Flora pictures', 2, '2009-12-18');
+INSERT INTO albums(album_id, name, description, shelf_id, created) VALUES (3, 'Flora', 'Flora pictures', 4, '2009-12-18');
INSERT INTO metatags(metatag_id, tag) VALUES (3, 'Flora');
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (45, '132000.JPG', 'amarkhel/3/132000.JPG', 'Flora - 132000.JPG image', '2009-12-18', 3, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 45);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (73, '1985-01-08', 'Stunning capture! :-)',45, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (46, '132022.JPG', 'amarkhel/3/132022.JPG', 'Flora - 132022.JPG image', '2009-12-18', 3, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 46);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (74, '1985-01-08', 'really pretty. it looks like there is a lady in the center, blowing kisses!!',46, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (75, '1985-01-08', 'fantastic shot !!!!!!',46, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (76, '1985-01-08', 'Beautiful',46, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (77, '1985-01-08', 'Beautiful',46, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (47, '132051.JPG', 'amarkhel/3/132051.JPG', 'Flora - 132051.JPG image', '2009-12-18', 3, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 47);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (78, '1985-01-08', 'Bellisima.!!! saludos.',47, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (79, '1985-01-08', 'nice shot =) ',47, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (80, '1985-01-08', 'Wonderful.',47, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (48, '132059.JPG', 'amarkhel/3/132059.JPG', 'Flora - 132059.JPG image', '2009-12-18', 3, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (48, '132000.jpg', 'amarkhel/3/132000.jpg', 'Flora - 132000.jpg image', '2009-12-18', 3, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 48);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (81, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',48, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (49, '132060.JPG', 'amarkhel/3/132060.JPG', 'Flora - 132060.JPG image', '2009-12-18', 3, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (112, '1985-01-08', 'this is extremely Good:) Congratulations!',48, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (49, '132022.jpg', 'amarkhel/3/132022.jpg', 'Flora - 132022.jpg image', '2009-12-18', 3, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 49);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (82, '1985-01-08', 'nice shot =) ',49, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (83, '1985-01-08', 'love every thing about this picture, really beautiful... :))',49, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (50, '132071.JPG', 'amarkhel/3/132071.JPG', 'Flora - 132071.JPG image', '2009-12-18', 3, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (113, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',49, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (114, '1985-01-08', 'Wonderful.',49, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (115, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',49, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (50, '132051.jpg', 'amarkhel/3/132051.jpg', 'Flora - 132051.jpg image', '2009-12-18', 3, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 50);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (84, '1985-01-08', 'Amazing shot..',50, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (85, '1985-01-08', 'really pretty. it looks like there is a lady in the center, blowing kisses!!',50, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (86, '1985-01-08', 'I Think this is Art!',50, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (87, '1985-01-08', 'really pretty. it looks like there is a lady in the center, blowing kisses!!',50, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (51, '132074.JPG', 'amarkhel/3/132074.JPG', 'Flora - 132074.JPG image', '2009-12-18', 3, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (116, '1985-01-08', 'Wonderful.',50, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (117, '1985-01-08', 'Very *lovely*',50, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (118, '1985-01-08', 'fantastic shot !!!!!!',50, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (119, '1985-01-08', 'Such a lovely colour azaga!',50, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (51, '132059.jpg', 'amarkhel/3/132059.jpg', 'Flora - 132059.jpg image', '2009-12-18', 3, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 51);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (52, '132078.JPG', 'amarkhel/3/132078.JPG', 'Flora - 132078.JPG image', '2009-12-18', 3, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (120, '1985-01-08', 'Amazing shot..',51, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (121, '1985-01-08', 'Beautiful colours. Nice close up. ',51, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (52, '132060.jpg', 'amarkhel/3/132060.jpg', 'Flora - 132060.jpg image', '2009-12-18', 3, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 52);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (53, '142011.JPG', 'amarkhel/3/142011.JPG', 'Flora - 142011.JPG image', '2009-12-18', 3, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (122, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',52, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (53, '132071.jpg', 'amarkhel/3/132071.jpg', 'Flora - 132071.jpg image', '2009-12-18', 3, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 53);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (88, '1985-01-08', 'I Think this is Art!',53, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (89, '1985-01-08', 'Wonderful coloured flower .... excellent macro .... nice details!!!',53, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (90, '1985-01-08', 'fantastic shot !!!!!!',53, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (91, '1985-01-08', 'love every thing about this picture, really beautiful... :))',53, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (54, '142039.JPG', 'amarkhel/3/142039.JPG', 'Flora - 142039.JPG image', '2009-12-18', 3, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (123, '1985-01-08', 'love every thing about this picture, really beautiful... :))',53, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (124, '1985-01-08', 'that is a beautiful flower with great colours ',53, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (125, '1985-01-08', 'that is a beautiful flower with great colours ',53, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (54, '132074.jpg', 'amarkhel/3/132074.jpg', 'Flora - 132074.jpg image', '2009-12-18', 3, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 54);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (92, '1985-01-08', 'nice shot =) ',54, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (93, '1985-01-08', 'fantastic shot !!!!!!',54, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (94, '1985-01-08', 'nice shot =) ',54, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (55, '167049.JPG', 'amarkhel/3/167049.JPG', 'Flora - 167049.JPG image', '2009-12-18', 3, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (126, '1985-01-08', 'that is a beautiful flower with great colours ',54, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (55, '132078.jpg', 'amarkhel/3/132078.jpg', 'Flora - 132078.jpg image', '2009-12-18', 3, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 55);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (95, '1985-01-08', 'Amazing shot..',55, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (96, '1985-01-08', 'Such a lovely colour azaga!',55, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (97, '1985-01-08', 'really pretty. it looks like there is a lady in the center, blowing kisses!!',55, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (98, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',55, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (56, '167055.JPG', 'amarkhel/3/167055.JPG', 'Flora - 167055.JPG image', '2009-12-18', 3, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (56, '142011.jpg', 'amarkhel/3/142011.jpg', 'Flora - 142011.jpg image', '2009-12-18', 3, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 56);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (99, '1985-01-08', 'whoah ! wonderful',56, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (100, '1985-01-08', 'Such a lovely colour azaga!',56, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (101, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',56, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (102, '1985-01-08', 'Beautiful colours. Nice close up. ',56, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (57, '400010.JPG', 'amarkhel/3/400010.JPG', 'Flora - 400010.JPG image', '2009-12-18', 3, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (57, '142039.jpg', 'amarkhel/3/142039.jpg', 'Flora - 142039.jpg image', '2009-12-18', 3, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 57);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (103, '1985-01-08', 'Perfecft!',57, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (104, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',57, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (105, '1985-01-08', 'that is a beautiful flower with great colours ',57, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (58, '400073.JPG', 'amarkhel/3/400073.JPG', 'Flora - 400073.JPG image', '2009-12-18', 3, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (127, '1985-01-08', 'Stunning capture! :-)',57, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (128, '1985-01-08', 'this is extremely Good:) Congratulations!',57, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (129, '1985-01-08', 'Very *lovely*',57, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (130, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',57, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (58, '167049.jpg', 'amarkhel/3/167049.jpg', 'Flora - 167049.jpg image', '2009-12-18', 3, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 58);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (59, '403011.JPG', 'amarkhel/3/403011.JPG', 'Flora - 403011.JPG image', '2009-12-18', 3, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (59, '167055.jpg', 'amarkhel/3/167055.jpg', 'Flora - 167055.jpg image', '2009-12-18', 3, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 59);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (131, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',59, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (60, '400010.jpg', 'amarkhel/3/400010.jpg', 'Flora - 400010.jpg image', '2009-12-18', 3, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 60);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (132, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',60, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (133, '1985-01-08', 'Perfecft!',60, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (61, '400073.jpg', 'amarkhel/3/400073.jpg', 'Flora - 400073.jpg image', '2009-12-18', 3, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 61);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (134, '1985-01-08', 'Amazing shot..',61, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (135, '1985-01-08', 'Gorgeous! Lovely color!',61, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (136, '1985-01-08', '++Beautiful',61, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (62, '403011.jpg', 'amarkhel/3/403011.jpg', 'Flora - 403011.jpg image', '2009-12-18', 3, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 62);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (63, 'thumbs.db', 'amarkhel/3/thumbs.db', 'Flora - thumbs.db image', '2009-12-18', 3, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(3, 63);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (137, '1985-01-08', 'Bellísima.!!! saludos.',63, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (138, '1985-01-08', 'Stunning capture! :-)',63, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (139, '1985-01-08', 'Perfecft!',63, 1);
---------------------------------------------------------------------
-- ALBUM - Ices
---------------------------------------------------------------------
-INSERT INTO albums(album_id, name, description, parent_shelf_id, created) VALUES (4, 'Ices', 'Ices pictures', 3, '2009-12-18');
+INSERT INTO albums(album_id, name, description, shelf_id, created) VALUES (4, 'Ices', 'Ices pictures', 1, '2009-12-18');
INSERT INTO metatags(metatag_id, tag) VALUES (4, 'Ices');
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (60, '184023.JPG', 'Viking/4/184023.JPG', 'Ices - 184023.JPG image', '2009-12-18', 4, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 60);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (106, '1985-01-08', 'Beautiful Flower...great Macro....Excellent !!!',60, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (61, '184030.JPG', 'Viking/4/184030.JPG', 'Ices - 184030.JPG image', '2009-12-18', 4, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 61);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (107, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',61, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (62, '184031.JPG', 'Viking/4/184031.JPG', 'Ices - 184031.JPG image', '2009-12-18', 4, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 62);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (108, '1985-01-08', 'whoah ! wonderful',62, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (63, '184033.JPG', 'Viking/4/184033.JPG', 'Ices - 184033.JPG image', '2009-12-18', 4, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 63);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (109, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',63, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (110, '1985-01-08', 'whoah ! wonderful',63, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (111, '1985-01-08', 'nice shot =) ',63, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (64, '184034.JPG', 'Viking/4/184034.JPG', 'Ices - 184034.JPG image', '2009-12-18', 4, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (64, '184023.jpg', 'Viking/4/184023.jpg', 'Ices - 184023.jpg image', '2009-12-18', 4, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 64);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (65, '184035.JPG', 'Viking/4/184035.JPG', 'Ices - 184035.JPG image', '2009-12-18', 4, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (140, '1985-01-08', 'fantastic shot !!!!!!',64, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (141, '1985-01-08', 'Stunning capture! :-)',64, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (65, '184030.jpg', 'Viking/4/184030.jpg', 'Ices - 184030.jpg image', '2009-12-18', 4, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 65);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (112, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',65, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (113, '1985-01-08', 'Bellissima macro!',65, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (114, '1985-01-08', 'Perfecft!',65, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (66, '184038.JPG', 'Viking/4/184038.JPG', 'Ices - 184038.JPG image', '2009-12-18', 4, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (142, '1985-01-08', 'I Think this is Art!',65, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (143, '1985-01-08', 'whoah ! wonderful',65, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (144, '1985-01-08', 'nice shot =) ',65, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (66, '184031.jpg', 'Viking/4/184031.jpg', 'Ices - 184031.jpg image', '2009-12-18', 4, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 66);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (115, '1985-01-08', 'Perfecft!',66, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (116, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',66, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (67, '184040.JPG', 'Viking/4/184040.JPG', 'Ices - 184040.JPG image', '2009-12-18', 4, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (145, '1985-01-08', 'nice shot =) ',66, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (146, '1985-01-08', 'Gorgeous! Lovely color!',66, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (147, '1985-01-08', 'I Think this is Art!',66, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (67, '184033.jpg', 'Viking/4/184033.jpg', 'Ices - 184033.jpg image', '2009-12-18', 4, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 67);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (117, '1985-01-08', 'Gorgeous! Lovely color!',67, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (68, '184044.JPG', 'Viking/4/184044.JPG', 'Ices - 184044.JPG image', '2009-12-18', 4, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (148, '1985-01-08', 'Very *lovely*',67, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (149, '1985-01-08', 'Bellísima.!!! saludos.',67, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (150, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',67, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (151, '1985-01-08', 'nice shot =) ',67, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (68, '184034.jpg', 'Viking/4/184034.jpg', 'Ices - 184034.jpg image', '2009-12-18', 4, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 68);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (118, '1985-01-08', 'whoah ! wonderful',68, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (119, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',68, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (120, '1985-01-08', 'Beautiful colours. Nice close up. ',68, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (69, '184046.JPG', 'Viking/4/184046.JPG', 'Ices - 184046.JPG image', '2009-12-18', 4, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (69, '184035.jpg', 'Viking/4/184035.jpg', 'Ices - 184035.jpg image', '2009-12-18', 4, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 69);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (121, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',69, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (122, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',69, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (70, '184047.JPG', 'Viking/4/184047.JPG', 'Ices - 184047.JPG image', '2009-12-18', 4, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (152, '1985-01-08', 'that is a beautiful flower with great colours ',69, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (153, '1985-01-08', 'Perfecft!',69, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (154, '1985-01-08', 'Bellissima macro!',69, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (155, '1985-01-08', 'Amazing shot..',69, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (70, '184038.jpg', 'Viking/4/184038.jpg', 'Ices - 184038.jpg image', '2009-12-18', 4, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 70);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (123, '1985-01-08', 'Wonderful.',70, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (124, '1985-01-08', 'Bellisima.!!! saludos.',70, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (125, '1985-01-08', 'I Think this is Art!',70, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (126, '1985-01-08', 'fantastic shot !!!!!!',70, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (71, '184053.JPG', 'Viking/4/184053.JPG', 'Ices - 184053.JPG image', '2009-12-18', 4, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (156, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',70, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (157, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',70, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (158, '1985-01-08', 'Gorgeous! Lovely color!',70, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (159, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',70, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (71, '184040.jpg', 'Viking/4/184040.jpg', 'Ices - 184040.jpg image', '2009-12-18', 4, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 71);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (127, '1985-01-08', 'Beautiful Flower...great Macro....Excellent !!!',71, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (128, '1985-01-08', 'Amazing shot..',71, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (129, '1985-01-08', 'Wonderful.',71, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (130, '1985-01-08', 'Gorgeous! Lovely color!',71, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (72, '184057.JPG', 'Viking/4/184057.JPG', 'Ices - 184057.JPG image', '2009-12-18', 4, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (160, '1985-01-08', 'Wonderful.',71, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (161, '1985-01-08', 'Very *lovely*',71, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (162, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',71, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (72, '184044.jpg', 'Viking/4/184044.jpg', 'Ices - 184044.jpg image', '2009-12-18', 4, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 72);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (131, '1985-01-08', 'Beautiful Flower...great Macro....Excellent !!!',72, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (132, '1985-01-08', 'Wonderful.',72, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (133, '1985-01-08', 'I Think this is Art!',72, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (134, '1985-01-08', 'I Think this is Art!',72, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (73, '184063.JPG', 'Viking/4/184063.JPG', 'Ices - 184063.JPG image', '2009-12-18', 4, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (73, '184046.jpg', 'Viking/4/184046.jpg', 'Ices - 184046.jpg image', '2009-12-18', 4, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 73);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (135, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',73, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (136, '1985-01-08', 'nice shot =) ',73, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (137, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',73, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (74, '184069.JPG', 'Viking/4/184069.JPG', 'Ices - 184069.JPG image', '2009-12-18', 4, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (163, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',73, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (164, '1985-01-08', 'Perfecft!',73, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (74, '184047.jpg', 'Viking/4/184047.jpg', 'Ices - 184047.jpg image', '2009-12-18', 4, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 74);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (138, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',74, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (139, '1985-01-08', 'Amazing shot..',74, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (140, '1985-01-08', 'Such a lovely colour azaga!',74, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (75, '184072.JPG', 'Viking/4/184072.JPG', 'Ices - 184072.JPG image', '2009-12-18', 4, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (165, '1985-01-08', 'Very *lovely*',74, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (75, '184053.jpg', 'Viking/4/184053.jpg', 'Ices - 184053.jpg image', '2009-12-18', 4, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 75);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (76, '184077.JPG', 'Viking/4/184077.JPG', 'Ices - 184077.JPG image', '2009-12-18', 4, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (166, '1985-01-08', 'Perfecft!',75, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (167, '1985-01-08', 'love every thing about this picture, really beautiful... :))',75, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (168, '1985-01-08', '++Beautiful',75, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (169, '1985-01-08', 'fantastic shot !!!!!!',75, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (76, '184057.jpg', 'Viking/4/184057.jpg', 'Ices - 184057.jpg image', '2009-12-18', 4, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 76);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (141, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',76, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (142, '1985-01-08', 'I Think this is Art!',76, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (143, '1985-01-08', 'Stunning capture! :-)',76, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (77, '184078.JPG', 'Viking/4/184078.JPG', 'Ices - 184078.JPG image', '2009-12-18', 4, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (170, '1985-01-08', 'this is extremely Good:) Congratulations!',76, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (77, '184063.jpg', 'Viking/4/184063.jpg', 'Ices - 184063.jpg image', '2009-12-18', 4, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 77);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (144, '1985-01-08', 'love every thing about this picture, really beautiful... :))',77, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (145, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',77, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (146, '1985-01-08', 'Beautiful Flower...great Macro....Excellent !!!',77, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (147, '1985-01-08', 'Bellissima macro!',77, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (78, '184079.JPG', 'Viking/4/184079.JPG', 'Ices - 184079.JPG image', '2009-12-18', 4, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (171, '1985-01-08', 'nice shot =) ',77, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (172, '1985-01-08', 'Stunning capture! :-)',77, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (173, '1985-01-08', 'whoah ! wonderful',77, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (78, '184069.jpg', 'Viking/4/184069.jpg', 'Ices - 184069.jpg image', '2009-12-18', 4, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 78);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (148, '1985-01-08', 'Wonderful.',78, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (149, '1985-01-08', 'love every thing about this picture, really beautiful... :))',78, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (150, '1985-01-08', 'Stunning capture! :-)',78, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (151, '1985-01-08', 'Bellisima.!!! saludos.',78, 2);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (79, '400000.JPG', 'Viking/4/400000.JPG', 'Ices - 400000.JPG image', '2009-12-18', 4, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (174, '1985-01-08', 'Such a lovely colour azaga!',78, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (175, '1985-01-08', 'love every thing about this picture, really beautiful... :))',78, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (176, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',78, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (79, '184072.jpg', 'Viking/4/184072.jpg', 'Ices - 184072.jpg image', '2009-12-18', 4, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 79);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (152, '1985-01-08', 'Beautiful colours. Nice close up. ',79, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (153, '1985-01-08', 'Stunning capture! :-)',79, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (177, '1985-01-08', 'Beautiful colours. Nice close up. ',79, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (178, '1985-01-08', 'love every thing about this picture, really beautiful... :))',79, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (179, '1985-01-08', '++Beautiful',79, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (180, '1985-01-08', 'Bellísima.!!! saludos.',79, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (80, '184077.jpg', 'Viking/4/184077.jpg', 'Ices - 184077.jpg image', '2009-12-18', 4, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 80);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (181, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',80, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (182, '1985-01-08', 'Stunning capture! :-)',80, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (81, '184078.jpg', 'Viking/4/184078.jpg', 'Ices - 184078.jpg image', '2009-12-18', 4, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 81);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (183, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',81, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (184, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',81, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (82, '184079.jpg', 'Viking/4/184079.jpg', 'Ices - 184079.jpg image', '2009-12-18', 4, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 82);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (185, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',82, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (186, '1985-01-08', 'Gorgeous! Lovely color!',82, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (83, '400000.jpg', 'Viking/4/400000.jpg', 'Ices - 400000.jpg image', '2009-12-18', 4, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 83);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (187, '1985-01-08', 'nice shot =) ',83, 2);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (84, 'thumbs.db', 'Viking/4/thumbs.db', 'Ices - thumbs.db image', '2009-12-18', 4, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(4, 84);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (188, '1985-01-08', 'Bellísima.!!! saludos.',84, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (189, '1985-01-08', 'Amazing shot..',84, 2);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (190, '1985-01-08', 'I Think this is Art!',84, 2);
---------------------------------------------------------------------
-- ALBUM - Sport
---------------------------------------------------------------------
-INSERT INTO albums(album_id, name, description, parent_shelf_id, created) VALUES (5, 'Sport', 'Sport pictures', 4, '2009-12-18');
+INSERT INTO albums(album_id, name, description, shelf_id, created) VALUES (5, 'Sport', 'Sport pictures', 2, '2009-12-18');
INSERT INTO metatags(metatag_id, tag) VALUES (5, 'Sport');
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (80, '23048.JPG', 'Noname/5/23048.JPG', 'Sport - 23048.JPG image', '2009-12-18', 5, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 80);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (154, '1985-01-08', 'Beautiful Flower...great Macro....Excellent !!!',80, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (81, '400003.JPG', 'Noname/5/400003.JPG', 'Sport - 400003.JPG image', '2009-12-18', 5, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 81);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (82, '400033.JPG', 'Noname/5/400033.JPG', 'Sport - 400033.JPG image', '2009-12-18', 5, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 82);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (155, '1985-01-08', 'Wonderful coloured flower .... excellent macro .... nice details!!!',82, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (156, '1985-01-08', 'Amazing shot..',82, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (157, '1985-01-08', 'Gorgeous! Lovely color!',82, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (158, '1985-01-08', 'Stunning capture! :-)',82, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (83, '400048.JPG', 'Noname/5/400048.JPG', 'Sport - 400048.JPG image', '2009-12-18', 5, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 83);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (159, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',83, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (84, '400081.JPG', 'Noname/5/400081.JPG', 'Sport - 400081.JPG image', '2009-12-18', 5, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 84);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (160, '1985-01-08', 'fantastic shot !!!!!!',84, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (161, '1985-01-08', 'whoah ! wonderful',84, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (162, '1985-01-08', 'Wonderful.',84, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (85, '479031.JPG', 'Noname/5/479031.JPG', 'Sport - 479031.JPG image', '2009-12-18', 5, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (85, '23048.jpg', 'Noname/5/23048.jpg', 'Sport - 23048.jpg image', '2009-12-18', 5, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 85);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (163, '1985-01-08', 'Gorgeous! Lovely color!',85, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (86, 'BALLOON.JPG', 'Noname/5/BALLOON.JPG', 'Sport - BALLOON.JPG image', '2009-12-18', 5, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (191, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',85, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (86, '400003.jpg', 'Noname/5/400003.jpg', 'Sport - 400003.jpg image', '2009-12-18', 5, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 86);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (164, '1985-01-08', 'Wonderful.',86, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (165, '1985-01-08', 'Wonderful.',86, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (166, '1985-01-08', 'this is extremely Good:) Congratulations!',86, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (87, 'HGHJUMP.JPG', 'Noname/5/HGHJUMP.JPG', 'Sport - HGHJUMP.JPG image', '2009-12-18', 5, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (192, '1985-01-08', 'Amazing shot..',86, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (87, '400033.jpg', 'Noname/5/400033.jpg', 'Sport - 400033.jpg image', '2009-12-18', 5, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 87);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (167, '1985-01-08', 'Perfecft!',87, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (168, '1985-01-08', 'Such a lovely colour azaga!',87, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (88, 'PINN01.JPG', 'Noname/5/PINN01.JPG', 'Sport - PINN01.JPG image', '2009-12-18', 5, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (88, '400048.jpg', 'Noname/5/400048.jpg', 'Sport - 400048.jpg image', '2009-12-18', 5, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 88);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (169, '1985-01-08', 'this is extremely Good:) Congratulations!',88, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (170, '1985-01-08', 'nice shot =) ',88, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (171, '1985-01-08', 'Gorgeous! Lovely color!',88, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (172, '1985-01-08', 'Very lovely',88, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (89, 'PINN04.JPG', 'Noname/5/PINN04.JPG', 'Sport - PINN04.JPG image', '2009-12-18', 5, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (193, '1985-01-08', 'Wonderful.',88, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (89, '400081.jpg', 'Noname/5/400081.jpg', 'Sport - 400081.jpg image', '2009-12-18', 5, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 89);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (90, 'PINN29.JPG', 'Noname/5/PINN29.JPG', 'Sport - PINN29.JPG image', '2009-12-18', 5, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (194, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',89, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (195, '1985-01-08', 'Beautiful colours. Nice close up. ',89, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (196, '1985-01-08', 'this is extremely Good:) Congratulations!',89, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (197, '1985-01-08', 'Amazing shot..',89, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (90, '479031.jpg', 'Noname/5/479031.jpg', 'Sport - 479031.jpg image', '2009-12-18', 5, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 90);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (173, '1985-01-08', 'Perfecft!',90, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (174, '1985-01-08', 'that is a beautiful flower with great colours ',90, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (175, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',90, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (91, 'PINN39.JPG', 'Noname/5/PINN39.JPG', 'Sport - PINN39.JPG image', '2009-12-18', 5, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (198, '1985-01-08', 'Stunning capture! :-)',90, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (199, '1985-01-08', 'nice shot =) ',90, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (200, '1985-01-08', 'nice shot =) ',90, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (91, 'balloon.jpg', 'Noname/5/balloon.jpg', 'Sport - balloon.jpg image', '2009-12-18', 5, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 91);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (92, 'PINN64.JPG', 'Noname/5/PINN64.JPG', 'Sport - PINN64.JPG image', '2009-12-18', 5, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (201, '1985-01-08', 'this is extremely Good:) Congratulations!',91, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (202, '1985-01-08', 'that is a beautiful flower with great colours ',91, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (203, '1985-01-08', 'Wonderful.',91, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (204, '1985-01-08', 'nice shot =) ',91, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (92, 'hghjump.jpg', 'Noname/5/hghjump.jpg', 'Sport - hghjump.jpg image', '2009-12-18', 5, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 92);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (176, '1985-01-08', 'Wonderful coloured flower .... excellent macro .... nice details!!!',92, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (177, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',92, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (93, 'SA28.JPG', 'Noname/5/SA28.JPG', 'Sport - SA28.JPG image', '2009-12-18', 5, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (205, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',92, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (206, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',92, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (207, '1985-01-08', 'I Think this is Art!',92, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (93, 'pinn01.jpg', 'Noname/5/pinn01.jpg', 'Sport - pinn01.jpg image', '2009-12-18', 5, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 93);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (178, '1985-01-08', 'Wonderful.',93, 3);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (94, 'SWIMMER.JPG', 'Noname/5/SWIMMER.JPG', 'Sport - SWIMMER.JPG image', '2009-12-18', 5, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (208, '1985-01-08', 'Bellissima macro!',93, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (94, 'pinn04.jpg', 'Noname/5/pinn04.jpg', 'Sport - pinn04.jpg image', '2009-12-18', 5, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 94);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (179, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',94, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (180, '1985-01-08', 'Stunning capture! :-)',94, 3);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (181, '1985-01-08', 'Stunning capture! :-)',94, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (209, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',94, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (210, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',94, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (211, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',94, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (95, 'pinn29.jpg', 'Noname/5/pinn29.jpg', 'Sport - pinn29.jpg image', '2009-12-18', 5, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 95);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (212, '1985-01-08', 'Beautiful colours. Nice close up. ',95, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (213, '1985-01-08', 'this is extremely Good:) Congratulations!',95, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (214, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',95, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (96, 'pinn39.jpg', 'Noname/5/pinn39.jpg', 'Sport - pinn39.jpg image', '2009-12-18', 5, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 96);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (215, '1985-01-08', 'love every thing about this picture, really beautiful... :))',96, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (216, '1985-01-08', 'love every thing about this picture, really beautiful... :))',96, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (217, '1985-01-08', 'Wonderful.',96, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (97, 'pinn64.jpg', 'Noname/5/pinn64.jpg', 'Sport - pinn64.jpg image', '2009-12-18', 5, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 97);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (218, '1985-01-08', 'love every thing about this picture, really beautiful... :))',97, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (219, '1985-01-08', 'Bellísima.!!! saludos.',97, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (220, '1985-01-08', 'fantastic shot !!!!!!',97, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (98, 'sa28.jpg', 'Noname/5/sa28.jpg', 'Sport - sa28.jpg image', '2009-12-18', 5, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 98);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (221, '1985-01-08', 'that is a beautiful flower with great colours ',98, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (222, '1985-01-08', 'fantastic shot !!!!!!',98, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (223, '1985-01-08', 'Stunning capture! :-)',98, 3);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (224, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',98, 3);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (99, 'swimmer.jpg', 'Noname/5/swimmer.jpg', 'Sport - swimmer.jpg image', '2009-12-18', 5, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 99);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (100, 'thumbs.db', 'Noname/5/thumbs.db', 'Sport - thumbs.db image', '2009-12-18', 5, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(5, 100);
---------------------------------------------------------------------
-- ALBUM - Underwater
---------------------------------------------------------------------
-INSERT INTO albums(album_id, name, description, parent_shelf_id, created) VALUES (6, 'Underwater', 'Underwater pictures', 1, '2009-12-18');
+INSERT INTO albums(album_id, name, description, shelf_id, created) VALUES (6, 'Underwater', 'Underwater pictures', 3, '2009-12-18');
INSERT INTO metatags(metatag_id, tag) VALUES (6, 'Underwater');
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (95, '45000.JPG', 'amarkhel/6/45000.JPG', 'Underwater - 45000.JPG image', '2009-12-18', 6, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 95);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (182, '1985-01-08', 'that is a beautiful flower with great colours ',95, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (96, '45001.JPG', 'amarkhel/6/45001.JPG', 'Underwater - 45001.JPG image', '2009-12-18', 6, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 96);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (183, '1985-01-08', 'fantastic shot !!!!!!',96, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (97, '45002.JPG', 'amarkhel/6/45002.JPG', 'Underwater - 45002.JPG image', '2009-12-18', 6, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 97);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (184, '1985-01-08', 'Bellissima macro!',97, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (185, '1985-01-08', 'Wonderful coloured flower .... excellent macro .... nice details!!!',97, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (98, '45003.JPG', 'amarkhel/6/45003.JPG', 'Underwater - 45003.JPG image', '2009-12-18', 6, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 98);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (186, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',98, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (99, '45004.JPG', 'amarkhel/6/45004.JPG', 'Underwater - 45004.JPG image', '2009-12-18', 6, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 99);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (187, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',99, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (188, '1985-01-08', 'Wonderful coloured flower .... excellent macro .... nice details!!!',99, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (189, '1985-01-08', 'Bellisima.!!! saludos.',99, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (190, '1985-01-08', 'Beautiful Flower...great Macro....Excellent !!!',99, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (100, '45005.JPG', 'amarkhel/6/45005.JPG', 'Underwater - 45005.JPG image', '2009-12-18', 6, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
-INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 100);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (191, '1985-01-08', 'Bellissima macro!',100, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (192, '1985-01-08', 'Such a lovely colour azaga!',100, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (193, '1985-01-08', 'I Think this is Art!',100, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (101, '45006.JPG', 'amarkhel/6/45006.JPG', 'Underwater - 45006.JPG image', '2009-12-18', 6, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (101, '45000.jpg', 'amarkhel/6/45000.jpg', 'Underwater - 45000.jpg image', '2009-12-18', 6, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 101);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (102, '45009.JPG', 'amarkhel/6/45009.JPG', 'Underwater - 45009.JPG image', '2009-12-18', 6, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (225, '1985-01-08', 'nice shot =) ',101, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (226, '1985-01-08', 'Beautiful colours. Nice close up. ',101, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (102, '45001.jpg', 'amarkhel/6/45001.jpg', 'Underwater - 45001.jpg image', '2009-12-18', 6, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 102);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (194, '1985-01-08', 'Wonderful.',102, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (195, '1985-01-08', 'Such a lovely colour azaga!',102, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (196, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',102, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (103, '45010.JPG', 'amarkhel/6/45010.JPG', 'Underwater - 45010.JPG image', '2009-12-18', 6, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (227, '1985-01-08', 'this is extremely Good:) Congratulations!',102, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (228, '1985-01-08', 'Fantastic job. Great light and color! Great shot!',102, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (229, '1985-01-08', 'nice shot =) ',102, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (103, '45002.jpg', 'amarkhel/6/45002.jpg', 'Underwater - 45002.jpg image', '2009-12-18', 6, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 103);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (197, '1985-01-08', 'Such a lovely colour azaga!',103, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (198, '1985-01-08', 'Perfecft!',103, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (199, '1985-01-08', 'Beautiful colours. Nice close up. ',103, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (200, '1985-01-08', 'Amazing shot..',103, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (104, '45012.JPG', 'amarkhel/6/45012.JPG', 'Underwater - 45012.JPG image', '2009-12-18', 6, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (104, '45003.jpg', 'amarkhel/6/45003.jpg', 'Underwater - 45003.jpg image', '2009-12-18', 6, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 104);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (201, '1985-01-08', 'this is extremely Good:) Congratulations!',104, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (202, '1985-01-08', 'Beautiful Flower...great Macro....Excellent !!!',104, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (105, '45013.JPG', 'amarkhel/6/45013.JPG', 'Underwater - 45013.JPG image', '2009-12-18', 6, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (230, '1985-01-08', 'Very *lovely*',104, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (231, '1985-01-08', 'Stunning capture! :-)',104, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (232, '1985-01-08', '++Beautiful',104, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (233, '1985-01-08', 'Such a lovely colour azaga!',104, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (105, '45004.jpg', 'amarkhel/6/45004.jpg', 'Underwater - 45004.jpg image', '2009-12-18', 6, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 105);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (203, '1985-01-08', 'fantastic shot !!!!!!',105, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (106, '45014.JPG', 'amarkhel/6/45014.JPG', 'Underwater - 45014.JPG image', '2009-12-18', 6, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (106, '45005.jpg', 'amarkhel/6/45005.jpg', 'Underwater - 45005.jpg image', '2009-12-18', 6, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 106);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (204, '1985-01-08', 'Bellissima macro!',106, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (107, '45016.JPG', 'amarkhel/6/45016.JPG', 'Underwater - 45016.JPG image', '2009-12-18', 6, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (234, '1985-01-08', 'Such a lovely colour azaga!',106, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (235, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',106, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (236, '1985-01-08', 'Wonderful.',106, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (107, '45006.jpg', 'amarkhel/6/45006.jpg', 'Underwater - 45006.jpg image', '2009-12-18', 6, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 107);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (108, '45017.JPG', 'amarkhel/6/45017.JPG', 'Underwater - 45017.JPG image', '2009-12-18', 6, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (237, '1985-01-08', 'Wonderful.',107, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (238, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',107, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (239, '1985-01-08', 'fantastic shot !!!!!!',107, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (108, '45009.jpg', 'amarkhel/6/45009.jpg', 'Underwater - 45009.jpg image', '2009-12-18', 6, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 108);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (205, '1985-01-08', 'Beautiful',108, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (206, '1985-01-08', 'Very lovely',108, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (207, '1985-01-08', 'this is extremely Good:) Congratulations!',108, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (109, '45018.JPG', 'amarkhel/6/45018.JPG', 'Underwater - 45018.JPG image', '2009-12-18', 6, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (240, '1985-01-08', 'nice shot =) ',108, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (241, '1985-01-08', 'love every thing about this picture, really beautiful... :))',108, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (109, '45010.jpg', 'amarkhel/6/45010.jpg', 'Underwater - 45010.jpg image', '2009-12-18', 6, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 109);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (208, '1985-01-08', 'Such a lovely colour azaga!',109, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (209, '1985-01-08', 'Perfecft!',109, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (110, '45019.JPG', 'amarkhel/6/45019.JPG', 'Underwater - 45019.JPG image', '2009-12-18', 6, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (242, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',109, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (243, '1985-01-08', 'love every thing about this picture, really beautiful... :))',109, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (244, '1985-01-08', 'nice shot =) ',109, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (245, '1985-01-08', 'Beautiful colours. Nice close up. ',109, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (110, '45012.jpg', 'amarkhel/6/45012.jpg', 'Underwater - 45012.jpg image', '2009-12-18', 6, 'Pentax Optio E40', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 110);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (111, '45020.JPG', 'amarkhel/6/45020.JPG', 'Underwater - 45020.JPG image', '2009-12-18', 6, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (111, '45013.jpg', 'amarkhel/6/45013.jpg', 'Underwater - 45013.jpg image', '2009-12-18', 6, 'Olympus Stylus mju 1040', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 111);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (210, '1985-01-08', 'really pretty. it looks like there is a lady in the center, blowing kisses!!',111, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (211, '1985-01-08', 'Bellissima macro!',111, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (212, '1985-01-08', 'whoah ! wonderful',111, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (112, '45021.JPG', 'amarkhel/6/45021.JPG', 'Underwater - 45021.JPG image', '2009-12-18', 6, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (112, '45014.jpg', 'amarkhel/6/45014.jpg', 'Underwater - 45014.jpg image', '2009-12-18', 6, 'BBK DP810', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 112);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (213, '1985-01-08', 'Amazing shot..',112, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (214, '1985-01-08', 'whoah ! wonderful',112, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (215, '1985-01-08', 'Stunning capture! :-)',112, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (113, '45022.JPG', 'amarkhel/6/45022.JPG', 'Underwater - 45022.JPG image', '2009-12-18', 6, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (113, '45016.jpg', 'amarkhel/6/45016.jpg', 'Underwater - 45016.jpg image', '2009-12-18', 6, 'BenQ DC E800', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 113);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (216, '1985-01-08', 'I Think this is Art!',113, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (217, '1985-01-08', 'I Think this is Art!',113, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (218, '1985-01-08', 'Beautiful Flower...great Macro....Excellent !!!',113, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (114, '45023.JPG', 'amarkhel/6/45023.JPG', 'Underwater - 45023.JPG image', '2009-12-18', 6, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (246, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',113, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (114, '45017.jpg', 'amarkhel/6/45017.jpg', 'Underwater - 45017.jpg image', '2009-12-18', 6, 'Konica Minolta', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 114);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (219, '1985-01-08', 'Gorgeous! Lovely color!',114, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (220, '1985-01-08', 'Beautiful',114, 1);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (221, '1985-01-08', 'this is extremely Good:) Congratulations!',114, 1);
-INSERT INTO images(image_id, name, path, description, created, img_album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (115, '45024.JPG', 'amarkhel/6/45024.JPG', 'Underwater - 45024.JPG image', '2009-12-18', 6, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (115, '45018.jpg', 'amarkhel/6/45018.jpg', 'Underwater - 45018.jpg image', '2009-12-18', 6, 'Panasonic', 1024, 1917, 768, '2009-12-01', true);
INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 115);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (222, '1985-01-08', 'Beautiful Flower...great Macro....Excellent !!!',115, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (247, '1985-01-08', 'fantastic shot !!!!!!',115, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (248, '1985-01-08', 'Such a lovely colour azaga!',115, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (249, '1985-01-08', '++Beautiful',115, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (250, '1985-01-08', 'Stunning capture! :-)',115, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (116, '45019.jpg', 'amarkhel/6/45019.jpg', 'Underwater - 45019.jpg image', '2009-12-18', 6, 'LG LDC-A310', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 116);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (251, '1985-01-08', 'Perfecft!',116, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (252, '1985-01-08', 'Stunning capture! :-)',116, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (117, '45020.jpg', 'amarkhel/6/45020.jpg', 'Underwater - 45020.jpg image', '2009-12-18', 6, 'Canon EOS 450D', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 117);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (253, '1985-01-08', 'fantastic shot !!!!!!',117, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (254, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',117, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (255, '1985-01-08', 'Superb Shot and so beautiful Colors !!! ',117, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (118, '45021.jpg', 'amarkhel/6/45021.jpg', 'Underwater - 45021.jpg image', '2009-12-18', 6, 'Sony CyberShot DSC-T77', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 118);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (256, '1985-01-08', 'Gorgeous! Lovely color!',118, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (257, '1985-01-08', 'Amazing shot..',118, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (119, '45022.jpg', 'amarkhel/6/45022.jpg', 'Underwater - 45022.jpg image', '2009-12-18', 6, 'Canon PowerShot SX110 IS', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 119);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (258, '1985-01-08', 'Bellísima.!!! saludos.',119, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (259, '1985-01-08', 'Wonderful.',119, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (260, '1985-01-08', '++Beautiful',119, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (261, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',119, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (120, '45023.jpg', 'amarkhel/6/45023.jpg', 'Underwater - 45023.jpg image', '2009-12-18', 6, 'Nikon D60', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 120);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (262, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',120, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (263, '1985-01-08', 'Beautiful ^Flower^...great Macro....Excellent !!!',120, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (264, '1985-01-08', 'Wow!! Macro stupenda!!! Complimenti! ',120, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (121, '45024.jpg', 'amarkhel/6/45024.jpg', 'Underwater - 45024.jpg image', '2009-12-18', 6, 'Sony Alpha DSLR-A350', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 121);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (265, '1985-01-08', 'that is a beautiful flower with great colours ',121, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (266, '1985-01-08', '|Wonderful| coloured flower .... *excellent* macro .... -nice- details!!!',121, 1);
+INSERT INTO comments(comment_id, date, message, image_id, user_id) VALUES (267, '1985-01-08', 'really pretty. it looks like there is a lady in the _center_, blowing kisses!!',121, 1);
+INSERT INTO images(image_id, name, path, description, created, album_id, cameraModel, width, size, height, uploaded, allowComments) VALUES (122, 'thumbs.db', 'amarkhel/6/thumbs.db', 'Underwater - thumbs.db image', '2009-12-18', 6, 'Canon Digital IXUS 80 IS (PowerShot SD1100 IS)', 1024, 1917, 768, '2009-12-01', true);
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) VALUES(6, 122);
+
+INSERT INTO metatags(metatag_id, tag) VALUES (7, 'butterfly');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 7, image_id from Images where name like '067%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (8, 'tiger');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 8, image_id from Images where name like '400004%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (9, 'zebra');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 9, image_id from Images where name like '400008%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (10, 'monkey');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 10, image_id from Images where name like '400028%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (11, 'ape');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 11, image_id from Images where name like '400028%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (12, 'lacerta');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 12, image_id from Images where name like '400034%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (13, 'lizard');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 13, image_id from Images where name like '400034%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (14, 'derr');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 14, image_id from Images where name like 'deer%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (15, 'dog');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 15, image_id from Images where name like 'dog2%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (16, 'turtle');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 16, image_id from Images where name like 'turtle%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (17, 'sunset');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 17, image_id from Images where name like '184030%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 17, image_id from Images where name like '184035%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 17, image_id from Images where name like '184053%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (18, 'mountaineering');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 18, image_id from Images where name like '23048%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (19, 'saltation');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 19, image_id from Images where name like '400003%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (20, 'horse race');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 20, image_id from Images where name like '400048%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (21, 'surfing');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 21, image_id from Images where name like '400081%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (22, 'golf');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 22, image_id from Images where name like '479031%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (23, 'balloon');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 23, image_id from Images where name like 'balloon%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (24, 'jump');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 24, image_id from Images where name like 'hghjump%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (25, 'swimmer');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 25, image_id from Images where name like 'swimmer%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (26, 'jellyfish');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 26, image_id from Images where name like '45003%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (27, 'fish');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45000%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45004%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45005%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45006%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45009%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45012%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45013%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45014%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45016%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45017%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45018%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 27, image_id from Images where name like '45019%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (28, 'diver');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 28, image_id from Images where name like '45001%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 28, image_id from Images where name like '45003%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 28, image_id from Images where name like '45016%');
+
+INSERT INTO metatags(metatag_id, tag) VALUES (29, 'starfish');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 29, image_id from Images where name like '45021%');
+INSERT INTO IMAGES_METATAGS(CI_METATAG_ID, CI_IMAGE_ID) ( select 29, image_id from Images where name like '45023%');
+
15 years, 9 months
JBoss Rich Faces SVN: r13305 - in tags/3.3.1.BETA2: cdk and 201 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-03-30 13:40:20 -0400 (Mon, 30 Mar 2009)
New Revision: 13305
Modified:
tags/3.3.1.BETA2/cdk/generator/pom.xml
tags/3.3.1.BETA2/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.1.BETA2/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA2/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.1.BETA2/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA2/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.1.BETA2/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA2/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.1.BETA2/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA2/cdk/maven-cdk-plugin/pom.xml
tags/3.3.1.BETA2/cdk/maven-javascript-plugin/pom.xml
tags/3.3.1.BETA2/cdk/maven-resource-dependency-plugin/pom.xml
tags/3.3.1.BETA2/cdk/pom.xml
tags/3.3.1.BETA2/docs/cdkguide/en/pom.xml
tags/3.3.1.BETA2/docs/cdkguide/pom.xml
tags/3.3.1.BETA2/docs/common-resources/en/pom.xml
tags/3.3.1.BETA2/docs/common-resources/pom.xml
tags/3.3.1.BETA2/docs/faq/en/pom.xml
tags/3.3.1.BETA2/docs/faq/pom.xml
tags/3.3.1.BETA2/docs/highlight/pom.xml
tags/3.3.1.BETA2/docs/migrationguide/en/pom.xml
tags/3.3.1.BETA2/docs/migrationguide/pom.xml
tags/3.3.1.BETA2/docs/pom.xml
tags/3.3.1.BETA2/docs/realworld_app_guide/en/pom.xml
tags/3.3.1.BETA2/docs/realworld_app_guide/pom.xml
tags/3.3.1.BETA2/docs/userguide/en/pom.xml
tags/3.3.1.BETA2/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.1.BETA2/docs/userguide/pom.xml
tags/3.3.1.BETA2/extensions/gwt/pom.xml
tags/3.3.1.BETA2/extensions/pom.xml
tags/3.3.1.BETA2/extensions/seam/pom.xml
tags/3.3.1.BETA2/extensions/trinidad/pom.xml
tags/3.3.1.BETA2/framework/api/pom.xml
tags/3.3.1.BETA2/framework/impl/pom.xml
tags/3.3.1.BETA2/framework/jsf-test/pom.xml
tags/3.3.1.BETA2/framework/pom.xml
tags/3.3.1.BETA2/framework/test/pom.xml
tags/3.3.1.BETA2/pom.xml
tags/3.3.1.BETA2/samples/beanValidatorSample/pom.xml
tags/3.3.1.BETA2/samples/calendar-sample/pom.xml
tags/3.3.1.BETA2/samples/colorPickerDemo/pom.xml
tags/3.3.1.BETA2/samples/columnsDemo/pom.xml
tags/3.3.1.BETA2/samples/combobox-sample/pom.xml
tags/3.3.1.BETA2/samples/contextMenuDemo/pom.xml
tags/3.3.1.BETA2/samples/darkX/pom.xml
tags/3.3.1.BETA2/samples/dataFilterSliderDemo/pom.xml
tags/3.3.1.BETA2/samples/dataTableDemo/pom.xml
tags/3.3.1.BETA2/samples/datascroller-sample/pom.xml
tags/3.3.1.BETA2/samples/dragDropDemo/pom.xml
tags/3.3.1.BETA2/samples/dropdownmenu-sample/pom.xml
tags/3.3.1.BETA2/samples/editor-sample/pom.xml
tags/3.3.1.BETA2/samples/editorSeam-sample/pom.xml
tags/3.3.1.BETA2/samples/effect-sample/pom.xml
tags/3.3.1.BETA2/samples/extendedDataTable-sample/pom.xml
tags/3.3.1.BETA2/samples/fileUploadDemo/pom.xml
tags/3.3.1.BETA2/samples/functions-demo/pom.xml
tags/3.3.1.BETA2/samples/glassX/pom.xml
tags/3.3.1.BETA2/samples/gmap-sample/pom.xml
tags/3.3.1.BETA2/samples/hotKey-sample/pom.xml
tags/3.3.1.BETA2/samples/inplaceInput-sample/pom.xml
tags/3.3.1.BETA2/samples/inplaceSelect-sample/pom.xml
tags/3.3.1.BETA2/samples/inputNumberSliderDemo/pom.xml
tags/3.3.1.BETA2/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.1.BETA2/samples/jQuery-sample/pom.xml
tags/3.3.1.BETA2/samples/jira-data/pom.xml
tags/3.3.1.BETA2/samples/laguna/pom.xml
tags/3.3.1.BETA2/samples/layout-sample/pom.xml
tags/3.3.1.BETA2/samples/listShuttleDemo/pom.xml
tags/3.3.1.BETA2/samples/local-value-demo/pom.xml
tags/3.3.1.BETA2/samples/modalpanel-sample/pom.xml
tags/3.3.1.BETA2/samples/orderingListDemo/pom.xml
tags/3.3.1.BETA2/samples/panel-sample/pom.xml
tags/3.3.1.BETA2/samples/panelbar-sample/pom.xml
tags/3.3.1.BETA2/samples/panelmenu-sample/pom.xml
tags/3.3.1.BETA2/samples/pickList-sample/pom.xml
tags/3.3.1.BETA2/samples/pom.xml
tags/3.3.1.BETA2/samples/progressBarDemo/pom.xml
tags/3.3.1.BETA2/samples/queue-sample/pom.xml
tags/3.3.1.BETA2/samples/rich-message-demo/pom.xml
tags/3.3.1.BETA2/samples/richfaces-art-datatable/pom.xml
tags/3.3.1.BETA2/samples/richfaces-demo/pom.xml
tags/3.3.1.BETA2/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.1.BETA2/samples/richfaces-ear-demo/pom.xml
tags/3.3.1.BETA2/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.1.BETA2/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.1.BETA2/samples/scrollableDataTableDemo/pom.xml
tags/3.3.1.BETA2/samples/seamEAR/ear/pom.xml
tags/3.3.1.BETA2/samples/seamEAR/ejbs/pom.xml
tags/3.3.1.BETA2/samples/seamEAR/pom.xml
tags/3.3.1.BETA2/samples/seamEAR/primary-source/pom.xml
tags/3.3.1.BETA2/samples/seamEAR/projects/logging/pom.xml
tags/3.3.1.BETA2/samples/seamEAR/projects/pom.xml
tags/3.3.1.BETA2/samples/seamEAR/wars/pom.xml
tags/3.3.1.BETA2/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.1.BETA2/samples/seamIntegration/pom.xml
tags/3.3.1.BETA2/samples/separator-sample/pom.xml
tags/3.3.1.BETA2/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.1.BETA2/samples/skins/pom.xml
tags/3.3.1.BETA2/samples/sortingFilteringDemo/pom.xml
tags/3.3.1.BETA2/samples/state-sample/pom.xml
tags/3.3.1.BETA2/samples/stdcomponents-sample/pom.xml
tags/3.3.1.BETA2/samples/suggestionbox-sample/pom.xml
tags/3.3.1.BETA2/samples/tabPanelDemo/pom.xml
tags/3.3.1.BETA2/samples/togglePanel-sample/pom.xml
tags/3.3.1.BETA2/samples/tomahawkCompability/pom.xml
tags/3.3.1.BETA2/samples/toolBarDemo/pom.xml
tags/3.3.1.BETA2/samples/tooltip-sample/pom.xml
tags/3.3.1.BETA2/samples/tree-demo/pom.xml
tags/3.3.1.BETA2/samples/treeModelDemo/pom.xml
tags/3.3.1.BETA2/samples/virtualEarth-sample/pom.xml
tags/3.3.1.BETA2/sandbox/api/pom.xml
tags/3.3.1.BETA2/sandbox/cdk/pom.xml
tags/3.3.1.BETA2/sandbox/impl/pom.xml
tags/3.3.1.BETA2/sandbox/pom.xml
tags/3.3.1.BETA2/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.1.BETA2/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.1.BETA2/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.1.BETA2/sandbox/samples/maven-rd-plugin-sample/pom.xml
tags/3.3.1.BETA2/sandbox/samples/panel2-sample/pom.xml
tags/3.3.1.BETA2/sandbox/samples/pom.xml
tags/3.3.1.BETA2/sandbox/samples/rex-demo/pom.xml
tags/3.3.1.BETA2/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.1.BETA2/sandbox/ui/dialog-window/pom.xml
tags/3.3.1.BETA2/sandbox/ui/editorOld/pom.xml
tags/3.3.1.BETA2/sandbox/ui/panel2/pom.xml
tags/3.3.1.BETA2/sandbox/ui/pom.xml
tags/3.3.1.BETA2/sandbox/ui/rex-button/pom.xml
tags/3.3.1.BETA2/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.1.BETA2/sandbox/ui/rex-resizable/pom.xml
tags/3.3.1.BETA2/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.1.BETA2/sandbox/ui/sortableHeader/pom.xml
tags/3.3.1.BETA2/sandbox/ui/treeTable/pom.xml
tags/3.3.1.BETA2/test-applications/ajaxTest/pom.xml
tags/3.3.1.BETA2/test-applications/automator/pom.xml
tags/3.3.1.BETA2/test-applications/facelets/pom.xml
tags/3.3.1.BETA2/test-applications/jsp/pom.xml
tags/3.3.1.BETA2/test-applications/pom.xml
tags/3.3.1.BETA2/test-applications/realworld2/pom.xml
tags/3.3.1.BETA2/test-applications/regressionArea/pom.xml
tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-tests/pom.xml
tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.1.BETA2/test-applications/richfaces-docs/pom.xml
tags/3.3.1.BETA2/test-applications/richfaces-docs/web/pom.xml
tags/3.3.1.BETA2/test-applications/seamApp/pom.xml
tags/3.3.1.BETA2/test-applications/seleniumTest/pom.xml
tags/3.3.1.BETA2/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.1.BETA2/test-applications/seleniumTest/samples/pom.xml
tags/3.3.1.BETA2/ui/assembly/pom.xml
tags/3.3.1.BETA2/ui/beanValidator/pom.xml
tags/3.3.1.BETA2/ui/calendar/pom.xml
tags/3.3.1.BETA2/ui/colorPicker/pom.xml
tags/3.3.1.BETA2/ui/columns/pom.xml
tags/3.3.1.BETA2/ui/combobox/pom.xml
tags/3.3.1.BETA2/ui/componentControl/pom.xml
tags/3.3.1.BETA2/ui/contextMenu/pom.xml
tags/3.3.1.BETA2/ui/core/pom.xml
tags/3.3.1.BETA2/ui/dataFilterSlider/pom.xml
tags/3.3.1.BETA2/ui/dataTable/pom.xml
tags/3.3.1.BETA2/ui/datascroller/pom.xml
tags/3.3.1.BETA2/ui/drag-drop/pom.xml
tags/3.3.1.BETA2/ui/dropdown-menu/pom.xml
tags/3.3.1.BETA2/ui/editor/pom.xml
tags/3.3.1.BETA2/ui/effect/pom.xml
tags/3.3.1.BETA2/ui/extendedDataTable/pom.xml
tags/3.3.1.BETA2/ui/fileUpload/pom.xml
tags/3.3.1.BETA2/ui/functions/pom.xml
tags/3.3.1.BETA2/ui/gmap/pom.xml
tags/3.3.1.BETA2/ui/hotKey/pom.xml
tags/3.3.1.BETA2/ui/inplaceInput/pom.xml
tags/3.3.1.BETA2/ui/inplaceSelect/pom.xml
tags/3.3.1.BETA2/ui/inputnumber-slider/pom.xml
tags/3.3.1.BETA2/ui/inputnumber-spinner/pom.xml
tags/3.3.1.BETA2/ui/insert/pom.xml
tags/3.3.1.BETA2/ui/jQuery/pom.xml
tags/3.3.1.BETA2/ui/layout/pom.xml
tags/3.3.1.BETA2/ui/listShuttle/pom.xml
tags/3.3.1.BETA2/ui/menu-components/pom.xml
tags/3.3.1.BETA2/ui/message/pom.xml
tags/3.3.1.BETA2/ui/modal-panel/pom.xml
tags/3.3.1.BETA2/ui/orderingList/pom.xml
tags/3.3.1.BETA2/ui/paint2D/pom.xml
tags/3.3.1.BETA2/ui/panel/pom.xml
tags/3.3.1.BETA2/ui/panelbar/pom.xml
tags/3.3.1.BETA2/ui/panelmenu/pom.xml
tags/3.3.1.BETA2/ui/pickList/pom.xml
tags/3.3.1.BETA2/ui/pom.xml
tags/3.3.1.BETA2/ui/progressBAR/pom.xml
tags/3.3.1.BETA2/ui/scrollableDataTable/pom.xml
tags/3.3.1.BETA2/ui/separator/pom.xml
tags/3.3.1.BETA2/ui/simpleTogglePanel/pom.xml
tags/3.3.1.BETA2/ui/spacer/pom.xml
tags/3.3.1.BETA2/ui/state/pom.xml
tags/3.3.1.BETA2/ui/suggestionbox/pom.xml
tags/3.3.1.BETA2/ui/tabPanel/pom.xml
tags/3.3.1.BETA2/ui/togglePanel/pom.xml
tags/3.3.1.BETA2/ui/toolBar/pom.xml
tags/3.3.1.BETA2/ui/tooltip/pom.xml
tags/3.3.1.BETA2/ui/tree/pom.xml
tags/3.3.1.BETA2/ui/treeModel/pom.xml
tags/3.3.1.BETA2/ui/treeTable/pom.xml
tags/3.3.1.BETA2/ui/virtualEarth/pom.xml
Log:
create tag for a release 3.3.1.BETA2
Modified: tags/3.3.1.BETA2/cdk/generator/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/generator/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/generator/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: tags/3.3.1.BETA2/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/maven-archetype-jsf-component/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/maven-archetype-jsf-component/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.BETA2/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/maven-archetype-jsfwebapp/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/maven-archetype-jsfwebapp/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.BETA2/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/maven-archetype-plug-n-skin/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/maven-archetype-plug-n-skin/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.1.BETA2/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.BETA2/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/maven-archetype-seam-app/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/maven-archetype-seam-app/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.BETA2</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.1.BETA2/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/maven-cdk-plugin/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/maven-cdk-plugin/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.BETA2/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/maven-javascript-plugin/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/maven-javascript-plugin/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.1.BETA2/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/maven-resource-dependency-plugin/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/maven-resource-dependency-plugin/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>maven-resource-dependency-plugin</name>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA2/cdk/pom.xml
===================================================================
--- tags/3.3.1.BETA2/cdk/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/cdk/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.BETA2/docs/cdkguide/en/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/cdkguide/en/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/cdkguide/en/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.1.BETA2/docs/cdkguide/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/cdkguide/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/cdkguide/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA2/docs/common-resources/en/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/common-resources/en/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/common-resources/en/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>en</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.BETA2/docs/common-resources/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/common-resources/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/common-resources/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.1.BETA2/docs/faq/en/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/faq/en/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/faq/en/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.1.BETA2/docs/faq/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/faq/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/faq/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<repositories>
Modified: tags/3.3.1.BETA2/docs/highlight/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/highlight/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/highlight/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.1.BETA2/docs/migrationguide/en/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/migrationguide/en/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/migrationguide/en/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: tags/3.3.1.BETA2/docs/migrationguide/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/migrationguide/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/migrationguide/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA2/docs/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.1.BETA2/docs/realworld_app_guide/en/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/realworld_app_guide/en/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/realworld_app_guide/en/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>realworld</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.realworld</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<packaging>jar</packaging>
<name>RichFaces Realworld application Guide (${translation})</name>
Modified: tags/3.3.1.BETA2/docs/realworld_app_guide/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/realworld_app_guide/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/realworld_app_guide/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>realworld</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>RichFaces Realworld application Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA2/docs/userguide/en/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/userguide/en/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/userguide/en/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.1.BETA2/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- tags/3.3.1.BETA2/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3289,7 +3289,7 @@
<listitem>
<para>
<code>-DarchetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.1-SNAPSHOT"</code>
+ <code>"3.3.1.BETA2"</code>
</para>
</listitem>
<listitem>
@@ -3540,7 +3540,7 @@
mvn archetype:create
-DarchetypeGroupId=org.richfaces.cdk
-DarchetypeArtifactId=maven-archetype-plug-n-skin
--DarchetypeVersion=3.3.1-SNAPSHOT
+-DarchetypeVersion=3.3.1.BETA2
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: tags/3.3.1.BETA2/docs/userguide/pom.xml
===================================================================
--- tags/3.3.1.BETA2/docs/userguide/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/docs/userguide/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA2/extensions/gwt/pom.xml
===================================================================
--- tags/3.3.1.BETA2/extensions/gwt/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/extensions/gwt/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.1.BETA2/extensions/pom.xml
===================================================================
--- tags/3.3.1.BETA2/extensions/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/extensions/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.1.BETA2/extensions/seam/pom.xml
===================================================================
--- tags/3.3.1.BETA2/extensions/seam/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/extensions/seam/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.1.BETA2/extensions/trinidad/pom.xml
===================================================================
--- tags/3.3.1.BETA2/extensions/trinidad/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/extensions/trinidad/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.1.BETA2/framework/api/pom.xml
===================================================================
--- tags/3.3.1.BETA2/framework/api/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/framework/api/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: tags/3.3.1.BETA2/framework/impl/pom.xml
===================================================================
--- tags/3.3.1.BETA2/framework/impl/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/framework/impl/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<resources>
<resource>
@@ -160,7 +160,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/framework/jsf-test/pom.xml
===================================================================
--- tags/3.3.1.BETA2/framework/jsf-test/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/framework/jsf-test/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.BETA2/framework/pom.xml
===================================================================
--- tags/3.3.1.BETA2/framework/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/framework/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: tags/3.3.1.BETA2/framework/test/pom.xml
===================================================================
--- tags/3.3.1.BETA2/framework/test/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/framework/test/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA2/pom.xml
===================================================================
--- tags/3.3.1.BETA2/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
Modified: tags/3.3.1.BETA2/samples/beanValidatorSample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/beanValidatorSample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/beanValidatorSample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -52,7 +52,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.1-SNAPSHOT</version> </dependency>
+ <version>3.3.1.BETA2</version> </dependency>
-->
<dependency>
<groupId>org.hibernate</groupId>
@@ -75,7 +75,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.1.BETA2/samples/calendar-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/calendar-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/calendar-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/colorPickerDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/colorPickerDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/colorPickerDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -35,7 +35,7 @@
<groupId>org.richfaces.framework
</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples
@@ -46,17 +46,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.BETA2/samples/columnsDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/columnsDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/columnsDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/combobox-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/combobox-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/combobox-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/contextMenuDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/contextMenuDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/contextMenuDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/darkX/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/darkX/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/darkX/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.BETA2/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/dataFilterSliderDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/dataFilterSliderDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/dataTableDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/dataTableDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/dataTableDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/datascroller-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/datascroller-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/datascroller-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/dragDropDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/dragDropDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/dragDropDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/dropdownmenu-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/dropdownmenu-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/dropdownmenu-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/editor-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/editor-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/editor-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA2/samples/editorSeam-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/editorSeam-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/editorSeam-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA2/samples/effect-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/effect-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/effect-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/extendedDataTable-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/extendedDataTable-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/extendedDataTable-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA2/samples/fileUploadDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/fileUploadDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/fileUploadDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/functions-demo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/functions-demo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/functions-demo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/glassX/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/glassX/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/glassX/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.BETA2/samples/gmap-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/gmap-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/gmap-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/hotKey-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/hotKey-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/hotKey-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA2/samples/inplaceInput-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/inplaceInput-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/inplaceInput-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/inplaceSelect-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/inplaceSelect-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/inplaceSelect-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/inputNumberSliderDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/inputNumberSliderDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/inputNumberSpinnerDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/inputNumberSpinnerDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/jQuery-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/jQuery-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/jQuery-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/jira-data/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/jira-data/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/jira-data/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/laguna/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/laguna/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/laguna/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.1.BETA2/samples/layout-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/layout-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/layout-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>layout-sample</artifactId>
<packaging>war</packaging>
<name>layout Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -33,17 +33,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/samples/listShuttleDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/listShuttleDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/listShuttleDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/local-value-demo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/local-value-demo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/local-value-demo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/modalpanel-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/modalpanel-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/modalpanel-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/orderingListDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/orderingListDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/orderingListDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/panel-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/panel-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/panel-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/panelbar-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/panelbar-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/panelbar-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/panelmenu-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/panelmenu-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/panelmenu-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/pickList-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/pickList-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/pickList-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA2/samples/progressBarDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/progressBarDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/progressBarDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/queue-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/queue-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/queue-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.1.BETA2/samples/rich-message-demo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/rich-message-demo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/rich-message-demo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/richfaces-art-datatable/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/richfaces-art-datatable/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/richfaces-art-datatable/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/richfaces-demo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/richfaces-demo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/richfaces-demo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -209,22 +209,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.1.BETA2/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/richfaces-ear-demo/ejb/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/richfaces-ear-demo/ejb/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.BETA2/samples/richfaces-ear-demo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/richfaces-ear-demo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/richfaces-ear-demo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.BETA2/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/richfaces-ear-demo/webapp/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/richfaces-ear-demo/webapp/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.BETA2/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/scrollableDataTableDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/scrollableDataTableDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.1.BETA2/samples/seamEAR/ear/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/seamEAR/ear/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/seamEAR/ear/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.BETA2/samples/seamEAR/ejbs/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/seamEAR/ejbs/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/seamEAR/ejbs/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.BETA2/samples/seamEAR/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/seamEAR/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/seamEAR/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/seamEAR/primary-source/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/seamEAR/primary-source/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/seamEAR/primary-source/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.BETA2/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/seamEAR/projects/logging/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/seamEAR/projects/logging/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
</project>
Modified: tags/3.3.1.BETA2/samples/seamEAR/projects/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/seamEAR/projects/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/seamEAR/projects/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.1.BETA2/samples/seamEAR/wars/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/seamEAR/wars/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/seamEAR/wars/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.1.BETA2/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/seamEAR/wars/seamWebapp/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/seamEAR/wars/seamWebapp/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.BETA2/samples/seamIntegration/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/seamIntegration/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/seamIntegration/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/separator-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/separator-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/separator-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/simpleTogglePanel-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/simpleTogglePanel-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/skins/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/skins/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/skins/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/sortingFilteringDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/sortingFilteringDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/sortingFilteringDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency-->
<dependency>
Modified: tags/3.3.1.BETA2/samples/state-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/state-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/state-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/samples/stdcomponents-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/stdcomponents-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/stdcomponents-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/suggestionbox-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/suggestionbox-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/suggestionbox-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/tabPanelDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/tabPanelDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/tabPanelDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/togglePanel-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/togglePanel-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/togglePanel-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/tomahawkCompability/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/tomahawkCompability/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/tomahawkCompability/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/toolBarDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/toolBarDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/toolBarDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/tooltip-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/tooltip-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/tooltip-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/tree-demo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/tree-demo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/tree-demo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/treeModelDemo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/treeModelDemo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/treeModelDemo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/samples/virtualEarth-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/samples/virtualEarth-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/samples/virtualEarth-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA2/sandbox/api/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/api/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/api/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA2/sandbox/cdk/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/cdk/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/cdk/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.BETA2/sandbox/impl/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/impl/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/impl/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA2/sandbox/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA2/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/samples/dialog-window-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/samples/dialog-window-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA2/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/samples/editorOld-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/samples/editorOld-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA2/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/samples/fileUploadPOC/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/samples/fileUploadPOC/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA2/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/samples/maven-rd-plugin-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/samples/maven-rd-plugin-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk.sandbox</groupId>
<artifactId>maven-rd-plugin-sample</artifactId>
<packaging>war</packaging>
<name>maven-rd-plugin-sample Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<finalName>maven-rd-plugin-sample</finalName>
<plugins>
@@ -23,7 +23,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<configuration>
<webSourceDirectory>${basedir}/src/main/webapp</webSourceDirectory>
@@ -72,7 +72,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/samples/panel2-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/samples/panel2-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA2/sandbox/samples/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/samples/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/samples/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA2/sandbox/samples/rex-demo/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/samples/rex-demo/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/samples/rex-demo/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
Modified: tags/3.3.1.BETA2/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA2/sandbox/ui/dialog-window/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/ui/dialog-window/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/ui/dialog-window/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA2/sandbox/ui/editorOld/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/ui/editorOld/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/ui/editorOld/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/sandbox/ui/panel2/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/ui/panel2/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/ui/panel2/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/sandbox/ui/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/ui/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/ui/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.1.BETA2/sandbox/ui/rex-button/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/ui/rex-button/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/ui/rex-button/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/ui/rex-messageBox/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/ui/rex-messageBox/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/ui/rex-resizable/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/ui/rex-resizable/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/ui/simpleTogglePanel2/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/ui/simpleTogglePanel2/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/ui/sortableHeader/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/ui/sortableHeader/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/sandbox/ui/treeTable/pom.xml
===================================================================
--- tags/3.3.1.BETA2/sandbox/ui/treeTable/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/sandbox/ui/treeTable/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/test-applications/ajaxTest/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/ajaxTest/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/ajaxTest/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.1.BETA2/test-applications/automator/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/automator/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/automator/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA2/test-applications/facelets/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/facelets/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/facelets/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA2/test-applications/jsp/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/jsp/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/jsp/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA2/test-applications/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.BETA2</rfVersion>
</properties>
<modules>
Modified: tags/3.3.1.BETA2/test-applications/realworld2/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/realworld2/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/realworld2/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -14,7 +14,7 @@
<properties>
<projectName>realworld</projectName>
- <richfacesVersion>3.3.1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.BETA2</richfacesVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<faceletsVersion>1.1.14</faceletsVersion>
<jbosshome>${project.basedir}/target/installs/jboss-4.2.3.GA/jboss-4.2.3.GA</jbosshome>
Modified: tags/3.3.1.BETA2/test-applications/regressionArea/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/regressionArea/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/regressionArea/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -60,7 +60,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.1-SNAPSHOT</richversion>
+ <richversion>3.3.1.BETA2</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-ear/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-ear/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-ejb/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-ejb/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-tests/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-tests/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-web/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/regressionArea/regressionArea-web/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.1.BETA2/test-applications/richfaces-docs/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/richfaces-docs/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/richfaces-docs/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -8,7 +8,7 @@
<name>richfaces-docs</name>
<properties>
<projectName>richfaces-docs</projectName>
- <richfacesVersion>3.3.1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.BETA2</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<droolsVersion>4.0.0</droolsVersion>
Modified: tags/3.3.1.BETA2/test-applications/richfaces-docs/web/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/richfaces-docs/web/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/richfaces-docs/web/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -46,7 +46,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<scope>provided</scope>
</dependency>
Modified: tags/3.3.1.BETA2/test-applications/seamApp/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/seamApp/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/seamApp/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.BETA2</rfVersion>
<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.1.BETA2/test-applications/seleniumTest/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/seleniumTest/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/seleniumTest/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -227,7 +227,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA2/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/seleniumTest/richfaces/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/seleniumTest/richfaces/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: tags/3.3.1.BETA2/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- tags/3.3.1.BETA2/test-applications/seleniumTest/samples/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/test-applications/seleniumTest/samples/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.1.BETA2/ui/assembly/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/assembly/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/assembly/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.3.1.BETA2/ui/beanValidator/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/beanValidator/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/beanValidator/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -3,19 +3,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: tags/3.3.1.BETA2/ui/calendar/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/calendar/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/calendar/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/colorPicker/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/colorPicker/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/colorPicker/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -12,7 +12,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/columns/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/columns/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/columns/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.BETA2/ui/combobox/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/combobox/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/combobox/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA2/ui/componentControl/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/componentControl/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/componentControl/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/contextMenu/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/contextMenu/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/contextMenu/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/core/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/core/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/core/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/dataFilterSlider/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/dataFilterSlider/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/dataFilterSlider/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/dataTable/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/dataTable/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/dataTable/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.BETA2/ui/datascroller/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/datascroller/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/datascroller/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/drag-drop/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/drag-drop/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/drag-drop/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.BETA2/ui/dropdown-menu/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/dropdown-menu/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/dropdown-menu/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/editor/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/editor/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/editor/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -80,7 +80,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Modified: tags/3.3.1.BETA2/ui/effect/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/effect/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/effect/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/extendedDataTable/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/extendedDataTable/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/extendedDataTable/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,45 +64,45 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/fileUpload/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/fileUpload/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/fileUpload/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/functions/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/functions/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/functions/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/gmap/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/gmap/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/gmap/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/hotKey/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/hotKey/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/hotKey/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/inplaceInput/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/inplaceInput/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/inplaceInput/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/inplaceSelect/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/inplaceSelect/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/inplaceSelect/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA2/ui/inputnumber-slider/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/inputnumber-slider/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/inputnumber-slider/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/inputnumber-spinner/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/inputnumber-spinner/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/inputnumber-spinner/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.BETA2/ui/insert/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/insert/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/insert/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/jQuery/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/jQuery/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/jQuery/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/layout/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/layout/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/layout/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -48,12 +48,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.BETA2/ui/listShuttle/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/listShuttle/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/listShuttle/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.BETA2/ui/menu-components/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/menu-components/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/menu-components/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/message/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/message/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/message/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/modal-panel/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/modal-panel/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/modal-panel/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/orderingList/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/orderingList/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/orderingList/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/paint2D/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/paint2D/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/paint2D/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/panel/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/panel/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/panel/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/panelbar/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/panelbar/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/panelbar/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/panelmenu/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/panelmenu/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/panelmenu/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/pickList/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/pickList/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/pickList/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA2/ui/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -138,12 +138,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.BETA2/ui/progressBAR/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/progressBAR/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/progressBAR/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/scrollableDataTable/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/scrollableDataTable/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/scrollableDataTable/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/separator/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/separator/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/separator/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.BETA2/ui/simpleTogglePanel/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/simpleTogglePanel/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/simpleTogglePanel/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/spacer/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/spacer/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/spacer/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/state/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/state/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/state/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/suggestionbox/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/suggestionbox/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/suggestionbox/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/tabPanel/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/tabPanel/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/tabPanel/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/togglePanel/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/togglePanel/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/togglePanel/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/toolBar/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/toolBar/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/toolBar/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/tooltip/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/tooltip/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/tooltip/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/tree/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/tree/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/tree/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/treeModel/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/treeModel/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/treeModel/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA2/ui/treeTable/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/treeTable/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/treeTable/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA2/ui/virtualEarth/pom.xml
===================================================================
--- tags/3.3.1.BETA2/ui/virtualEarth/pom.xml 2009-03-30 17:33:23 UTC (rev 13304)
+++ tags/3.3.1.BETA2/ui/virtualEarth/pom.xml 2009-03-30 17:40:20 UTC (rev 13305)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</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.1-SNAPSHOT</version>
+ <version>3.3.1.BETA2</version>
<executions>
<execution>
<phase>generate-sources</phase>
15 years, 9 months
JBoss Rich Faces SVN: r13304 - trunk/ui/combobox/src/main/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-03-30 13:33:23 -0400 (Mon, 30 Mar 2009)
New Revision: 13304
Modified:
trunk/ui/combobox/src/main/java/org/richfaces/renderkit/ComboBoxBaseRenderer.java
Log:
https://jira.jboss.org/jira/browse/RF-6596
Modified: trunk/ui/combobox/src/main/java/org/richfaces/renderkit/ComboBoxBaseRenderer.java
===================================================================
--- trunk/ui/combobox/src/main/java/org/richfaces/renderkit/ComboBoxBaseRenderer.java 2009-03-30 17:10:44 UTC (rev 13303)
+++ trunk/ui/combobox/src/main/java/org/richfaces/renderkit/ComboBoxBaseRenderer.java 2009-03-30 17:33:23 UTC (rev 13304)
@@ -94,7 +94,9 @@
values.addAll(encodeSuggestionValues(context, comboBox));
List<SelectItem> selectItems = SelectUtils.getSelectItems(context, component);
for (SelectItem selectItem : selectItems) {
- values.add(encodeSuggestion(context, comboBox, selectItem.getValue(), RICH_COMBOBOX_ITEM_CLASSES));
+ String convertedValue = getConvertedStringValue(context, component, selectItem.getValue());
+ encodeSuggestion(context, comboBox, convertedValue, RICH_COMBOBOX_ITEM_CLASSES);
+ values.add(convertedValue);
}
}
return values;
@@ -108,12 +110,16 @@
if (suggestionValues instanceof Collection) {
Collection collection = (Collection) suggestionValues;
for (Object suggestionValue : collection) {
- values.add(encodeSuggestion(context, combobox, suggestionValue, RICH_COMBOBOX_ITEM_CLASSES));
+ String convertedValue = getConvertedStringValue(context, combobox, suggestionValue);
+ encodeSuggestion(context, combobox, convertedValue, RICH_COMBOBOX_ITEM_CLASSES);
+ values.add(convertedValue);
}
} else if (suggestionValues.getClass().isArray()) {
Object[] suggestions = (Object[]) suggestionValues;
for (Object suggestionValue: suggestions) {
- values.add(encodeSuggestion(context, combobox, suggestionValue, RICH_COMBOBOX_ITEM_CLASSES));
+ String convertedValue = getConvertedStringValue(context, combobox, suggestionValue);
+ encodeSuggestion(context, combobox, convertedValue, RICH_COMBOBOX_ITEM_CLASSES);
+ values.add(convertedValue);
}
} else {
throw new IllegalArgumentException("suggestionValues should be Collection or Array");
@@ -131,17 +137,14 @@
return InputUtils.getConvertedStringValue(context, component, value);
}
- public String encodeSuggestion(FacesContext context, UIComponent component, Object value, String classes) throws IOException {
+ protected void encodeSuggestion(FacesContext context, UIComponent component, String value, String classes) throws IOException {
ResponseWriter writer = context.getResponseWriter();
- String encodedValue = null;
if(writer != null) {
- encodedValue = getConvertedStringValue(context, component, value);
writer.startElement(HTML.SPAN_ELEM, component);
writer.writeAttribute(HTML.class_ATTRIBUTE, classes, null);
writer.writeText(value, null);
writer.endElement(HTML.SPAN_ELEM);
}
- return encodedValue;
}
protected boolean isAcceptableComponent(UIComponent component) {
15 years, 9 months
JBoss Rich Faces SVN: r13303 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-03-30 13:10:44 -0400 (Mon, 30 Mar 2009)
New Revision: 13303
Modified:
trunk/docs/userguide/en/src/main/docbook/included/rich_page.desc.xml
Log:
https://jira.jboss.org/jira/browse/RF-6593
files with components' descriptions
Modified: trunk/docs/userguide/en/src/main/docbook/included/rich_page.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/rich_page.desc.xml 2009-03-30 17:10:12 UTC (rev 13302)
+++ trunk/docs/userguide/en/src/main/docbook/included/rich_page.desc.xml 2009-03-30 17:10:44 UTC (rev 13303)
@@ -6,7 +6,7 @@
<keyword>rich:layouPanel</keyword>
</keywordset>
</sectioninfo>
- <section>
+
<title>Description</title>
<para>The <emphasis role="bold">
<property><rich:page></property>
15 years, 9 months
JBoss Rich Faces SVN: r13302 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-03-30 13:10:12 -0400 (Mon, 30 Mar 2009)
New Revision: 13302
Modified:
trunk/docs/userguide/en/src/main/docbook/included/layout.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/layoutPanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/layoutPanel.xml
Log:
https://jira.jboss.org/jira/browse/RF-6593
files with components' descriptions
Modified: trunk/docs/userguide/en/src/main/docbook/included/layout.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/layout.desc.xml 2009-03-30 17:07:49 UTC (rev 13301)
+++ trunk/docs/userguide/en/src/main/docbook/included/layout.desc.xml 2009-03-30 17:10:12 UTC (rev 13302)
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<section role="updated">
+<section role="new">
<sectioninfo>
<keywordset>
<keyword>layout</keyword>
Modified: trunk/docs/userguide/en/src/main/docbook/included/layoutPanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/layoutPanel.desc.xml 2009-03-30 17:07:49 UTC (rev 13301)
+++ trunk/docs/userguide/en/src/main/docbook/included/layoutPanel.desc.xml 2009-03-30 17:10:12 UTC (rev 13302)
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<section role="updated">
+<section role="new">
<sectioninfo>
<keywordset>
<keyword>layouPanel</keyword>
@@ -10,16 +10,11 @@
<title>Description</title>
<para>The <emphasis role="bold">
<property><rich:layouPanel></property>
- </emphasis>
+ </emphasis> is an auxiliary component used to create layout areas within the <emphasis role="bold"><property><rich:layout></property></emphasis> container.
</para>
</section>
-<section>
- <title>Key Features</title>
- <itemizedlist>
- <listitem><para>P</para></listitem>
- </itemizedlist>
+
</section>
-</section>
\ No newline at end of file
Modified: trunk/docs/userguide/en/src/main/docbook/included/layoutPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/layoutPanel.xml 2009-03-30 17:07:49 UTC (rev 13301)
+++ trunk/docs/userguide/en/src/main/docbook/included/layoutPanel.xml 2009-03-30 17:10:12 UTC (rev 13302)
@@ -47,7 +47,11 @@
<emphasis role="bold">Example:</emphasis>
</para>
<programlisting role="XML"><![CDATA[...
-<layoutPanel />
+<rich:layout>
+ <rich:layoutPanel position="center">
+ <!--center-->
+</rich:layoutPanel>
+</rich:layout>
...]]></programlisting>
</section>
<section>
@@ -65,506 +69,12 @@
<title>Details of Usage</title>
<para>The <emphasis role="bold">
<property><layoutPanel></property>
- </emphasis> component consists of two parts:<itemizedlist>
- <listitem>
- <para>
- <property>List of files</property> which contains the list of currently
- chosen files to upload with possibility to manage every file </para>
- </listitem>
- <listitem>
- <para>
- <property>Component controls</property> - the bar with controls for managing
- the whole component </para>
- </listitem>
- </itemizedlist>
+ </emphasis> component is used to split the area inside the <emphasis role="bold"><property><rich:layout></property></emphasis> into up to 5 parts: top, left, center, right, bottom.
+
</para>
-
-
- <para> There are two places where the uploaded files are stored: </para>
- <itemizedlist>
- <listitem>
- <para> In the temporary folder (depends on OS) if the value of the
- <code>createTempFile</code> parameter in <property>Ajax4jsf
- Filter</property> (in web.xml) section is "true" (by Default) </para>
- <programlisting role="XML"><![CDATA[...
-<init-param>
- <param-name>createTempFiles</param-name>
- <param-value>true</param-value>
-</init-param>
-...]]></programlisting>
- </listitem>
- <listitem>
- <para> In the RAM if the value of the <code>createTempFile</code> parameter in
- <property>Ajax4jsf Filter</property> section is "false".
- This is a better way for storing small-sized files. </para>
- </listitem>
- </itemizedlist>
-
- <para> The <emphasis>
- <property>"uploadData"</property>
- </emphasis> attribute defines the collection of files uploaded. See the example below. </para>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
-<layoutPanel uploadData="#{bean.data}"/>
-...]]></programlisting>
-
- <para>The <emphasis>
- <property>"layoutPaneledListener"</property>
- </emphasis> is called at server side after every file uploaded and used for the saving
- files from temporary folder or RAM. </para>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
-<layoutPanel uploadData="#{bean.data}" layoutPanelListener="#{bean.listener}"/>
- ...]]></programlisting>
- <para> The following methods for processing the uploaded files are available: </para>
- <itemizedlist>
- <listitem>
- <para>
- <code>isMultiUpload()</code>. It returns "true" if several
- files have been uploaded </para>
- </listitem>
- <listitem>
- <para>
- <code>getUploadItems()</code>. It returns the list of the uploaded files. If one
- file was uploaded, the <code>getUploadItems()</code> method will return the list
- consisting of one file </para>
- </listitem>
- <listitem>
- <para>
- <code>getUploadItem()</code>. It returns the whole list in case of uploading one
- file only. If several files were uploaded, the <code>getUploadItem()</code>
- method will return the first element of the uploaded files list. </para>
- </listitem>
- </itemizedlist>
- <para> Automatically files uploading could be performed by means of the <emphasis>
- <property> "immediateUpload"</property>
- </emphasis> attribute. If the value of this attribute is "true" files
- are uploaded automatically once they have been added into the list. All next files in
- the list are uploaded automatically one by one. If you cancel uploading process next
- files aren't started to upload till you press the "Upload"
- button or clear the list. </para>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
-<layoutPanel uploadData="#{bean.data}" layoutPanelListener="#{bean.listener}" immediateUpload="true"/>
- ...]]></programlisting>
-
- <para> The <emphasis>
- <property> "autoclear"</property>
- </emphasis> attribute is used to remove automatically files from the list after upload
- completed. See the simple example below. </para>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
-<layoutPanel uploadData="#{bean.data}" autoclear="true"/>
-...]]></programlisting>
- <para> Each file in list waiting for upload has link "Cancel" opposite its name.
- Clicking this link invokes JS API <code>remove()</code> function, which gets <code>$('id').component.entries[i]</code> as a parameter
- and removes the particular file from list and from the queue for upload.
- After a file has been uploaded the link "Cancel" changes to "Clear".
- Clicking "Clear" invokes <code>clear()</code> JS API function, which also gets ID of the particular entry and removes it from the list.
- Uploaded to server file itself is kept untouched.
- </para>
-
- <!--RESTRICTIONS-->
-
- <para> The <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis> component provides following restrictions: </para>
- <itemizedlist>
- <listitem>
- <para> On <property> file types</property>, use <emphasis>
- <property> "acceptedTypes"</property>
- </emphasis> attribute to define file types accepted by component. In the example
- below only files with "html" and "jpg"
- extensions are accepted to upload. </para>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
-<layoutPanel acceptedTypes="html, jpg"/>
-...]]></programlisting>
- </listitem>
- <listitem>
- <para> On <property> file size</property>, use the <code>maxRequestSize</code>
- parameter(value in bytes) inside <property>Ajax4jsf Filter</property> section in
- <property>web.xml</property>: </para>
- <programlisting role="XML"><![CDATA[...
-<init-param>
- <param-name>maxRequestSize</param-name>
- <param-value>1000000</param-value>
-</init-param>
-...]]></programlisting>
- </listitem>
- <listitem>
- <para> On <property>max files quantity</property>, use the <emphasis>
- <property> "maxFilesQuantity"</property>
- </emphasis> attribute to define max number of files allowed to be uploaded.
- After a number of files in the list equals to the value of this attribute
- "Add" button is disabled and nothing could be uploaded even if
- you clear the whole list. In order to upload files again you should rerender the
- component. As it could be seen in the example below, only 2 files are accepted
- for uploading. </para>
-
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
-<layoutPanel maxFilesQuantity="2"/>
- ...]]></programlisting>
- <para> This is the result: </para>
- <figure>
- <title><emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis>with <emphasis>
- <property> "maxFilesQuantity"</property>
- </emphasis> attribute</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/layoutPanel2.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- </listitem>
- </itemizedlist>
-
-
-
-
- <para id="layoutPanelEventAttributes">The <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis> component provides a number of specific event attributes: </para>
- <itemizedlist>
-
- <listitem>
- <para> The <emphasis>
- <property> "onadd"</property>
- </emphasis>a event handler called on an add file operation </para>
- </listitem>
-
- <listitem>
- <para> The <emphasis>
- <property> "onupload"</property>
- </emphasis> which gives you a possibility to cancel the upload at client side
- </para>
- </listitem>
- <listitem>
- <para> The <emphasis>
- <property> "onuploadcomplete"</property>
- </emphasis> which is called after all files from the list are uploaded </para>
- </listitem>
- <listitem>
- <para> The <emphasis>
- <property> "onuploadcanceled"</property>
- </emphasis> which is called after upload has been canceled via cancel control
- </para>
- </listitem>
- <listitem>
- <para> The <emphasis>
- <property> "onerror"</property>
- </emphasis> which is called if the file upload was interrupted according to any
- errors </para>
- </listitem>
- </itemizedlist>
-
-
-
-
- <!--Flash Module-->
- <para> The <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis> component has an embedded Flash module that adds extra functionality to the
- component. The module is enabled with <emphasis>
- <property> "allowFlash"</property>
- </emphasis> attribute set to "true". </para>
- <para>These are the additional features that the Flash module provides:</para>
-
- <itemizedlist>
- <listitem>
- <para>Multiple files choosing;</para>
- </listitem>
- <listitem>
- <para>Permitted file types are specified in the "Open File" dialog
- window;</para>
- </listitem>
- <listitem>
- <para>A number of additional entry object properties are also available, which can
- be found <link linkend="objectProperties">here</link>. </para>
- </listitem>
- </itemizedlist>
-
- <para>Apart from uploading files to the sever without using AJAX, the Flash module provides
- a number of useful API functions that can be used to obtain information about the
- uploaded file. </para>
-
- <para>There are 2 ways to obtain the data stored in the layoutPanelEntry object. </para>
-
- <itemizedlist>
- <listitem>
- <para>By means of JavaScript on the client side. Use the following syntax for that
- <code>entries[i].propertyName</code>. For example
- <code>entries[0].state</code> will return the state of the file the is being
- processed or has just been processed.</para>
- </listitem>
-
-
- <listitem>
- <para>The properties of <code>layoutPanelEntry</code> object can be retrieved using
- the <code>entry.propertyName</code> expression in the specific event attributes.
- For example,
- <code>onupload="alert(event.memo.entry.fileName);" </code>
- will display a message with the name of the file at the very moment when upload
- operation starts. A full list of properties can be found <link
- linkend="objectPropertiesWithAttributes">here</link>.</para>
- </listitem>
-
-
- </itemizedlist>
- <para>The given bellow code sample demonstrates how the properties can be used. Please study
- it carefully. </para>
- <programlisting role="XML"><![CDATA[...
- <head>
- <script>
- function _onaddHandler (e) {
- var i = 0;
- for (; i < e.memo.entries.lenght; i++) {
- alert(e.memo.entries[i].creator); //Shows creators of the added files
- }
- }
-
- function _onerrorhandle(e) {
- alert(e.memo.entry.fileName + "file was not uploaded due transfer error");
- }
- </script>
- </head>
- ...]]></programlisting>
-
-
-
- <para> Moreover, embedded Flash module provides a smoother representation of progress bar
- during the uploading process: the polling is performed is not by AJAX, but my means of
- the flash module. </para>
- <figure>
- <title> Uploading using Flash module <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis>
- </title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/flash_layoutPanel.png"/>
- </imageobject>
- </mediaobject>
- </figure>
-
- <para>However, the Flash module doens't perform any visual representation of the
- component.</para>
-
- <!--End of Flash Module-->
-
-
-
-
-
- <para> In order to customize the information regarding the ongoing process you could use <emphasis>
- <property>"label"</property>
- </emphasis> facet with the following macrosubstitution: <itemizedlist>
- <listitem>
- <para>
- <code> {B}</code>, <code>{KB}</code>, <code>{MB}</code> contains the size of
- file uploaded in bytes, kilobytes, megabytes respectively </para>
- </listitem>
- <listitem>
- <para>
- <code>{_B}</code>, <code>{_KB}</code>, <code>{_MB}</code> contains the
- remain file size to upload in bytes, kilobytes, megabytes respectively
- </para>
- </listitem>
- <listitem>
- <para>
- <code>{ss}</code>, <code>{mm}</code>, <code>{hh}</code> contains elapsed
- time in seconds, minutes and hours respectively </para>
- </listitem>
- </itemizedlist>
- </para>
-
- <!--
- There is a number of facets providing for this component:
- <emphasis>
- <property> "header"</property></emphasis>
-
- <emphasis>
- <property> "footer"</property></emphasis>
- <emphasis>
- <property> "label"</property></emphasis>. could be used to provide displaying the progress of uploading.
- -->
-
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
-<layoutPanel uploadData="#{bean.data}" layoutPanelListener="#{bean.listener}">
- <f:facet name="label">
- <h:outputText value="{_KB}KB from {KB}KB uploaded --- {mm}:{ss}" />
- </f:facet>
-</layoutPanel>
-...]]></programlisting>
- <para>This is the result:</para>
- <figure>
- <title>
- <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis> with <emphasis>
- <property> "label"</property>
- </emphasis> facet </title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/layoutPanel3.png"/>
- </imageobject>
- </mediaobject>
- </figure>
-
- <para>You could define labels of the <property>component controls</property> with the help
- of <emphasis>
- <property> "addControlLabel"</property>
- </emphasis>, <emphasis>
- <property> "clearAllControlLabel"</property>
- </emphasis>, <emphasis>
- <property> "clearControlLabel"</property>
- </emphasis>, <emphasis>
- <property> "stopEntryControlLabel"</property>
- </emphasis>, <emphasis>
- <property> "uploadControlLabel"</property>
- </emphasis> attributes. See the following example. </para>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
-<layoutPanel addControlLabel="Add file..." clearAllControlLabel="Clear all" clearControlLabel="Clear"
- stopEntryControlLabel="Stop process" uploadControlLabel="Upload file"/>
-...]]></programlisting>
- <para> This is the result: </para>
- <figure>
- <title>
- <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis> with labels </title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/layoutPanel4.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para> The <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis> component allows to use sizes attributes: </para>
- <itemizedlist>
- <listitem>
- <para>
- <emphasis>
- <property> "listHeight"</property>
- </emphasis> attribute specify height for list of files in pixels </para>
- </listitem>
- <listitem>
- <para>
- <emphasis>
- <property> "listWidth"</property>
- </emphasis> attribute specify width for list of files in pixels </para>
- </listitem>
- </itemizedlist>
-
- <para> In order to disable the whole component you could use the <emphasis>
- <property> "disabled"</property>
- </emphasis> attribute. See the following example. </para>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
-<layoutPanel disabled="true"/>
-...]]></programlisting>
- <para>This is the result:</para>
- <figure>
- <title>
- <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis>with <emphasis>
- <property> "disabled"</property>
- </emphasis> attribute </title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/layoutPanel5.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>It's possible to handle events for layoutPanel using JavaScript code. A
- simplest example of usage JavaScript API is placed below:</para>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
-<layoutPanel id="upload" disabled="false"/>
-<h:commandButton onclick="${rich:component('upload')}.disable();" value="Disable" />
-...]]></programlisting>
-
- <para>
- <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis> component also provides a number of JavaScript property, that can be used to
- process uploaded files, file states etc. The given below example illustrates how the
- <code>entries[0].state</code> property can be used to get access to the file state.
- Full list of JavaScript properties can be found <link linkend="objectProperties"
- >below</link>. </para>
-
-
- <programlisting role="XML"><![CDATA[...
-<layoutPanel layoutPanelListener="#{layoutPanelBean.listener}"
- maxFilesQuantity="#{layoutPanelBean.uploadsAvailable}"
- id="upload"
- immediateUpload="#{layoutPanelBean.autoUpload}"
- acceptedTypes="jpg, gif, png, bmp">
- <a4j:support event="onuploadcomplete" reRender="info" />
-</layoutPanel>
-<h:commandButton onclick="if($('j_id232:upload').component.entries[0].state == layoutPanelEntry.UPLOAD_SUCCESS) alert ('DONE');" value="Check file state"/>
-...]]></programlisting>
-
-
- <para>The <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis> component allows to use internationalization method to redefine and localize
- the labels. You could use application resource bundle and define
- <code>RICH_FILE_UPLOAD_CANCEL_LABEL</code>,
- <code>RICH_FILE_UPLOAD_STOP_LABEL</code>, <code>RICH_FILE_UPLOAD_ADD_LABEL</code>,
- <code>RICH_FILE_UPLOAD_UPLOAD_LABEL</code>,
- <code>RICH_FILE_UPLOAD_CLEAR_LABEL</code>,
- <code>RICH_FILE_UPLOAD_CLEAR_ALL_LABEL</code>,
- <code>RICH_FILE_UPLOAD_PROGRESS_LABEL</code>,
- <code>RICH_FILE_UPLOAD_SIZE_ERROR_LABLE</code>,
- <code>RICH_FILE_UPLOAD_TRANSFER_ERROR_LABLE</code>,
- <code>RICH_FILE_UPLOAD_ENTRY_STOP_LABEL</code>,
- <code>RICH_FILE_UPLOAD_ENTRY_CLEAR_LABEL</code>,
- <code>RICH_FILE_UPLOAD_ENTRY_CANCEL_LABEL</code> there. </para>
-
-
-
- <para> The <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis> component could work together with Seam framework. <ulink
- url="http://www.jboss.org/file-access/default/members/jbossrichfaces/freezone/..."
- >Here</ulink> you can see how to configure filter for this framework in web.xml file
- in order to handle <emphasis role="bold">
- <property><layoutPanel></property>
- </emphasis> requests. </para>
- <para>To make <property><layoutPanel></property> component work properly
- with MyFaces extensions, the order in which filters are defined and mapped in web.xml,
- is important. See <ulink
- url="http://www.jboss.org/file-access/default/members/jbossrichfaces/freezone/..."
- >corresponding FAQ chapter</ulink>. </para>
-
+ <para>The <emphasis><property>"position"</property></emphasis> attribute defines the position of the <emphasis role="bold"><property><rich:layoutPanel></property></emphasis> in the area created with <emphasis role="bold"><property><rich:layout></property></emphasis> .</para>
+ <para>In more detail the component is covered in the <link linkend="DofURichLayout"><emphasis role="bold"><property><rich:layout></property></emphasis></link></para>
+
</section>
<!-- JavaScript API-->
<section>
15 years, 9 months