JBoss Rich Faces SVN: r11933 - trunk/test-applications/regressionArea.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-19 14:53:01 -0500 (Fri, 19 Dec 2008)
New Revision: 11933
Modified:
trunk/test-applications/regressionArea/pom.xml
Log:
Regression area pom updated
Modified: trunk/test-applications/regressionArea/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/pom.xml 2008-12-19 19:05:21 UTC (rev 11932)
+++ trunk/test-applications/regressionArea/pom.xml 2008-12-19 19:53:01 UTC (rev 11933)
@@ -63,9 +63,9 @@
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
<richversion>3.3.0-SNAPSHOT</richversion>
- <seamversion>2.0.2.SP1</seamversion>
- <jsfversion>1.2_09</jsfversion>
- <jbosshome>C:/tmp/jboss-4.2.2.GA</jbosshome>
+ <seamversion>2.1.0.SP1</seamversion>
+ <jsfversion>1.2_10</jsfversion>
+ <jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
<jbosscontext>default</jbosscontext>
</properties>
@@ -96,6 +96,16 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4</version>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </configuration>
+ </plugin>
</plugins>
16 years, 9 months
JBoss Rich Faces SVN: r11932 - trunk/framework/impl/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-19 14:05:21 -0500 (Fri, 19 Dec 2008)
New Revision: 11932
Modified:
trunk/framework/impl/src/main/resources/org/richfaces/renderkit/html/scripts/skinning.js
Log:
https://jira.jboss.org/jira/browse/RF-4383
Modified: trunk/framework/impl/src/main/resources/org/richfaces/renderkit/html/scripts/skinning.js
===================================================================
--- trunk/framework/impl/src/main/resources/org/richfaces/renderkit/html/scripts/skinning.js 2008-12-19 18:27:59 UTC (rev 11931)
+++ trunk/framework/impl/src/main/resources/org/richfaces/renderkit/html/scripts/skinning.js 2008-12-19 19:05:21 UTC (rev 11932)
@@ -1,7 +1,9 @@
{
var mediaName = "rich-extended-skinning";
- var skipNavigator = window.opera || navigator.userAgent.indexOf('AppleWebKit/') > -1;
+ var userAgent = navigator.userAgent;
+
+ var skipNavigator = window.opera || (userAgent.indexOf('AppleWebKit/') > -1 && userAgent.indexOf('Chrome/') == -1);
if (!skipNavigator) {
var resetMedia = function(elt) {
16 years, 9 months
JBoss Rich Faces SVN: r11931 - in trunk/test-applications/seleniumTest/richfaces/src: test/java/org/richfaces/testng and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-12-19 13:27:59 -0500 (Fri, 19 Dec 2008)
New Revision: 11931
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/listShuttle/listShuttleTest.xhtml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ListShuttleTest.java
Log:
RF-5309
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/listShuttle/listShuttleTest.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ListShuttleTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ListShuttleTest.java 2008-12-19 18:16:00 UTC (rev 11930)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/ListShuttleTest.java 2008-12-19 18:27:59 UTC (rev 11931)
@@ -134,6 +134,29 @@
tagValidatorId = attrFormId + ":tagValidatorId";
}
+ /**
+ * Respective number of columns, header dimensions
+ */
+ @Test
+ public void testNumberOfColumnsAndHeaderDimensions(Template template) {
+ init(template);
+ _selectItem(parentId + "ls:0", true, false);
+ clickById(copyId);
+ clickAjaxCommandAndWait(submitId);
+ String tdXpath = "id('" + lsId +"tbody')/tr[1]/td";
+ String thXpath = "id('" + lsId +"internal_header_tab')/thead/tr/th";
+ Assert.assertEquals(selenium.getXpathCount(tdXpath).intValue(), 2);
+ for (int i = 1; i <= 2; i++) {
+ Assert.assertEquals(selenium.getElementWidth("xpath=" + tdXpath + "[" + i + "]").intValue(), selenium.getElementWidth("xpath=" + thXpath + "[" + i + "]").intValue());
+ }
+ tdXpath = "id('" + lsId +"tlTbody')/tr[1]/td";
+ thXpath = "id('" + lsId +"tlInternal_header_tab')/thead/tr/th";
+ Assert.assertEquals(selenium.getXpathCount(thXpath).intValue(), 2);
+ for (int i = 1; i <= 2; i++) {
+ Assert.assertEquals(selenium.getElementWidth("xpath=" + tdXpath + "[" + i + "]").intValue(), selenium.getElementWidth("xpath=" + thXpath + "[" + i + "]").intValue());
+ }
+ }
+
/**
* Check control facets
*/
16 years, 9 months
JBoss Rich Faces SVN: r11930 - trunk/ui/listShuttle/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-19 13:16:00 -0500 (Fri, 19 Dec 2008)
New Revision: 11930
Modified:
trunk/ui/listShuttle/src/main/config/component/listShuttle.xml
Log:
ListShuttle: "required" attribute hidden
Modified: trunk/ui/listShuttle/src/main/config/component/listShuttle.xml
===================================================================
--- trunk/ui/listShuttle/src/main/config/component/listShuttle.xml 2008-12-19 18:14:34 UTC (rev 11929)
+++ trunk/ui/listShuttle/src/main/config/component/listShuttle.xml 2008-12-19 18:16:00 UTC (rev 11930)
@@ -69,6 +69,9 @@
<property hidden="true">
<name>value</name>
</property>
+ <property hidden="true">
+ <name>required</name>
+ </property>
<property elonly="true">
<name>sourceSelection</name>
16 years, 9 months
JBoss Rich Faces SVN: r11929 - in trunk/test-applications/realworld: ejb/src/main/java/org/richfaces/realworld/service and 8 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2008-12-19 13:14:34 -0500 (Fri, 19 Dec 2008)
New Revision: 11929
Modified:
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Album.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Image.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/AlbumAction.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ImageAction.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/SearchService.java
trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/UserAction.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBean.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/session/Authenticator.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ImageHelper.java
trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ModalPanelHelper.java
trunk/test-applications/realworld/web/src/main/resources/messages_en.properties
trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/components.xml
trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/tags/templates/imagePrefs.xhtml
trunk/test-applications/realworld/web/src/main/webapp/error.xhtml
trunk/test-applications/realworld/web/src/main/webapp/fileUpload.xhtml
trunk/test-applications/realworld/web/src/main/webapp/stylesheet/realworld.css
Log:
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Album.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Album.java 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Album.java 2008-12-19 18:14:34 UTC (rev 11929)
@@ -67,16 +67,6 @@
@NotEmpty
@Length(min=3)
private String description;
-
- /*@OneToMany(mappedBy = "parent", cascade = { CascadeType.ALL }, fetch = FetchType.LAZY)
- @org.hibernate.annotations.LazyCollection(org.hibernate.annotations.LazyCollectionOption.EXTRA)
- @org.hibernate.annotations.OrderBy(clause = "NAME asc")
- private List<Album> childAlbums = new ArrayList<Album>();
-
- @ManyToOne(cascade = CascadeType.ALL,fetch = FetchType.LAZY)
- @JoinColumn(name = "PARENT_ID", nullable = true)
- @org.hibernate.annotations.ForeignKey(name = "FK_PARENT_ID")
- private Album parent;*/
@ManyToOne
@JoinColumn(name="ALBUM_USER_ID",
@@ -157,31 +147,6 @@
}
/**
- * Getter for property childAlbums
- *
- * @return list of childs of current albums
- *//*
- public List<Album> getChildAlbums() {
- return childAlbums;
- }
-
- *//**
- * Getter for property parent
- *
- * @return parent of album
- *//*
- public Album getParent() {
- return parent;
- }
-
- *//**
- * Setter for property parent
- *//*
- private void setParent(Album parent) {
- this.parent = parent;
- }*/
-
- /**
* Getter for property description
*
* @return description of album
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Image.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Image.java 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/domain/Image.java 2008-12-19 18:14:34 UTC (rev 11929)
@@ -73,11 +73,6 @@
@JoinColumn(name="RANK_ID")
private Rank rank;
-/* @org.hibernate.annotations.CollectionOfElements(targetElement = java.lang.String.class)
- @JoinTable(name = "IMAGE_TAGS", joinColumns = @JoinColumn(name = "IMAGE_ID"))
- @Column(name = "TAG", nullable = false)
- private Set<String> tags = new HashSet<String>();*/
-
@Column(length = 1024)
@NotNull
@NotEmpty
@@ -98,6 +93,9 @@
@org.hibernate.annotations.OrderBy(clause = "tag asc")
private List<MetaTag> tags = new ArrayList<MetaTag>();
+ @Transient
+ private List<MetaTag> meta = new ArrayList<MetaTag>();
+
@OneToMany(mappedBy = "image", cascade = { CascadeType.ALL }, fetch = FetchType.LAZY)
@org.hibernate.annotations.LazyCollection(org.hibernate.annotations.LazyCollectionOption.EXTRA)
@org.hibernate.annotations.OrderBy(clause="date asc")
@@ -203,14 +201,6 @@
public void setCreated(Date created) {
this.created = created;
}
-
- /*public Set<String> getTags() {
- return tags;
- }
-
- public void setTags(Set<String> tags) {
- this.tags = tags;
- }*/
public Album getAlbum() {
return album;
@@ -294,4 +284,12 @@
public void setRank(Rank rank) {
this.rank = rank;
}
+
+ public List<MetaTag> getMeta() {
+ return meta;
+ }
+
+ public void setMeta(List<MetaTag> meta) {
+ this.meta = meta;
+ }
}
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/AlbumAction.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/AlbumAction.java 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/AlbumAction.java 2008-12-19 18:14:34 UTC (rev 11929)
@@ -15,7 +15,7 @@
@Name("albumAction")
public class AlbumAction implements IAlbumAction {
- //@PersistenceContext(unitName = "entityManager", type=PersistenceContextType.EXTENDED)
+
@In(value="entityManager")
EntityManager em;
@@ -40,7 +40,6 @@
}
public void editAlbum(Album album){
- em.merge(album);
em.flush();
}
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ImageAction.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ImageAction.java 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/ImageAction.java 2008-12-19 18:14:34 UTC (rev 11929)
@@ -17,7 +17,7 @@
@Name("imageAction")
public class ImageAction implements IImageAction {
- //@PersistenceContext(unitName = "entityManager", type=PersistenceContextType.EXTENDED)
+
@In(value="entityManager")
EntityManager em;
@@ -52,7 +52,6 @@
}
public void editImage(Image image, boolean parentChanged) {
- image = em.merge(image);
if(parentChanged){
Album albumPrevious = image.getAlbum();
String login = albumPrevious.getOwner().getLogin();
@@ -61,12 +60,16 @@
Album album = (Album)em.createQuery("from Album a where a.name=:albumName and a.owner.login=:login").setParameter("albumName", albumName).setParameter("login", login).getSingleResult();
album.addImage(image);
}
+ image.getTags().clear();
+ image.setTags(image.getMeta());
em.flush();
}
public void addImage(Image image) {
em.persist(image);
image.getAlbum().addImage(image);
+ image.getTags().clear();
+ image.setTags(image.getMeta());
em.flush();
}
@@ -81,12 +84,10 @@
}
public void editComment(Comment comment) {
- em.merge(comment);
em.flush();
}
public void vote(Image image, Long value) {
- image = em.merge(image);
Long total = image.getRank().getTotal();
Long votes = image.getRank().getHits();
total += value;
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/SearchService.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/SearchService.java 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/SearchService.java 2008-12-19 18:14:34 UTC (rev 11929)
@@ -21,18 +21,13 @@
public class SearchService implements ISearchService, Serializable
{
- /**
- *
- */
private static final long serialVersionUID = -2750591521413940277L;
- //@PersistenceContext(unitName = "entityManager", type=PersistenceContextType.EXTENDED)
@In(value="entityManager")
EntityManager em;
/* (non-Javadoc)
* @see org.richfaces.realworld.service.ISearchService#searchImages(java.lang.String)
*/
- @Begin(join=true)
public List<Image> searchImages(String searchPattern, String additionalParams, Map<String, Object> paramMap){
String fullQuery = "select i from MetaTag t join t.parent i where t.tag like:metatag and i.album.shared=true" + additionalParams + " order by i.rank.total/i.rank.hits desc";
Query prepared = em.createQuery(fullQuery).setParameter("metatag", searchPattern+"%");
@@ -45,6 +40,7 @@
if(paramMap != null && paramMap.get(":date") != null){
prepared.setParameter("date", paramMap.get(":date"));
}
+ prepared.setMaxResults(20);
List<Image> images = prepared.getResultList();
for(Image image:images){
image.getAlbum().getOwner().getLogin();
@@ -52,7 +48,6 @@
return images;
}
- @Begin(join=true)
public List<Image> popularImages(String additionalParams, Map<String, Object> paramMap){
String fullQuery = "select i from Image i join i.rank r where i.album.shared=true" + additionalParams + " order by r.total/r.hits desc";
Query prepared = em.createQuery(fullQuery);
@@ -65,6 +60,7 @@
if(paramMap != null && paramMap.get(":date") != null){
prepared.setParameter("date", paramMap.get(":date"));
}
+ prepared.setMaxResults(20);
List<Image> images = prepared.getResultList();
for(Image image:images){
image.getAlbum().getOwner().getLogin();
@@ -72,7 +68,6 @@
return images;
}
- @Begin(join=true)
public List<Image> worstImages(String additionalParams, Map<String, Object> paramMap){
String fullQuery = "select i from Image i join i.rank r where i.album.shared=true" + additionalParams + " order by r.total/r.hits asc";
Query prepared = em.createQuery(fullQuery);
@@ -85,6 +80,7 @@
if(paramMap != null && paramMap.get(":date") != null){
prepared.setParameter("date", paramMap.get(":date"));
}
+ prepared.setMaxResults(20);
List<Image> images = prepared.getResultList();
for(Image image:images){
image.getAlbum().getOwner().getLogin();
Modified: trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/UserAction.java
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/UserAction.java 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/ejb/src/main/java/org/richfaces/realworld/service/UserAction.java 2008-12-19 18:14:34 UTC (rev 11929)
@@ -28,7 +28,6 @@
@Name("userAction")
public class UserAction implements IUserAction {
- //@PersistenceContext(unitName = "entityManager", type=PersistenceContextType.EXTENDED)
@In(value="entityManager")
EntityManager em;
@@ -57,7 +56,6 @@
}
public void updateUser(User user) {
- //em.merge(user);
em.flush();
this.user = user;
}
@@ -69,14 +67,9 @@
}
public boolean isUserExist(String login) {
- try{
- User tempuser = (User)em.createQuery("from User u where u.login = :login")
+ return em.createQuery("from User u where u.login = :login")
.setParameter("login", login)
- .getSingleResult();
- }catch(Exception e){
- return false;
- }
- return true;
+ .getResultList().size() == 0;
}
public List<String> getUsers(String suggest) {
@@ -103,16 +96,17 @@
friend.removeFriendshipRequest(request);
user.addFriend(friend);
friend.addFriend(user);
+ //em.flush();
}
public void removeFromSharedAlbums(User user, Album album) {
user.removeFromSharedAlbums(album);
- em.flush();
+ //em.flush();
}
public void addSharedAlbum(Album album) {
user.addSharedAlbum(album);
-
+ em.flush();
}
public void loginAnonymous() {
Modified: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBean.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBean.java 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/search/SearchBean.java 2008-12-19 18:14:34 UTC (rev 11929)
@@ -122,7 +122,7 @@
additionalParams.append(getAstFromIndex(votesChoice));
additionalParams.append(":choice");
}
- if(dateChoice != null && dateChoice > 0L){
+ if(dateChoice != null && dateChoice > 0L && date != null){
additionalParams.append(" and i.created");
additionalParams.append(getAstFromIndex(dateChoice));
additionalParams.append(":date");
Modified: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/session/Authenticator.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/session/Authenticator.java 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/session/Authenticator.java 2008-12-19 18:14:34 UTC (rev 11929)
@@ -84,14 +84,6 @@
}
}
selectedUser = user;
- /*for(User u:user.getFriends()){
- for(Album a :u.getChildAlbums()){
- a.getImages().get(0);
- }
- }
- for(Album a:user.getSharedAlbums()){
- a.getImages().get(0);
- }*/
Events.instance().raiseEvent("updateMainArea", NavigationEnum.IMAGE_PREVIEW);
return true;
}
Modified: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ImageHelper.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ImageHelper.java 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ImageHelper.java 2008-12-19 18:14:34 UTC (rev 11929)
@@ -6,6 +6,7 @@
import javax.faces.context.FacesContext;
import org.ajax4jsf.component.UIRepeat;
+import org.jboss.seam.annotations.Begin;
import org.jboss.seam.annotations.Name;
import org.richfaces.component.html.HtmlInputText;
import org.richfaces.realworld.domain.Image;
@@ -59,7 +60,7 @@
MetaTag metaTag = new MetaTag();
metaTag.setTag(metaRef.getValue().toString());
metaTag.setParent(image);
- image.getTags().add(metaTag);
+ image.getMeta().add(metaTag);
return null;
}
@@ -67,12 +68,12 @@
MetaTag metaTag = new MetaTag();
metaTag.setTag("");
metaTag.setParent(image);
- image.getTags().add(metaTag);
+ image.getMeta().add(metaTag);
//image.getMeta().add("");
}
public void removeTag(MetaTag tag, Image image){
- image.getTags().remove(tag);
+ image.getMeta().remove(tag);
//image.getMeta().remove(tag);
}
}
Modified: trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ModalPanelHelper.java
===================================================================
--- trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ModalPanelHelper.java 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/web/src/main/java/org/richfaces/realworld/util/ModalPanelHelper.java 2008-12-19 18:14:34 UTC (rev 11929)
@@ -1,6 +1,7 @@
package org.richfaces.realworld.util;
import java.io.Serializable;
+import java.util.ArrayList;
import java.util.Date;
import javax.faces.event.ActionEvent;
@@ -16,6 +17,7 @@
import org.richfaces.realworld.domain.Comment;
import org.richfaces.realworld.domain.Image;
import org.richfaces.realworld.domain.Message;
+import org.richfaces.realworld.domain.MetaTag;
import org.richfaces.realworld.domain.User;
import org.richfaces.realworld.tree.TreeActionManager;
@@ -80,6 +82,7 @@
this.actionName = actionName;
if(null != image){
this.image = image;
+ image.setMeta(new ArrayList<MetaTag>(image.getTags()));
}else{
this.image = new Image();
}
Modified: trunk/test-applications/realworld/web/src/main/resources/messages_en.properties
===================================================================
--- trunk/test-applications/realworld/web/src/main/resources/messages_en.properties 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/web/src/main/resources/messages_en.properties 2008-12-19 18:14:34 UTC (rev 11929)
@@ -88,3 +88,16 @@
javax.faces.validator.NOT_IN_RANGE=value must be between {0} and {1}
javax.faces.converter.STRING=value could not be converted to a string
+error=Error
+errorStub=Something bad happened :-(
+fileUpload.header=You will upload files in album: #{selectedAlbum.name}. If you want upload in another album, select it.
+fileUpload.uploadedPanelHeader=Uploaded Files Info
+fileUpload.fileNameLabel=File Name:
+fileUpload.fileLengthLabel=File Length(bytes):
+fileUpload.fileEditLabel=Edit
+fileUpload.storeAllLabel=Store All
+fileUpload.storeSelectedLabel=Store Selected
+fileUpload.clearLabel=Clear Uploaded Data
+fileUpload.clearSelectedLabel=Clear Selected
+
+image.panelHeader=Image Preview: Selected Album: #{selectedAlbum.name}
\ No newline at end of file
Modified: trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/components.xml
===================================================================
--- trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/components.xml 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/components.xml 2008-12-19 18:14:34 UTC (rev 11929)
@@ -22,7 +22,8 @@
<core:manager concurrent-request-timeout="20000"
conversation-timeout="120000"
- conversation-id-parameter="cid"/>
+ conversation-id-parameter="cid"
+ default-flush-mode="MANUAL"/>
<persistence:managed-persistence-context name="entityManager"
auto-create="true"
persistence-unit-jndi-name="java:/realWorldEntityManager"/>
Modified: trunk/test-applications/realworld/web/src/main/webapp/WEB-INF/tags/templates/imagePrefs.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld/web/src/main/webapp/error.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld/web/src/main/webapp/fileUpload.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld/web/src/main/webapp/stylesheet/realworld.css
===================================================================
--- trunk/test-applications/realworld/web/src/main/webapp/stylesheet/realworld.css 2008-12-19 17:33:48 UTC (rev 11928)
+++ trunk/test-applications/realworld/web/src/main/webapp/stylesheet/realworld.css 2008-12-19 18:14:34 UTC (rev 11929)
@@ -125,4 +125,11 @@
.rich-stglpanel-body {
overflow: auto;
-}
+}
+.top {
+ vertical-align: top;
+}
+.info {
+ height: 202px;
+ overflow: auto;
+}
16 years, 9 months
JBoss Rich Faces SVN: r11928 - in trunk/test-applications/seleniumTest/richfaces/src: test/java/org/richfaces/testng and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-12-19 12:33:48 -0500 (Fri, 19 Dec 2008)
New Revision: 11928
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/layoutTests.xhtml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
Log:
https://jira.jboss.org/jira/browse/RF-5343 started
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/layoutTests.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-19 16:50:57 UTC (rev 11927)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-19 17:33:48 UTC (rev 11928)
@@ -432,7 +432,7 @@
Assert.fail("Calendar displays invalid date. It should contain ["+expected+"]. But was ["+headerDate+"]");
}
}
-
+
@Test
public void testEventsAttributes(Template template) {
renderPage(EVENTS_TEST_URL, template, RESET_METHOD);
@@ -1616,6 +1616,14 @@
}
@Test
+ public void testFacets(Template template) {
+ renderPage(LAYOUT_TESTS_URL, template, null);
+ initIds(getParentId());
+
+ writeStatus("Check facets of the component: 'header', 'footer', 'optionalHeader', 'optionalFooter', 'weekNumber' and 'weekDay'");
+ }
+
+ @Test
public void testResetTimeOnDateSelect(Template template) {
renderPage(RESET_TIME_ON_DATE_SELECTION_TEST_URL, template, null);
initIds(getParentId());
16 years, 9 months
JBoss Rich Faces SVN: r11927 - in trunk/test-applications/seleniumTest/richfaces/src: main/webapp/pages/calendar and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-12-19 11:50:57 -0500 (Fri, 19 Dec 2008)
New Revision: 11927
Added:
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/todayControlAndBoundaryDatesModesTest.xhtml
Removed:
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/todayControlModeTest.xhtml
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
Log:
https://jira.jboss.org/jira/browse/RF-5349
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2008-12-19 16:40:54 UTC (rev 11926)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2008-12-19 16:50:57 UTC (rev 11927)
@@ -646,4 +646,22 @@
this.direction = direction;
}
+ private String boundaryDatesMode = "inactive";
+
+ /**
+ * Gets value of boundaryDatesMode field.
+ * @return value of boundaryDatesMode field
+ */
+ public String getBoundaryDatesMode() {
+ return boundaryDatesMode;
+ }
+
+ /**
+ * Set a new value for boundaryDatesMode field.
+ * @param boundaryDatesMode a new value for boundaryDatesMode field
+ */
+ public void setBoundaryDatesMode(String boundaryDatesMode) {
+ this.boundaryDatesMode = boundaryDatesMode;
+ }
+
}
Copied: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/todayControlAndBoundaryDatesModesTest.xhtml (from rev 11913, trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/todayControlModeTest.xhtml)
===================================================================
(Binary files differ)
Deleted: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/todayControlModeTest.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-19 16:40:54 UTC (rev 11926)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-19 16:50:57 UTC (rev 11927)
@@ -59,7 +59,7 @@
static final String SHOW_ATTRIBURES_TEST_URL = "pages/calendar/showAttributesTest.xhtml";
- static final String TODAY_CONTROL_MODE_URL = "pages/calendar/todayControlModeTest.xhtml";
+ static final String TODAY_CONTROL_AND_BOUNDARY_DATES_MODES_TEST_URL = "pages/calendar/todayControlAndBoundaryDatesModesTest.xhtml";
static final String BUTTON_RELATED_TEST_URL = "pages/calendar/buttonRelatedAttributesTest.xhtml";
@@ -188,6 +188,8 @@
String enableManualInputId;
+ String boundaryDatesModeId;
+
void initIds(String parentId) {
calendarId = parentId + FORM_ID + "calendar";
calendarHeaderId = calendarId + "Header";
@@ -236,6 +238,7 @@
jointPointId = parentId + FORM_ID + "jointPoint";
directionId = parentId + FORM_ID + "direction";
enableManualInputId = parentId + FORM_ID + "enableManualInput";
+ boundaryDatesModeId = parentId + FORM_ID + "boundaryDatesMode";
}
String getStatus() {
@@ -1340,7 +1343,7 @@
@Test
public void testTodayControlMode(Template template) {
- renderPage(TODAY_CONTROL_MODE_URL, template, null);
+ renderPage(TODAY_CONTROL_AND_BOUNDARY_DATES_MODES_TEST_URL, template, null);
initIds(getParentId());
String datePattern = selenium.getText(getParentId() + FORM_ID + "datePattern");
@@ -1422,6 +1425,78 @@
}
@Test
+ public void testBoundaryDatesMode(Template template) {
+ renderPage(TODAY_CONTROL_AND_BOUNDARY_DATES_MODES_TEST_URL, template, null);
+ initIds(getParentId());
+ String selectedDateId = getParentId() + FORM_ID + "selectedDate";
+ String startDate = "02/21/2007 12:00";
+ String firstMarCellId = calendarId + "DayCell32";
+ String thirtyFirstJanCellId = calendarId + "DayCell3";
+ selenium.focus(selectedDateId);
+ setValueById(selectedDateId, startDate);
+ selenium.fireEvent(selectedDateId, "blur");
+
+ writeStatus("Check 'boundaryDatesMode' attribute");
+
+ writeStatus("Check 'inactive' (default) mode");
+ selenium.select(boundaryDatesModeId, "inactive");
+
+ String expectedSelectedDate = selenium.getValue(inputDateId);
+ String expectedCurrentDate = selenium.getText(currentDateHeaderXpath);
+
+ writeStatus("Click boundary cells. Nothing has to be changed");
+ clickById(firstMarCellId);
+ String actualSelectedDate = selenium.getValue(inputDateId);
+ String actualCurrentDate = selenium.getText(currentDateHeaderXpath);
+ Assert.assertEquals(actualCurrentDate, expectedCurrentDate, "Nothing has to be changed");
+ Assert.assertEquals(actualSelectedDate, expectedSelectedDate, "Nothing has to be changed");
+
+ clickById(thirtyFirstJanCellId);
+ actualSelectedDate = selenium.getValue(inputDateId);
+ actualCurrentDate = selenium.getText(currentDateHeaderXpath);
+ Assert.assertEquals(actualCurrentDate, expectedCurrentDate, "Nothing has to be changed");
+ Assert.assertEquals(actualSelectedDate, expectedSelectedDate, "Nothing has to be changed");
+
+ writeStatus("Check 'scroll' mode");
+ selenium.select(boundaryDatesModeId, "scroll");
+ writeStatus("Click a day from next month, the month has to be scrolled to the next month, but selected date stays untouched");
+ clickById(firstMarCellId);
+ actualSelectedDate = selenium.getValue(inputDateId);
+ actualCurrentDate = selenium.getText(currentDateHeaderXpath);
+ Assert.assertEquals(actualCurrentDate, "March, 2007", "Month has to be switched to the next one");
+ Assert.assertEquals(actualSelectedDate, expectedSelectedDate, "Selected date has not to be changed");
+ writeStatus("Move back");
+ selenium.click("//td[@id='" + calendarHeaderId + "']/table/tbody/tr/td[@class='rich-calendar-tool'][2]/div");
+ writeStatus("Click a day from previous month, the month has to be scrolled to the previous month, selected date stays untouched as before");
+ clickById(thirtyFirstJanCellId);
+ actualSelectedDate = selenium.getValue(inputDateId);
+ actualCurrentDate = selenium.getText(currentDateHeaderXpath);
+ Assert.assertEquals(actualCurrentDate, "January, 2007", "Month has to be switched to the previous one");
+ Assert.assertEquals(actualSelectedDate, expectedSelectedDate, "Selected date has not to be changed");
+ writeStatus("Move back");
+ selenium.click("//td[@id='" + calendarHeaderId + "']/table/tbody/tr/td[@class='rich-calendar-tool'][3]/div");
+
+ writeStatus("Check 'select' mode");
+ selenium.select(boundaryDatesModeId, "select");
+ writeStatus("Click a day from next month: 1) the month has to be scrolled to the next month 2) date set to selected date (1st of March)");
+ clickById(firstMarCellId);
+ actualSelectedDate = selenium.getValue(inputDateId);
+ actualCurrentDate = selenium.getText(currentDateHeaderXpath);
+ Assert.assertEquals(actualCurrentDate, "March, 2007", "Month has to be switched to the next one");
+ Assert.assertEquals(actualSelectedDate, "03/01/2007 12:00", "Selected date has to be changed");
+ writeStatus("Move back");
+ selenium.click("//td[@id='" + calendarHeaderId + "']/table/tbody/tr/td[@class='rich-calendar-tool'][2]/div");
+ writeStatus("Click a day from previous month: 1) the month has to be scrolled to the previous month 2) date set to selected date (31st of January)");
+ clickById(thirtyFirstJanCellId);
+ actualSelectedDate = selenium.getValue(inputDateId);
+ actualCurrentDate = selenium.getText(currentDateHeaderXpath);
+ Assert.assertEquals(actualCurrentDate, "January, 2007", "Month has to be switched to the previous one");
+ Assert.assertEquals(actualSelectedDate, "01/31/2007 12:00", "Selected date has to be changed");
+ writeStatus("Move back");
+ selenium.click("//td[@id='" + calendarHeaderId + "']/table/tbody/tr/td[@class='rich-calendar-tool'][3]/div");
+ }
+
+ @Test
public void testButtonRelatedAttributes(Template template) {
renderPage(BUTTON_RELATED_TEST_URL, template, null);
writeStatus("Check button-related attributes");
16 years, 9 months
JBoss Rich Faces SVN: r11926 - trunk/ui/scrollableDataTable/src/main/templates/org/richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-12-19 11:40:54 -0500 (Fri, 19 Dec 2008)
New Revision: 11926
Modified:
trunk/ui/scrollableDataTable/src/main/templates/org/richfaces/scrollable-data-table-header-cell.jspx
Log:
RF-4856
Modified: trunk/ui/scrollableDataTable/src/main/templates/org/richfaces/scrollable-data-table-header-cell.jspx
===================================================================
--- trunk/ui/scrollableDataTable/src/main/templates/org/richfaces/scrollable-data-table-header-cell.jspx 2008-12-19 15:18:16 UTC (rev 11925)
+++ trunk/ui/scrollableDataTable/src/main/templates/org/richfaces/scrollable-data-table-header-cell.jspx 2008-12-19 16:40:54 UTC (rev 11926)
@@ -25,9 +25,12 @@
<vcp:body/>
<jsp:scriptlet>
+ int offset = -3;
+ Object sepOffset = variables.getVariable("sepOffset");
+ if (sepOffset instanceof Integer) {
+ offset += ((Integer)sepOffset).intValue();
+ }
- int offset = ((Integer)variables.getVariable("sepOffset")).intValue() - 3;
-
</jsp:scriptlet>
<span column="#{cell_index}" id="#{client_id}:hsep_#{cell_index}" style="left: #{offset}px;" class="dr-sdt-hsep rich-sdt-hsep" />
</th>
16 years, 9 months
JBoss Rich Faces SVN: r11925 - in trunk/samples/richfaces-demo/src/main/webapp: richfaces/queue/examples/resources and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-12-19 10:18:16 -0500 (Fri, 19 Dec 2008)
New Revision: 11925
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/queue.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/resources/button2.gif
trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/resources/button3.gif
trunk/samples/richfaces-demo/src/main/webapp/scripts/queueUi.js
Log:
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/queue.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/queue.xhtml 2008-12-19 14:56:43 UTC (rev 11924)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/queue.xhtml 2008-12-19 15:18:16 UTC (rev 11925)
@@ -7,17 +7,22 @@
xmlns:c="http://java.sun.com/jstl/core">
<a4j:loadScript src="/scripts/queueUi.js"/>
<a4j:loadStyle src="/css/queueStylesheet.js"/>
+ <style>
+ .inner td{
+ border:none;
+ }
+ </style>
<h:form id="form1" prependId="false">
<a4j:queue requestDelay="1000" ignoreDupResponce="true"/>
- <h:panelGrid columns="1" cellspacing="5">
- <h:panelGrid id="board1" columns="6" border="1">
+ <h:panelGrid columns="1" cellpadding="0" cellspacing="3">
+ <h:panelGrid columns="6" cellpadding="3" cellspacing="0" border="1" bordercolor="#cccccc">
<f:facet name="header">
- <h:outputText value="Ajax Requests" styleClass="keytitle" />
+ <h:outputText value="Ajax Requests"/>
</f:facet>
<c:forEach begin="0" end="17" step="1" var="i">
- <h:panelGrid>
+ <h:panelGrid styleClass="inner">
<a4j:commandButton id="_#{i}" image="queue/examples/resources/button2.gif"
style="height:50px;width:50px;"
onclick="buttonpush('_#{i}');"
@@ -27,17 +32,21 @@
<h:outputText value="#{i}" style="font-weight:bold"/>
</h:panelGrid>
</h:panelGrid>
- </c:forEach>
+ </c:forEach>
</h:panelGrid>
- <h:panelGrid>
- <f:facet name="header">
- <h:outputText value="Request Queue" styleClass="keytitle" />
- </f:facet>
- <table id="queuetable" border="1">
- <tr id="tr1">
+ <table id="queuetable" cellpadding="3" cellspacing="0" border="1" bordercolor="#cccccc">
+ <thead>
+ <tr>
+ <th colspan="100">
+ Request Queue
+ </th>
</tr>
- </table>
- </h:panelGrid>
+ </thead>
+ <tbody>
+ <tr id="tr1">
+ </tr>
+ </tbody>
+ </table>
</h:panelGrid>
</h:form>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/resources/button2.gif
===================================================================
(Binary files differ)
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/resources/button3.gif
===================================================================
(Binary files differ)
Modified: trunk/samples/richfaces-demo/src/main/webapp/scripts/queueUi.js
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/scripts/queueUi.js 2008-12-19 14:56:43 UTC (rev 11924)
+++ trunk/samples/richfaces-demo/src/main/webapp/scripts/queueUi.js 2008-12-19 15:18:16 UTC (rev 11925)
@@ -30,7 +30,7 @@
cell.setAttribute("height", "50px");
cell.setAttribute("width", "50px");
cell.innerHTML = cellData.nodeValue + '(1)';
- cell.className = "queueCell";
+// cell.className = "queueCell";
}
function changeCounterInCell(cellData, counter){
var row = document.getElementById("tr1");
16 years, 9 months
JBoss Rich Faces SVN: r11924 - in trunk/test-applications/realworld/Upload/root: Football and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-19 09:56:43 -0500 (Fri, 19 Dec 2008)
New Revision: 11924
Added:
trunk/test-applications/realworld/Upload/root/Football/
trunk/test-applications/realworld/Upload/root/Football/Basketball_soccer.jpg
trunk/test-applications/realworld/Upload/root/Football/Soccer.jpg
trunk/test-applications/realworld/Upload/root/Football/Soccer416x594.jpg
trunk/test-applications/realworld/Upload/root/Football/bdysch!!!.jpg
trunk/test-applications/realworld/Upload/root/Football/euro2008_holland_wideweb__470x321,0.jpg
trunk/test-applications/realworld/Upload/root/Football/flag_football.jpg
Log:
Added: trunk/test-applications/realworld/Upload/root/Football/Basketball_soccer.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Football/Basketball_soccer.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/root/Football/Soccer.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Football/Soccer.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/root/Football/Soccer416x594.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Football/Soccer416x594.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/root/Football/bdysch!!!.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Football/bdysch!!!.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/root/Football/euro2008_holland_wideweb__470x321,0.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Football/euro2008_holland_wideweb__470x321,0.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/root/Football/flag_football.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Football/flag_football.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 9 months
JBoss Rich Faces SVN: r11923 - in trunk/test-applications/realworld/Upload/qqqq: Japan and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-19 09:55:07 -0500 (Fri, 19 Dec 2008)
New Revision: 11923
Added:
trunk/test-applications/realworld/Upload/qqqq/Japan/
trunk/test-applications/realworld/Upload/qqqq/Japan/Haruki_Murakami.jpg
trunk/test-applications/realworld/Upload/qqqq/Japan/Japanese_Street_Fashion.jpg
trunk/test-applications/realworld/Upload/qqqq/Japan/Kendo_Championship_2006.jpg
trunk/test-applications/realworld/Upload/qqqq/Japan/birds_fly.jpg
trunk/test-applications/realworld/Upload/qqqq/Japan/live_in_piece.jpg
trunk/test-applications/realworld/Upload/qqqq/Japan/modern_japanesse_family.jpg
trunk/test-applications/realworld/Upload/qqqq/Japan/zen-garden_landscape_design.jpg
Log:
Added: trunk/test-applications/realworld/Upload/qqqq/Japan/Haruki_Murakami.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Japan/Haruki_Murakami.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Japan/Japanese_Street_Fashion.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Japan/Japanese_Street_Fashion.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Japan/Kendo_Championship_2006.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Japan/Kendo_Championship_2006.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Japan/birds_fly.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Japan/birds_fly.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Japan/live_in_piece.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Japan/live_in_piece.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Japan/modern_japanesse_family.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Japan/modern_japanesse_family.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Japan/zen-garden_landscape_design.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Japan/zen-garden_landscape_design.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 9 months
JBoss Rich Faces SVN: r11922 - in trunk/test-applications/realworld/Upload/amarkhel: Tetki and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-19 09:52:44 -0500 (Fri, 19 Dec 2008)
New Revision: 11922
Added:
trunk/test-applications/realworld/Upload/amarkhel/Tetki/
trunk/test-applications/realworld/Upload/amarkhel/Tetki/Audrey_Tautou.jpg
trunk/test-applications/realworld/Upload/amarkhel/Tetki/Juliette_Binoche.jpg
trunk/test-applications/realworld/Upload/amarkhel/Tetki/Penelope_Cruz.jpg
trunk/test-applications/realworld/Upload/amarkhel/Tetki/Rihanna.jpg
trunk/test-applications/realworld/Upload/amarkhel/Tetki/Uma_Turman.jpg
Log:
Added: trunk/test-applications/realworld/Upload/amarkhel/Tetki/Audrey_Tautou.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Tetki/Audrey_Tautou.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/amarkhel/Tetki/Juliette_Binoche.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Tetki/Juliette_Binoche.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/amarkhel/Tetki/Penelope_Cruz.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Tetki/Penelope_Cruz.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/amarkhel/Tetki/Rihanna.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Tetki/Rihanna.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/amarkhel/Tetki/Uma_Turman.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Tetki/Uma_Turman.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 9 months
JBoss Rich Faces SVN: r11921 - in trunk/test-applications/realworld/Upload/amarkhel: Cars and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-19 09:49:20 -0500 (Fri, 19 Dec 2008)
New Revision: 11921
Added:
trunk/test-applications/realworld/Upload/amarkhel/Cars/
trunk/test-applications/realworld/Upload/amarkhel/Cars/Pagani_Zonda.jpg
trunk/test-applications/realworld/Upload/amarkhel/Cars/aston_martin.jpg
trunk/test-applications/realworld/Upload/amarkhel/Cars/ferrari_profile.jpg
trunk/test-applications/realworld/Upload/amarkhel/Cars/holden-efijy-1809.jpg
trunk/test-applications/realworld/Upload/amarkhel/Cars/hulme_supercar_side_parked.jpg
trunk/test-applications/realworld/Upload/amarkhel/Cars/spadaconcept codatronca.jpg
trunk/test-applications/realworld/Upload/amarkhel/Cars/supercar.jpg
Log:
Added: trunk/test-applications/realworld/Upload/amarkhel/Cars/Pagani_Zonda.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Cars/Pagani_Zonda.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/amarkhel/Cars/aston_martin.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Cars/aston_martin.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/amarkhel/Cars/ferrari_profile.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Cars/ferrari_profile.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/amarkhel/Cars/holden-efijy-1809.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Cars/holden-efijy-1809.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/amarkhel/Cars/hulme_supercar_side_parked.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Cars/hulme_supercar_side_parked.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/amarkhel/Cars/spadaconcept codatronca.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Cars/spadaconcept codatronca.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/amarkhel/Cars/supercar.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/amarkhel/Cars/supercar.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 9 months
JBoss Rich Faces SVN: r11919 - trunk/test-applications/realworld/ejb/src/main/resources.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-19 09:28:43 -0500 (Fri, 19 Dec 2008)
New Revision: 11919
Added:
trunk/test-applications/realworld/ejb/src/main/resources/import.sql
Log:
RF-4494: Tutorial about developing this sample application
Added: trunk/test-applications/realworld/ejb/src/main/resources/import.sql
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/resources/import.sql (rev 0)
+++ trunk/test-applications/realworld/ejb/src/main/resources/import.sql 2008-12-19 14:28:43 UTC (rev 11919)
@@ -0,0 +1,100 @@
+INSERT INTO Users(user_id, obj_version, firstname, secondname, email, avatarpath, login, password, birthdate) VALUES (1, 0, 'Andrey', 'Markhel', 'amarkhel(a)exadel.com', 'avatar.jpg', 'amarkhel', '12345', '1985-01-08');
+INSERT INTO Users(user_id, obj_version, firstname, secondname, email, avatarpath, login, password, birthdate) VALUES (2, 0, 'Andrey', 'Markhel', 'amarkhel(a)exadel.com', 'avatar.jpg', 'root', '12345', '1985-01-08');
+INSERT INTO Users(user_id, obj_version, firstname, secondname, email, avatarpath, login, password, birthdate) VALUES (3, 0, 'Andrey', 'Markhel', 'amarkhel(a)exadel.com', 'avatar.jpg', 'qqqq', '12345', '1985-01-08');
+INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (1, 0, 'Cars', 'Photo of my dog', true, 1);
+INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (2, 0, 'Tetki', 'Simple Album 2', true, 1);
+INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (3, 0, 'Football', 'Simple Album 3', true, 2);
+INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (4, 0, 'Japan', 'Simple Album', true, 3);
+INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (5, 0, 'Music', 'Simple Album 2', true, 3);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (1, 100, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (2, 200, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (3, 100, 31);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (4, 100, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (5, 100, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (6, 100, 41);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (7, 100, 20);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (8, 55, 11);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (9, 100, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (10, 100, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (11, 100, 25);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (12, 110, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (13, 100, 19);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (14, 101, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (15, 102, 17);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (16, 103, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (17, 104, 15);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (18, 100, 21);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (19, 110, 22);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (20, 160, 23);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (21, 100, 24);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (22, 100, 25);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (23, 101, 26);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (24, 102, 27);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (25, 103, 28);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (26, 104, 29);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (27, 100, 30);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (28, 110, 31);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (29, 104, 29);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (30, 100, 30);
+INSERT INTO Ranks(rank_id, total, hits) VALUES (31, 110, 31);
+
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (1, 0, 'Aston Martin', 'aston_martin.jpg', 'Where is the Batman?', true, '2008-12-18', 1, 1);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (2, 0, 'Ferrari', 'ferrari_profile.jpg', 'Beauty!', true, '2008-12-18', 1, 2);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (3, 0, 'Australian supercar', 'holden-efijy-1809.jpg', 'This one glitters in my garage ;)', true, '2008-12-18', 1, 3);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (4, 0, 'Hulme Supercar', 'hulme_supercar_side_parked.jpg', 'Saw it in Germany in summer 2007', true, '2008-12-18', 1, 4);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (5, 0, 'Pagani Zonda', 'Pagani_Zonda.jpg', 'The picture is provided by my friend photographer', true, '2008-12-18', 1, 5);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (6, 0, 'Codatronca (concept)', 'spadaconcept codatronca.jpg', 'Just concept', true, '2008-12-18', 1, 6);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (7, 0, 'Unknown supercar', 'supercar.jpg', 'Tell me it name if you know', true, '2008-12-18', 1, 7);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (8, 0, 'Audrey Tautou', 'Audrey_Tautou.jpg', 'Pretty girl!', true, '2008-12-18', 2, 8);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (9, 0, 'Juliette Binoche', 'Juliette_Binoche.jpg', 'Saw her in "Chocolate" at first', true, '2008-12-18', 2, 9);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (10, 0, 'Penelope Cruz', 'Penelope_Cruz.jpg', 'Without comments', true, '2008-12-18', 2, 10);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (11, 0, 'Rihanna', 'Rihanna.jpg', 'Was born in Barbados. True or false?', true, '2008-12-18', 2, 11);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (12, 0, 'Uma Turman', 'Uma_Turman.jpg', 'Share the delight with Tarantino )', true, '2008-12-18', 2, 12);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (13, 0, 'Basketball soccer', 'Basketball_soccer.jpg', 'They never saw camera', true, '2008-12-18', 3, 13);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (14, 0, 'bdysch!!!', 'bdysch!!!.jpg', 'Dermo sluchaetsia', true, '2008-12-18', 3, 14);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (15, 0, 'Training', 'euro2008_holland_wideweb__470x321,0.jpg', ' ) ', true, '2008-12-18', 3, 15);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (16, 0, 'Also football', 'flag_football.jpg', 'This is also football, but I do not understand it at all', true, '2008-12-18', 3, 16);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (17, 0, 'Soccer', 'soccer.jpg', 'Soccer differs from football', true, '2008-12-18', 3, 17);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (18, 0, 'from birds fly', 'birds_fly.jpg', 'One of the megalopolices', true, '2008-12-18', 4, 18);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (19, 0, 'Haruki Murakami', 'Haruki_Murakami.jpg', 'World famous aouthor', true, '2008-12-18', 4, 19);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (20, 0, 'Street fashion', 'Japanese_Street_Fashion.jpg', 'Venture to walk in such in our streets?', true, '2008-12-18', 4, 20);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (21, 0, 'Kendo Championship', 'Kendo_Championship_2006.jpg', 'Samurais steel alive!', true, '2008-12-18', 4, 21);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (22, 0, 'Live in peace', 'live_in_piece.jpg', 'The best place for meditation', true, '2008-12-18', 4, 22);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (23, 0, 'Modern family', 'modern_japanesse_family.jpg', 'Where is his mother?!', true, '2008-12-18', 4, 23);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (24, 0, 'Zen garden', 'zen-garden_landscape_design.jpg', 'Fen Shui i vsia fignia', true, '2008-12-18', 4, 24);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (25, 0, 'Sergei Babkin', 'Babkin.jpg', 'Also plays in theatre', true, '2008-12-18', 5, 25);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (26, 0, 'Bob Marley', 'Bob_Marley.jpg', 'Everyone should know him', true, '2008-12-18', 5, 26);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (27, 0, 'Infected Mushroom', 'Infected_Mushroom.jpg', 'Famous psyhedelic trance group from Israel', true, '2008-12-18', 5, 27);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (28, 0, 'Massive Attack', 'massiveAttack.jpg', 'They play theme to "House"', true, '2008-12-18', 5, 28);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (29, 0, 'Street musician', 'StreetMusician.jpg', 'unknown musician', true, '2008-12-18', 5, 29);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (30, 0, 'SOAD', 'system-of-a-down.jpg', 'Try not to loose your innervision!', true, '2008-12-18', 5, 30);
+INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (31, 0, 'Amon Tobin', 'tobin.jpg', 'Brasilian, works in London. Try his "Supermodified2000" album', true, '2008-12-18', 5, 31);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (1, 'Cool', 1);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (2, 'Cool2', 1);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (3, 'richfaces', 2);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (4, 'Cool', 3);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (5, 'theCool', 4);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (6, 'Cool', 5);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (7, 'rich', 6);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (8, 'Cool', 7);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (9, 'New year', 8);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (10, 'Cool', 9);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (11, 'Cool', 10);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (12, 'Minsk', 11);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (13, 'Cool', 12);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (14, 'Minsk', 13);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (15, 'Cool', 14);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (16, 'Cool', 15);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (17, 'Minsk', 16);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (18, 'Cool', 17);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (19, 'friend', 18);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (20, 'Cool', 19);
+INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (21, 'Cool2', 20);
+INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (1, '1985-01-08', 'Hello I am user', 1, 2);
+INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (2, '1985-01-08', 'Hello I am user2', 1, 3);
+INSERT INTO messages(message_id, date, message, author_id, owner_id, readed, theme, friendshipRequest) VALUES (1, '1985-01-08', 'Hello I am user', 2, 1, false, 'Hello, amarkhel', false);
+INSERT INTO messages(message_id, date, message, author_id, owner_id, readed, theme, friendshipRequest) VALUES (2, '1985-01-08', 'Please, add meto your friends', 3, 1, false, 'Request for friendship', true);
+INSERT INTO shared_albums(album_id, user_id) VALUES(1, 1);
+INSERT INTO shared_albums(album_id, user_id) VALUES(2, 1);
+INSERT INTO user_friends(user1_id, user2_id) VALUES(1, 2);
+INSERT INTO friendship_requests(REQUEST_ID, USER_ID, FRIEND_ID) VALUES(1, 3, 1);
\ No newline at end of file
16 years, 9 months
JBoss Rich Faces SVN: r11918 - trunk/test-applications/realworld/ejb/src/main/resources.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-19 09:27:58 -0500 (Fri, 19 Dec 2008)
New Revision: 11918
Removed:
trunk/test-applications/realworld/ejb/src/main/resources/import.sql
Log:
RF-4494: Tutorial about developing this sample application
Deleted: trunk/test-applications/realworld/ejb/src/main/resources/import.sql
===================================================================
--- trunk/test-applications/realworld/ejb/src/main/resources/import.sql 2008-12-19 14:21:20 UTC (rev 11917)
+++ trunk/test-applications/realworld/ejb/src/main/resources/import.sql 2008-12-19 14:27:58 UTC (rev 11918)
@@ -1,81 +0,0 @@
-INSERT INTO Users(user_id, obj_version, firstname, secondname, email, avatarpath, login, password, birthdate) VALUES (1, 0, 'Andrey', 'Markhel', 'amarkhel(a)exadel.com', 'avatar.jpg', 'amarkhel', '12345', '1985-01-08');
-INSERT INTO Users(user_id, obj_version, firstname, secondname, email, avatarpath, login, password, birthdate) VALUES (2, 0, 'Andrey', 'Markhel', 'amarkhel(a)exadel.com', 'avatar.jpg', 'root', '12345', '1985-01-08');
-INSERT INTO Users(user_id, obj_version, firstname, secondname, email, avatarpath, login, password, birthdate) VALUES (3, 0, 'Andrey', 'Markhel', 'amarkhel(a)exadel.com', 'avatar.jpg', 'qqqq', '12345', '1985-01-08');
-INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (1, 0, 'My dog', 'Photo of my dog', true, 1);
-INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (2, 0, 'Album 2', 'Simple Album 2', false, 1);
-INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (3, 0, 'Album 3', 'Simple Album 3', false, 1);
-INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (4, 0, 'Album 1', 'Simple Album', true, 2);
-INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (5, 0, 'Album 2', 'Simple Album 2', false, 2);
-INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (6, 0, 'Album 3', 'Simple Album 3', false, 2);
-INSERT INTO albums(album_id, obj_version, name, description, shared, album_user_id) VALUES (7, 0, 'Album 1', 'Simple Album', true, 3);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (1, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (2, 200, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (3, 100, 31);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (4, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (5, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (6, 100, 41);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (7, 100, 20);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (8, 55, 11);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (9, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (10, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (11, 100, 25);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (12, 110, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (13, 100, 19);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (14, 101, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (15, 102, 17);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (16, 103, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (17, 104, 15);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (18, 100, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (19, 110, 13);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (20, 160, 21);
-INSERT INTO Ranks(rank_id, total, hits) VALUES (21, 100, 21);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (1, 0, 'Funny dog', 'cherri1.jpg', 'Funny dog', true, '1985-01-08', 1, 1);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (2, 0, 'Beauty', 'cherri2.jpg', 'Beauty', true, '1985-01-08', 1, 2);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (3, 0, 'Toy of my dog', 'cherri3.jpg', 'Toy of my dog', true, '1985-01-08', 1, 3);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (4, 0, 'Picture 2', 'pic4.jpg', 'Just picture', true, '1985-01-08', 2, 4);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (5, 0, 'Picture 3', 'pic5.jpg', 'Just picture', true, '1985-01-08', 2, 5);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (6, 0, 'Picture 4', 'pic6.jpg', 'Just picture', true, '1985-01-08', 2, 6);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (7, 0, 'Picture 5', 'pic7.jpg', 'Just picture', true, '1985-01-08', 2, 7);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (8, 0, 'Picture 1', 'pic8.jpg', 'Just picture', true, '1985-01-08', 3, 8);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (9, 0, 'Picture 2', 'pic9.jpg', 'Just picture', true, '1985-01-08', 3, 9);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (10, 0, 'Picture 1', 'pic1.jpg', 'Just picture', true, '1985-01-08', 4, 10);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (11, 0, 'Picture 2', 'pic2.jpg', 'Just picture', true, '1985-01-08', 4, 11);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (12, 0, 'Picture 33', 'pic3.jpg', 'Just picture', true, '1985-01-08', 4, 12);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (13, 0, 'Picture 2', 'pic4.jpg', 'Just picture', true, '1985-01-08', 5, 13);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (14, 0, 'Picture 3', 'pic5.jpg', 'Just picture', true, '1985-01-08', 5, 14);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (15, 0, 'Picture 4', 'pic6.jpg', 'Just picture', true, '1985-01-08', 5, 15);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (16, 0, 'Picture 5', 'pic7.jpg', 'Just picture', true, '1985-01-08', 5, 16);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (17, 0, 'Picture 1', 'pic8.jpg', 'Just picture', true, '1985-01-08', 6, 17);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (18, 0, 'Picture 2', 'pic9.jpg', 'Just picture', true, '1985-01-08', 6, 18);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (19, 0, 'Picture 1', 'pic1.jpg', 'Just picture', true, '1985-01-08', 7, 19);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (20, 0, 'Picture 2', 'pic2.jpg', 'Just picture', true, '1985-01-08', 7, 20);
-INSERT INTO images(image_id, obj_version, name, path, description, shared, created, img_album_id, rank_id) VALUES (21, 0, 'Picture 33', 'pic3.jpg', 'Just picture', true, '1985-01-08', 7, 21);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (1, 'Cool', 1);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (2, 'Cool2', 1);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (3, 'richfaces', 2);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (4, 'Cool', 3);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (5, 'theCool', 4);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (6, 'Cool', 5);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (7, 'rich', 6);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (8, 'Cool', 7);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (9, 'New year', 8);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (10, 'Cool', 9);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (11, 'Cool', 10);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (12, 'Minsk', 11);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (13, 'Cool', 12);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (14, 'Minsk', 13);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (15, 'Cool', 14);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (16, 'Cool', 15);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (17, 'Minsk', 16);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (18, 'Cool', 17);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (19, 'friend', 18);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (20, 'Cool', 19);
-INSERT INTO metatags(metatag_id, tag, image_metatag_id) VALUES (21, 'Cool2', 20);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (1, '1985-01-08', 'Hello I am user', 1, 2);
-INSERT INTO comments(comment_id, date, message, image_comment_id, from_user_id) VALUES (2, '1985-01-08', 'Hello I am user2', 1, 3);
-INSERT INTO messages(message_id, date, message, author_id, owner_id, readed, theme, friendshipRequest) VALUES (1, '1985-01-08', 'Hello I am user', 2, 1, false, 'Hello, amarkhel', false);
-INSERT INTO messages(message_id, date, message, author_id, owner_id, readed, theme, friendshipRequest) VALUES (2, '1985-01-08', 'Please, add meto your friends', 3, 1, false, 'Request for friendship', true);
-INSERT INTO shared_albums(album_id, user_id) VALUES(4, 1);
-INSERT INTO shared_albums(album_id, user_id) VALUES(7, 1);
-INSERT INTO user_friends(user1_id, user2_id) VALUES(1, 2);
-INSERT INTO friendship_requests(REQUEST_ID, USER_ID, FRIEND_ID) VALUES(1, 3, 1);
\ No newline at end of file
16 years, 9 months
JBoss Rich Faces SVN: r11917 - trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2008-12-19 09:21:20 -0500 (Fri, 19 Dec 2008)
New Revision: 11917
Modified:
trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
Log:
https://jira.jboss.org/jira/browse/RF-3997
Modified: trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
===================================================================
--- trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2008-12-19 14:11:54 UTC (rev 11916)
+++ trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2008-12-19 14:21:20 UTC (rev 11917)
@@ -381,7 +381,7 @@
}
// y+,M+,d+
var ch = $1.charAt(0);
- if (ch=='y') {y=counter; counter++; return '(\\d{4})'};
+ if (ch=='y') {y=counter; counter++; return '(\\d{3,4})'};
if (ch=='M') {m=counter; counter++; return '('+monthNamesStr+')'};
if (ch=='d') {d=counter; counter++; return '(\\d{2})'};
}
16 years, 9 months
JBoss Rich Faces SVN: r11916 - in trunk/samples/richfaces-demo/src/main: webapp and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-12-19 09:11:54 -0500 (Fri, 19 Dec 2008)
New Revision: 11916
Modified:
trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/editor/advanced.properties
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/examples/editTable.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/examples/withTable.xhtml
trunk/samples/richfaces-demo/src/main/webapp/welcome.xhtml
Log:
Modified: trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/editor/advanced.properties
===================================================================
--- trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/editor/advanced.properties 2008-12-19 14:01:35 UTC (rev 11915)
+++ trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/editor/advanced.properties 2008-12-19 14:11:54 UTC (rev 11916)
@@ -1,5 +1,5 @@
theme="advanced"
theme_advanced_toolbar_location="top"
-theme_advanced_toolbar_align="center"
+theme_advanced_toolbar_align="left"
plugins="preview,insertdatetime"
theme_advanced_buttons3="hr,removeformat,visualaid,separator,sub,sup,separator,charmap"
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/examples/editTable.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/examples/editTable.xhtml 2008-12-19 14:01:35 UTC (rev 11915)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataTable/examples/editTable.xhtml 2008-12-19 14:11:54 UTC (rev 11916)
@@ -60,15 +60,15 @@
target="#{dataTableScrollerBean.currentItem}" />
<f:setPropertyActionListener value="#{row}"
target="#{dataTableScrollerBean.currentRow}" />
- <rich:toolTip value="Edit"></rich:toolTip>
</a4j:commandLink>
+ <rich:toolTip for="editlink" value="Edit"/>
<a4j:commandLink ajaxSingle="true" id="deletelink"
oncomplete="#{rich:component('deletePanel')}.show()">
<h:graphicImage value="/images/icons/delete.gif" style="border:0"/>
<f:setPropertyActionListener value="#{row}"
target="#{dataTableScrollerBean.currentRow}" />
- <rich:toolTip value="Delete"></rich:toolTip>
</a4j:commandLink>
+ <rich:toolTip for="deletelink" value="Delete"/>
</rich:column>
<f:facet name="footer">
<rich:datascroller renderIfSinglePage="false" maxPages="5"/>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml 2008-12-19 14:01:35 UTC (rev 11915)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml 2008-12-19 14:11:54 UTC (rev 11916)
@@ -9,14 +9,10 @@
width:50%;
vertical-align:top;
}
- .pbody{
- height:200px;
- overflow:auto;
- }
</style>
<h:form>
<h:panelGrid columns="2" width="100%" columnClasses="column,column">
- <h:panelGroup style="height:310px;" layout="block">
+ <h:panelGroup style="height:320px;" layout="block">
<rich:editor configuration="#{editorBean.currentConfiguration}" id="editor" width="400" height="300" viewMode = "#{editorBean.viewMode}" value="#{editorBean.value}">
<a4j:support event="onchange" reRender="result" ajaxSingle="true" requestDelay="1000" rendered="#{editorBean.liveUpdatesEnabled}"/>
</rich:editor>
@@ -29,30 +25,29 @@
<h:outputText value="Select Editor Theme"/>
<h:selectOneRadio value="#{editorBean.currentConfiguration}" layout="pageDirection">
<f:selectItems value="#{editorBean.configurations}"/>
- <a4j:support event="onchange" reRender="editor"/>
+ <a4j:support event="onclick" reRender="editor"/>
</h:selectOneRadio>
<h:outputText value="Toggle Modes"/>
<h:selectOneRadio value="#{editorBean.viewMode}" layout="pageDirection">
<f:selectItem itemLabel="WYSIWYG mode" itemValue="visual"/>
<f:selectItem itemLabel="Simple Text Area" itemValue="source"/>
- <a4j:support event="onchange" reRender="editor"/>
+ <a4j:support event="onclick" reRender="editor"/>
</h:selectOneRadio>
<h:outputText value="Toggle Preview: " />
<h:selectBooleanCheckbox value="#{editorBean.liveUpdatesEnabled}" >
- <a4j:support event="onchange" reRender="editor, result"/>
+ <a4j:support event="onclick" reRender="editor, result"/>
</h:selectBooleanCheckbox>
</h:panelGrid>
</rich:panel>
- </h:panelGrid>
-
<a4j:outputPanel layout="block" id="result">
- <rich:panel rendered="#{editorBean.liveUpdatesEnabled}" bodyClass="pbody">
+ <rich:panel rendered="#{editorBean.liveUpdatesEnabled}">
<f:facet name="header">
<h:outputText value="Preview"/>
</f:facet>
<h:outputText escape="false" value="#{editorBean.value}"/>
</rich:panel>
</a4j:outputPanel>
-
+ </h:panelGrid>
+
</h:form>
</ui:composition>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/examples/withTable.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/examples/withTable.xhtml 2008-12-19 14:01:35 UTC (rev 11915)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/examples/withTable.xhtml 2008-12-19 14:11:54 UTC (rev 11916)
@@ -6,43 +6,16 @@
xmlns:rich="http://richfaces.org/rich">
<style>
-.tooltip {
- background-color: #{
- a4jSkin
- .
-
-
-
- generalBackgroundColor
-}
+ .tooltip {
+ background-color: #{a4jSkin.generalBackgroundColor};
+ border-width:1px;
+ padding:10px;
+ }
+ .tooltipData {
+ font-weight: bold;
+ }
+ </style>
-;
-border-width
-
-
-
-
-:1
-px
-
-
-;
-padding
-
-
-
-
-:10
-px
-
-
-;
-}
-.tooltipData {
- font-weight: bold;
-}
-</style>
-
<h:form>
<rich:dataTable value="#{toolTipData.vehicles}" width="400"
var="vehicle" rowKeyVar="row">
Modified: trunk/samples/richfaces-demo/src/main/webapp/welcome.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/welcome.xhtml 2008-12-19 14:01:35 UTC (rev 11915)
+++ trunk/samples/richfaces-demo/src/main/webapp/welcome.xhtml 2008-12-19 14:11:54 UTC (rev 11916)
@@ -7,7 +7,7 @@
<ui:define name="title">RichFaces - Open Source Rich JSF Components</ui:define>
<ui:define name="body">
<p>Welcome to the <a href="http://labs.jboss.com/jbossrichfaces"
- target="_blank" style="color:#000">Rich Faces 3.3</a> demo!</p>
+ target="_blank" style="color:#000">RichFaces 3.3</a> demo!</p>
<h4>About RichFaces</h4>
<p>RichFaces is a rich component library for JavaServer Faces
built on an advanced open source framework (Ajax4jsf). It allows easy integration of AJAX capabilities into enterprise-level business
16 years, 9 months
JBoss Rich Faces SVN: r11915 - trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2008-12-19 09:01:35 -0500 (Fri, 19 Dec 2008)
New Revision: 11915
Modified:
trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
Log:
https://jira.jboss.org/jira/browse/RF-3759
Modified: trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
===================================================================
--- trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2008-12-19 13:55:25 UTC (rev 11914)
+++ trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2008-12-19 14:01:35 UTC (rev 11915)
@@ -1761,7 +1761,7 @@
this.changeCurrentDateOffset(-1,0);
},
- changeCurrentDate: function(year, month) {
+ changeCurrentDate: function(year, month, noUpdate) {
if (this.getCurrentMonth()!=month || this.getCurrentYear()!=year)
{
var date = new Date(year, month,1);
@@ -1772,10 +1772,12 @@
// value is updated in function onUpdate() and then
// the "currentdateselected" Event is fired.
this.currentDate = date;
- this.onUpdate();
+ if (noUpdate) this.render(); else this.onUpdate();
this.invokeEvent("currentdateselected", $(this.id), null, date);
+ return true;
}
}
+ return false;
},
changeCurrentDateOffset: function(yearOffset, monthOffset) {
@@ -1899,21 +1901,19 @@
// fire user event
var flag = true;
- var isDateChanged = false;
+ var isDateChange = false;
if ( (oldSelectedDate - newSelectedDate) && (oldSelectedDate!=null || newSelectedDate!=null) )
{
- isDateChanged = true;
- flag = this.invokeEvent("dateselect", eventData.element, eventData.event, date);
+ isDateChange = this.invokeEvent("dateselect", eventData.element, eventData.event, date);
}
- if (flag)
+ if (isDateChange)
{
- this.selectedDate = newSelectedDate;
- if (this.selectedDate!=null)
+ if (newSelectedDate!=null)
{
- var d = new Date(this.selectedDate);
- if (d.getMonth()==this.currentDate.getMonth() && d.getFullYear()==this.currentDate.getFullYear())
+ if (newSelectedDate.getMonth()==this.currentDate.getMonth() && newSelectedDate.getFullYear()==this.currentDate.getFullYear())
{
+ this.selectedDate = newSelectedDate;
if (!oldSelectedDate || (oldSelectedDate - this.selectedDate))
{
// find cell and change style class
@@ -1934,9 +1934,12 @@
else
{
// change currentDate and call this.onUpdate();
- d.setDate(1);
- this.currentDate = d;
- if (noUpdate) this.render(); else this.onUpdate();
+ if (this.changeCurrentDate(newSelectedDate.getFullYear(), newSelectedDate.getMonth(), noUpdate))
+ {
+ this.selectedDate = newSelectedDate;
+ } else {
+ isDateChange = false;
+ }
}
}
else
@@ -1964,7 +1967,7 @@
}
// call user event
- if (isDateChanged)
+ if (isDateChange)
{
this.invokeEvent("dateselected", eventData.element, eventData.event, this.selectedDate);
if (!this.showApplyButton)
@@ -1974,7 +1977,7 @@
}
}
- return flag;
+ return isDateChange;
},
resetSelectedDate: function()
16 years, 9 months
JBoss Rich Faces SVN: r11914 - in trunk/ui: tabPanel/src/main/config/component and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: cluts
Date: 2008-12-19 08:55:25 -0500 (Fri, 19 Dec 2008)
New Revision: 11914
Modified:
trunk/ui/simpleTogglePanel/src/main/config/component/simpleTogglePanel.xml
trunk/ui/tabPanel/src/main/config/component/tabPanel.xml
trunk/ui/togglePanel/src/main/config/component/togglePanel.xml
trunk/ui/tree/src/main/config/component/tree.xml
Log:
RF-5428 - The "switchType" attribute descriptions has been corrected for the following components: simpleTogglePanel, tabPanel, tab, togglePanel, tree.
Modified: trunk/ui/simpleTogglePanel/src/main/config/component/simpleTogglePanel.xml
===================================================================
--- trunk/ui/simpleTogglePanel/src/main/config/component/simpleTogglePanel.xml 2008-12-19 13:42:01 UTC (rev 11913)
+++ trunk/ui/simpleTogglePanel/src/main/config/component/simpleTogglePanel.xml 2008-12-19 13:55:25 UTC (rev 11914)
@@ -81,7 +81,7 @@
<name>switchType</name>
<classname>java.lang.String</classname>
<description>
- <![CDATA[Facets switch algorithm: "client", "server"(default), "ajax"]]>
+ <![CDATA[Panels switch mode: "client", "server"(default), "ajax"]]>
</description>
</property>
<property required="false">
Modified: trunk/ui/tabPanel/src/main/config/component/tabPanel.xml
===================================================================
--- trunk/ui/tabPanel/src/main/config/component/tabPanel.xml 2008-12-19 13:42:01 UTC (rev 11913)
+++ trunk/ui/tabPanel/src/main/config/component/tabPanel.xml 2008-12-19 13:55:25 UTC (rev 11914)
@@ -65,7 +65,7 @@
<property>
<name>switchType</name>
<classname>java.lang.String</classname>
- <description><![CDATA[Tab switch algorithm: "client", "server"(default), "ajax"]]></description>
+ <description><![CDATA[Tabs switch mode: "client", "server"(default), "ajax"]]></description>
<defaultvalue>DEFAULT_METHOD</defaultvalue>
</property>
<property hidden="true" >
@@ -223,7 +223,7 @@
<property>
<name>switchType</name>
<classname>java.lang.String</classname>
- <description>Tab switch algorithm. Possible values are "client", "server", "ajax", "page".</description>
+ <description>Tabs switch mode. Possible values are "client", "server", "ajax", "page".</description>
</property>
<property hidden="true">
<name>active</name>
Modified: trunk/ui/togglePanel/src/main/config/component/togglePanel.xml
===================================================================
--- trunk/ui/togglePanel/src/main/config/component/togglePanel.xml 2008-12-19 13:42:01 UTC (rev 11913)
+++ trunk/ui/togglePanel/src/main/config/component/togglePanel.xml 2008-12-19 13:55:25 UTC (rev 11914)
@@ -40,7 +40,7 @@
<name>switchType</name>
<classname>java.lang.String</classname>
<description>
- <![CDATA[Facets switch algorithm: "client", "server"(default), "ajax".]]>
+ <![CDATA[Facets switch mode: "client", "server"(default), "ajax".]]>
</description>
<defaultvalue>DEFAULT_METHOD</defaultvalue>
</property>
Modified: trunk/ui/tree/src/main/config/component/tree.xml
===================================================================
--- trunk/ui/tree/src/main/config/component/tree.xml 2008-12-19 13:42:01 UTC (rev 11913)
+++ trunk/ui/tree/src/main/config/component/tree.xml 2008-12-19 13:55:25 UTC (rev 11914)
@@ -115,7 +115,7 @@
<property>
<name>switchType</name>
<classname>java.lang.String</classname>
- <description>Tree switch algorithm: "client", "server", "ajax"</description>
+ <description>Tree Nodes switch mode: "client", "server", "ajax"</description>
<defaultvalue>"ajax"</defaultvalue>
</property>
<property>
16 years, 9 months
JBoss Rich Faces SVN: r11913 - in trunk/test-applications/seleniumTest/richfaces/src: main/webapp/pages/calendar and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-12-19 08:42:01 -0500 (Fri, 19 Dec 2008)
New Revision: 11913
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/showAttributesTest.xhtml
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
Log:
https://jira.jboss.org/jira/browse/RF-5348
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2008-12-19 13:32:41 UTC (rev 11912)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2008-12-19 13:42:01 UTC (rev 11913)
@@ -457,6 +457,7 @@
showWeeksBar = true;
firstWeekDay = 0;
disabled = false;
+ enableManualInput = false;
}
private String todayControlMode = "select";
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/showAttributesTest.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-19 13:32:41 UTC (rev 11912)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-19 13:42:01 UTC (rev 11913)
@@ -185,6 +185,8 @@
String jointPointId;
String directionId;
+
+ String enableManualInputId;
void initIds(String parentId) {
calendarId = parentId + FORM_ID + "calendar";
@@ -233,6 +235,7 @@
resetTimeOnDateSelectId = parentId + CONTROLS_FORM_ID + "resetTimeOnDateSelect";
jointPointId = parentId + FORM_ID + "jointPoint";
directionId = parentId + FORM_ID + "direction";
+ enableManualInputId = parentId + FORM_ID + "enableManualInput";
}
String getStatus() {
@@ -1319,6 +1322,23 @@
}
@Test
+ public void testEnableManualInputAttribute(Template template) {
+ renderPage(SHOW_ATTRIBURES_TEST_URL, template, INIT_SHOW_ATTRIBUTES_TEST);
+ initIds(getParentId());
+
+ writeStatus("Check 'enableManualInput' attribute");
+ check(showPopupId, true);
+
+ writeStatus("Set 'enableManualInput' to false. Date input has to be read only. Check it");
+ check(enableManualInputId, false);
+ Assert.assertFalse(selenium.isEditable(inputDateId), "Date input has to be read only");
+
+ writeStatus("Set 'enableManualInput' to true. Date input has to become editable. Check it");
+ check(enableManualInputId, true);
+ Assert.assertTrue(selenium.isEditable(inputDateId), "Date input has to be editable");
+ }
+
+ @Test
public void testTodayControlMode(Template template) {
renderPage(TODAY_CONTROL_MODE_URL, template, null);
initIds(getParentId());
16 years, 9 months
JBoss Rich Faces SVN: r11912 - in trunk/test-applications/realworld/Upload/root: Avatars and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-19 08:32:41 -0500 (Fri, 19 Dec 2008)
New Revision: 11912
Added:
trunk/test-applications/realworld/Upload/root/Avatars/
trunk/test-applications/realworld/Upload/root/Avatars/pupkind.jpg
Log:
RF-4494: Tutorial about developing this sample application
Added: trunk/test-applications/realworld/Upload/root/Avatars/pupkind.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Avatars/pupkind.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 9 months
JBoss Rich Faces SVN: r11911 - trunk/ui/extendedDataTable/src/test/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: pgolawski
Date: 2008-12-19 07:53:43 -0500 (Fri, 19 Dec 2008)
New Revision: 11911
Modified:
trunk/ui/extendedDataTable/src/test/java/org/richfaces/component/DefaultExtendedDataTable.java
Log:
added setter ad getter for tableState property
Modified: trunk/ui/extendedDataTable/src/test/java/org/richfaces/component/DefaultExtendedDataTable.java
===================================================================
--- trunk/ui/extendedDataTable/src/test/java/org/richfaces/component/DefaultExtendedDataTable.java 2008-12-19 12:53:05 UTC (rev 11910)
+++ trunk/ui/extendedDataTable/src/test/java/org/richfaces/component/DefaultExtendedDataTable.java 2008-12-19 12:53:43 UTC (rev 11911)
@@ -86,4 +86,16 @@
public void setGroupingColumn(String groupingColumn) {
}
+ @Override
+ public String getTableState() {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ @Override
+ public void setTableState(String tableState) {
+ // TODO Auto-generated method stub
+
+ }
+
}
16 years, 9 months
JBoss Rich Faces SVN: r11910 - trunk/ui/extendedDataTable/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: pgolawski
Date: 2008-12-19 07:53:05 -0500 (Fri, 19 Dec 2008)
New Revision: 11910
Modified:
trunk/ui/extendedDataTable/src/main/java/org/richfaces/component/ExtendedDataTableState.java
Log:
changed tableState mechanism
https://jira.jboss.org/jira/browse/RF-5041
Modified: trunk/ui/extendedDataTable/src/main/java/org/richfaces/component/ExtendedDataTableState.java
===================================================================
--- trunk/ui/extendedDataTable/src/main/java/org/richfaces/component/ExtendedDataTableState.java 2008-12-19 12:52:52 UTC (rev 11909)
+++ trunk/ui/extendedDataTable/src/main/java/org/richfaces/component/ExtendedDataTableState.java 2008-12-19 12:53:05 UTC (rev 11910)
@@ -28,7 +28,6 @@
import java.util.Iterator;
import java.util.List;
-import javax.el.ValueExpression;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
@@ -49,12 +48,8 @@
private static final long serialVersionUID = -3103664821855261335L;
- public static final String TABLE_STATE_ATTR_NAME = "tableState";
-
public static final String NONE_COLUMN_ID = "none";
- //protected static final String SEP = ":";
-
protected ColumnsOrder columnsOrder;
protected ColumnsVisibility columnsVisibility;
protected ColumnsSizeState columnsSizeState;
@@ -71,7 +66,7 @@
*/
protected void init(UIExtendedDataTable extendedDataTable){
//get state value from components attribute
- String value = (String)extendedDataTable.getAttributes().get(TABLE_STATE_ATTR_NAME);
+ String value = extendedDataTable.getTableState();
JSONMap stateMap = null;
if ((value != null) && (value.length() > 0)){
try {
@@ -108,19 +103,9 @@
catch(Exception e){
columnGroupingState = ColumnGroupingState.getColumnGropingState(extendedDataTable, (JSONMap)null);
}
- }//init
+ }//init
/**
- * Puts own state into component state.
- */
- public void publishChanges(FacesContext context, UIExtendedDataTable extendedDataTable){
- ValueExpression ve = extendedDataTable.getValueExpression(TABLE_STATE_ATTR_NAME);
- if ((null != ve) && (!ve.isReadOnly(context.getELContext()))) {
- ve.setValue(context.getELContext(), toString());
- }
- }//publishChanges
-
- /**
* Converts its state to String representation in JSON format.
*/
public String toString(){
16 years, 9 months
JBoss Rich Faces SVN: r11909 - trunk/ui/extendedDataTable/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: pgolawski
Date: 2008-12-19 07:52:52 -0500 (Fri, 19 Dec 2008)
New Revision: 11909
Modified:
trunk/ui/extendedDataTable/src/main/java/org/richfaces/component/UIExtendedDataTable.java
Log:
changed tableState mechanism
https://jira.jboss.org/jira/browse/RF-5041
Modified: trunk/ui/extendedDataTable/src/main/java/org/richfaces/component/UIExtendedDataTable.java
===================================================================
--- trunk/ui/extendedDataTable/src/main/java/org/richfaces/component/UIExtendedDataTable.java 2008-12-19 12:51:44 UTC (rev 11908)
+++ trunk/ui/extendedDataTable/src/main/java/org/richfaces/component/UIExtendedDataTable.java 2008-12-19 12:52:52 UTC (rev 11909)
@@ -27,9 +27,9 @@
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
-import java.util.Locale;
import java.util.Map;
+import javax.el.ValueExpression;
import javax.faces.component.UIComponent;
import javax.faces.component.UIViewRoot;
import javax.faces.context.FacesContext;
@@ -73,7 +73,7 @@
* COMPONENT_FAMILY
*/
public static final String COMPONENT_FAMILY = "org.richfaces.ExtendedDataTable";
-
+
protected ExtendedDataTableState state;
public abstract Object getActiveRowKey();
@@ -83,6 +83,10 @@
public abstract String getGroupingColumn();
public abstract void setGroupingColumn(String groupingColumn);
+
+ public abstract void setTableState(String tableState);
+
+ public abstract String getTableState();
public void broadcast(FacesEvent event) throws AbortProcessingException {
super.broadcast(event);
@@ -109,12 +113,12 @@
event.setPhaseId(PhaseId.APPLY_REQUEST_VALUES);
} else if (event instanceof DragDropEvent) {
new AjaxEvent(this).queue();
- event.setPhaseId(PhaseId.APPLY_REQUEST_VALUES);
+ event.setPhaseId(PhaseId.UPDATE_MODEL_VALUES);
} else if (event instanceof ChangeColumnVisibilityEvent) {
new AjaxEvent(this).queue();
- event.setPhaseId(PhaseId.APPLY_REQUEST_VALUES);
+ event.setPhaseId(PhaseId.UPDATE_MODEL_VALUES);
} else if (event instanceof ColumnResizeEvent) {
- event.setPhaseId(PhaseId.APPLY_REQUEST_VALUES);
+ event.setPhaseId(PhaseId.UPDATE_MODEL_VALUES);
} else if (event instanceof ExtTableSortEvent) {
new AjaxEvent(this).queue();
event.setPhaseId(PhaseId.INVOKE_APPLICATION);
@@ -138,29 +142,16 @@
String dragValue = event.getDragValue().toString();// dnd_drag_script
String dropValue = event.getDropValue().toString();// dnd_drop_script
- ensureTableStateInitialized();
- state.changeColumnsOrder(dragValue, dropValue, event.isDropBefore());
- state.publishChanges(getFacesContext(), this);
-
+ getState().changeColumnsOrder(dragValue, dropValue, event.isDropBefore());
getFacesContext().renderResponse();
}
public List<UIComponent> getSortedChildren() {
- ensureTableStateInitialized();
- return state.sortColumns(getFacesContext(), super.getChildren());
+ return getState().sortColumns(getFacesContext(), super.getChildren());
}
- public void ensureTableStateInitialized() {
- if (state == null) {
- state = ExtendedDataTableState.getExtendedDataTableState(this);
- }
- }
-
public void processChangeColumnVisibility(ChangeColumnVisibilityEvent event) {
- ensureTableStateInitialized();
- state.toggleColumnVisibility(this, event.getColumnId());
- state.publishChanges(getFacesContext(), this);
-
+ getState().toggleColumnVisibility(this, event.getColumnId());
getFacesContext().renderResponse();
}
@@ -188,21 +179,16 @@
}
public boolean isColumnVisible(UIComponent column) {
- ensureTableStateInitialized();
- return state.isColumnVisible(column.getId());
+ return getState().isColumnVisible(column.getId());
}
public void processColumnResize(ColumnResizeEvent event) {
- ensureTableStateInitialized();
- state.changeColumnSize(this, event.getColumnWidths());
- state.publishChanges(getFacesContext(), this);
-
+ getState().changeColumnSize(this, event.getColumnWidths());
getFacesContext().renderResponse();
}
public String getColumnSize(UIComponent column) {
- ensureTableStateInitialized();
- return state.getColumnSize(column);
+ return getState().getColumnSize(column);
}
public boolean isGroupingOn() {
@@ -219,8 +205,7 @@
* @return id of column which the data is grouped by
*/
public String getGroupByColumnId() {
- ensureTableStateInitialized();
- String id = state.getGroupingColumnId();
+ String id = getState().getGroupingColumnId();
if (id == null){//grouping is not saved in state
//get column id from attribute
id = getGroupingColumn();
@@ -250,35 +235,27 @@
}
public void setGroupByColumn(org.richfaces.component.UIColumn column) {
- ensureTableStateInitialized();
if (column == null) {
- state.disableGrouping();
+ getState().disableGrouping();
} else {
- state.groupBy(column.getId(), column.getSortOrder());
+ getState().groupBy(column.getId(), column.getSortOrder());
}
- state.publishChanges(getFacesContext(), this);
}
protected void resetGroupVisibilityState() {
- ensureTableStateInitialized();
- state.resetGroupVisibilityState();
+ getState().resetGroupVisibilityState();
}
public void disableGrouping() {
- ensureTableStateInitialized();
- state.disableGrouping();
- state.publishChanges(getFacesContext(), this);
+ getState().disableGrouping();
}
public boolean groupIsExpanded(int index) {
- ensureTableStateInitialized();
- return state.groupIsExpanded(index);
+ return getState().groupIsExpanded(index);
}
public void toggleGroup(int index) {
- ensureTableStateInitialized();
- state.toggleGroup(index);
- state.publishChanges(getFacesContext(), this);
+ getState().toggleGroup(index);
}
protected Collection<Object> getGroupPriority(){
@@ -302,19 +279,19 @@
return priority;
}
- public Object saveState(FacesContext context) {
- Object values[] = new Object[2];
- values[0] = super.saveState(context);
- values[1] = state;
- return values;
- }
+// public Object saveState(FacesContext context) {
+// Object values[] = new Object[2];
+// values[0] = super.saveState(context);
+// values[1] = state;
+// return values;
+// }
+//
+// public void restoreState(FacesContext context, Object state) {
+// Object values[] = (Object[]) state;
+// super.restoreState(context, values[0]);
+// this.state = (ExtendedDataTableState) values[1];
+// }
- public void restoreState(FacesContext context, Object state) {
- Object values[] = (Object[]) state;
- super.restoreState(context, values[0]);
- this.state = (ExtendedDataTableState) values[1];
- }
-
public int getVisibleColumnsCount() {
int count = 0;
for (Iterator<UIColumn> iter = getChildColumns(); iter.hasNext();) {
@@ -449,6 +426,27 @@
}
}
+ @Override
+ public void processUpdates(FacesContext context){
+ super.processUpdates(context);
+ updateTableState(context);
+ }
+ /**
+ * Puts own state into component state.
+ */
+ protected void updateTableState(FacesContext context){
+ ValueExpression ve = getValueExpression("tableState");
+ if ((null != ve) && (!ve.isReadOnly(context.getELContext()))) {
+ ve.setValue(context.getELContext(), getState().toString());
+ }
+ }//publishChanges
+
+ protected ExtendedDataTableState getState() {
+ if (state == null){
+ state = ExtendedDataTableState.getExtendedDataTableState(this);
+ }
+ return state;
+ }
}
16 years, 9 months
JBoss Rich Faces SVN: r11908 - trunk/ui/extendedDataTable/src/main/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: pgolawski
Date: 2008-12-19 07:51:44 -0500 (Fri, 19 Dec 2008)
New Revision: 11908
Modified:
trunk/ui/extendedDataTable/src/main/java/org/richfaces/renderkit/AbstractExtendedTableRenderer.java
Log:
organized imports
Modified: trunk/ui/extendedDataTable/src/main/java/org/richfaces/renderkit/AbstractExtendedTableRenderer.java
===================================================================
--- trunk/ui/extendedDataTable/src/main/java/org/richfaces/renderkit/AbstractExtendedTableRenderer.java 2008-12-19 12:14:55 UTC (rev 11907)
+++ trunk/ui/extendedDataTable/src/main/java/org/richfaces/renderkit/AbstractExtendedTableRenderer.java 2008-12-19 12:51:44 UTC (rev 11908)
@@ -37,7 +37,6 @@
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
-import org.ajax4jsf.component.AjaxActionComponent;
import org.ajax4jsf.context.AjaxContext;
import org.ajax4jsf.javascript.JSFunction;
import org.ajax4jsf.javascript.JSFunctionDefinition;
@@ -45,8 +44,6 @@
import org.ajax4jsf.javascript.ScriptUtils;
import org.ajax4jsf.renderkit.AjaxRendererUtils;
import org.ajax4jsf.renderkit.RendererUtils.HTML;
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
import org.richfaces.component.Column;
import org.richfaces.component.Row;
import org.richfaces.component.UIColumn;
@@ -108,7 +105,7 @@
private static final String MIN_COLUMN_WIDTH = "20";
- private final Log log = LogFactory.getLog(UIExtendedDataTable.class);
+ //private final Log log = LogFactory.getLog(UIExtendedDataTable.class);
/**
* Encode all table structure - colgroups definitions, caption, header,
16 years, 9 months
JBoss Rich Faces SVN: r11907 - trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-12-19 07:14:55 -0500 (Fri, 19 Dec 2008)
New Revision: 11907
Modified:
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
Log:
https://jira.jboss.org/jira/browse/RF-5346 completed
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-19 12:01:08 UTC (rev 11906)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-19 12:14:55 UTC (rev 11907)
@@ -1568,9 +1568,6 @@
public void testJointPointAndDirectionAttributes(Template template) {
renderPage(JOINTPOINT_DIRECTION_TEST_URL, template, null);
initIds(getParentId());
-
- String calendarLeft = "$('" + calendarId + "').cumulativeOffset().left";
- String calendarTop = "$('" + calendarId + "').cumulativeOffset().top";
String topLeftPointLeft = "$('" + inputDateId + "').cumulativeOffset().left";
String topLeftPointTop = "$('" + inputDateId + "').cumulativeOffset().top";
@@ -1582,46 +1579,58 @@
String topRightPointTop = "$('" + popupButtonId + "').cumulativeOffset().top";
String bottomRightPointLeft = topRightPointLeft;
- String bottomRightPointTop = "($('" + popupButtonId + "').cumulativeOffset().top + $('" + popupButtonId + "').getHeight()))";
+ String bottomRightPointTop = "($('" + popupButtonId + "').cumulativeOffset().top + $('" + popupButtonId + "').getHeight())";
- //point:
- //"top-left"
- //"top-right"
- //"bottom-left"
- //"bottom-right"
- //waiteForCondition("$('" + popupButtonId + "').getStyle('display') != 'none'", 1000);
+ testJointPoint("top-left", topLeftPointLeft, topLeftPointTop);
+ testJointPoint("top-right", topRightPointLeft, topRightPointTop);
+ testJointPoint("bottom-left", bottomLeftPointLeft, bottomLeftPointTop);
+ testJointPoint("bottom-right", bottomRightPointLeft, bottomRightPointTop);
+ }
- //top-left joint point
- selenium.select(jointPointId, "top-left");
+ private void testJointPoint(String jointPointValue, String jointPointLeft, String jointPointTop) {
+ String calendarLeft = "$('" + calendarId + "').cumulativeOffset().left";
+ String calendarTop = "$('" + calendarId + "').cumulativeOffset().top";
+ writeStatus("Check [" + jointPointValue + "] joint point with all directions");
+ selenium.select(jointPointId, jointPointValue);
+
//top-left direction
selenium.select(directionId, "top-left");
showPopup();
- assertTrue(calendarLeft, "<", topLeftPointLeft);
- assertTrue(calendarTop, "<", topLeftPointTop);
+ assertTrue(calendarLeft, "<", jointPointLeft);
+ assertTrue(calendarTop, "<", jointPointTop);
//top-right direction
selenium.select(directionId, "top-right");
showPopup();
- assertTrue(calendarLeft, "==", topLeftPointLeft);
- assertTrue(calendarTop, "<", topLeftPointTop);
+ assertTrue(calendarLeft, "==", jointPointLeft);
+ assertTrue(calendarTop, "<", jointPointTop);
//bottom-right direction
selenium.select(directionId, "bottom-right");
showPopup();
- assertTrue(calendarLeft, "==", topLeftPointLeft);
- assertTrue(calendarTop, "==", topLeftPointTop);
+ assertTrue(calendarLeft, "==", jointPointLeft);
+ assertTrue(calendarTop, "==", jointPointTop);
//bottom-left direction
selenium.select(directionId, "bottom-left");
showPopup();
- assertTrue(calendarLeft, "<", topLeftPointLeft);
- assertTrue(calendarTop, "==", topLeftPointTop);
+ assertTrue(calendarLeft, "<", jointPointLeft);
+ assertTrue(calendarTop, "==", jointPointTop);
+
+ //waiteForCondition("$('" + popupButtonId + "').getStyle('display') != 'none'", 1000);
}
private void assertTrue(String calendarPoint, String operation, String jointPoint) {
- Assert.assertTrue(Boolean.parseBoolean(selenium.getEval(WINDOW_JS_RESOLVER + calendarPoint + " " + operation
- + " " + WINDOW_JS_RESOLVER + jointPoint)), runScript(calendarPoint) + operation + runScript(jointPoint));
+ calendarPoint = calendarPoint.replaceAll("\\$", WINDOW_JS_RESOLVER + "\\$");
+ jointPoint = jointPoint.replaceAll("\\$", WINDOW_JS_RESOLVER + "\\$");
+ String expression;
+ if ("==".equals(operation)) {
+ expression = "Math.abs(" + calendarPoint + " - " + jointPoint + ") < 2";
+ } else {
+ expression = calendarPoint + " " + operation + " " + jointPoint;
+ }
+ Assert.assertTrue(Boolean.parseBoolean(selenium.getEval(expression)), selenium.getEval(calendarPoint) + operation + selenium.getEval(jointPoint));
}
private void setPopup(boolean isPopup) {
16 years, 9 months
JBoss Rich Faces SVN: r11906 - trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-12-19 07:01:08 -0500 (Fri, 19 Dec 2008)
New Revision: 11906
Modified:
trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/scripts/suggestionbox.js
Log:
small fix
Modified: trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/scripts/suggestionbox.js
===================================================================
--- trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/scripts/suggestionbox.js 2008-12-19 10:39:07 UTC (rev 11905)
+++ trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/scripts/suggestionbox.js 2008-12-19 12:01:08 UTC (rev 11906)
@@ -152,9 +152,13 @@
this.onScrollListener = this.onScroll.bindAsEventListener(this);
- if (options.popupClass)
- Element.addClassName(this.update.select(".dr-sb-ext-decor-3")[0], options.popupClass);
-
+// if (options.popupClass)
+// Element.addClassName(this.update.select(".dr-sb-ext-decor-3")[0], options.popupClass);
+ if (options.popupClass) {
+ var selected = Element.select(this.update,".dr-sb-ext-decor-3");
+ Element.addClassName(selected[0], options.popupClass);
+ }
+
this.onNothingLabelClick = this.hideNLabel.bindAsEventListener(this);
},
@@ -223,8 +227,12 @@
if (RichFaces.SAFARI == RichFaces.navigatorType()) {
this.wasScroll = false;
this.wasBlur = false;
- if (!this.overflow)
- this.overflow = this.update.select(".dr-sb-overflow")[0];
+// if (!this.overflow)
+// this.overflow = this.update.select(".dr-sb-overflow")[0];
+ if (!this.overflow) {
+ var selected = Element.select(this.update,".dr-sb-overflow");
+ this.overflow = selected[0];
+ }
Event.observe(this.overflow, "scroll", this.onScrollListener);
}
if (Element.getStyle(this.update, 'display')
@@ -515,8 +523,10 @@
countVisibleEntries: function() {
var entry = this.getEntry(this.index);
- var scroll = this.update.select("._suggestion_size_")[0]
- || this.update;
+// var scroll = this.update.select("._suggestion_size_")[0]
+// || this.update;
+ var selected = Element.select(this.update, "._suggestion_size_");
+ var scroll = selected[0] || this.update;
var entryPosition = this.calcEntryPosition(entry,scroll);
@@ -541,8 +551,10 @@
// Calc scroll position :
if (this.keyEvent) {
- var scroll = this.update.select("._suggestion_size_")[0]
- || this.update;
+// var scroll = this.update.select("._suggestion_size_")[0]
+// || this.update;
+ var selected = Element.select(this.update,"._suggestion_size_");
+ var scroll = selected[0] || this.update;
var entryPosition = this.calcEntryPosition(entry,scroll);
@@ -672,8 +684,10 @@
// TODO - get entry elements by tag name or class
var entryes = [];
if (this.options.entryClass) {
- entryes = this.update.select("."+this.options.entryClass)
- || [];
+ //entryes = this.update.select("."+this.options.entryClass)|| [];
+ var selected = Element.select(this.update, "."+this.options.entryClass);
+ entryes = selected || [];
+
} else if (this.update.firstChild
&& this.update.firstChild.firstChild
&& this.update.firstChild.firstChild.childNodes) {
@@ -693,8 +707,10 @@
}
this.stopIndicator();
- var scroll = this.update.select("._suggestion_size_")[0]
- || this.update;
+// var scroll = this.update.select("._suggestion_size_")[0]
+// || this.update;
+ var selected = Element.select(this.update,"._suggestion_size_");
+ var scroll = selected[0] || this.update;
scroll.scrollTop = -1;
scroll.scrollLeft = -1;
this.index = 0;
16 years, 9 months
JBoss Rich Faces SVN: r11905 - trunk/test-applications/jsp/src/main/webapp/InplaceSelect.
by richfaces-svn-commits@lists.jboss.org
Author: tromanovich
Date: 2008-12-19 05:39:07 -0500 (Fri, 19 Dec 2008)
New Revision: 11905
Modified:
trunk/test-applications/jsp/src/main/webapp/InplaceSelect/InplaceSelectProperty.jsp
Log:
Modified: trunk/test-applications/jsp/src/main/webapp/InplaceSelect/InplaceSelectProperty.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/InplaceSelect/InplaceSelectProperty.jsp 2008-12-19 10:38:39 UTC (rev 11904)
+++ trunk/test-applications/jsp/src/main/webapp/InplaceSelect/InplaceSelectProperty.jsp 2008-12-19 10:39:07 UTC (rev 11905)
@@ -106,8 +106,13 @@
value="getValue"></a4j:commandLink>
<br />
<a4j:commandLink
- onclick="$('formID:inplaceSelectSubviewID:inplaceSelectID').component.setValue(event,{itemLabel:'passeds', itemValue:'passeds'})"
+ onclick="$('formID:inplaceSelectSubviewID:inplaceSelectID').component.setValue(event,{value:'passeds'})"
value="setValue(e,{params})"></a4j:commandLink>
+ <br />
+
+ <a4j:commandLink
+ onclick="$('formID:inplaceSelectSubviewID:inplaceSelectID').component.setValue('1234')"
+ value="setValue('infos')"></a4j:commandLink>
<br />
<f:verbatim>
@@ -122,7 +127,7 @@
<br />
<a href="#" id="getValueID">getValue()</a>
<br />
- <a href="#" id="setValueID">setValue('passeds','passeds')</a>
+ <a href="#" id="setValueID">setValue('warns')</a>
</f:verbatim>
<rich:componentControl attachTo="editID" event="onclick"
@@ -136,8 +141,7 @@
</rich:componentControl>
<rich:componentControl attachTo="setValueID" event="onclick"
for="inplaceSelectID" operation="setValue">
- <f:param name="itemValue" value="passeds"/>
- <f:param name="itemLabel" value="passeds"/>
+ <f:param name="value" value="warns"/>
</rich:componentControl>
<br />
<br />
16 years, 9 months
JBoss Rich Faces SVN: r11904 - trunk/test-applications/jsp/src/main/webapp/InplaceInput.
by richfaces-svn-commits@lists.jboss.org
Author: tromanovich
Date: 2008-12-19 05:38:39 -0500 (Fri, 19 Dec 2008)
New Revision: 11904
Modified:
trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInputProperty.jsp
Log:
Modified: trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInputProperty.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInputProperty.jsp 2008-12-19 10:05:24 UTC (rev 11903)
+++ trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInputProperty.jsp 2008-12-19 10:38:39 UTC (rev 11904)
@@ -114,7 +114,19 @@
onclick="$('formID:inplaceInputSubviewID:inplaceInputId').component.setValue('setValue')"
value="setValuel"></a4j:commandLink>
<br />
+ <f:verbatim>
+ <h:outputText value="Component Control test"
+ style="FONT-WEIGHT: bold;"></h:outputText>
+ <br />
+ <a href="#" id="setValueID">setValue('testValue: ~!@#$%^&*()_+=-[]{}"|;<>/')</a>
+ <br />
+ </f:verbatim>
<br />
+ <rich:componentControl attachTo="setValueID" event="onclick"
+ for="inplaceInputId" operation="setValue">
+ <f:param name="value" value="testValue: ~!@#$%^&*()_+=-[]{}|;<>/"/>
+ </rich:componentControl>
+ <br />
<div style="FONT-WEIGHT: bold;">rich:findComponent</div>
<h:panelGrid columns="2">
<rich:column>
16 years, 9 months
JBoss Rich Faces SVN: r11903 - Reports/3.3.0 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: adubovsky
Date: 2008-12-19 05:05:24 -0500 (Fri, 19 Dec 2008)
New Revision: 11903
Modified:
trunk/test-applications/qa/Test Reports/3.3.0/ComponentsAssignment3.3.0.BETA4.xls
Log:
Modified: trunk/test-applications/qa/Test Reports/3.3.0/ComponentsAssignment3.3.0.BETA4.xls
===================================================================
(Binary files differ)
16 years, 9 months
JBoss Rich Faces SVN: r11902 - trunk/ui/inputnumber-slider/src/test/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: mpopiolek
Date: 2008-12-19 03:27:36 -0500 (Fri, 19 Dec 2008)
New Revision: 11902
Modified:
trunk/ui/inputnumber-slider/src/test/java/org/richfaces/component/InputNumberSliderComponentTest.java
Log:
RF-5266 unit tests for new features
Modified: trunk/ui/inputnumber-slider/src/test/java/org/richfaces/component/InputNumberSliderComponentTest.java
===================================================================
--- trunk/ui/inputnumber-slider/src/test/java/org/richfaces/component/InputNumberSliderComponentTest.java 2008-12-18 23:18:31 UTC (rev 11901)
+++ trunk/ui/inputnumber-slider/src/test/java/org/richfaces/component/InputNumberSliderComponentTest.java 2008-12-19 08:27:36 UTC (rev 11902)
@@ -47,14 +47,24 @@
import org.ajax4jsf.tests.HtmlTestUtils;
import org.apache.commons.lang.StringUtils;
import org.richfaces.renderkit.html.images.SliderArrowImage;
+import org.richfaces.renderkit.html.images.SliderArrowImageLeft;
+import org.richfaces.renderkit.html.images.SliderArrowImageRight;
+import org.richfaces.renderkit.html.images.SliderArrowImageTop;
import org.richfaces.renderkit.html.images.SliderArrowSelectedImage;
+import org.richfaces.renderkit.html.images.SliderArrowSelectedImageLeft;
+import org.richfaces.renderkit.html.images.SliderArrowSelectedImageRight;
+import org.richfaces.renderkit.html.images.SliderArrowSelectedImageTop;
import org.richfaces.renderkit.html.images.SliderFieldGradient;
import org.richfaces.renderkit.html.images.SliderTrackGradient;
+import org.richfaces.renderkit.html.images.SliderTrackGradientVertical;
+import org.w3c.dom.html.HTMLDivElement;
+import com.gargoylesoftware.htmlunit.ElementNotFoundException;
import com.gargoylesoftware.htmlunit.KeyValuePair;
import com.gargoylesoftware.htmlunit.Page;
import com.gargoylesoftware.htmlunit.html.DomNode;
import com.gargoylesoftware.htmlunit.html.HtmlAnchor;
+import com.gargoylesoftware.htmlunit.html.HtmlDivision;
import com.gargoylesoftware.htmlunit.html.HtmlElement;
import com.gargoylesoftware.htmlunit.html.HtmlInput;
import com.gargoylesoftware.htmlunit.html.HtmlPage;
@@ -342,7 +352,179 @@
assertTrue(facesContext.getMessages().hasNext());
}
+ /**
+ * Test component with orientation renders correctly
+ *
+ * @throws Exception
+ */
+ public void testComponentWithOrientation() throws Exception {
+ slider.getAttributes().put("orientation", "vertical");
+ HtmlPage renderedView = renderView();
+ HtmlElement htmlSlider = renderedView.getHtmlElementById(slider
+ .getClientId(facesContext));
+
+ assertNotNull(htmlSlider);
+
+ assertTrue(htmlSlider.getAttributeValue("class").contains(
+ "dr-insldr-vertical rich-slider "));
+
+ HtmlInput htmlSliderInput = (HtmlInput) renderedView
+ .getHtmlElementById(slider.getClientId(facesContext) + "Input");
+
+ assertNotNull(htmlSliderInput);
+
+ assertTrue(htmlSliderInput.getClassAttribute().contains(
+ "dr-insldr-field dr-insldr-field-top rich-inslider-field "));
+ assertTrue(htmlSliderInput.getTypeAttribute().equals("text"));
+
+ HtmlDivision track = (HtmlDivision) ((HtmlElement) renderedView
+ .getHtmlElementById(slider.getClientId(facesContext) + "Track"))
+ .getFirstDomChild();
+
+ assertTrue(track.getAttributeValue("class").contains(
+ "dr-insldr-track-vertical rich-inslider-track"));
+
+ DomNode numContainer = track.getParentDomNode().getParentDomNode()
+ .getNextDomSibling().getFirstDomChild();
+ assertTrue(((HtmlElement) numContainer).getAttributeValue("class")
+ .contains("dr-insldr-bottom-num "));
+ assertTrue(((HtmlElement) track.getParentDomNode().getNextDomSibling())
+ .getAttributeValue("class").contains("dr-insldr-top-num "));
+
+ HtmlElement tip = renderedView.getHtmlElementById(slider
+ .getClientId(facesContext)
+ + "Tip");
+ assertTrue(tip.getAttributeValue("class").contains(
+ "dr-insldr-tip rich-inslider-tip"));
+
+ HtmlElement handle = renderedView.getHtmlElementById(slider
+ .getClientId(facesContext)
+ + "Handle");
+ assertTrue(handle.getAttributeValue("class").contains(
+ "dr-insldr-handler-vertical "));
+ }
+
+ public void testShowArrows() throws Exception {
+ slider.getAttributes().put("showArrows", Boolean.TRUE);
+ HtmlPage renderedView = renderView();
+ HtmlDivision htmlSliderArrowInc = (HtmlDivision) renderedView
+ .getHtmlElementById(slider.getClientId(facesContext)
+ + "ArrowInc");
+ assertTrue(htmlSliderArrowInc.getClassAttribute().equals(
+ "dr-insldr-inc-horizontal dr-insldr-arrow "));
+
+ HtmlDivision htmlSliderArrowDec = (HtmlDivision) renderedView
+ .getHtmlElementById(slider.getClientId(facesContext)
+ + "ArrowDec");
+ assertTrue(htmlSliderArrowDec.getClassAttribute().equals(
+ "dr-insldr-dec-horizontal dr-insldr-arrow "));
+
+ HtmlDivision htmlSliderTipArrowInc = (HtmlDivision) renderedView
+ .getHtmlElementById(slider.getClientId(facesContext)
+ + "TipArrowInc");
+ assertTrue(htmlSliderTipArrowInc.getClassAttribute().equals(
+ "dr-insldr-tip rich-inslider-tip "));
+ assertTrue(htmlSliderTipArrowInc.getStyleAttribute().equals(
+ "display: none; "));
+
+ HtmlDivision htmlSliderTipArrowDec = (HtmlDivision) renderedView
+ .getHtmlElementById(slider.getClientId(facesContext)
+ + "TipArrowDec");
+ assertTrue(htmlSliderTipArrowDec.getClassAttribute().equals(
+ "dr-insldr-tip rich-inslider-tip "));
+ assertTrue(htmlSliderTipArrowDec.getStyleAttribute().equals(
+ "display: none; "));
+ }
+
+ public void testHideArrows() throws Exception {
+ slider.getAttributes().put("showArrows", Boolean.FALSE);
+ HtmlPage renderedView = renderView();
+ try {
+ renderedView.getHtmlElementById(slider.getClientId(facesContext)
+ + "ArrowInc");
+ fail();
+ } catch (ElementNotFoundException e) {
+ assertTrue(Boolean.TRUE);
+ }
+ try {
+ assertNull(renderedView.getHtmlElementById(slider
+ .getClientId(facesContext)
+ + "ArrowDec"));
+ fail();
+ } catch (ElementNotFoundException e) {
+ assertTrue(Boolean.TRUE);
+ }
+ }
+
+ public void testArrowsImages() throws Exception {
+ InternetResource image;
+ Dimension imageDim;
+ image = InternetResourceBuilder.getInstance().createResource(null,
+ SliderTrackGradientVertical.class.getName());
+ imageDim = ((Java2Dresource) image).getDimensions(facesContext, null);
+ assertTrue(imageDim.getWidth() == 7 && imageDim.getHeight() == 10);
+
+ image = InternetResourceBuilder.getInstance().createResource(null,
+ SliderArrowImageLeft.class.getName());
+ imageDim = ((Java2Dresource) image).getDimensions(facesContext, null);
+ assertTrue(imageDim.getWidth() == 7 && imageDim.getHeight() == 8);
+
+ image = InternetResourceBuilder.getInstance().createResource(null,
+ SliderArrowImageRight.class.getName());
+ imageDim = ((Java2Dresource) image).getDimensions(facesContext, null);
+ assertTrue(imageDim.getWidth() == 7 && imageDim.getHeight() == 8);
+
+ image = InternetResourceBuilder.getInstance().createResource(null,
+ SliderArrowImageTop.class.getName());
+ imageDim = ((Java2Dresource) image).getDimensions(facesContext, null);
+ assertTrue(imageDim.getWidth() == 7 && imageDim.getHeight() == 8);
+
+ image = InternetResourceBuilder.getInstance().createResource(null,
+ SliderArrowSelectedImageLeft.class.getName());
+ imageDim = ((Java2Dresource) image).getDimensions(facesContext, null);
+ assertTrue(imageDim.getWidth() == 7 && imageDim.getHeight() == 8);
+
+ image = InternetResourceBuilder.getInstance().createResource(null,
+ SliderArrowSelectedImageRight.class.getName());
+ imageDim = ((Java2Dresource) image).getDimensions(facesContext, null);
+ assertTrue(imageDim.getWidth() == 7 && imageDim.getHeight() == 8);
+
+ image = InternetResourceBuilder.getInstance().createResource(null,
+ SliderArrowSelectedImageTop.class.getName());
+ imageDim = ((Java2Dresource) image).getDimensions(facesContext, null);
+ assertTrue(imageDim.getWidth() == 7 && imageDim.getHeight() == 8);
+ }
+
+ public void testRenderArrowImages() throws Exception {
+ renderView();
+ assertNotNull(getResourceIfPresent("css/slider.xcss"));
+ String[] resources = new String[] {
+ SliderArrowImageLeft.class.getName(),
+ SliderArrowImageRight.class.getName(),
+ SliderArrowImageTop.class.getName(),
+ SliderArrowSelectedImageLeft.class.getName(),
+ SliderArrowSelectedImageRight.class.getName(),
+ SliderArrowSelectedImageTop.class.getName()
+
+ };
+
+ for (int i = 0; i < resources.length; i++) {
+ ImageInfo info = getImageResource(resources[i]);
+ assertNotNull(info);
+ assertEquals(ImageInfo.FORMAT_GIF, info.getFormat());
+ }
+
+ String[] pngResources = new String[] { SliderTrackGradientVertical.class
+ .getName() };
+
+ for (int i = 0; i < pngResources.length; i++) {
+ ImageInfo info = getImageResource(pngResources[i]);
+ assertNotNull(info);
+ assertEquals(ImageInfo.FORMAT_PNG, info.getFormat());
+ }
+ }
+
private class SliderBean {
private String value;
16 years, 9 months
JBoss Rich Faces SVN: r11901 - in tags: 3.3.0.BETA5 and 191 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-18 18:18:31 -0500 (Thu, 18 Dec 2008)
New Revision: 11901
Added:
tags/3.3.0.BETA5/
Modified:
tags/3.3.0.BETA5/cdk/generator/pom.xml
tags/3.3.0.BETA5/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.0.BETA5/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.0.BETA5/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.0.BETA5/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.0.BETA5/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.0.BETA5/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.0.BETA5/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.0.BETA5/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
tags/3.3.0.BETA5/cdk/maven-cdk-plugin/pom.xml
tags/3.3.0.BETA5/cdk/maven-javascript-plugin/pom.xml
tags/3.3.0.BETA5/cdk/pom.xml
tags/3.3.0.BETA5/docs/cdkguide/en/pom.xml
tags/3.3.0.BETA5/docs/cdkguide/pom.xml
tags/3.3.0.BETA5/docs/common-resources/en/pom.xml
tags/3.3.0.BETA5/docs/common-resources/pom.xml
tags/3.3.0.BETA5/docs/faq/en/pom.xml
tags/3.3.0.BETA5/docs/faq/pom.xml
tags/3.3.0.BETA5/docs/highlight/pom.xml
tags/3.3.0.BETA5/docs/migrationguide/en/pom.xml
tags/3.3.0.BETA5/docs/migrationguide/pom.xml
tags/3.3.0.BETA5/docs/pom.xml
tags/3.3.0.BETA5/docs/userguide/en/pom.xml
tags/3.3.0.BETA5/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.0.BETA5/docs/userguide/pom.xml
tags/3.3.0.BETA5/extensions/gwt/pom.xml
tags/3.3.0.BETA5/extensions/pom.xml
tags/3.3.0.BETA5/extensions/seam/pom.xml
tags/3.3.0.BETA5/extensions/trinidad/pom.xml
tags/3.3.0.BETA5/framework/api/pom.xml
tags/3.3.0.BETA5/framework/impl/pom.xml
tags/3.3.0.BETA5/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.3.0.BETA5/framework/jsf-test/pom.xml
tags/3.3.0.BETA5/framework/pom.xml
tags/3.3.0.BETA5/framework/test/pom.xml
tags/3.3.0.BETA5/pom.xml
tags/3.3.0.BETA5/samples/beanValidatorSample/pom.xml
tags/3.3.0.BETA5/samples/calendar-sample/pom.xml
tags/3.3.0.BETA5/samples/columnsDemo/pom.xml
tags/3.3.0.BETA5/samples/combobox-sample/pom.xml
tags/3.3.0.BETA5/samples/contextMenuDemo/pom.xml
tags/3.3.0.BETA5/samples/darkX/pom.xml
tags/3.3.0.BETA5/samples/dataFilterSliderDemo/pom.xml
tags/3.3.0.BETA5/samples/dataTableDemo/pom.xml
tags/3.3.0.BETA5/samples/datascroller-sample/pom.xml
tags/3.3.0.BETA5/samples/dragDropDemo/pom.xml
tags/3.3.0.BETA5/samples/dropdownmenu-sample/pom.xml
tags/3.3.0.BETA5/samples/editor-sample/pom.xml
tags/3.3.0.BETA5/samples/editorSeam-sample/pom.xml
tags/3.3.0.BETA5/samples/effect-sample/pom.xml
tags/3.3.0.BETA5/samples/extendedDataTable-sample/pom.xml
tags/3.3.0.BETA5/samples/fileUploadDemo/pom.xml
tags/3.3.0.BETA5/samples/functions-demo/pom.xml
tags/3.3.0.BETA5/samples/glassX/pom.xml
tags/3.3.0.BETA5/samples/gmap-sample/pom.xml
tags/3.3.0.BETA5/samples/hotKey-sample/pom.xml
tags/3.3.0.BETA5/samples/inplaceInput-sample/pom.xml
tags/3.3.0.BETA5/samples/inplaceSelect-sample/pom.xml
tags/3.3.0.BETA5/samples/inputNumberSliderDemo/pom.xml
tags/3.3.0.BETA5/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.0.BETA5/samples/jQuery-sample/pom.xml
tags/3.3.0.BETA5/samples/jira-data/pom.xml
tags/3.3.0.BETA5/samples/laguna/pom.xml
tags/3.3.0.BETA5/samples/listShuttleDemo/pom.xml
tags/3.3.0.BETA5/samples/local-value-demo/pom.xml
tags/3.3.0.BETA5/samples/modalpanel-sample/pom.xml
tags/3.3.0.BETA5/samples/orderingListDemo/pom.xml
tags/3.3.0.BETA5/samples/panel-sample/pom.xml
tags/3.3.0.BETA5/samples/panelbar-sample/pom.xml
tags/3.3.0.BETA5/samples/panelmenu-sample/pom.xml
tags/3.3.0.BETA5/samples/pickList-sample/pom.xml
tags/3.3.0.BETA5/samples/pom.xml
tags/3.3.0.BETA5/samples/progressBarDemo/pom.xml
tags/3.3.0.BETA5/samples/queue-sample/pom.xml
tags/3.3.0.BETA5/samples/rich-message-demo/pom.xml
tags/3.3.0.BETA5/samples/richfaces-art-datatable/pom.xml
tags/3.3.0.BETA5/samples/richfaces-demo/pom.xml
tags/3.3.0.BETA5/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.0.BETA5/samples/richfaces-ear-demo/pom.xml
tags/3.3.0.BETA5/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.0.BETA5/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.0.BETA5/samples/scrollableDataTableDemo/pom.xml
tags/3.3.0.BETA5/samples/seamEAR/ear/pom.xml
tags/3.3.0.BETA5/samples/seamEAR/ejbs/pom.xml
tags/3.3.0.BETA5/samples/seamEAR/pom.xml
tags/3.3.0.BETA5/samples/seamEAR/primary-source/pom.xml
tags/3.3.0.BETA5/samples/seamEAR/projects/logging/pom.xml
tags/3.3.0.BETA5/samples/seamEAR/projects/pom.xml
tags/3.3.0.BETA5/samples/seamEAR/wars/pom.xml
tags/3.3.0.BETA5/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.0.BETA5/samples/seamIntegration/pom.xml
tags/3.3.0.BETA5/samples/separator-sample/pom.xml
tags/3.3.0.BETA5/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.0.BETA5/samples/skins/pom.xml
tags/3.3.0.BETA5/samples/sortingFilteringDemo/pom.xml
tags/3.3.0.BETA5/samples/state-sample/pom.xml
tags/3.3.0.BETA5/samples/stdcomponents-sample/pom.xml
tags/3.3.0.BETA5/samples/suggestionbox-sample/pom.xml
tags/3.3.0.BETA5/samples/tabPanelDemo/pom.xml
tags/3.3.0.BETA5/samples/togglePanel-sample/pom.xml
tags/3.3.0.BETA5/samples/tomahawkCompability/pom.xml
tags/3.3.0.BETA5/samples/toolBarDemo/pom.xml
tags/3.3.0.BETA5/samples/tooltip-sample/pom.xml
tags/3.3.0.BETA5/samples/tree-demo/pom.xml
tags/3.3.0.BETA5/samples/treeModelDemo/pom.xml
tags/3.3.0.BETA5/samples/virtualEarth-sample/pom.xml
tags/3.3.0.BETA5/sandbox/api/pom.xml
tags/3.3.0.BETA5/sandbox/impl/pom.xml
tags/3.3.0.BETA5/sandbox/pom.xml
tags/3.3.0.BETA5/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.0.BETA5/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.0.BETA5/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.0.BETA5/sandbox/samples/panel2-sample/pom.xml
tags/3.3.0.BETA5/sandbox/samples/pom.xml
tags/3.3.0.BETA5/sandbox/samples/rex-demo/pom.xml
tags/3.3.0.BETA5/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.0.BETA5/sandbox/ui/create.bat
tags/3.3.0.BETA5/sandbox/ui/dialog-window/pom.xml
tags/3.3.0.BETA5/sandbox/ui/editorOld/pom.xml
tags/3.3.0.BETA5/sandbox/ui/panel2/pom.xml
tags/3.3.0.BETA5/sandbox/ui/pom.xml
tags/3.3.0.BETA5/sandbox/ui/rex-button/pom.xml
tags/3.3.0.BETA5/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.0.BETA5/sandbox/ui/rex-resizable/pom.xml
tags/3.3.0.BETA5/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.0.BETA5/sandbox/ui/sortableHeader/pom.xml
tags/3.3.0.BETA5/sandbox/ui/treeTable/pom.xml
tags/3.3.0.BETA5/test-applications/ajaxTest/pom.xml
tags/3.3.0.BETA5/test-applications/automator/pom.xml
tags/3.3.0.BETA5/test-applications/facelets/pom.xml
tags/3.3.0.BETA5/test-applications/jsp/pom.xml
tags/3.3.0.BETA5/test-applications/pom.xml
tags/3.3.0.BETA5/test-applications/realworld/pom.xml
tags/3.3.0.BETA5/test-applications/regressionArea/pom.xml
tags/3.3.0.BETA5/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.0.BETA5/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.0.BETA5/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.0.BETA5/test-applications/seamApp/pom.xml
tags/3.3.0.BETA5/test-applications/seleniumTest/pom.xml
tags/3.3.0.BETA5/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.0.BETA5/test-applications/seleniumTest/samples/pom.xml
tags/3.3.0.BETA5/ui/assembly/pom.xml
tags/3.3.0.BETA5/ui/beanValidator/pom.xml
tags/3.3.0.BETA5/ui/calendar/pom.xml
tags/3.3.0.BETA5/ui/columns/pom.xml
tags/3.3.0.BETA5/ui/combobox/pom.xml
tags/3.3.0.BETA5/ui/componentControl/pom.xml
tags/3.3.0.BETA5/ui/contextMenu/pom.xml
tags/3.3.0.BETA5/ui/core/pom.xml
tags/3.3.0.BETA5/ui/create.bat
tags/3.3.0.BETA5/ui/dataFilterSlider/pom.xml
tags/3.3.0.BETA5/ui/dataTable/pom.xml
tags/3.3.0.BETA5/ui/datascroller/pom.xml
tags/3.3.0.BETA5/ui/drag-drop/pom.xml
tags/3.3.0.BETA5/ui/dropdown-menu/pom.xml
tags/3.3.0.BETA5/ui/editor/pom.xml
tags/3.3.0.BETA5/ui/effect/pom.xml
tags/3.3.0.BETA5/ui/extendedDataTable/pom.xml
tags/3.3.0.BETA5/ui/fileUpload/pom.xml
tags/3.3.0.BETA5/ui/functions/pom.xml
tags/3.3.0.BETA5/ui/gmap/pom.xml
tags/3.3.0.BETA5/ui/hotKey/pom.xml
tags/3.3.0.BETA5/ui/inplaceInput/pom.xml
tags/3.3.0.BETA5/ui/inplaceSelect/pom.xml
tags/3.3.0.BETA5/ui/inputnumber-slider/pom.xml
tags/3.3.0.BETA5/ui/inputnumber-spinner/pom.xml
tags/3.3.0.BETA5/ui/insert/pom.xml
tags/3.3.0.BETA5/ui/jQuery/pom.xml
tags/3.3.0.BETA5/ui/listShuttle/pom.xml
tags/3.3.0.BETA5/ui/menu-components/pom.xml
tags/3.3.0.BETA5/ui/message/pom.xml
tags/3.3.0.BETA5/ui/modal-panel/pom.xml
tags/3.3.0.BETA5/ui/orderingList/pom.xml
tags/3.3.0.BETA5/ui/paint2D/pom.xml
tags/3.3.0.BETA5/ui/panel/pom.xml
tags/3.3.0.BETA5/ui/panelbar/pom.xml
tags/3.3.0.BETA5/ui/panelmenu/pom.xml
tags/3.3.0.BETA5/ui/pickList/pom.xml
tags/3.3.0.BETA5/ui/pom.xml
tags/3.3.0.BETA5/ui/progressBAR/pom.xml
tags/3.3.0.BETA5/ui/scrollableDataTable/pom.xml
tags/3.3.0.BETA5/ui/separator/pom.xml
tags/3.3.0.BETA5/ui/simpleTogglePanel/pom.xml
tags/3.3.0.BETA5/ui/spacer/pom.xml
tags/3.3.0.BETA5/ui/state/pom.xml
tags/3.3.0.BETA5/ui/suggestionbox/pom.xml
tags/3.3.0.BETA5/ui/tabPanel/pom.xml
tags/3.3.0.BETA5/ui/togglePanel/pom.xml
tags/3.3.0.BETA5/ui/toolBar/pom.xml
tags/3.3.0.BETA5/ui/tooltip/pom.xml
tags/3.3.0.BETA5/ui/tree/pom.xml
tags/3.3.0.BETA5/ui/treeModel/pom.xml
tags/3.3.0.BETA5/ui/treeTable/pom.xml
tags/3.3.0.BETA5/ui/virtualEarth/pom.xml
Log:
create tag for a release 3.3.0.BETA5
Copied: tags/3.3.0.BETA5 (from rev 11899, trunk)
Modified: tags/3.3.0.BETA5/cdk/generator/pom.xml
===================================================================
--- trunk/cdk/generator/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/generator/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1,93 +1,92 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <parent>
- <artifactId>cdk</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>generator</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <name>Java Server Faces component generator</name>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <inherited>true</inherited>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.6.5</version>
- </dependency>
- <dependency>
- <groupId>velocity</groupId>
- <artifactId>velocity-dep</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>commons-digester</groupId>
- <artifactId>commons-digester</artifactId>
- <version>1.5</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>qdox</groupId>
- <artifactId>qdox</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib</artifactId>
- <version>2.1_3</version>
- </dependency>
- <dependency>
- <groupId>wutka</groupId>
- <artifactId>dtdparser</artifactId>
- <version>1.21</version>
- </dependency>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.8.1</version>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>cdk</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>generator</artifactId>
+ <version>3.3.0.BETA5</version>
+ <name>Java Server Faces component generator</name>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ <dependency>
+ <groupId>velocity</groupId>
+ <artifactId>velocity-dep</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ <version>1.5</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>qdox</groupId>
+ <artifactId>qdox</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>cglib</groupId>
+ <artifactId>cglib</artifactId>
+ <version>2.1_3</version>
+ </dependency>
+ <dependency>
+ <groupId>wutka</groupId>
+ <artifactId>dtdparser</artifactId>
+ <version>1.21</version>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.8.1</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsf-component/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/maven-archetype-jsf-component/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.0.BETA5/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsfwebapp/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/maven-archetype-jsfwebapp/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.0.BETA5/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-plug-n-skin/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/maven-archetype-plug-n-skin/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.0.BETA5/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.0.BETA5/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-seam-app/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/maven-archetype-seam-app/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.0-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.0.BETA5</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.0.BETA5/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-cdk-plugin/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/maven-cdk-plugin/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.0.BETA5/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-javascript-plugin/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/maven-javascript-plugin/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.0.BETA5/cdk/pom.xml
===================================================================
--- trunk/cdk/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/cdk/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.0.BETA5/docs/cdkguide/en/pom.xml
===================================================================
--- trunk/docs/cdkguide/en/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/cdkguide/en/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.0.BETA5/docs/cdkguide/pom.xml
===================================================================
--- trunk/docs/cdkguide/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/cdkguide/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.0.BETA5/docs/common-resources/en/pom.xml
===================================================================
--- trunk/docs/common-resources/en/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/common-resources/en/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>en</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<packaging>jar</packaging>
<name>Documentation common resources (en)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.0.BETA5/docs/common-resources/pom.xml
===================================================================
--- trunk/docs/common-resources/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/common-resources/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.0.BETA5/docs/faq/en/pom.xml
===================================================================
--- trunk/docs/faq/en/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/faq/en/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.0.BETA5/docs/faq/pom.xml
===================================================================
--- trunk/docs/faq/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/faq/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<pluginRepositories>
Modified: tags/3.3.0.BETA5/docs/highlight/pom.xml
===================================================================
--- trunk/docs/highlight/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/highlight/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.0.BETA5/docs/migrationguide/en/pom.xml
===================================================================
--- trunk/docs/migrationguide/en/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/migrationguide/en/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: tags/3.3.0.BETA5/docs/migrationguide/pom.xml
===================================================================
--- trunk/docs/migrationguide/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/migrationguide/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.0.BETA5/docs/pom.xml
===================================================================
--- trunk/docs/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.0.BETA5/docs/userguide/en/pom.xml
===================================================================
--- trunk/docs/userguide/en/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/userguide/en/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.0.BETA5/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3223,7 +3223,7 @@
<listitem>
<para>
<code>DarchetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.0-SNAPSHOT"</code>
+ <code>"3.3.0.BETA5"</code>
</para>
</listitem>
<listitem>
@@ -3520,7 +3520,7 @@
mvn archetype:create
-DarchetypeGroupId=org.richfaces.cdk
-DarchetypeArtifactId=maven-archetype-plug-n-skin
--DarchetypeVersion=3.3.0-SNAPSHOT
+-DarchetypeVersion=3.3.0.BETA5
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: tags/3.3.0.BETA5/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/docs/userguide/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.0.BETA5/extensions/gwt/pom.xml
===================================================================
--- trunk/extensions/gwt/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/extensions/gwt/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.0.BETA5/extensions/pom.xml
===================================================================
--- trunk/extensions/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/extensions/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.0.BETA5/extensions/seam/pom.xml
===================================================================
--- trunk/extensions/seam/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/extensions/seam/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.0.BETA5/extensions/trinidad/pom.xml
===================================================================
--- trunk/extensions/trinidad/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/extensions/trinidad/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.0.BETA5/framework/api/pom.xml
===================================================================
--- trunk/framework/api/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/framework/api/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: tags/3.3.0.BETA5/framework/impl/pom.xml
===================================================================
--- trunk/framework/impl/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/framework/impl/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1,15 +1,14 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<resources>
<resource>
@@ -160,7 +159,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- trunk/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-12-18 23:18:31 UTC (rev 11901)
@@ -37,7 +37,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "0-SNAPSHOT" ;
+ public static final String REVISION = "0.BETA5" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.3.0.BETA5/framework/jsf-test/pom.xml
===================================================================
--- trunk/framework/jsf-test/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/framework/jsf-test/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1,119 +1,117 @@
-<?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>framework</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>jsf-test</artifactId>
- <name>jsf-test</name>
- <version>3.3.0-SNAPSHOT</version>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.5</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.htmlunit</groupId>
- <artifactId>htmlunit</artifactId>
- <version>2.3</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_10</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.htmlunit</groupId>
- <artifactId>htmlunit-core-js</artifactId>
- <version>2.2</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.cssparser</groupId>
- <artifactId>cssparser</artifactId>
- <version>0.9.5</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.1</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>1.9.9</version>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- </dependency>
- <dependency>
- <groupId>jstl</groupId>
- <artifactId>jstl</artifactId>
- <version>1.2</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.annotation</groupId>
- <artifactId>jsr250-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>xalan</groupId>
- <artifactId>xalan</artifactId>
- <version>2.7.0</version>
- </dependency>
- <dependency>
- <groupId>de.berlios.jsunit</groupId>
- <artifactId>jsunit</artifactId>
- <version>1.3</version>
- <exclusions>
- <exclusion>
- <groupId>rhino</groupId>
- <artifactId>js</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>framework</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>jsf-test</artifactId>
+ <name>jsf-test</name>
+ <version>3.3.0.BETA5</version>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.5</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.htmlunit</groupId>
+ <artifactId>htmlunit</artifactId>
+ <version>2.3</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_10</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.htmlunit</groupId>
+ <artifactId>htmlunit-core-js</artifactId>
+ <version>2.2</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.cssparser</groupId>
+ <artifactId>cssparser</artifactId>
+ <version>0.9.5</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>1.9.9</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>jstl</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.annotation</groupId>
+ <artifactId>jsr250-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>xalan</groupId>
+ <artifactId>xalan</artifactId>
+ <version>2.7.0</version>
+ </dependency>
+ <dependency>
+ <groupId>de.berlios.jsunit</groupId>
+ <artifactId>jsunit</artifactId>
+ <version>1.3</version>
+ <exclusions>
+ <exclusion>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/framework/pom.xml
===================================================================
--- trunk/framework/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/framework/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: tags/3.3.0.BETA5/framework/test/pom.xml
===================================================================
--- trunk/framework/test/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/framework/test/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.0.BETA5/pom.xml
===================================================================
--- trunk/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
@@ -217,9 +217,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk</developerConnection>
- <url>https://svn.jboss.org/repos/richfaces/trunk</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/3.3.0.BETA5</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.3.0.BETA5</developerConnection>
+ <url>https://svn.jboss.org/repos/richfaces/branches/3.3.0.BETA5</url>
</scm>
<profiles>
<profile>
@@ -242,9 +242,9 @@
.settings/org.eclipse.jdt.ui.prefs
</name>
<content>
- <![CDATA[
- eclipse.preferences.version=1
- org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
+ <![CDATA[
+ eclipse.preferences.version=1
+ org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
]]>
</content>
</file>
@@ -412,4 +412,4 @@
</distributionManagement>
</profile>
</profiles>
-</project>
+</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/samples/beanValidatorSample/pom.xml
===================================================================
--- trunk/samples/beanValidatorSample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/beanValidatorSample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<finalName>beanValidatorSample</finalName>
<plugins>
@@ -33,7 +33,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/samples/calendar-sample/pom.xml
===================================================================
--- trunk/samples/calendar-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/calendar-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/columnsDemo/pom.xml
===================================================================
--- trunk/samples/columnsDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/columnsDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/combobox-sample/pom.xml
===================================================================
--- trunk/samples/combobox-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/combobox-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/contextMenuDemo/pom.xml
===================================================================
--- trunk/samples/contextMenuDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/contextMenuDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/darkX/pom.xml
===================================================================
--- trunk/samples/darkX/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/darkX/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1,48 +1,48 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>darkX</artifactId>
- <name>darkX</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>darkX</artifactId>
+ <name>darkX</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- trunk/samples/dataFilterSliderDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/dataFilterSliderDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/dataTableDemo/pom.xml
===================================================================
--- trunk/samples/dataTableDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/dataTableDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/datascroller-sample/pom.xml
===================================================================
--- trunk/samples/datascroller-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/datascroller-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/dragDropDemo/pom.xml
===================================================================
--- trunk/samples/dragDropDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/dragDropDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/dropdownmenu-sample/pom.xml
===================================================================
--- trunk/samples/dropdownmenu-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/dropdownmenu-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/editor-sample/pom.xml
===================================================================
--- trunk/samples/editor-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/editor-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA5/samples/editorSeam-sample/pom.xml
===================================================================
--- trunk/samples/editorSeam-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/editorSeam-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA5/samples/effect-sample/pom.xml
===================================================================
--- trunk/samples/effect-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/effect-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/extendedDataTable-sample/pom.xml
===================================================================
--- trunk/samples/extendedDataTable-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/extendedDataTable-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.0.BETA5/samples/fileUploadDemo/pom.xml
===================================================================
--- trunk/samples/fileUploadDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/fileUploadDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/functions-demo/pom.xml
===================================================================
--- trunk/samples/functions-demo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/functions-demo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/glassX/pom.xml
===================================================================
--- trunk/samples/glassX/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/glassX/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1,49 +1,49 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>glassX</artifactId>
- <name>glassX</name>
- <version>3.3.0-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>glassX</artifactId>
+ <name>glassX</name>
+ <version>3.3.0.BETA5</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/samples/gmap-sample/pom.xml
===================================================================
--- trunk/samples/gmap-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/gmap-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/hotKey-sample/pom.xml
===================================================================
--- trunk/samples/hotKey-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/hotKey-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.0.BETA5/samples/inplaceInput-sample/pom.xml
===================================================================
--- trunk/samples/inplaceInput-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/inplaceInput-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/inplaceSelect-sample/pom.xml
===================================================================
--- trunk/samples/inplaceSelect-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/inplaceSelect-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- trunk/samples/inputNumberSliderDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/inputNumberSliderDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- trunk/samples/inputNumberSpinnerDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/inputNumberSpinnerDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/jQuery-sample/pom.xml
===================================================================
--- trunk/samples/jQuery-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/jQuery-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/jira-data/pom.xml
===================================================================
--- trunk/samples/jira-data/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/jira-data/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/laguna/pom.xml
===================================================================
--- trunk/samples/laguna/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/laguna/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.0.BETA5/samples/listShuttleDemo/pom.xml
===================================================================
--- trunk/samples/listShuttleDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/listShuttleDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/local-value-demo/pom.xml
===================================================================
--- trunk/samples/local-value-demo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/local-value-demo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/modalpanel-sample/pom.xml
===================================================================
--- trunk/samples/modalpanel-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/modalpanel-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/orderingListDemo/pom.xml
===================================================================
--- trunk/samples/orderingListDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/orderingListDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/panel-sample/pom.xml
===================================================================
--- trunk/samples/panel-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/panel-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/panelbar-sample/pom.xml
===================================================================
--- trunk/samples/panelbar-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/panelbar-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/panelmenu-sample/pom.xml
===================================================================
--- trunk/samples/panelmenu-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/panelmenu-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/pickList-sample/pom.xml
===================================================================
--- trunk/samples/pickList-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/pickList-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/pom.xml
===================================================================
--- trunk/samples/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1,499 +1,498 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>root</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces</groupId>
- <artifactId>samples</artifactId>
- <packaging>pom</packaging>
- <name>RichFaces Components Examples</name>
- <url>http://labs.jboss.com/jbossrichfaces/samples</url>
- <properties>
- <!-- -->
- </properties>
- <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <!--
- -->
- <version>6.1.5</version>
- <configuration>
- <scanIntervalSeconds>10</scanIntervalSeconds>
- <connectors>
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
- <port>8080</port>
- <maxIdleTime>60000</maxIdleTime>
- </connector>
- </connectors>
- </configuration>
-
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- <executions>
- <execution>
- <id>surefire-it</id>
- <phase>integration-test</phase>
- <goals>
- <goal>test</goal>
- </goals>
- <configuration>
- <skip>false</skip>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sun.facelets</groupId>
- <artifactId>jsf-facelets</artifactId>
- <version>1.1.14</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>0.9.5</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <artifactId>xerces</artifactId>
- <groupId>xerces</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>jsf1_1</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.1</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jsf1_2</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.2</value>
- </property>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_10</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat5</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_10</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat6</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_10</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jboss42</id>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_10</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_10</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>myfaces</id>
- <properties>
- <myfaces>1.2.5</myfaces>
- <tomahawk>1.1.7</tomahawk>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- <exclusions>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-api</artifactId>
- <version>${myfaces}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-impl</artifactId>
- <version>${myfaces}</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>seam</id>
- <modules>
- <module>seamEAR</module>
- <module>seamIntegration</module>
- </modules>
- </profile>
- <profile>
- <id>clover</id>
- <build>
- <plugins>
- <plugin>
- <groupId>com.atlassian.maven.plugins</groupId>
- <artifactId>maven-clover2-plugin</artifactId>
- <configuration>
- <includesAllSourceRoots>
- false
- </includesAllSourceRoots>
- <includesTestSourceRoots>
- false
- </includesTestSourceRoots>
- <jdk>1.5</jdk>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>allSamples</id>
- <modules>
- <module>separator-sample</module>
- <module>panel-sample</module>
- <module>gmap-sample</module>
- <module>togglePanel-sample</module>
- <module>tabPanelDemo</module>
- <module>simpleTogglePanel-sample</module>
- <module>inputNumberSpinnerDemo</module>
- <module>inputNumberSliderDemo</module>
- <module>panelbar-sample</module>
- <module>toolBarDemo</module>
- <module>tree-demo</module>
- <module>dataFilterSliderDemo</module>
- <module>suggestionbox-sample</module>
- <module>dragDropDemo</module>
- <module>dataTableDemo</module>
- <module>modalpanel-sample</module>
- <module>datascroller-sample</module>
- <module>effect-sample</module>
- <module>dropdownmenu-sample</module>
- <module>tooltip-sample</module>
- <module>calendar-sample</module>
- <module>treeModelDemo</module>
- <module>local-value-demo</module>
- <module>panelmenu-sample</module>
- <module>rich-message-demo</module>
- <module>scrollableDataTableDemo</module>
- <module>richfaces-ear-demo</module>
- <module>contextMenuDemo</module>
- <module>orderingListDemo</module>
- <module>listShuttleDemo</module>
- <module>columnsDemo</module>
- <module>combobox-sample</module>
- <module>pickList-sample</module>
- <module>progressBarDemo</module>
- <module>jira-data</module>
- <module>stdcomponents-sample</module>
- <module>fileUploadDemo</module>
- <module>sortingFilteringDemo</module>
- <module>inplaceInput-sample</module>
- <module>inplaceSelect-sample</module>
- <module>functions-demo</module>
- <module>hotKey-sample</module>
- <module>beanValidatorSample</module>
- <module>state-sample</module>
- <module>extendedDataTable-sample</module>
- <module>queue-sample</module>
- <module>editor-sample</module>
- <module>editorSeam-sample</module>
- </modules>
- </profile>
- </profiles>
- <modules>
- <module>skins</module>
- <module>laguna</module>
- <module>glassX</module>
- <module>darkX</module>
- <module>richfaces-demo</module>
- </modules>
-</project>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>root</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>samples</artifactId>
+ <packaging>pom</packaging>
+ <name>RichFaces Components Examples</name>
+ <url>http://labs.jboss.com/jbossrichfaces/samples</url>
+ <properties>
+ <!-- -->
+ </properties>
+ <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <!--
+ -->
+ <version>6.1.5</version>
+ <configuration>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
+ <connectors>
+ <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>8080</port>
+ <maxIdleTime>60000</maxIdleTime>
+ </connector>
+ </connectors>
+ </configuration>
+
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ <executions>
+ <execution>
+ <id>surefire-it</id>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <skip>false</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.facelets</groupId>
+ <artifactId>jsf-facelets</artifactId>
+ <version>1.1.14</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>0.9.5</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>xerces</artifactId>
+ <groupId>xerces</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+ <profiles>
+ <profile>
+ <id>jsf1_1</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.1</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jsf1_2</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.2</value>
+ </property>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_10</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat5</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_10</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat6</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_10</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jboss42</id>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_10</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_10</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>myfaces</id>
+ <properties>
+ <myfaces>1.2.5</myfaces>
+ <tomahawk>1.1.7</tomahawk>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-api</artifactId>
+ <version>${myfaces}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-impl</artifactId>
+ <version>${myfaces}</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>seam</id>
+ <modules>
+ <module>seamEAR</module>
+ <module>seamIntegration</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>clover</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.atlassian.maven.plugins</groupId>
+ <artifactId>maven-clover2-plugin</artifactId>
+ <configuration>
+ <includesAllSourceRoots>
+ false
+ </includesAllSourceRoots>
+ <includesTestSourceRoots>
+ false
+ </includesTestSourceRoots>
+ <jdk>1.5</jdk>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>allSamples</id>
+ <modules>
+ <module>separator-sample</module>
+ <module>panel-sample</module>
+ <module>gmap-sample</module>
+ <module>togglePanel-sample</module>
+ <module>tabPanelDemo</module>
+ <module>simpleTogglePanel-sample</module>
+ <module>inputNumberSpinnerDemo</module>
+ <module>inputNumberSliderDemo</module>
+ <module>panelbar-sample</module>
+ <module>toolBarDemo</module>
+ <module>tree-demo</module>
+ <module>dataFilterSliderDemo</module>
+ <module>suggestionbox-sample</module>
+ <module>dragDropDemo</module>
+ <module>dataTableDemo</module>
+ <module>modalpanel-sample</module>
+ <module>datascroller-sample</module>
+ <module>effect-sample</module>
+ <module>dropdownmenu-sample</module>
+ <module>tooltip-sample</module>
+ <module>calendar-sample</module>
+ <module>treeModelDemo</module>
+ <module>local-value-demo</module>
+ <module>panelmenu-sample</module>
+ <module>rich-message-demo</module>
+ <module>scrollableDataTableDemo</module>
+ <module>richfaces-ear-demo</module>
+ <module>contextMenuDemo</module>
+ <module>orderingListDemo</module>
+ <module>listShuttleDemo</module>
+ <module>columnsDemo</module>
+ <module>combobox-sample</module>
+ <module>pickList-sample</module>
+ <module>progressBarDemo</module>
+ <module>jira-data</module>
+ <module>stdcomponents-sample</module>
+ <module>fileUploadDemo</module>
+ <module>sortingFilteringDemo</module>
+ <module>inplaceInput-sample</module>
+ <module>inplaceSelect-sample</module>
+ <module>functions-demo</module>
+ <module>hotKey-sample</module>
+ <module>beanValidatorSample</module>
+ <module>state-sample</module>
+ <module>extendedDataTable-sample</module>
+ <module>queue-sample</module>
+ <module>editor-sample</module>
+ <module>editorSeam-sample</module>
+ </modules>
+ </profile>
+ </profiles>
+ <modules>
+ <module>skins</module>
+ <module>laguna</module>
+ <module>glassX</module>
+ <module>darkX</module>
+ <module>richfaces-demo</module>
+ </modules>
+</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/samples/progressBarDemo/pom.xml
===================================================================
--- trunk/samples/progressBarDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/progressBarDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/queue-sample/pom.xml
===================================================================
--- trunk/samples/queue-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/queue-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.0.BETA5/samples/rich-message-demo/pom.xml
===================================================================
--- trunk/samples/rich-message-demo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/rich-message-demo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/richfaces-art-datatable/pom.xml
===================================================================
--- trunk/samples/richfaces-art-datatable/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/richfaces-art-datatable/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/richfaces-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-demo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/richfaces-demo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -209,22 +209,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.0.BETA5/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/ejb/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/richfaces-ear-demo/ejb/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.0.BETA5/samples/richfaces-ear-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/richfaces-ear-demo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.0.BETA5/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/webapp/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/richfaces-ear-demo/webapp/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.0.BETA5/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- trunk/samples/scrollableDataTableDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/scrollableDataTableDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.0.BETA5/samples/seamEAR/ear/pom.xml
===================================================================
--- trunk/samples/seamEAR/ear/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/seamEAR/ear/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.0.BETA5/samples/seamEAR/ejbs/pom.xml
===================================================================
--- trunk/samples/seamEAR/ejbs/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/seamEAR/ejbs/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.0.BETA5/samples/seamEAR/pom.xml
===================================================================
--- trunk/samples/seamEAR/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/seamEAR/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/seamEAR/primary-source/pom.xml
===================================================================
--- trunk/samples/seamEAR/primary-source/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/seamEAR/primary-source/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.0.BETA5/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- trunk/samples/seamEAR/projects/logging/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/seamEAR/projects/logging/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
</project>
Modified: tags/3.3.0.BETA5/samples/seamEAR/projects/pom.xml
===================================================================
--- trunk/samples/seamEAR/projects/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/seamEAR/projects/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.0.BETA5/samples/seamEAR/wars/pom.xml
===================================================================
--- trunk/samples/seamEAR/wars/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/seamEAR/wars/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.0.BETA5/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- trunk/samples/seamEAR/wars/seamWebapp/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/seamEAR/wars/seamWebapp/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.0.BETA5/samples/seamIntegration/pom.xml
===================================================================
--- trunk/samples/seamIntegration/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/seamIntegration/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/separator-sample/pom.xml
===================================================================
--- trunk/samples/separator-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/separator-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- trunk/samples/simpleTogglePanel-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/simpleTogglePanel-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/skins/pom.xml
===================================================================
--- trunk/samples/skins/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/skins/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/sortingFilteringDemo/pom.xml
===================================================================
--- trunk/samples/sortingFilteringDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/sortingFilteringDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency-->
<dependency>
Modified: tags/3.3.0.BETA5/samples/state-sample/pom.xml
===================================================================
--- trunk/samples/state-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/state-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/samples/stdcomponents-sample/pom.xml
===================================================================
--- trunk/samples/stdcomponents-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/stdcomponents-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/suggestionbox-sample/pom.xml
===================================================================
--- trunk/samples/suggestionbox-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/suggestionbox-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/tabPanelDemo/pom.xml
===================================================================
--- trunk/samples/tabPanelDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/tabPanelDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/togglePanel-sample/pom.xml
===================================================================
--- trunk/samples/togglePanel-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/togglePanel-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/tomahawkCompability/pom.xml
===================================================================
--- trunk/samples/tomahawkCompability/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/tomahawkCompability/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/toolBarDemo/pom.xml
===================================================================
--- trunk/samples/toolBarDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/toolBarDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/tooltip-sample/pom.xml
===================================================================
--- trunk/samples/tooltip-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/tooltip-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/tree-demo/pom.xml
===================================================================
--- trunk/samples/tree-demo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/tree-demo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/treeModelDemo/pom.xml
===================================================================
--- trunk/samples/treeModelDemo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/treeModelDemo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/samples/virtualEarth-sample/pom.xml
===================================================================
--- trunk/samples/virtualEarth-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/samples/virtualEarth-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.0.BETA5/sandbox/api/pom.xml
===================================================================
--- trunk/sandbox/api/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/api/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.0.BETA5/sandbox/impl/pom.xml
===================================================================
--- trunk/sandbox/impl/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/impl/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.0.BETA5/sandbox/pom.xml
===================================================================
--- trunk/sandbox/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.0.BETA5/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/dialog-window-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/samples/dialog-window-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA5/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/editorOld-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/samples/editorOld-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA5/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- trunk/sandbox/samples/fileUploadPOC/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/samples/fileUploadPOC/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.0.BETA5/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/panel2-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/samples/panel2-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA5/sandbox/samples/pom.xml
===================================================================
--- trunk/sandbox/samples/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/samples/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA5/sandbox/samples/rex-demo/pom.xml
===================================================================
--- trunk/sandbox/samples/rex-demo/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/samples/rex-demo/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
Modified: tags/3.3.0.BETA5/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.0.BETA5/sandbox/ui/create.bat
===================================================================
--- trunk/sandbox/ui/create.bat 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/ui/create.bat 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.0-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.0.BETA5 -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.0.BETA5/sandbox/ui/dialog-window/pom.xml
===================================================================
--- trunk/sandbox/ui/dialog-window/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/ui/dialog-window/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.0.BETA5/sandbox/ui/editorOld/pom.xml
===================================================================
--- trunk/sandbox/ui/editorOld/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/ui/editorOld/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/sandbox/ui/panel2/pom.xml
===================================================================
--- trunk/sandbox/ui/panel2/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/ui/panel2/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/sandbox/ui/pom.xml
===================================================================
--- trunk/sandbox/ui/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/ui/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.0.BETA5/sandbox/ui/rex-button/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-button/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/ui/rex-button/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-messageBox/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/ui/rex-messageBox/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-resizable/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/ui/rex-resizable/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- trunk/sandbox/ui/simpleTogglePanel2/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/ui/simpleTogglePanel2/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- trunk/sandbox/ui/sortableHeader/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/ui/sortableHeader/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/sandbox/ui/treeTable/pom.xml
===================================================================
--- trunk/sandbox/ui/treeTable/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/sandbox/ui/treeTable/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/test-applications/ajaxTest/pom.xml
===================================================================
--- trunk/test-applications/ajaxTest/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/ajaxTest/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.0.BETA5/test-applications/automator/pom.xml
===================================================================
--- trunk/test-applications/automator/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/automator/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA5/test-applications/facelets/pom.xml
===================================================================
--- trunk/test-applications/facelets/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/facelets/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA5/test-applications/jsp/pom.xml
===================================================================
--- trunk/test-applications/jsp/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/jsp/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.0.BETA5/test-applications/pom.xml
===================================================================
--- trunk/test-applications/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.0-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.0.BETA5</rfVersion>
</properties>
<modules>
Modified: tags/3.3.0.BETA5/test-applications/realworld/pom.xml
===================================================================
--- trunk/test-applications/realworld/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/realworld/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -14,7 +14,7 @@
<properties>
<projectName>realworld</projectName>
- <richfacesVersion>3.3.0-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.0.BETA5</richfacesVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.0.BETA5/test-applications/regressionArea/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/regressionArea/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -62,7 +62,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.0-SNAPSHOT</richversion>
+ <richversion>3.3.0.BETA5</richversion>
<seamversion>2.0.2.SP1</seamversion>
<jsfversion>1.2_09</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.2.GA</jbosshome>
Modified: tags/3.3.0.BETA5/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-ear/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/regressionArea/regressionArea-ear/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.0.BETA5/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-ejb/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/regressionArea/regressionArea-ejb/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.0.BETA5/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-web/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/regressionArea/regressionArea-web/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.0.BETA5/test-applications/seamApp/pom.xml
===================================================================
--- trunk/test-applications/seamApp/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/seamApp/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <richfacesVersion>3.3.0-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.0.BETA5</richfacesVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.2.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.2.GA/jboss-4.2.2.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.0.BETA5/test-applications/seleniumTest/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/seleniumTest/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -217,7 +217,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.0.BETA5/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/seleniumTest/richfaces/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: tags/3.3.0.BETA5/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/samples/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/test-applications/seleniumTest/samples/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.0.BETA5/ui/assembly/pom.xml
===================================================================
--- trunk/ui/assembly/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/assembly/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.3.0.BETA5/ui/beanValidator/pom.xml
===================================================================
--- trunk/ui/beanValidator/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/beanValidator/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1,70 +1,69 @@
-<?xml version="1.0"?>
-<project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>beanValidator</artifactId>
- <name>beanValidator</name>
- <version>3.3.0-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>beanValidator</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-validator</artifactId>
- <version>3.1.0.GA</version>
- <exclusions>
- <!--
- <exclusion> <artifactId>hibernate-core</artifactId>
- <groupId>org.hibernate</groupId> </exclusion> <exclusion>
- <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
- </exclusion>
- -->
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.4.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>beanValidator</artifactId>
+ <name>beanValidator</name>
+ <version>3.3.0.BETA5</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>beanValidator</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ <version>3.1.0.GA</version>
+ <exclusions>
+ <!--
+ <exclusion> <artifactId>hibernate-core</artifactId>
+ <groupId>org.hibernate</groupId> </exclusion> <exclusion>
+ <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
+ </exclusion>
+ -->
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.4.2</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/calendar/pom.xml
===================================================================
--- trunk/ui/calendar/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/calendar/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/columns/pom.xml
===================================================================
--- trunk/ui/columns/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/columns/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.0.BETA5/ui/combobox/pom.xml
===================================================================
--- trunk/ui/combobox/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/combobox/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
Modified: tags/3.3.0.BETA5/ui/componentControl/pom.xml
===================================================================
--- trunk/ui/componentControl/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/componentControl/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/contextMenu/pom.xml
===================================================================
--- trunk/ui/contextMenu/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/contextMenu/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/core/pom.xml
===================================================================
--- trunk/ui/core/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/core/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/create.bat
===================================================================
--- trunk/ui/create.bat 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/create.bat 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.0-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.0.BETA5 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/dataFilterSlider/pom.xml
===================================================================
--- trunk/ui/dataFilterSlider/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/dataFilterSlider/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/dataTable/pom.xml
===================================================================
--- trunk/ui/dataTable/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/dataTable/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.0.BETA5/ui/datascroller/pom.xml
===================================================================
--- trunk/ui/datascroller/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/datascroller/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/drag-drop/pom.xml
===================================================================
--- trunk/ui/drag-drop/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/drag-drop/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.0.BETA5/ui/dropdown-menu/pom.xml
===================================================================
--- trunk/ui/dropdown-menu/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/dropdown-menu/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/editor/pom.xml
===================================================================
--- trunk/ui/editor/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/editor/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -80,7 +80,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Modified: tags/3.3.0.BETA5/ui/effect/pom.xml
===================================================================
--- trunk/ui/effect/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/effect/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/extendedDataTable/pom.xml
===================================================================
--- trunk/ui/extendedDataTable/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/extendedDataTable/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1,35 +1,35 @@
-<?xml version="1.0"?><project>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>extendedDataTable</artifactId>
- <name>extendedDataTable</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>extendedDataTable</shortName>
- </taglib>
- </library>
- </configuration>
+ <version>3.3.0.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>extendedDataTable</artifactId>
+ <name>extendedDataTable</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>extendedDataTable</shortName>
+ </taglib>
+ </library>
+ </configuration>
</plugin>
<plugin>
@@ -57,52 +57,52 @@
</execution>
</executions>
</plugin>
-
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>drag-drop</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>dataTable</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA5</version>
</dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>menu-components</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>contextMenu</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>jQuery</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>componentControl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>scrollableDataTable</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>drag-drop</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>dataTable</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>menu-components</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>contextMenu</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>jQuery</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>componentControl</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>scrollableDataTable</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/fileUpload/pom.xml
===================================================================
--- trunk/ui/fileUpload/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/fileUpload/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/functions/pom.xml
===================================================================
--- trunk/ui/functions/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/functions/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/gmap/pom.xml
===================================================================
--- trunk/ui/gmap/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/gmap/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/hotKey/pom.xml
===================================================================
--- trunk/ui/hotKey/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/hotKey/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1,56 +1,56 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>hotKey</artifactId>
- <name>hotKey</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>hotKey</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>hotKey</artifactId>
+ <name>hotKey</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>hotKey</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/inplaceInput/pom.xml
===================================================================
--- trunk/ui/inplaceInput/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/inplaceInput/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/inplaceSelect/pom.xml
===================================================================
--- trunk/ui/inplaceSelect/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/inplaceSelect/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
Modified: tags/3.3.0.BETA5/ui/inputnumber-slider/pom.xml
===================================================================
--- trunk/ui/inputnumber-slider/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/inputnumber-slider/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/inputnumber-spinner/pom.xml
===================================================================
--- trunk/ui/inputnumber-spinner/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/inputnumber-spinner/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.0.BETA5/ui/insert/pom.xml
===================================================================
--- trunk/ui/insert/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/insert/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/jQuery/pom.xml
===================================================================
--- trunk/ui/jQuery/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/jQuery/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/listShuttle/pom.xml
===================================================================
--- trunk/ui/listShuttle/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/listShuttle/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.0.BETA5/ui/menu-components/pom.xml
===================================================================
--- trunk/ui/menu-components/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/menu-components/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/message/pom.xml
===================================================================
--- trunk/ui/message/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/message/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/modal-panel/pom.xml
===================================================================
--- trunk/ui/modal-panel/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/modal-panel/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/orderingList/pom.xml
===================================================================
--- trunk/ui/orderingList/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/orderingList/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/paint2D/pom.xml
===================================================================
--- trunk/ui/paint2D/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/paint2D/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/panel/pom.xml
===================================================================
--- trunk/ui/panel/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/panel/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/panelbar/pom.xml
===================================================================
--- trunk/ui/panelbar/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/panelbar/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/panelmenu/pom.xml
===================================================================
--- trunk/ui/panelmenu/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/panelmenu/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/pickList/pom.xml
===================================================================
--- trunk/ui/pickList/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/pickList/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
Modified: tags/3.3.0.BETA5/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -136,12 +136,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.0.BETA5/ui/progressBAR/pom.xml
===================================================================
--- trunk/ui/progressBAR/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/progressBAR/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/scrollableDataTable/pom.xml
===================================================================
--- trunk/ui/scrollableDataTable/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/scrollableDataTable/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/separator/pom.xml
===================================================================
--- trunk/ui/separator/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/separator/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.0.BETA5/ui/simpleTogglePanel/pom.xml
===================================================================
--- trunk/ui/simpleTogglePanel/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/simpleTogglePanel/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/spacer/pom.xml
===================================================================
--- trunk/ui/spacer/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/spacer/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/state/pom.xml
===================================================================
--- trunk/ui/state/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/state/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -1,43 +1,43 @@
-<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>state</artifactId>
- <name>state</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>state</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.0.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>state</artifactId>
+ <name>state</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.0.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>state</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.0.BETA5</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/suggestionbox/pom.xml
===================================================================
--- trunk/ui/suggestionbox/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/suggestionbox/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/tabPanel/pom.xml
===================================================================
--- trunk/ui/tabPanel/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/tabPanel/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/togglePanel/pom.xml
===================================================================
--- trunk/ui/togglePanel/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/togglePanel/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/toolBar/pom.xml
===================================================================
--- trunk/ui/toolBar/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/toolBar/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/tooltip/pom.xml
===================================================================
--- trunk/ui/tooltip/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/tooltip/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/tree/pom.xml
===================================================================
--- trunk/ui/tree/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/tree/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/treeModel/pom.xml
===================================================================
--- trunk/ui/treeModel/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/treeModel/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.0.BETA5/ui/treeTable/pom.xml
===================================================================
--- trunk/ui/treeTable/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/treeTable/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.0.BETA5/ui/virtualEarth/pom.xml
===================================================================
--- trunk/ui/virtualEarth/pom.xml 2008-12-18 20:53:00 UTC (rev 11899)
+++ tags/3.3.0.BETA5/ui/virtualEarth/pom.xml 2008-12-18 23:18:31 UTC (rev 11901)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
16 years, 9 months
JBoss Rich Faces SVN: r11900 - trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-18 17:55:25 -0500 (Thu, 18 Dec 2008)
New Revision: 11900
Modified:
trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
Log:
Constant commented
Modified: trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
--- trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-12-18 20:53:00 UTC (rev 11899)
+++ trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-12-18 22:55:25 UTC (rev 11900)
@@ -487,5 +487,5 @@
}
Richfaces.ComboBox.SPECIAL_KEYS = [
- Event.KEY_RETURN, Event.KEY_UP, Event.KEY_DOWN, Event.KEY_RIGHT, Event.KEY_LEFT, Event.KEY_ESC, Event.KEY_TAB, 16
+ Event.KEY_RETURN, Event.KEY_UP, Event.KEY_DOWN, Event.KEY_RIGHT, Event.KEY_LEFT, Event.KEY_ESC, Event.KEY_TAB, 16 /* vladimir claims 16 is shift key code */
]
\ No newline at end of file
16 years, 9 months
JBoss Rich Faces SVN: r11899 - trunk/samples/richfaces-demo/src/main/webapp/templates/include.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-18 15:53:00 -0500 (Thu, 18 Dec 2008)
New Revision: 11899
Modified:
trunk/samples/richfaces-demo/src/main/webapp/templates/include/sourceview.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-5397
Modified: trunk/samples/richfaces-demo/src/main/webapp/templates/include/sourceview.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/templates/include/sourceview.xhtml 2008-12-18 20:22:43 UTC (rev 11898)
+++ trunk/samples/richfaces-demo/src/main/webapp/templates/include/sourceview.xhtml 2008-12-18 20:53:00 UTC (rev 11899)
@@ -55,7 +55,6 @@
</a4j:outputPanel>
<a4j:outputPanel styleClass="viewsourcelooklink" id="look">
- <rich:effect for="look" event="onclick" type="Fade" targetId="source1" params="duration:0.1" />
<rich:effect for="look" event="onclick" type="Fade" params="delay:0.0, duration:0.1" />
<rich:effect for="look" event="onclick" type="BlindDown" targetId="source1" params="delay:0.1,duration:1.0,from:0.0,to:1.0" />
<rich:effect for="look" event="onclick" type="Appear" targetId="source1" params="delay:0.1,duration:0.5,from:0.0,to:1.0" />
16 years, 9 months
JBoss Rich Faces SVN: r11898 - in trunk/samples/tree-demo/src/main: java/org/richfaces/rf4196 and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-18 15:22:43 -0500 (Thu, 18 Dec 2008)
New Revision: 11898
Modified:
trunk/samples/tree-demo/src/main/java/org/richfaces/Bean.java
trunk/samples/tree-demo/src/main/java/org/richfaces/rf4196/Bean.java
trunk/samples/tree-demo/src/main/webapp/pages/rf-4196.jsp
Log:
https://jira.jboss.org/jira/browse/RF-5382
Modified: trunk/samples/tree-demo/src/main/java/org/richfaces/Bean.java
===================================================================
--- trunk/samples/tree-demo/src/main/java/org/richfaces/Bean.java 2008-12-18 20:22:31 UTC (rev 11897)
+++ trunk/samples/tree-demo/src/main/java/org/richfaces/Bean.java 2008-12-18 20:22:43 UTC (rev 11898)
@@ -96,6 +96,9 @@
private int requestCounter = 0;
+ private String ajaxNodeSelectionEncodeBehavior;
+ private String ajaxChildActivationEncodeBehavior;
+
public String getIcon() {
return icon;
}
@@ -503,4 +506,22 @@
return requestCounter;
}
-}
\ No newline at end of file
+
+ public String getAjaxChildActivationEncodeBehavior() {
+ return ajaxChildActivationEncodeBehavior;
+ }
+
+ public String getAjaxNodeSelectionEncodeBehavior() {
+ return ajaxNodeSelectionEncodeBehavior;
+ }
+
+ public void setAjaxChildActivationEncodeBehavior(
+ String ajaxChildActivationEncodeBehavior) {
+ this.ajaxChildActivationEncodeBehavior = ajaxChildActivationEncodeBehavior;
+ }
+
+ public void setAjaxNodeSelectionEncodeBehavior(
+ String ajaxNodeSelectionEncodeBehavior) {
+ this.ajaxNodeSelectionEncodeBehavior = ajaxNodeSelectionEncodeBehavior;
+ }
+}
Modified: trunk/samples/tree-demo/src/main/java/org/richfaces/rf4196/Bean.java
===================================================================
--- trunk/samples/tree-demo/src/main/java/org/richfaces/rf4196/Bean.java 2008-12-18 20:22:31 UTC (rev 11897)
+++ trunk/samples/tree-demo/src/main/java/org/richfaces/rf4196/Bean.java 2008-12-18 20:22:43 UTC (rev 11898)
@@ -1,7 +1,6 @@
package org.richfaces.rf4196;
import org.richfaces.component.UITree;
-import org.richfaces.event.NodeSelectedEvent;
public class Bean {
private UITree tree;
@@ -26,7 +25,4 @@
tree.addRequestKey(null);
}
- public void select(NodeSelectedEvent event) {
- tree.addNodeRequestKey(tree.getRowKey());
- }
}
Modified: trunk/samples/tree-demo/src/main/webapp/pages/rf-4196.jsp
===================================================================
--- trunk/samples/tree-demo/src/main/webapp/pages/rf-4196.jsp 2008-12-18 20:22:31 UTC (rev 11897)
+++ trunk/samples/tree-demo/src/main/webapp/pages/rf-4196.jsp 2008-12-18 20:22:43 UTC (rev 11898)
@@ -11,9 +11,31 @@
<a4j:status startText="...start..." stopText="stopped" />
<h:form>
- <rich:tree ajaxSubmitSelection="true" nodeSelectListener="#{rf4196.select}" ajaxKeys="#{null}" binding="#{rf4196.tree}" value="#{bean.data}" var="item" switchType="ajax">
+ ajaxChildActivationEncodeBehavior:
+ <h:selectOneMenu value="#{bean.ajaxChildActivationEncodeBehavior}">
+ <f:selectItem itemLabel="default" itemValue=""/>
+ <f:selectItem itemLabel="none" itemValue="none"/>
+ <f:selectItem itemLabel="node" itemValue="node"/>
+ <f:selectItem itemLabel="subtree" itemValue="subtree"/>
+ </h:selectOneMenu><br />
+
+ ajaxNodeSelectionEncodeBehavior:
+ <h:selectOneMenu value="#{bean.ajaxNodeSelectionEncodeBehavior}">
+ <f:selectItem itemLabel="default" itemValue=""/>
+ <f:selectItem itemLabel="none" itemValue="none"/>
+ <f:selectItem itemLabel="node" itemValue="node"/>
+ <f:selectItem itemLabel="subtree" itemValue="subtree"/>
+ </h:selectOneMenu><br />
+ <h:commandButton value="Apply" />
+ </h:form>
+
+ <h:form>
+ <rich:tree ajaxNodeSelectionEncodeBehavior="#{bean.ajaxNodeSelectionEncodeBehavior}"
+ ajaxChildActivationEncodeBehavior="#{bean.ajaxChildActivationEncodeBehavior}"
+ ajaxSubmitSelection="true" binding="#{rf4196.tree}" value="#{bean.data}" var="item" switchType="ajax">
<rich:treeNode>
<h:outputText escape="false" value="#{item} <b style='color: red;'>#{bean.requestCounter}</b> Re-render: " />
+ <a4j:commandLink value="Default" /> /
<a4j:commandLink value="Node" action="#{rf4196.rerenderNode}" /> /
<a4j:commandLink value="Subtree" action="#{rf4196.rerenderSubtree}" />
</rich:treeNode>
16 years, 9 months
JBoss Rich Faces SVN: r11897 - in trunk/ui/tree/src/main: java/org/richfaces/component and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-18 15:22:31 -0500 (Thu, 18 Dec 2008)
New Revision: 11897
Modified:
trunk/ui/tree/src/main/config/component/tree.xml
trunk/ui/tree/src/main/java/org/richfaces/component/UITree.java
Log:
https://jira.jboss.org/jira/browse/RF-5382
Modified: trunk/ui/tree/src/main/config/component/tree.xml
===================================================================
--- trunk/ui/tree/src/main/config/component/tree.xml 2008-12-18 19:29:00 UTC (rev 11896)
+++ trunk/ui/tree/src/main/config/component/tree.xml 2008-12-18 20:22:31 UTC (rev 11897)
@@ -315,6 +315,16 @@
<name>disableKeyboardNavigation</name>
<classname>boolean</classname>
</property>
+
+ <property>
+ <name>ajaxNodeSelectionEncodeBehavior</name>
+ <classname>java.lang.String</classname>
+ </property>
+
+ <property>
+ <name>ajaxChildActivationEncodeBehavior</name>
+ <classname>java.lang.String</classname>
+ </property>
</component>
&listeners;
Modified: trunk/ui/tree/src/main/java/org/richfaces/component/UITree.java
===================================================================
--- trunk/ui/tree/src/main/java/org/richfaces/component/UITree.java 2008-12-18 19:29:00 UTC (rev 11896)
+++ trunk/ui/tree/src/main/java/org/richfaces/component/UITree.java 2008-12-18 20:22:31 UTC (rev 11897)
@@ -61,7 +61,6 @@
import org.richfaces.component.state.events.ExpandAllCommandEvent;
import org.richfaces.component.state.events.ExpandNodeCommandEvent;
import org.richfaces.component.state.events.TreeStateCommandEvent;
-import org.richfaces.event.AjaxExpandedEvent;
import org.richfaces.event.DragListener;
import org.richfaces.event.DropListener;
import org.richfaces.event.NodeExpandedEvent;
@@ -94,6 +93,12 @@
public abstract class UITree extends UIDataAdaptor implements
TreeListenerEventsProducer, Draggable, Dropzone, AjaxComponent {
+ public static final String ENCODE_BEHAVIOR_NONE = "none";
+
+ public static final String ENCODE_BEHAVIOR_SUBTREE = "subtree";
+
+ public static final String ENCODE_BEHAVIOR_NODE = "node";
+
private transient boolean allowCachedModel = false;
public static final String COMPONENT_TYPE = "org.richfaces.Tree";
@@ -104,7 +109,7 @@
public final static String PRESERVE_MODEL_REQUEST = "request";
- public final static String PRESERVE_MODEL_NONE = "none";
+ public final static String PRESERVE_MODEL_NONE = ENCODE_BEHAVIOR_NONE;
public final static String SWITCH_SERVER = "server";
@@ -816,6 +821,12 @@
public abstract void setSimilarityGroupingId(String similarityGroupingId);
+ public abstract String getAjaxChildActivationEncodeBehavior();
+ public abstract void setAjaxChildActivationEncodeBehavior(String behavior);
+
+ public abstract String getAjaxNodeSelectionEncodeBehavior();
+ public abstract void setAjaxNodeSelectionEncodeBehavior(String behavior);
+
public void addChangeExpandListener(NodeExpandedListener listener) {
addFacesListener(listener);
}
@@ -1306,17 +1317,39 @@
return result;
}
+ private void handleNodeEncodeBehavior(String behavior) {
+ if (ENCODE_BEHAVIOR_NODE.equals(behavior)) {
+ addNodeRequestKey(getRowKey());
+ } else if (ENCODE_BEHAVIOR_SUBTREE.equals(behavior)) {
+ addRequestKey(getRowKey());
+ } else if (!ENCODE_BEHAVIOR_NONE.equals(behavior)) {
+ throw new IllegalArgumentException("Unsupported behavior value: " + behavior + "!");
+ }
+ }
+
@Override
protected void addAjaxKeyEvent(FacesEvent event) {
if (event instanceof TreeAjaxEvent) {
TreeAjaxEvent treeAjaxEvent = (TreeAjaxEvent) event;
if (TreeAjaxEventType.EXPANSION.equals(treeAjaxEvent.getEventType())) {
addRequestKey(getRowKey());
+ } else if (TreeAjaxEventType.SELECTION.equals(treeAjaxEvent.getEventType())) {
+ String behavior = getAjaxNodeSelectionEncodeBehavior();
+ if (behavior == null || behavior.length() == 0) {
+ super.addAjaxKeyEvent(event);
+ } else {
+ handleNodeEncodeBehavior(behavior);
+ }
} else {
super.addAjaxKeyEvent(event);
}
} else {
- super.addAjaxKeyEvent(event);
+ String behavior = getAjaxChildActivationEncodeBehavior();
+ if (behavior == null || behavior.length() == 0) {
+ super.addAjaxKeyEvent(event);
+ } else {
+ handleNodeEncodeBehavior(behavior);
+ }
}
}
}
\ No newline at end of file
16 years, 9 months
JBoss Rich Faces SVN: r11896 - in trunk/test-applications/seleniumTest/richfaces/src: main/webapp/pages/calendar and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-12-18 14:29:00 -0500 (Thu, 18 Dec 2008)
New Revision: 11896
Added:
trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/jointPointAndDirectionAttributesTest.xhtml
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
Log:
https://jira.jboss.org/jira/browse/RF-5346
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2008-12-18 18:43:01 UTC (rev 11895)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/CalendarTestBean.java 2008-12-18 19:29:00 UTC (rev 11896)
@@ -609,4 +609,40 @@
this.resetTimeOnDateSelect = resetTimeOnDateSelect;
}
+ private String jointPoint = "bottom-left";
+
+ /**
+ * Gets value of jointPoint field.
+ * @return value of jointPoint field
+ */
+ public String getJointPoint() {
+ return jointPoint;
+ }
+
+ /**
+ * Set a new value for jointPoint field.
+ * @param jointPoint a new value for jointPoint field
+ */
+ public void setJointPoint(String jointPoint) {
+ this.jointPoint = jointPoint;
+ }
+
+ private String direction = "bottom-right";
+
+ /**
+ * Gets value of direction field.
+ * @return value of direction field
+ */
+ public String getDirection() {
+ return direction;
+ }
+
+ /**
+ * Set a new value for direction field.
+ * @param direction a new value for direction field
+ */
+ public void setDirection(String direction) {
+ this.direction = direction;
+ }
+
}
Added: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/jointPointAndDirectionAttributesTest.xhtml
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/seleniumTest/richfaces/src/main/webapp/pages/calendar/jointPointAndDirectionAttributesTest.xhtml
___________________________________________________________________
Name: svn:mime-type
+ application/xhtml+xml
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-18 18:43:01 UTC (rev 11895)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-18 19:29:00 UTC (rev 11896)
@@ -69,6 +69,8 @@
static final String EVENTS_TEST_URL = "pages/calendar/testEventsAttributes.xhtml";
+ static final String JOINTPOINT_DIRECTION_TEST_URL = "pages/calendar/jointPointAndDirectionAttributesTest.xhtml";
+
static final String RESET_TIME_ON_DATE_SELECTION_TEST_URL = "pages/calendar/resetTimeOnDateSelectTest.xhtml";
static final String CONTROLS_FORM_ID = "_controls:";
@@ -180,6 +182,10 @@
String resetTimeOnDateSelectId;
+ String jointPointId;
+
+ String directionId;
+
void initIds(String parentId) {
calendarId = parentId + FORM_ID + "calendar";
calendarHeaderId = calendarId + "Header";
@@ -225,6 +231,8 @@
isDisabledId = parentId + FORM_ID + "isDisabled";
defaultTimeId = parentId + CONTROLS_FORM_ID + "defaultTime";
resetTimeOnDateSelectId = parentId + CONTROLS_FORM_ID + "resetTimeOnDateSelect";
+ jointPointId = parentId + FORM_ID + "jointPoint";
+ directionId = parentId + FORM_ID + "direction";
}
String getStatus() {
@@ -1556,6 +1564,66 @@
Assert.assertEquals(actualSelectedDate, expectedTodaySelectedDate);
}
+ @Test
+ public void testJointPointAndDirectionAttributes(Template template) {
+ renderPage(JOINTPOINT_DIRECTION_TEST_URL, template, null);
+ initIds(getParentId());
+
+ String calendarLeft = "$('" + calendarId + "').cumulativeOffset().left";
+ String calendarTop = "$('" + calendarId + "').cumulativeOffset().top";
+
+ String topLeftPointLeft = "$('" + inputDateId + "').cumulativeOffset().left";
+ String topLeftPointTop = "$('" + inputDateId + "').cumulativeOffset().top";
+
+ String bottomLeftPointLeft = topLeftPointLeft;
+ String bottomLeftPointTop = "($('" + inputDateId + "').cumulativeOffset().top + $('" + inputDateId + "').getHeight())";
+
+ String topRightPointLeft = "($('" + popupButtonId + "').cumulativeOffset().left + $('" + popupButtonId + "').getWidth())";
+ String topRightPointTop = "$('" + popupButtonId + "').cumulativeOffset().top";
+
+ String bottomRightPointLeft = topRightPointLeft;
+ String bottomRightPointTop = "($('" + popupButtonId + "').cumulativeOffset().top + $('" + popupButtonId + "').getHeight()))";
+
+ //point:
+ //"top-left"
+ //"top-right"
+ //"bottom-left"
+ //"bottom-right"
+ //waiteForCondition("$('" + popupButtonId + "').getStyle('display') != 'none'", 1000);
+
+ //top-left joint point
+ selenium.select(jointPointId, "top-left");
+
+ //top-left direction
+ selenium.select(directionId, "top-left");
+ showPopup();
+ assertTrue(calendarLeft, "<", topLeftPointLeft);
+ assertTrue(calendarTop, "<", topLeftPointTop);
+
+ //top-right direction
+ selenium.select(directionId, "top-right");
+ showPopup();
+ assertTrue(calendarLeft, "==", topLeftPointLeft);
+ assertTrue(calendarTop, "<", topLeftPointTop);
+
+ //bottom-right direction
+ selenium.select(directionId, "bottom-right");
+ showPopup();
+ assertTrue(calendarLeft, "==", topLeftPointLeft);
+ assertTrue(calendarTop, "==", topLeftPointTop);
+
+ //bottom-left direction
+ selenium.select(directionId, "bottom-left");
+ showPopup();
+ assertTrue(calendarLeft, "<", topLeftPointLeft);
+ assertTrue(calendarTop, "==", topLeftPointTop);
+ }
+
+ private void assertTrue(String calendarPoint, String operation, String jointPoint) {
+ Assert.assertTrue(Boolean.parseBoolean(selenium.getEval(WINDOW_JS_RESOLVER + calendarPoint + " " + operation
+ + " " + WINDOW_JS_RESOLVER + jointPoint)), runScript(calendarPoint) + operation + runScript(jointPoint));
+ }
+
private void setPopup(boolean isPopup) {
runScript("$('" + isPopupId + "').checked=" + isPopup);
}
16 years, 9 months
JBoss Rich Faces SVN: r11895 - in trunk: ui/listShuttle/src/main/java/org/richfaces/component and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-18 13:43:01 -0500 (Thu, 18 Dec 2008)
New Revision: 11895
Modified:
trunk/samples/listShuttleDemo/src/main/webapp/WEB-INF/web.xml
trunk/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java
trunk/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingBaseComponent.java
trunk/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java
Log:
https://jira.jboss.org/jira/browse/RF-4850
Modified: trunk/samples/listShuttleDemo/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/samples/listShuttleDemo/src/main/webapp/WEB-INF/web.xml 2008-12-18 17:18:33 UTC (rev 11894)
+++ trunk/samples/listShuttleDemo/src/main/webapp/WEB-INF/web.xml 2008-12-18 18:43:01 UTC (rev 11895)
@@ -3,14 +3,6 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Archetype Created Web Application</display-name>
<context-param>
- <param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>
- <param-value>com.sun.facelets.FaceletViewHandler</param-value>
- </context-param>
- <context-param>
- <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
- <param-value>.xhtml</param-value>
- </context-param>
- <context-param>
<param-name>javax.faces.CONFIG_FILES</param-name>
<param-value>/WEB-INF/faces-config.xml</param-value>
</context-param>
Modified: trunk/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java
===================================================================
--- trunk/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java 2008-12-18 17:18:33 UTC (rev 11894)
+++ trunk/ui/listShuttle/src/main/java/org/richfaces/component/UIListShuttle.java 2008-12-18 18:43:01 UTC (rev 11895)
@@ -644,36 +644,26 @@
}
}
- protected boolean isEmpty(Object value) {
- if (value == null) {
- return true;
- } else {
- Object[] values = (Object[]) value;
-
- for (int i = 0; i < values.length; i++) {
- Object v = values[i];
-
- if (!super.isEmpty(v)) {
- return false;
- }
- }
-
- return true;
- }
- }
-
- protected boolean isListEmpty(Object value) {
- return super.isEmpty(value);
- }
-
protected void validateValue(FacesContext context, Object value) {
Object[] values = (Object[]) value;
- boolean[] requiredValues = {isSourceRequired(), isTargetRequired()};
+
+ Object sourceValue = values[0];
+ Object targetValue = values[1];
- for (int i = 0; i < values.length; i++) {
- Object v = values[i];
- validateListValue(context, v, isListEmpty(v), requiredValues[i]);
+ boolean sourceValueEmpty = isEmpty(sourceValue);
+ boolean targetValueEmpty = isEmpty(targetValue);
+
+ if (isValid() && sourceValueEmpty && isSourceRequired()) {
+ requiredInvalidate(context);
}
+
+ if (isValid() && targetValueEmpty && isTargetRequired()) {
+ requiredInvalidate(context);
+ }
+
+ if (isValid() && (!sourceValueEmpty || !targetValueEmpty)) {
+ processValidators(context, value);
+ }
}
protected void resetDataModel() {
Modified: trunk/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingBaseComponent.java
===================================================================
--- trunk/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingBaseComponent.java 2008-12-18 17:18:33 UTC (rev 11894)
+++ trunk/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingBaseComponent.java 2008-12-18 18:43:01 UTC (rev 11895)
@@ -305,107 +305,59 @@
}
}
- /**
- *
- * <p>Set the "valid" property according to the below algorithm.</p>
- *
- * <ul>
- *
- * <li>If the <code>valid</code> property on this component is still
- * <code>true</code>, and the <code>required</code> property is also
- * true, ensure that the local value is not empty (where "empty" is
- * defined as <code>null</code> or a zero-length String. If the local
- * value is empty:
- * <ul>
- * <li>Enqueue an appropriate error message by calling the
- * <code>addMessage()</code> method on the <code>FacesContext</code>
- * instance for the current request.</li>
- * <li>Set the <code>valid</code> property on this component to
- * <code>false</code>.</li>
- * </ul></li>
- * <li>If the <code>valid</code> property on this component is still
- * <code>true</code>, and the local value is not empty, call the
- * <code>validate()</code> method of each {@link Validator}
- * registered for this {@link UIInput}, followed by the method
- * pointed at by the <code>validatorBinding</code> property (if any).
- * If any of these validators or the method throws a
- * {@link ValidatorException}, catch the exception, add
- * its message (if any) to the {@link FacesContext}, and set
- * the <code>valid</code> property of this component to false.</li>
- *
- * </ul>
- *
- */
- protected void validateValue(FacesContext context, Object newValue) {
- validateListValue(context, newValue, isEmpty(newValue), isRequired());
- }
+ protected void requiredInvalidate(FacesContext context) {
+ FacesMessage message = MessageUtil.getMessage(context, UIInput.REQUIRED_MESSAGE_ID,
+ new Object[] {MessageUtil.getLabel(context, this)});
+ message.setSeverity(FacesMessage.SEVERITY_ERROR);
- protected void validateListValue(FacesContext context, Object newValue,
- boolean isEmpty, boolean isRequired) {
- // If our value is valid, enforce the required property if present
- requiredValidation(context, newValue, isEmpty, isRequired);
-
- // If our value is valid and not empty, call all validators
- processingValidators(context, newValue, isEmpty);
+ context.addMessage(getClientId(context), message);
+ setValid(false);
}
- protected void requiredValidation(FacesContext context, Object newValue, boolean isRequired, boolean isEmpty) {
- if (isValid() && isRequired && isEmpty) {
- FacesMessage message = MessageUtil.getMessage(context, UIInput.REQUIRED_MESSAGE_ID,
- new Object[] {MessageUtil.getLabel(context, this)});
- message.setSeverity(FacesMessage.SEVERITY_ERROR);
-
- context.addMessage(getClientId(context), message);
- setValid(false);
- }
- }
-
- protected void processingValidators(FacesContext context, Object newValue, boolean isEmpty) {
- if (isValid() && !isEmpty) {
- Validator[] validators = getValidators();
- for (int i = 0; i < validators.length; i++) {
- Validator validator = (Validator) validators[i];
- try {
- validator.validate(context, this, newValue);
- }
- catch (ValidatorException ve) {
- // If the validator throws an exception, we're
- // invalid, and we need to add a message
- setValid(false);
- FacesMessage message = ve.getFacesMessage();
- if (message != null) {
- message.setSeverity(FacesMessage.SEVERITY_ERROR);
- context.addMessage(getClientId(context), message);
- }
- }
- }
+ protected void processValidators(FacesContext context, Object newValue) {
+ Validator[] validators = getValidators();
+ for (int i = 0; i < validators.length; i++) {
+ Validator validator = (Validator) validators[i];
+ try {
+ validator.validate(context, this, newValue);
+ }
+ catch (ValidatorException ve) {
+ // If the validator throws an exception, we're
+ // invalid, and we need to add a message
+ setValid(false);
+ FacesMessage message = ve.getFacesMessage();
+ if (message != null) {
+ message.setSeverity(FacesMessage.SEVERITY_ERROR);
+ context.addMessage(getClientId(context), message);
+ }
+ }
+ }
- MethodBinding validator = getValidator();
- if (validator != null) {
- try {
- validator.invoke(context,
- new Object[] { context, this, newValue});
- }
- catch (EvaluationException ee) {
- if (ee.getCause() instanceof ValidatorException) {
- ValidatorException ve =
- (ValidatorException) ee.getCause();
+ MethodBinding validator = getValidator();
+ if (validator != null) {
+ try {
+ validator.invoke(context,
+ new Object[] { context, this, newValue});
+ }
+ catch (EvaluationException ee) {
+ if (ee.getCause() instanceof ValidatorException) {
+ ValidatorException ve =
+ (ValidatorException) ee.getCause();
- // If the validator throws an exception, we're
- // invalid, and we need to add a message
- setValid(false);
- FacesMessage message = ve.getFacesMessage();
- if (message != null) {
- message.setSeverity(FacesMessage.SEVERITY_ERROR);
- context.addMessage(getClientId(context), message);
- }
- } else {
- // Otherwise, rethrow the EvaluationException
- throw ee;
- }
- }
- }
- }
+ // If the validator throws an exception, we're
+ // invalid, and we need to add a message
+ setValid(false);
+ FacesMessage message = ve.getFacesMessage();
+ if (message != null) {
+ message.setSeverity(FacesMessage.SEVERITY_ERROR);
+ context.addMessage(getClientId(context), message);
+ }
+ } else {
+ // Otherwise, rethrow the EvaluationException
+ throw ee;
+ }
+ }
+ }
}
/**
Modified: trunk/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java
===================================================================
--- trunk/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java 2008-12-18 17:18:33 UTC (rev 11894)
+++ trunk/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java 2008-12-18 18:43:01 UTC (rev 11895)
@@ -501,7 +501,19 @@
}
}
-
+ protected void validateValue(FacesContext context, Object newValue) {
+ if (isValid()) {
+ if (isEmpty(newValue)) {
+ if (isRequired()) {
+ requiredInvalidate(context);
+ }
+ } else {
+ processValidators(context, newValue);
+ }
+ }
+ }
+
+
// ------------------------------------------------------ Validation Methods
16 years, 9 months
JBoss Rich Faces SVN: r11894 - trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-12-18 12:18:33 -0500 (Thu, 18 Dec 2008)
New Revision: 11894
Modified:
trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/comboboxUtils.js
trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js
Log:
some fixes
Modified: trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/comboboxUtils.js
===================================================================
--- trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/comboboxUtils.js 2008-12-18 17:15:10 UTC (rev 11893)
+++ trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/comboboxUtils.js 2008-12-18 17:18:33 UTC (rev 11894)
@@ -62,11 +62,27 @@
}*/
if( typeof document.documentElement != 'undefined' && typeof document.documentElement.clientWidth != 'undefined' && document.documentElement.clientWidth != 0 ) {
- return document.viewport.getDimensions().height + document.viewport.getScrollOffsets().top;
+ return document.viewport.getDimensions().height + document.viewport.getScrollOffsets().top;
} else {
- var scrollOffsets = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0;
- var innerHeight = self.innerHeight || document.documentElement.clientHeight || document.body.clientHeight || 0;
- return innerHeight + scrollOffsets;
+
+ var scrollOffsets = 0;
+ var innerHeight = 0;
+
+ if(document.documentElement) {
+ scrollOffsets += document.documentElement.scrollTop ? document.documentElement.scrollTop : 0 ;
+ innerHeight += document.documentElement.clientHeigh ? document.documentElement.clientHeigh : 0 ;
+ }
+
+ if (document.body) {
+ scrollOffsets += document.body.scrollTop ? document.body.scrollTop : 0;
+ innerHeight += document.body.clientHeight ? document.body.clientHeight : 0;
+ }
+
+ scrollOffsets += window.pageYOffset;
+ innerHeight += self.innerHeight;
+
+ return innerHeight + scrollOffsets;
+
}
//return viewportheight;
Modified: trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js
===================================================================
--- trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js 2008-12-18 17:15:10 UTC (rev 11893)
+++ trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js 2008-12-18 17:18:33 UTC (rev 11894)
@@ -408,7 +408,7 @@
iframe.style.position = "absolute";
iframe.frameBorder="0";
iframe.scrolling="no";
- iframe.src="blank.html";
+ iframe.src="javascript:''";
iframe.style.width = width;
16 years, 9 months
JBoss Rich Faces SVN: r11893 - in trunk/test-applications/realworld/Upload/qqqq: Music and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-18 12:15:10 -0500 (Thu, 18 Dec 2008)
New Revision: 11893
Added:
trunk/test-applications/realworld/Upload/qqqq/Music/
trunk/test-applications/realworld/Upload/qqqq/Music/Babkin.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/Bob_Marley.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/Infected_Mushroom.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/StreetMusician.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/draft/
trunk/test-applications/realworld/Upload/qqqq/Music/draft/StreetMusician-B.KristG.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/draft/anyacola_babkin_320_04.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/draft/bob_marley_1.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/draft/foto.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/draft/marley2.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/draft/massiveAttack.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/draft/system-of-a-down.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/draft/tobin.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/massiveAttack.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/system-of-a-down.jpg
trunk/test-applications/realworld/Upload/qqqq/Music/tobin.jpg
Removed:
trunk/test-applications/realworld/Upload/qqqq/Album 1/
trunk/test-applications/realworld/Upload/qqqq/Cars/
Log:
Added: trunk/test-applications/realworld/Upload/qqqq/Music/Babkin.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/Babkin.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/Bob_Marley.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/Bob_Marley.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/Infected_Mushroom.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/Infected_Mushroom.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/StreetMusician.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/StreetMusician.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/draft/StreetMusician-B.KristG.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/draft/StreetMusician-B.KristG.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/draft/anyacola_babkin_320_04.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/draft/anyacola_babkin_320_04.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/draft/bob_marley_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/draft/bob_marley_1.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/draft/foto.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/draft/foto.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/draft/marley2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/draft/marley2.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/draft/massiveAttack.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/draft/massiveAttack.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/draft/system-of-a-down.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/draft/system-of-a-down.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/draft/tobin.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/draft/tobin.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/massiveAttack.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/massiveAttack.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/system-of-a-down.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/system-of-a-down.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Music/tobin.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Music/tobin.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 9 months
JBoss Rich Faces SVN: r11892 - trunk/test-applications/realworld/Upload/qqqq/Cars.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-18 12:13:15 -0500 (Thu, 18 Dec 2008)
New Revision: 11892
Added:
trunk/test-applications/realworld/Upload/qqqq/Cars/Haruki_Murakami.jpg
trunk/test-applications/realworld/Upload/qqqq/Cars/Japanese_Street_Fashion.jpg
trunk/test-applications/realworld/Upload/qqqq/Cars/Kendo_Championship_2006.jpg
trunk/test-applications/realworld/Upload/qqqq/Cars/birds_fly.jpg
trunk/test-applications/realworld/Upload/qqqq/Cars/live_in_piece.jpg
trunk/test-applications/realworld/Upload/qqqq/Cars/modern_japanesse_family.jpg
trunk/test-applications/realworld/Upload/qqqq/Cars/zen-garden_landscape_design.jpg
Removed:
trunk/test-applications/realworld/Upload/qqqq/Cars/pic1.jpg
trunk/test-applications/realworld/Upload/qqqq/Cars/pic2.jpg
trunk/test-applications/realworld/Upload/qqqq/Cars/pic3.jpg
Log:
Added: trunk/test-applications/realworld/Upload/qqqq/Cars/Haruki_Murakami.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Cars/Haruki_Murakami.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Cars/Japanese_Street_Fashion.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Cars/Japanese_Street_Fashion.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Cars/Kendo_Championship_2006.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Cars/Kendo_Championship_2006.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Cars/birds_fly.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Cars/birds_fly.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Cars/live_in_piece.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Cars/live_in_piece.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/qqqq/Cars/modern_japanesse_family.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Cars/modern_japanesse_family.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: trunk/test-applications/realworld/Upload/qqqq/Cars/pic1.jpg
===================================================================
(Binary files differ)
Deleted: trunk/test-applications/realworld/Upload/qqqq/Cars/pic2.jpg
===================================================================
(Binary files differ)
Deleted: trunk/test-applications/realworld/Upload/qqqq/Cars/pic3.jpg
===================================================================
(Binary files differ)
Added: trunk/test-applications/realworld/Upload/qqqq/Cars/zen-garden_landscape_design.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/qqqq/Cars/zen-garden_landscape_design.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 9 months
JBoss Rich Faces SVN: r11891 - trunk/ui/assembly.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-18 12:07:27 -0500 (Thu, 18 Dec 2008)
New Revision: 11891
Modified:
trunk/ui/assembly/pom.xml
Log:
https://jira.jboss.org/jira/browse/RF-5085
Modified: trunk/ui/assembly/pom.xml
===================================================================
--- trunk/ui/assembly/pom.xml 2008-12-18 17:03:17 UTC (rev 11890)
+++ trunk/ui/assembly/pom.xml 2008-12-18 17:07:27 UTC (rev 11891)
@@ -31,6 +31,7 @@
RichFaces ( Legacy URL )
</displayName>
<excludeModules>core</excludeModules>
+ <excludeModules>state</excludeModules>
</taglib>
<taglib>
<shortName>rich</shortName>
@@ -38,6 +39,7 @@
<uri>http://richfaces.org/rich</uri>
<displayName>RichFaces</displayName>
<excludeModules>core</excludeModules>
+ <excludeModules>state</excludeModules>
</taglib>
<taglib>
<shortName>a4j</shortName>
16 years, 9 months
JBoss Rich Faces SVN: r11890 - trunk/framework/impl/src/main/javascript/prototype.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-12-18 12:03:17 -0500 (Thu, 18 Dec 2008)
New Revision: 11890
Modified:
trunk/framework/impl/src/main/javascript/prototype/prototype-1.6.0.3.js
Log:
https://jira.jboss.org/jira/browse/RF-5416
Modified: trunk/framework/impl/src/main/javascript/prototype/prototype-1.6.0.3.js
===================================================================
--- trunk/framework/impl/src/main/javascript/prototype/prototype-1.6.0.3.js 2008-12-18 17:01:56 UTC (rev 11889)
+++ trunk/framework/impl/src/main/javascript/prototype/prototype-1.6.0.3.js 2008-12-18 17:03:17 UTC (rev 11890)
@@ -2841,7 +2841,10 @@
// Add an explicit context to the selector if necessary.
if (root !== document) {
var oldId = root.id, id = $(root).identify();
- e = "#" + id + " " + e;
+
+ // https://jira.jboss.org/jira/browse/RF-5416
+ e = "#" + id.replace(/:/g, '\\:') + " " + e
+ //e = "#" + id + " " + e;
}
results = $A(root.querySelectorAll(e)).map(Element.extend);
16 years, 9 months
JBoss Rich Faces SVN: r11889 - trunk/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-12-18 12:01:56 -0500 (Thu, 18 Dec 2008)
New Revision: 11889
Modified:
trunk/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/MultiColumnSortListener.java
trunk/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/SingleColumnSortListener.java
Log:
RF-4622
Modified: trunk/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/MultiColumnSortListener.java
===================================================================
--- trunk/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/MultiColumnSortListener.java 2008-12-18 16:56:09 UTC (rev 11888)
+++ trunk/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/MultiColumnSortListener.java 2008-12-18 17:01:56 UTC (rev 11889)
@@ -56,6 +56,7 @@
SimpleSelection selection = (SimpleSelection) grid.getSelection();
if (selection != null) {
selection.clear();
+ grid.setActiveRowKey(null);
}
String sortColumn = e.getSortColumn();
Modified: trunk/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/SingleColumnSortListener.java
===================================================================
--- trunk/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/SingleColumnSortListener.java 2008-12-18 16:56:09 UTC (rev 11888)
+++ trunk/ui/scrollableDataTable/src/main/java/org/richfaces/event/sort/SingleColumnSortListener.java 2008-12-18 17:01:56 UTC (rev 11889)
@@ -50,6 +50,7 @@
SimpleSelection selection = (SimpleSelection) grid.getSelection();
if (selection != null) {
selection.clear();
+ grid.setActiveRowKey(null);
}
String sortColumn = e.getSortColumn();
16 years, 9 months
JBoss Rich Faces SVN: r11888 - trunk/test-applications/realworld/Upload/root.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-18 11:56:09 -0500 (Thu, 18 Dec 2008)
New Revision: 11888
Removed:
trunk/test-applications/realworld/Upload/root/Album 1/
trunk/test-applications/realworld/Upload/root/Album 2/
trunk/test-applications/realworld/Upload/root/Album 3/
trunk/test-applications/realworld/Upload/root/avatars/
Log:
16 years, 9 months
JBoss Rich Faces SVN: r11887 - 1 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-18 11:55:33 -0500 (Thu, 18 Dec 2008)
New Revision: 11887
Removed:
trunk/test-applications/realworld/Upload/root/Album 1/pic1.jpg
trunk/test-applications/realworld/Upload/root/Album 1/pic2.jpg
trunk/test-applications/realworld/Upload/root/Album 1/pic3.jpg
Log:
RF-4494: Tutorial about developing this sample application
Deleted: trunk/test-applications/realworld/Upload/root/Album 1/pic1.jpg
===================================================================
(Binary files differ)
Deleted: trunk/test-applications/realworld/Upload/root/Album 1/pic2.jpg
===================================================================
(Binary files differ)
Deleted: trunk/test-applications/realworld/Upload/root/Album 1/pic3.jpg
===================================================================
(Binary files differ)
16 years, 9 months
JBoss Rich Faces SVN: r11886 - 1 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-18 11:54:59 -0500 (Thu, 18 Dec 2008)
New Revision: 11886
Added:
trunk/test-applications/realworld/Upload/root/Album 1/Basketball_soccer.jpg
trunk/test-applications/realworld/Upload/root/Album 1/Soccer.jpg
trunk/test-applications/realworld/Upload/root/Album 1/bdysch!!!.jpg
trunk/test-applications/realworld/Upload/root/Album 1/euro2008_holland_wideweb__470x321,0.jpg
trunk/test-applications/realworld/Upload/root/Album 1/flag_football.jpg
Log:
RF-4494: Tutorial about developing this sample application
Added: trunk/test-applications/realworld/Upload/root/Album 1/Basketball_soccer.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Album 1/Basketball_soccer.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/root/Album 1/Soccer.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Album 1/Soccer.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/root/Album 1/bdysch!!!.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Album 1/bdysch!!!.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/root/Album 1/euro2008_holland_wideweb__470x321,0.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Album 1/euro2008_holland_wideweb__470x321,0.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/test-applications/realworld/Upload/root/Album 1/flag_football.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld/Upload/root/Album 1/flag_football.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 9 months
JBoss Rich Faces SVN: r11885 - trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-12-18 11:50:28 -0500 (Thu, 18 Dec 2008)
New Revision: 11885
Modified:
trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js
Log:
https://jira.jboss.org/jira/browse/RF-4716
Modified: trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js
===================================================================
--- trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js 2008-12-18 16:49:27 UTC (rev 11884)
+++ trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js 2008-12-18 16:50:28 UTC (rev 11885)
@@ -632,13 +632,22 @@
}
return true;
},
-
+
add: function(elt) {
if (this.disabled) return;
if (!this.checkFileType(elt.value) || !this.checkDuplicated(elt)) {
+ var fileName = elt.value;
+
+ //clear input value
+ var newUpload = elt.cloneNode(true);
+ newUpload.value = '';
+ elt.parentNode.replaceChild(newUpload, elt);
+ this.currentInput = newUpload;
+
if(this.events.ontyperejected) {
- this.element.fire("rich:ontyperejected", { fileName : elt.value });
+ this.element.fire("rich:ontyperejected", { fileName : fileName });
}
+
return;
}
16 years, 9 months