You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jb...@apache.org on 2008/02/27 20:52:43 UTC

svn commit: r631691 - in /geronimo/server/trunk/plugins/console/plugin-portlets/src/main: resources/pluginportlets.properties webapp/WEB-INF/view/car/index.jsp

Author: jbohn
Date: Wed Feb 27 11:52:42 2008
New Revision: 631691

URL: http://svn.apache.org/viewvc?rev=631691&view=rev
Log:
GERONIMO-3867 - final change ... NLS enable the alert message

Modified:
    geronimo/server/trunk/plugins/console/plugin-portlets/src/main/resources/pluginportlets.properties
    geronimo/server/trunk/plugins/console/plugin-portlets/src/main/webapp/WEB-INF/view/car/index.jsp

Modified: geronimo/server/trunk/plugins/console/plugin-portlets/src/main/resources/pluginportlets.properties
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/console/plugin-portlets/src/main/resources/pluginportlets.properties?rev=631691&r1=631690&r2=631691&view=diff
==============================================================================
--- geronimo/server/trunk/plugins/console/plugin-portlets/src/main/resources/pluginportlets.properties (original)
+++ geronimo/server/trunk/plugins/console/plugin-portlets/src/main/resources/pluginportlets.properties Wed Feb 27 11:52:42 2008
@@ -67,6 +67,7 @@
 car.index.removePluginsExp                    = To remove a plugin, use the categories under <b>Applications</b> to locate the plugin module and uninstall it.
 car.index.summary                             = <p>This portlet lets you install or create Geronimo plugins. This can be used to install new features into a Geronimo server at runtime.</p> <h2>Install Geronimo Plugins</h2> <p>Choose a remote repository to inspect for available Geronimo plugins.  The repository must have a <tt>geronimo-plugins.xml</tt> file in the root directory listing the available plugins in the repository.</p> <p>You can also download running configurations from another Geronimo server  just as if you're browsing and installing third-party plugins.  If you want to point to a remote Geronimo server,  enter a URL such as <tt>http://geronimo-server:8080/plugin/maven-repo/</tt>  and the enter the administrator username and password in the optional authentication fields.</p>
 car.index.updateRepositoryList                = Update Repository List
+car.index.validateConfig                      = Please select a configuration to export.
 car.list.assemblyArtifactId                   = Assembly artifactId:
 car.list.assemblyFormat                       = Assembly format:
 car.list.assemblyGroupId                      = Assembly groupId:

Modified: geronimo/server/trunk/plugins/console/plugin-portlets/src/main/webapp/WEB-INF/view/car/index.jsp
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/console/plugin-portlets/src/main/webapp/WEB-INF/view/car/index.jsp?rev=631691&r1=631690&r2=631691&view=diff
==============================================================================
--- geronimo/server/trunk/plugins/console/plugin-portlets/src/main/webapp/WEB-INF/view/car/index.jsp (original)
+++ geronimo/server/trunk/plugins/console/plugin-portlets/src/main/webapp/WEB-INF/view/car/index.jsp Wed Feb 27 11:52:42 2008
@@ -24,7 +24,7 @@
 function <portlet:namespace/>validateForm(){
     with(document.<portlet:namespace/>ExportForm){
         if (configId.value==null || configId.value=="") {
-            alert("Please select a configuration to export.");
+            alert("<fmt:message key="car.index.validateConfig"/>");
             return false;
         }
     }