You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ep...@apache.org on 2006/09/18 09:51:25 UTC

svn commit: r447312 - in /maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main: resources/localization/Continuum.properties webapp/performRelease.jsp

Author: epunzalan
Date: Mon Sep 18 00:51:24 2006
New Revision: 447312

URL: http://svn.apache.org/viewvc?view=rev&rev=447312
Log:
Fixed missing prompt for parameters when doing release:perform on a project where release:prepare is done outside of continuum.

Modified:
    maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main/resources/localization/Continuum.properties
    maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main/webapp/performRelease.jsp

Modified: maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main/resources/localization/Continuum.properties
URL: http://svn.apache.org/viewvc/maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main/resources/localization/Continuum.properties?view=diff&rev=447312&r1=447311&r2=447312
==============================================================================
--- maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main/resources/localization/Continuum.properties (original)
+++ maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main/resources/localization/Continuum.properties Mon Sep 18 00:51:24 2006
@@ -390,7 +390,7 @@
 
 releaseProject.prepareReleaseOption=Prepare project for release
 releaseProject.performReleaseOption=Perform project release
-releaseProject.provideReleaseParameters=Project Release Parameters
+releaseProject.provideReleaseParameters=Provide Release Parameters
 releaseProject.status=Status
 releaseProject.phase=Phase
 releaseProject.viewOutput=View Output

Modified: maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main/webapp/performRelease.jsp
URL: http://svn.apache.org/viewvc/maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main/webapp/performRelease.jsp?view=diff&rev=447312&r1=447311&r2=447312
==============================================================================
--- maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main/webapp/performRelease.jsp (original)
+++ maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main/webapp/performRelease.jsp Mon Sep 18 00:51:24 2006
@@ -12,7 +12,7 @@
         <ww:hidden name="releaseId"/>
         <div class="axial">
           <table border="1" cellspacing="2" cellpadding="3" width="100%">
-            <ww:if test="releaseId.length == 0">
+            <ww:if test="releaseId.equals(\"\")">
               <ww:textfield label="SCM Connection URL" name="scmUrl"/>
               <ww:textfield label="SCM Username" name="scmUsername"/>
               <ww:textfield label="SCM Password" name="scmPassword"/>



Re: svn commit: r447312 - in /maven/continuum/branches/release-integration/continuum/continuum-webapp/src/main: resources/localization/Continuum.properties webapp/performRelease.jsp

Posted by Brett Porter <br...@apache.org>.
On 18/09/2006, at 5:51 PM, epunzalan@apache.org wrote:

> -            <ww:if test="releaseId.length == 0">
> +            <ww:if test="releaseId.equals(\"\")">

<c:if test="${empty(releaseId)}">

?