JBoss Portal SVN: r12509 - in branches/JBoss_Portal_Branch_2_7/core-admin/src: bin/portal-admin-war/img and 1 other directories.
by portal-commits@lists.jboss.org
Author: chris.laprun(a)jboss.com
Date: 2009-01-14 15:41:00 -0500 (Wed, 14 Jan 2009)
New Revision: 12509
Added:
branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/img/minus.gif
branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/img/plus.gif
Modified:
branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/css/basestyles.css
branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/css/style.css
branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/jsf/editCoordination.xhtml
Log:
- JBPORTAL-2217, JBPORTAL-2218: added disclosure images, tweaked layout to add separation.
Modified: branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/css/basestyles.css
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/css/basestyles.css 2009-01-14 20:34:20 UTC (rev 12508)
+++ branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/css/basestyles.css 2009-01-14 20:41:00 UTC (rev 12509)
@@ -79,6 +79,14 @@
margin: 10px 0 10px 0;
}
+.tenpx-bottom {
+ margin: 0 0 10px 0;
+}
+
+.tenpx-top {
+ margin: 10px 0 0 0;
+}
+
.tenpx-right {
margin: 0 10px 0 0;
}
Modified: branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/css/style.css
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/css/style.css 2009-01-14 20:34:20 UTC (rev 12508)
+++ branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/css/style.css 2009-01-14 20:41:00 UTC (rev 12509)
@@ -697,6 +697,11 @@
/*--------------------------- Coordination admin */
+div.coordination-section {
+ border: 1px solid #ccc;
+ padding: 0 3px 3px 3px;
+}
+
ul.bindingList {
margin: 0;
padding: 0;
Added: branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/img/minus.gif
===================================================================
(Binary files differ)
Property changes on: branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/img/minus.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/img/plus.gif
===================================================================
(Binary files differ)
Property changes on: branches/JBoss_Portal_Branch_2_7/core-admin/src/bin/portal-admin-war/img/plus.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/jsf/editCoordination.xhtml
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/jsf/editCoordination.xhtml 2009-01-14 20:34:20 UTC (rev 12508)
+++ branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/jsf/editCoordination.xhtml 2009-01-14 20:41:00 UTC (rev 12509)
@@ -12,10 +12,19 @@
<!--
function toggle_visibility(id) {
var e = document.getElementById(id);
+ var disc = document.getElementById(id + 'Disc');
if(e.style.display != 'none')
+ {
e.style.display = 'none';
+ disc.setAttribute('src', '/portal-admin/img/plus.gif');
+ disc.setAttribute('alt', '+');
+ }
else
+ {
e.style.display = '';
+ disc.setAttribute('src','/portal-admin/img/minus.gif');
+ disc.setAttribute('alt', '-');
+ }
}
//-->
@@ -24,12 +33,15 @@
<br/>
<!-- Alias bindings -->
- <div class="tenpx-top-bottom">
- <h2 class="portlet-area-header" onclick="toggle_visibility('aliasBindings');" style="cursor: pointer"><a name="#{bundle.COORDINATION_ALIAS_BINDINGS}"/>#{bundle.COORDINATION_ALIAS_BINDINGS}</h2>
+ <div class="tenpx-top">
+ <h2 class="portlet-area-header" onclick="toggle_visibility('aliasBindings');" style="cursor: pointer">
+ <img id="aliasBindingsDisc" src="/portal-admin/img/minus.gif" alt="-"/>
+ <a name="#{bundle.COORDINATION_ALIAS_BINDINGS}"/>#{bundle.COORDINATION_ALIAS_BINDINGS}
+ </h2>
<!-- Create alias binding -->
- <div id="aliasBindings">
- <h3 class="sectionTitle tenpx-top-bottom">#{bundle.COORDINATION_ALIAS_CREATE}</h3>
+ <div id="aliasBindings" class="coordination-section">
+ <h3 class="sectionTitle tenpx-bottom" style="margin-top: 3px;">#{bundle.COORDINATION_ALIAS_CREATE}</h3>
<h:outputText value="#{bundle.COORDINATION_ALIAS_CREATE_NO_PARAMS}" rendered="#{empty aliasManager.availableRenderParameters}"/>
<h:form rendered="#{!empty aliasManager.availableRenderParameters}">
<div class="float-left tenpx-right">
@@ -106,10 +118,15 @@
</div>
</div>
+ <br/>
+
<!-- Parameter bindings -->
<div class="tenpx-top-bottom">
- <h2 class="portlet-area-header" onclick="toggle_visibility('parameterBindings');" style="cursor: pointer"><a name="#{bundle.COORDINATION_PARAMETER_BINDINGS}"/>#{bundle.COORDINATION_PARAMETER_BINDINGS}</h2>
- <div id="parameterBindings">
+ <h2 class="portlet-area-header" onclick="toggle_visibility('parameterBindings');" style="cursor: pointer">
+ <img id="parameterBindingsDisc" src="/portal-admin/img/minus.gif" alt="-"/>
+ <a name="#{bundle.COORDINATION_PARAMETER_BINDINGS}"/>#{bundle.COORDINATION_PARAMETER_BINDINGS}
+ </h2>
+ <div id="parameterBindings" class="coordination-section">
<h:form>
<h:selectBooleanCheckbox id="useExplicitBinding" value="#{coordinationManager.explicitParametersUsed}"
onchange="this.form.submit()" immediate="true"/>
@@ -201,16 +218,21 @@
</div>
</div>
+ <br/>
+
<!-- Event wirings -->
- <h2 class="portlet-area-header" onclick="toggle_visibility('eventWirings');" style="cursor: pointer"><a name="#{bundle.COORDINATION_EVENT_WIRINGS}"/>#{bundle.COORDINATION_EVENT_WIRINGS}</h2>
- <div id="eventWirings">
+ <h2 class="portlet-area-header" onclick="toggle_visibility('eventWirings');" style="cursor: pointer">
+ <img id="eventWiringsDisc" src="/portal-admin/img/minus.gif" alt="-"/>
+ <a name="#{bundle.COORDINATION_EVENT_WIRINGS}"/>#{bundle.COORDINATION_EVENT_WIRINGS}
+ </h2>
+ <div id="eventWirings" class="coordination-section">
<h:form>
<h:selectBooleanCheckbox id="useExplicitEvents" value="#{coordinationManager.explicitEventsUsed}"
onchange="this.form.submit()" immediate="true"/>#{bundle.COORDINATION_EVENT_EXPLICIT_MODE}
</h:form>
<hr/>
-
+
<!-- Create new event wiring -->
<h3 class="sectionTitle tenpx-top-bottom">#{bundle.COORDINATION_EVENT_CREATE}</h3>
<h:outputText value="#{bundle.COORDINATION_EVENT_CREATE_NO_EVENTS}" rendered="#{empty eventManager.sourceEvents}"/>
17 years, 3 months
JBoss Portal SVN: r12508 - branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF.
by portal-commits@lists.jboss.org
Author: wesleyhales
Date: 2009-01-14 15:34:20 -0500 (Wed, 14 Jan 2009)
New Revision: 12508
Modified:
branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/web.xml
Log:
handle exceptions from bridge
Modified: branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/web.xml
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/web.xml 2009-01-14 20:10:46 UTC (rev 12507)
+++ branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/web.xml 2009-01-14 20:34:20 UTC (rev 12508)
@@ -64,6 +64,20 @@
<!--<listener-class>com.sun.faces.config.ConfigureListener</listener-class>-->
<!--</listener>-->
+ <error-page>
+ <exception-type>javax.servlet.ServletException</exception-type>
+ <location>/faces/jsf/error.xhtml</location>
+ </error-page>
+ <error-page>
+ <exception-type>javax.faces.application.ViewExpiredException</exception-type>
+ <location>/jsf/error.xhtml</location>
+ </error-page>
+
+ <error-page>
+ <exception-type>javax.faces.FacesException</exception-type>
+ <location>/jsf/error.xhtml</location>
+ </error-page>
+
<servlet>
<servlet-name>FacesServlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
17 years, 3 months
JBoss Portal SVN: r12507 - modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build.
by portal-commits@lists.jboss.org
Author: thomas.heute(a)jboss.com
Date: 2009-01-14 15:10:46 -0500 (Wed, 14 Jan 2009)
New Revision: 12507
Modified:
modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build-thirdparty.xml
Log:
test
Modified: modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build-thirdparty.xml
===================================================================
--- modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build-thirdparty.xml 2009-01-14 19:54:48 UTC (rev 12506)
+++ modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build-thirdparty.xml 2009-01-14 20:10:46 UTC (rev 12507)
@@ -60,7 +60,7 @@
<componentref name="jbossas/core-libs" version="4.0.4.GA"/>
<componentref name="sleepycat" version="3.0.12"/>
<componentref name="hibernate" version="3.2.4.SP1_CP04-brew"/>
- <componentref name="sun-opends" version="0.1.0.build016"/>
+ <componentref name="sun-opends" version="snapshot"/>
<componentref name="sun-servlet" version="2.5-brew"/>
<componentref name="glassfish/jaf" version="1.1.0-brew"/>
17 years, 3 months
JBoss Portal SVN: r12506 - modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/identity.
by portal-commits@lists.jboss.org
Author: thomas.heute(a)jboss.com
Date: 2009-01-14 14:54:48 -0500 (Wed, 14 Jan 2009)
New Revision: 12506
Modified:
modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/identity/build.xml
Log:
oups
Modified: modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/identity/build.xml
===================================================================
--- modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/identity/build.xml 2009-01-14 19:24:11 UTC (rev 12505)
+++ modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/identity/build.xml 2009-01-14 19:54:48 UTC (rev 12506)
@@ -389,7 +389,7 @@
<path refid="jboss.portal/modules/test.classpath"/>
<path refid="jboss.portal/modules/common.classpath"/>
<!--<path refid="jboss.portal-jems.classpath"/>-->
- <path refid="sun.jaf.classpath"/>
+ <path refid="glassfish.jaf.classpath"/>
</x-classpath>
</execute-tests>
17 years, 3 months
JBoss Portal SVN: r12505 - in modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6: identity and 1 other directory.
by portal-commits@lists.jboss.org
Author: thomas.heute(a)jboss.com
Date: 2009-01-14 14:24:11 -0500 (Wed, 14 Jan 2009)
New Revision: 12505
Modified:
modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build-thirdparty.xml
modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build.xml
modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/identity/build.xml
Log:
updated libraries
Modified: modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build-thirdparty.xml
===================================================================
--- modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build-thirdparty.xml 2009-01-14 19:16:14 UTC (rev 12504)
+++ modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build-thirdparty.xml 2009-01-14 19:24:11 UTC (rev 12505)
@@ -47,30 +47,29 @@
are pushed to the http://repository.jboss.com site.
-->
- <componentref name="jboss-portal/modules/common" version="1.1.0"/>
- <componentref name="jboss-portal/modules/test" version="1.0.1"/>
- <componentref name="apache-log4j" version="1.2.8"/>
- <componentref name="apache-logging" version="1.0.5.SP1-jboss"/>
- <componentref name="apache-xerces" version="2.7.1"/>
- <componentref name="apache-httpclient" version="3.0.1"/>
- <componentref name="junit" version="3.8.1"/>
- <componentref name="jboss/microcontainer" version="1.0.2"/>
- <componentref name="jboss/backport-concurrent" version="2.1.0.GA"/>
+ <componentref name="jboss-portal/modules/common" version="1.2.3"/>
+ <componentref name="jboss-portal/modules/test" version="1.0.4"/>
+ <componentref name="apache-log4j" version="1.2.14-brew"/>
+ <componentref name="apache-logging" version="1.1.0.jboss"/>
+ <componentref name="apache-xerces" version="2.7.1-brew"/>
+ <componentref name="apache-httpclient" version="3.0.1-brew"/>
+ <componentref name="junit" version="3.8.2-brew"/>
+ <componentref name="jboss/microcontainer" version="1.0.2-brew"/>
<componentref name="jboss/jbossxb" version="1.0.0.CR4"/>
<componentref name="jboss/test" version="1.0.0.CR1"/>
<componentref name="jbossas/core-libs" version="4.0.4.GA"/>
<componentref name="sleepycat" version="3.0.12"/>
- <componentref name="hibernate" version="3.2.0.CR2"/>
- <componentref name="sun-opends" version="snapshot"/>
- <componentref name="sun-servlet" version="2.4"/>
- <componentref name="sun-jaf" version="1.0.2"/>
+ <componentref name="hibernate" version="3.2.4.SP1_CP04-brew"/>
+ <componentref name="sun-opends" version="0.1.0.build016"/>
+ <componentref name="sun-servlet" version="2.5-brew"/>
+ <componentref name="glassfish/jaf" version="1.1.0-brew"/>
- <componentref name="apache-collections" version="3.1"/>
+ <componentref name="apache-collections" version="3.1-brew"/>
<componentref name="antlr" version="2.7.6.ga"/>
<componentref name="asm" version="1.5.3"/>
- <componentref name="cglib" version="2.1.3"/>
- <componentref name="hsqldb" version="1.8.0.2"/>
+ <componentref name="cglib" version="2.1.3dep-brew"/>
+ <componentref name="hsqldb" version="1.8.0.8.patch01-brew"/>
<componentref name="cas" version="3.0.7"/>
<componentref name="josso" version="1.5_jdk14"/>
Modified: modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build.xml
===================================================================
--- modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build.xml 2009-01-14 19:16:14 UTC (rev 12504)
+++ modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/build/build.xml 2009-01-14 19:24:11 UTC (rev 12505)
@@ -61,8 +61,8 @@
<property name="version.major" value="1"/>
<property name="version.minor" value="0"/>
- <property name="version.revision" value="3"/>
- <property name="version.tag" value="SNAPSHOT"/>
+ <property name="version.revision" value="6"/>
+ <property name="version.tag" value="GA"/>
<property name="version.name" value=""/>
<!-- This must be set to the CVS tag for any release -->
Modified: modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/identity/build.xml
===================================================================
--- modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/identity/build.xml 2009-01-14 19:16:14 UTC (rev 12504)
+++ modules/identity/branches/JBP_IDENTITY_RELEASE_BRANCH_1_0_6/identity/build.xml 2009-01-14 19:24:11 UTC (rev 12505)
@@ -455,7 +455,7 @@
<path refid="jboss.portal/modules/common.classpath"/>
<!--<path refid="jboss.portal-jems.classpath"/>-->
<path refid="sleepycat.sleepycat.classpath"/>
- <path refid="sun.jaf.classpath"/>
+ <path refid="glassfish.jaf.classpath"/>
</x-classpath>
</execute-tests>
<antcall target="undeploy-ldap"/>
17 years, 3 months
JBoss Portal SVN: r12504 - modules/test/branches/JBP_TEST_RELEASE_BRANCH_1_0_4/build.
by portal-commits@lists.jboss.org
Author: thomas.heute(a)jboss.com
Date: 2009-01-14 14:16:14 -0500 (Wed, 14 Jan 2009)
New Revision: 12504
Modified:
modules/test/branches/JBP_TEST_RELEASE_BRANCH_1_0_4/build/build-thirdparty.xml
modules/test/branches/JBP_TEST_RELEASE_BRANCH_1_0_4/build/build.xml
Log:
test 1.0.4
Modified: modules/test/branches/JBP_TEST_RELEASE_BRANCH_1_0_4/build/build-thirdparty.xml
===================================================================
--- modules/test/branches/JBP_TEST_RELEASE_BRANCH_1_0_4/build/build-thirdparty.xml 2009-01-14 18:39:40 UTC (rev 12503)
+++ modules/test/branches/JBP_TEST_RELEASE_BRANCH_1_0_4/build/build-thirdparty.xml 2009-01-14 19:16:14 UTC (rev 12504)
@@ -47,20 +47,20 @@
are pushed to the http://repository.jboss.com site.
-->
- <componentref name="jboss-portal/modules/common" version="trunk-SNAPSHOT"/>
+ <componentref name="jboss-portal/modules/common" version="1.2.3"/>
<componentref name="codehaus/cargo" version="0.9"/>
<componentref name="jbossas/core-libs" version="4.0.4.GA"/>
- <componentref name="hibernate" version="3.2.0.CR2"/>
- <componentref name="jboss/microcontainer" version="1.0.2"/>
- <componentref name="apache-log4j" version="1.2.8"/>
- <componentref name="junit" version="3.8.1"/>
- <componentref name="sun-servlet" version="2.4"/>
- <componentref name="apache-httpclient" version="3.0.1"/>
- <componentref name="apache-logging" version="1.0.5.SP1-jboss"/>
- <componentref name="sun-opends" version="snapshot"/>
- <componentref name="jboss/remoting" version="2.2.1.GA"/>
+ <componentref name="hibernate" version="3.2.4.SP1_CP06-brew"/>
+ <componentref name="jboss/microcontainer" version="1.0.2-brew"/>
+ <componentref name="apache-log4j" version="1.2.14-brew"/>
+ <componentref name="junit" version="3.8.2-brew"/>
+ <componentref name="sun-servlet" version="2.5-brew"/>
+ <componentref name="apache-httpclient" version="3.0.1-brew"/>
+ <componentref name="apache-logging" version="1.1.0.jboss"/>
+ <componentref name="sun-opends" version="0.1.0.build016"/>
+ <componentref name="jboss/remoting" version="2.2.2.SP10-brew"/>
</build>
<synchronizeinfo/>
Modified: modules/test/branches/JBP_TEST_RELEASE_BRANCH_1_0_4/build/build.xml
===================================================================
--- modules/test/branches/JBP_TEST_RELEASE_BRANCH_1_0_4/build/build.xml 2009-01-14 18:39:40 UTC (rev 12503)
+++ modules/test/branches/JBP_TEST_RELEASE_BRANCH_1_0_4/build/build.xml 2009-01-14 19:16:14 UTC (rev 12504)
@@ -61,7 +61,7 @@
<property name="version.major" value="1"/>
<property name="version.minor" value="0"/>
- <property name="version.revision" value="2"/>
+ <property name="version.revision" value="4"/>
<property name="version.tag" value="GA"/>
<property name="version.name" value=""/>
17 years, 3 months
JBoss Portal SVN: r12503 - branches/JBoss_Portal_Branch_2_7/build.
by portal-commits@lists.jboss.org
Author: chris.laprun(a)jboss.com
Date: 2009-01-14 13:39:40 -0500 (Wed, 14 Jan 2009)
New Revision: 12503
Modified:
branches/JBoss_Portal_Branch_2_7/build/build-thirdparty.xml
Log:
- Upgraded to portletbridge to beta 5 and richfaces to 3.3.0.GA
Modified: branches/JBoss_Portal_Branch_2_7/build/build-thirdparty.xml
===================================================================
--- branches/JBoss_Portal_Branch_2_7/build/build-thirdparty.xml 2009-01-14 15:38:36 UTC (rev 12502)
+++ branches/JBoss_Portal_Branch_2_7/build/build-thirdparty.xml 2009-01-14 18:39:40 UTC (rev 12503)
@@ -71,8 +71,8 @@
<componentref name="ehcache" version="1.2.2"/>
<componentref name="el" version="1.0"/>
<componentref name="facelets" version="1.1.15-B1"/>
- <componentref name="richfaces" version="3.2.2.GA"/>
- <componentref name="jboss/portlet-bridge" version="1.0.0.B4"/>
+ <componentref name="richfaces" version="3.3.0.GA"/>
+ <componentref name="jboss/portlet-bridge" version="1.0.0.B5"/>
<componentref name="hibernate" version="3.2.4.SP1_CP06-brew"/>
<componentref name="httpunit" version="1.6"/>
<componentref name="hsqldb" version="1.8.0.8.patch01-brew"/>
17 years, 3 months