You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2005/10/19 22:17:41 UTC

svn commit: r326680 - in /maven/continuum/trunk/continuum-web/src/main/resources/templates: ./ screens/

Author: evenisse
Date: Wed Oct 19 13:17:35 2005
New Revision: 326680

URL: http://svn.apache.org/viewcvs?rev=326680&view=rev
Log:
[CONTINUUM-254] Increase the length of input fields

Modified:
    maven/continuum/trunk/continuum-web/src/main/resources/templates/CommonMacros.vm
    maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/BuildDefinition.vm
    maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Configure.vm
    maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditIrcNotifier.vm
    maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditJabberNotifier.vm
    maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditMailNotifier.vm
    maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditMsnNotifier.vm
    maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Login.vm

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/CommonMacros.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/CommonMacros.vm?rev=326680&r1=326679&r2=326680&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/CommonMacros.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/CommonMacros.vm Wed Oct 19 13:17:35 2005
@@ -58,20 +58,20 @@
 #if ( $element && $element.attributes && $element.attributes.size > 0 )
 <input type="text" name="$element.id" value="$elementData" size="$element.attributes.size"/>
 #else
-<input type="text" name="$element.id" value="$elementData" size="40"/>
+<input type="text" name="$element.id" value="$elementData" size="100"/>
 #end
 #end
 
 #macro ( textarea $element $elementData )
-<input type="text" name="$element.id" value="$elementData" size="40"/>
+<input type="text" name="$element.id" value="$elementData" size="100"/>
 #end
 
 #macro ( upload $element $elementData )
-<input type="file" name="$element.id" value="$elementData" size="40"/>
+<input type="file" name="$element.id" value="$elementData" size="100"/>
 #end
 
 #macro ( password $element $elementData )
-<input type="password" name="$element.id" value="$elementData" size="40"/>
+<input type="password" name="$element.id" value="$elementData" size="100"/>
 #end
 
 #macro ( radio $element $elementData )

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/BuildDefinition.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/BuildDefinition.vm?rev=326680&r1=326679&r2=326680&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/BuildDefinition.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/BuildDefinition.vm Wed Oct 19 13:17:35 2005
@@ -15,7 +15,7 @@
           <tr>
             <th>$i18n.getString( "buildDefinition.buildFile.label" )</th>
             <td>
-              <input type="text" name="buildFile" value="$buildDefinition.buildFile" size="40"/>
+              <input type="text" name="buildFile" value="$buildDefinition.buildFile" size="100"/>
                   <p>
                     $i18n.getString( "buildDefinition.buildFile.message" ) <font color="red"><b></b></font>
                   </p>
@@ -24,7 +24,7 @@
           <tr>
             <th>$i18n.getString( "buildDefinition.goals.label" )</th>
             <td>
-              <input type="text" name="goals" value="$buildDefinition.goals" size="40"/>
+              <input type="text" name="goals" value="$buildDefinition.goals" size="100"/>
                   <p>
                     $i18n.getString( "buildDefinition.goals.message" ) <font color="red"><b></b></font>
                   </p>
@@ -33,7 +33,7 @@
           <tr>
             <th>$i18n.getString( "buildDefinition.arguments.label" )</th>
             <td>
-              <input type="text" name="arguments" value="$buildDefinition.arguments" size="40"/>
+              <input type="text" name="arguments" value="$buildDefinition.arguments" size="100"/>
                   <p>
                     $i18n.getString( "buildDefinition.arguments.message" ) <font color="red"><b></b></font>
                   </p>

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Configure.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Configure.vm?rev=326680&r1=326679&r2=326680&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Configure.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Configure.vm Wed Oct 19 13:17:35 2005
@@ -7,70 +7,70 @@
 
       <h3>Admin account</h3>
       <div class="axial">
-        <table cellspacing="2" cellpadding="3" width="700">
+        <table cellspacing="2" cellpadding="3" width="900">
           <tr>
-            <td>Username :</td>
-            <td><input type="text" name="username" size="50"></td>
+            <td width="20%">Username :</td>
+            <td><input type="text" name="username" size="100"></td>
           </tr>
           <tr>
             <td>Password :</td>
-            <td><input type="password" name="password" size="50"></td>
+            <td><input type="password" name="password" size="100"></td>
           </tr>
           <tr>
             <td>Re-enter Password :</td>
-            <td><input type="password" name="password.two" size="50"></td>
+            <td><input type="password" name="password.two" size="100"></td>
           </tr>
           <tr>
             <td>Full Name :</td>
-            <td><input type="text" name="fullName" size="50"></td>
+            <td><input type="text" name="fullName" size="100"></td>
           </tr>
           <tr>
             <td>Email :</td>
-            <td><input type="text" name="email" size="50"></td>
+            <td><input type="text" name="email" size="100"></td>
           </tr>
         </table>
       </div>
 
       <h3>Directories</h3>
-      <table cellspacing="2" cellpadding="3" width="700">
+      <table cellspacing="2" cellpadding="3" width="900">
         <tr>
-          <td>Working Directory :</td>
-          <td><input type="text" name="workingDirectory" value="working-directory" size="50"> If you define a relative path, it will be relative to $continuum.configuration.applicationHome</td>
+          <td width="20%">Working Directory :</td>
+          <td><input type="text" name="workingDirectory" value="working-directory" size="100"><br>If you define a relative path, it will be relative to $continuum.configuration.applicationHome</td>
         </tr>
         <tr>
           <td>Build Output Directory :</td>
-          <td><input type="text" name="buildOutputDirectory" value="build-output-directory" size="50"> If you define a relative path, it will be relative to $continuum.configuration.applicationHome</td>
+          <td><input type="text" name="buildOutputDirectory" value="build-output-directory" size="100"><br>If you define a relative path, it will be relative to $continuum.configuration.applicationHome</td>
         </tr>
       </table>
 
       <h3>Base URL</h3>
-      <table cellspacing="2" cellpadding="3" width="700">
+      <table cellspacing="2" cellpadding="3" width="900">
         <tr>
-          <td>Base URL :</td>
-          <td><input type="text" name="baseUrl" value="http://localhost:8080/continuum/servlet/continuum" size="50"></td>
+          <td width="20%">Base URL :</td>
+          <td><input type="text" name="baseUrl" value="http://localhost:8080/continuum/servlet/continuum" size="100"></td>
         </tr>
       </table>
 
       <h3>Company Informations</h3>
-      <table cellspacing="2" cellpadding="3" width="700">
+      <table cellspacing="2" cellpadding="3" width="900">
         <tr>
-          <td>Name :</td>
-          <td><input type="text" name="companyName" size="50"></td>
+          <td width="20%">Name :</td>
+          <td><input type="text" name="companyName" size="100"></td>
         </tr>
         <tr>
           <td>Logo :</td>
-          <td><input type="text" name="companyLogo" size="50"></td>
+          <td><input type="text" name="companyLogo" size="100"></td>
         </tr>
         <tr>
           <td>URL :</td>
-          <td><input type="text" name="companyUrl" size="50"></td>
+          <td><input type="text" name="companyUrl" size="100"></td>
         </tr>
       </table>
 
       <h3>Guest access</h3>
-      <table cellspacing="2" cellpadding="3" width="700">
+      <table cellspacing="2" cellpadding="3" width="900">
         <tr>
-          <td>Allow Guest :</td>
+          <td width="20%">Allow Guest :</td>
           <td><input type="checkbox" name="guestAccountEnabled" checked="checked"></td>
         </tr>
       </table>

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditIrcNotifier.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditIrcNotifier.vm?rev=326680&r1=326679&r2=326680&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditIrcNotifier.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditIrcNotifier.vm Wed Oct 19 13:17:35 2005
@@ -14,19 +14,19 @@
           <tr>
             <th>IRC Host</th>
             <td>
-              <input type="text" name="host" value="$notifier.configuration.host" size="40"/>
+              <input type="text" name="host" value="$notifier.configuration.host" size="100"/>
             </td>
           </tr>
           <tr>
             <th>IRC Port</th>
             <td>
-              <input type="text" name="port" value="$notifier.configuration.port" size="40"/>
+              <input type="text" name="port" value="$notifier.configuration.port" size="100"/>
             </td>
           </tr>
           <tr>
             <th>IRC Channel</th>
             <td>
-              <input type="text" name="channel" value="$notifier.configuration.channel" size="40"/>
+              <input type="text" name="channel" value="$notifier.configuration.channel" size="100"/>
             </td>
             ##field( $i18n $data $element $item $formtool )
             ##validateField( $fvr $element )

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditJabberNotifier.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditJabberNotifier.vm?rev=326680&r1=326679&r2=326680&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditJabberNotifier.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditJabberNotifier.vm Wed Oct 19 13:17:35 2005
@@ -14,25 +14,25 @@
           <tr>
             <th>Jabber Host</th>
             <td>
-              <input type="text" name="host" value="$notifier.configuration.host" size="40"/>
+              <input type="text" name="host" value="$notifier.configuration.host" size="100"/>
             </td>
           </tr>
           <tr>
             <th>Jabber Login</th>
             <td>
-              <input type="text" name="port" value="$notifier.configuration.login" size="40"/>
+              <input type="text" name="port" value="$notifier.configuration.login" size="100"/>
             </td>
           </tr>
           <tr>
             <th>Jabber Password</th>
             <td>
-              <input type="password" name="password" value="$notifier.configuration.password" size="40"/>
+              <input type="password" name="password" value="$notifier.configuration.password" size="100"/>
             </td>
           </tr>
           <tr>
             <th>Jabber Recipient</th>
             <td>
-              <input type="text" name="address" value="$notifier.configuration.address" size="40"/>
+              <input type="text" name="address" value="$notifier.configuration.address" size="100"/>
             </td>
           </tr>
           <tr>

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditMailNotifier.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditMailNotifier.vm?rev=326680&r1=326679&r2=326680&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditMailNotifier.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditMailNotifier.vm Wed Oct 19 13:17:35 2005
@@ -14,7 +14,7 @@
           <tr>
             <th>Mail Address</th>
             <td>
-              <input type="text" name="address" value="$notifier.configuration.address" size="40"/>
+              <input type="text" name="address" value="$notifier.configuration.address" size="100"/>
             </td>
             ##field( $i18n $data $element $item $formtool )
             ##validateField( $fvr $element )

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditMsnNotifier.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditMsnNotifier.vm?rev=326680&r1=326679&r2=326680&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditMsnNotifier.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/EditMsnNotifier.vm Wed Oct 19 13:17:35 2005
@@ -14,19 +14,19 @@
           <tr>
             <th>MSN Login</th>
             <td>
-              <input type="text" name="port" value="$notifier.configuration.login" size="40"/>
+              <input type="text" name="port" value="$notifier.configuration.login" size="100"/>
             </td>
           </tr>
           <tr>
             <th>MSN Password</th>
             <td>
-              <input type="password" name="password" value="$notifier.configuration.password" size="40"/>
+              <input type="password" name="password" value="$notifier.configuration.password" size="100"/>
             </td>
           </tr>
           <tr>
             <th>MSN Recipient</th>
             <td>
-              <input type="text" name="address" value="$notifier.configuration.address" size="40"/>
+              <input type="text" name="address" value="$notifier.configuration.address" size="100"/>
             </td>
             ##field( $i18n $data $element $item $formtool )
             ##validateField( $fvr $element )

Modified: maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Login.vm
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Login.vm?rev=326680&r1=326679&r2=326680&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Login.vm (original)
+++ maven/continuum/trunk/continuum-web/src/main/resources/templates/screens/Login.vm Wed Oct 19 13:17:35 2005
@@ -10,11 +10,11 @@
         <table border="1" cellspacing="2" cellpadding="3" width="250">
           <tr>
             <td>Username :</td>
-            <td><input type="text" name="login.username"></td>
+            <td><input type="text" name="login.username" size="100"></td>
           </tr>
           <tr>
             <td>Password :</td>
-            <td><input type="password" name="login.password"></td>
+            <td><input type="password" name="login.password" size="100"></td>
           </tr>
         </table>