You are viewing a plain text version of this content. The canonical link for it is here.
Posted to lokahi-commits@incubator.apache.org by to...@apache.org on 2006/06/20 18:22:22 UTC

svn commit: r415754 - in /incubator/lokahi/lokahi/trunk: ./ src/java/org/apache/lokahi/core/api/environment/ src/java/org/apache/lokahi/core/gui/www/

Author: toback
Date: Tue Jun 20 11:22:21 2006
New Revision: 415754

URL: http://svn.apache.org/viewvc?rev=415754&view=rev
Log:
Fixed some spelling errors.

Added:
    incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/gui/www/EnvironmentAction.java
      - copied, changed from r415745, incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/gui/www/EnviromentAction.java
Removed:
    incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/gui/www/EnviromentAction.java
Modified:
    incubator/lokahi/lokahi/trunk/build.properties
    incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/api/environment/EnvironmentModel.java

Modified: incubator/lokahi/lokahi/trunk/build.properties
URL: http://svn.apache.org/viewvc/incubator/lokahi/lokahi/trunk/build.properties?rev=415754&r1=415753&r2=415754&view=diff
==============================================================================
--- incubator/lokahi/lokahi/trunk/build.properties (original)
+++ incubator/lokahi/lokahi/trunk/build.properties Tue Jun 20 11:22:21 2006
@@ -1,16 +1,16 @@
-tomcat.home=/opt/tomcat5.5.9/
+tomcat.home=/opt/tmc/tomcat5.5.9/
 app.name=lokahi
-app.virtualhost.name=
+app.virtualhost.name=supernova:8058
 app.authenticationmodule=org.apache.lokahi.core.common.authentication.NoAuthentication
-console.log.location=
-agent.log.location=
-database.uri=jdbc:oracle:thin:@some.server.net:PORT:SCHEMA
-database.user=
-database.password=
+console.log.location=/www/httpd/logs/websites/lokahi_log4j.log
+agent.log.location=/www/httpd/logs/websites/agent_log4j.log
+database.uri=jdbc:oracle:thin:@wimt:25099:WIMT
+database.user=LOKAHI_TST
+database.password=LOKAHIMERCK
 database.driver=oracle.jdbc.driver.OracleDriver
-initial.instance.name=
+initial.instance.name=WHS
 initial.user.name=
-install.location=${tomcat.home}/webapps/
+install.location=/www/websites/
 
 
 
@@ -34,4 +34,4 @@
 app.build.web-inf.lib=${app.build.web-inf}/lib
 app.build.web-inf.classes=${app.build.web-inf}/classes
 
-tomcat.common.lib=${tomcat.home}/common/lib
\ No newline at end of file
+tomcat.common.lib=${tomcat.home}/common/lib

Modified: incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/api/environment/EnvironmentModel.java
URL: http://svn.apache.org/viewvc/incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/api/environment/EnvironmentModel.java?rev=415754&r1=415753&r2=415754&view=diff
==============================================================================
--- incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/api/environment/EnvironmentModel.java (original)
+++ incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/api/environment/EnvironmentModel.java Tue Jun 20 11:22:21 2006
@@ -38,7 +38,7 @@
 
   public void addEnvironment(User u, Environment e, Function f) throws SQLException, TMCException {
     jpInit(f, u, e.getName());
-    if (u.isAllowed(f) && "AddEnvironmen".equals(f.getName())) {
+    if (u.isAllowed(f) && "AddEnvironment".equals(f.getName())) {
       Environment.store(e);
       jp.setState(State.COMPLETE);
       JobPool.update(jp);

Copied: incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/gui/www/EnvironmentAction.java (from r415745, incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/gui/www/EnviromentAction.java)
URL: http://svn.apache.org/viewvc/incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/gui/www/EnvironmentAction.java?p2=incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/gui/www/EnvironmentAction.java&p1=incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/gui/www/EnviromentAction.java&r1=415745&r2=415754&rev=415754&view=diff
==============================================================================
--- incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/gui/www/EnviromentAction.java (original)
+++ incubator/lokahi/lokahi/trunk/src/java/org/apache/lokahi/core/gui/www/EnvironmentAction.java Tue Jun 20 11:22:21 2006
@@ -33,7 +33,7 @@
  * @author Stephen Toback
  * @version $Id: EnviromentAction.java,v 1.1 2006/03/07 20:18:52 drtobes Exp $
  */
-public class EnviromentAction extends TMCAction {
+public class EnvironmentAction extends TMCAction {
   static final Logger logger = Logger.getLogger(EnviromentAction.class);
 
   public ActionMessages executeFunctions(DynaValidatorForm form, Function f, User user) {