gatein SVN: r723 - in portal/trunk: web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormWithTitle and 2 other directories.
by do-not-reply@jboss.org
Author: thuy.nguyen
Date: 2009-11-20 02:02:31 -0500 (Fri, 20 Nov 2009)
New Revision: 723
Modified:
portal/trunk/portlet/exoadmin/src/main/webapp/skin/register/webui/component/DefaultStylesheet.css
portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormWithTitle/Stylesheet.css
portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormWithTitle/background/TitleBG1x20.gif
portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIToolbar/Stylesheet.css
Log:
GTNPORTAL-244: Create a new simple acount register portlet
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/skin/register/webui/component/DefaultStylesheet.css
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/skin/register/webui/component/DefaultStylesheet.css 2009-11-20 04:40:10 UTC (rev 722)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/skin/register/webui/component/DefaultStylesheet.css 2009-11-20 07:02:31 UTC (rev 723)
@@ -16,3 +16,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
+
+.UIRegisterPortlet {
+ padding: 30px 0;
+}
\ No newline at end of file
Modified: portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormWithTitle/Stylesheet.css
===================================================================
--- portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormWithTitle/Stylesheet.css 2009-11-20 04:40:10 UTC (rev 722)
+++ portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormWithTitle/Stylesheet.css 2009-11-20 07:02:31 UTC (rev 723)
@@ -30,13 +30,15 @@
padding-left: 15px; /* orientation=lt */
padding-right: 15px; /* orientation=rt */
background: url('background/TitleBG1x20.gif') repeat-x;
- height: 19px;
- vertical-align: middle; line-height: 19px;
- border: solid 1px #b7b7b7;
+ height: 26px;
+ vertical-align: middle; line-height: 26px;
+ border: solid 1px #e3e2e2;
+ color: #2b2b2b;
+ font-weight: bold;
}
.UIFormWithTitle .HorizontalLayout {
- background: #efefef;
- border: 1px #b7b7b7 solid;
+ background: #f7f7f7;
+ border: 1px #e3e2e2 solid;
border-top: none;
}
\ No newline at end of file
Modified: portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIForms/UIFormWithTitle/background/TitleBG1x20.gif
===================================================================
(Binary files differ)
Modified: portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIToolbar/Stylesheet.css
===================================================================
--- portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIToolbar/Stylesheet.css 2009-11-20 04:40:10 UTC (rev 722)
+++ portal/trunk/web/eXoResources/src/main/webapp/skin/DefaultSkin/webui/component/UIToolbar/Stylesheet.css 2009-11-20 07:02:31 UTC (rev 723)
@@ -212,7 +212,7 @@
float: right; /* orientation=rt */
text-align: center;
padding: 5px;
- width: 150px;
+ width: 75px;
}
.UIToolbar .BlueLargeToolbar .LablelIcon {
15 years, 1 month
gatein SVN: r722 - portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/webui.
by do-not-reply@jboss.org
Author: tan_pham_dinh
Date: 2009-11-19 23:40:10 -0500 (Thu, 19 Nov 2009)
New Revision: 722
Modified:
portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/webui/UITabbedDashboard.js
Log:
GTNPORTAL-248: Prevent continuous press enter button by javascript when create portal
Modified: portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/webui/UITabbedDashboard.js
===================================================================
--- portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/webui/UITabbedDashboard.js 2009-11-20 02:15:19 UTC (rev 721)
+++ portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/webui/UITabbedDashboard.js 2009-11-20 04:40:10 UTC (rev 722)
@@ -19,7 +19,7 @@
eXo.webui.UITabbedDashboard = {
- init : function(){},
+ init : function(){eXo.webui.UITabbedDashboard.isInRequest = false;},
renameTabLabel : function(e){
if(!e){
@@ -91,6 +91,7 @@
if(!e){
e = window.event;
}
+ if(eXo.webui.UITabbedDashboard.isInRequest) return;
var keyNum = e.keyCode;
//If user presses on ENTER button
@@ -106,6 +107,7 @@
href += "&uicomponent=UITabPaneDashboard";
href += "&op=AddDashboard";
href += "&objectId=" + newTabLabel;
+ eXo.webui.UITabbedDashboard.isInRequest = true;
window.location = href;
}
//If user presses on ESCAPE button
15 years, 1 month
gatein SVN: r721 - portal/trunk.
by do-not-reply@jboss.org
Author: aheritier
Date: 2009-11-19 21:15:19 -0500 (Thu, 19 Nov 2009)
New Revision: 721
Modified:
portal/trunk/pom.xml
Log:
update gatein-parent 1.0.0-Beta03 -> 1.0.0-Beta04
Modified: portal/trunk/pom.xml
===================================================================
--- portal/trunk/pom.xml 2009-11-20 01:58:15 UTC (rev 720)
+++ portal/trunk/pom.xml 2009-11-20 02:15:19 UTC (rev 721)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.gatein</groupId>
<artifactId>gatein-parent</artifactId>
- <version>1.0.0-Beta03</version>
+ <version>1.0.0-Beta04</version>
</parent>
<groupId>org.exoplatform.portal</groupId>
15 years, 1 month
gatein SVN: r720 - components/pc/trunk/docs/user-guide.
by do-not-reply@jboss.org
Author: aheritier
Date: 2009-11-19 20:58:15 -0500 (Thu, 19 Nov 2009)
New Revision: 720
Modified:
components/pc/trunk/docs/user-guide/pom.xml
Log:
there's is a problem with enforcer - probably an incompability with jdocbook - we skip it
Modified: components/pc/trunk/docs/user-guide/pom.xml
===================================================================
--- components/pc/trunk/docs/user-guide/pom.xml 2009-11-20 01:34:19 UTC (rev 719)
+++ components/pc/trunk/docs/user-guide/pom.xml 2009-11-20 01:58:15 UTC (rev 720)
@@ -13,6 +13,9 @@
<packaging>jdocbook</packaging>
<name>GateIn - Portlet Container (User Guide ${translation})</name>
+ <properties>
+ <enforcer.skip>true</enforcer.skip>
+ </properties>
<repositories>
<repository>
15 years, 1 month
gatein SVN: r719 - components/wsrp/trunk/test.
by do-not-reply@jboss.org
Author: aheritier
Date: 2009-11-19 20:34:19 -0500 (Thu, 19 Nov 2009)
New Revision: 719
Modified:
components/wsrp/trunk/test/pom.xml
Log:
GTNWSRP-1 : Add missing saaj-api dep for Java 5
Modified: components/wsrp/trunk/test/pom.xml
===================================================================
--- components/wsrp/trunk/test/pom.xml 2009-11-20 01:15:17 UTC (rev 718)
+++ components/wsrp/trunk/test/pom.xml 2009-11-20 01:34:19 UTC (rev 719)
@@ -30,6 +30,10 @@
<groupId>org.gatein.pc</groupId>
<artifactId>pc-portlet</artifactId>
</dependency>
+ <dependency>
+ <groupId>javax.xml.soap</groupId>
+ <artifactId>saaj-api</artifactId>
+ </dependency>
</dependencies>
15 years, 1 month
gatein SVN: r718 - components/pc/trunk/docs/user-guide.
by do-not-reply@jboss.org
Author: aheritier
Date: 2009-11-19 20:15:17 -0500 (Thu, 19 Nov 2009)
New Revision: 718
Modified:
components/pc/trunk/docs/user-guide/pom.xml
Log:
Upgrade doc-parent 1.0.0-CR1 -> 1.0.0-CR2
Modified: components/pc/trunk/docs/user-guide/pom.xml
===================================================================
--- components/pc/trunk/docs/user-guide/pom.xml 2009-11-20 01:11:21 UTC (rev 717)
+++ components/pc/trunk/docs/user-guide/pom.xml 2009-11-20 01:15:17 UTC (rev 718)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.doc</groupId>
<artifactId>doc-parent</artifactId>
- <version>1.0.0-CR1</version>
+ <version>1.0.0-CR2</version>
</parent>
<groupId>org.gatein.pc</groupId>
<artifactId>user-guide-${translation}</artifactId>
15 years, 1 month
gatein SVN: r717 - components/sso/trunk.
by do-not-reply@jboss.org
Author: aheritier
Date: 2009-11-19 20:11:21 -0500 (Thu, 19 Nov 2009)
New Revision: 717
Modified:
components/sso/trunk/pom.xml
Log:
Current portal SNAPSHOT is 3.0.0-Beta03
Modified: components/sso/trunk/pom.xml
===================================================================
--- components/sso/trunk/pom.xml 2009-11-20 00:59:57 UTC (rev 716)
+++ components/sso/trunk/pom.xml 2009-11-20 01:11:21 UTC (rev 717)
@@ -62,7 +62,7 @@
<!-- exo -->
<org.exoplatform.core.version>2.3.0-Beta02</org.exoplatform.core.version>
<org.exoplatform.ws.version>2.1.0-Beta02</org.exoplatform.ws.version>
- <org.exoplatform.portal.version>3.0.0-CR01-SNAPSHOT</org.exoplatform.portal.version>
+ <org.exoplatform.portal.version>3.0.0-Beta03-SNAPSHOT</org.exoplatform.portal.version>
<!-- JAX-RS jsr-311 -->
<version.javax.ws.rs>1.0</version.javax.ws.rs>
15 years, 1 month
gatein SVN: r715 - tools/maven/doc-parent/tags.
by do-not-reply@jboss.org
Author: aheritier
Date: 2009-11-19 19:59:49 -0500 (Thu, 19 Nov 2009)
New Revision: 715
Added:
tools/maven/doc-parent/tags/1.0.0-CR2/
Log:
[maven-scm] copy for tag 1.0.0-CR2
Copied: tools/maven/doc-parent/tags/1.0.0-CR2 (from rev 714, tools/maven/doc-parent/trunk)
15 years, 1 month