Author: jvanzyl Date: Tue Apr 19 22:23:13 2005 New Revision: 162016 URL: http://svn.apache.org/viewcvs?view=rev&rev=162016 Log: (empty)
Modified: maven/continuum/trunk/continuum-web/src/main/resources/localization/Continuum.properties maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/ProjectBuild.vm Modified: maven/continuum/trunk/continuum-web/src/main/resources/localization/Continuum.properties URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/localization/Continuum.properties?view=diff&r1=162015&r2=162016 ============================================================================== --- maven/continuum/trunk/continuum-web/src/main/resources/localization/Continuum.properties (original) +++ maven/continuum/trunk/continuum-web/src/main/resources/localization/Continuum.properties Tue Apr 19 22:23:13 2005 @@ -51,6 +51,7 @@ m1PomUrl.label = M1 POM Url m1PomUrl.message = Enter the URL to the Maven 1 POM +m1PomUrl.error = You must enter a valid URL project.goals.label = Goals project.goals.message = Enter the goals to execute (default: jar:install) @@ -61,6 +62,7 @@ m2PomUrl.label = M2 POM Url m2PomUrl.message = Enter the URL to the Maven 2 POM +m2PomUrl.error = You must enter a valid URL project.phase.label = Phase/Goals project.phase.message = Enter the phase or goals to execute (default: install) Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/ProjectBuild.vm URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/ProjectBuild.vm?view=diff&r1=162015&r2=162016 ============================================================================== --- maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/ProjectBuild.vm (original) +++ maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/ProjectBuild.vm Tue Apr 19 22:23:13 2005 @@ -1,12 +1,12 @@ <div class="app"> <h3>Build result for $project.name</h3> <p> - <table border="1" cellspacing="2" cellpadding="3"> + <table border="1" cellspacing="2" cellpadding="3" width="100%"> <tr class="a"> <th>Start Time</th> <td>$date.format('medium',$build.startTime)</td> </tr> - <tr class="b"> + <tr class="a"> <th>End Time</th> <td>$date.format('medium',$build.endTime)</td> </tr> @@ -15,9 +15,9 @@ <h4>Changes</h4> <p> - <table border="1" cellspacing="2" cellpadding="3"> + <table border="1" cellspacing="2" cellpadding="3" width="100%"> #foreach ( $file in $buildResult.changedFiles ) - <tr> + <tr class="a"> <td>$file</td> </tr> #end