From 8283e417245b26abd290f7e6fd0511869802fc82 Mon Sep 17 00:00:00 2001 From: Benjamin Culkin Date: Tue, 21 May 2024 17:07:23 -0400 Subject: Rename to avoid name conflict --- wotonomy-test/.gitignore | 2 - wotonomy-test/WEB-INF/classes/Application.java | 14 -- wotonomy-test/WEB-INF/classes/DirectAction.java | 71 --------- wotonomy-test/WEB-INF/classes/Main.java | 54 ------- wotonomy-test/WEB-INF/classes/Main.wo/Main.html | 22 --- wotonomy-test/WEB-INF/classes/Main.wo/Main.wod | 22 --- wotonomy-test/WEB-INF/classes/OtherAction.java | 21 --- wotonomy-test/WEB-INF/classes/Session.java | 10 -- wotonomy-test/WEB-INF/web.xml | 17 -- wotonomy-test/build.xml | 66 -------- wotonomy-test/pom.xml | 171 --------------------- wotonomy-test/src/main/java/Application.java | 14 -- wotonomy-test/src/main/java/DirectAction.java | 71 --------- wotonomy-test/src/main/java/Main.java | 54 ------- wotonomy-test/src/main/java/Main.wo/Main.html | 22 --- wotonomy-test/src/main/java/Main.wo/Main.wod | 22 --- wotonomy-test/src/main/java/OtherAction.java | 21 --- wotonomy-test/src/main/java/Session.java | 10 -- wotonomy-test/src/main/webapp/Main.wo/Main.html | 22 --- wotonomy-test/src/main/webapp/Main.wo/Main.wod | 22 --- .../main/webapp/WEB-INF/classes/Application.java | 14 -- .../main/webapp/WEB-INF/classes/DirectAction.java | 71 --------- .../src/main/webapp/WEB-INF/classes/Main.java | 54 ------- .../main/webapp/WEB-INF/classes/Main.wo/Main.html | 22 --- .../main/webapp/WEB-INF/classes/Main.wo/Main.wod | 22 --- .../main/webapp/WEB-INF/classes/OtherAction.java | 21 --- .../src/main/webapp/WEB-INF/classes/Session.java | 10 -- wotonomy-test/src/main/webapp/WEB-INF/web.xml | 17 -- 28 files changed, 959 deletions(-) delete mode 100644 wotonomy-test/.gitignore delete mode 100644 wotonomy-test/WEB-INF/classes/Application.java delete mode 100644 wotonomy-test/WEB-INF/classes/DirectAction.java delete mode 100644 wotonomy-test/WEB-INF/classes/Main.java delete mode 100644 wotonomy-test/WEB-INF/classes/Main.wo/Main.html delete mode 100644 wotonomy-test/WEB-INF/classes/Main.wo/Main.wod delete mode 100644 wotonomy-test/WEB-INF/classes/OtherAction.java delete mode 100644 wotonomy-test/WEB-INF/classes/Session.java delete mode 100644 wotonomy-test/WEB-INF/web.xml delete mode 100644 wotonomy-test/build.xml delete mode 100644 wotonomy-test/pom.xml delete mode 100644 wotonomy-test/src/main/java/Application.java delete mode 100644 wotonomy-test/src/main/java/DirectAction.java delete mode 100644 wotonomy-test/src/main/java/Main.java delete mode 100644 wotonomy-test/src/main/java/Main.wo/Main.html delete mode 100644 wotonomy-test/src/main/java/Main.wo/Main.wod delete mode 100644 wotonomy-test/src/main/java/OtherAction.java delete mode 100644 wotonomy-test/src/main/java/Session.java delete mode 100644 wotonomy-test/src/main/webapp/Main.wo/Main.html delete mode 100644 wotonomy-test/src/main/webapp/Main.wo/Main.wod delete mode 100644 wotonomy-test/src/main/webapp/WEB-INF/classes/Application.java delete mode 100644 wotonomy-test/src/main/webapp/WEB-INF/classes/DirectAction.java delete mode 100644 wotonomy-test/src/main/webapp/WEB-INF/classes/Main.java delete mode 100644 wotonomy-test/src/main/webapp/WEB-INF/classes/Main.wo/Main.html delete mode 100644 wotonomy-test/src/main/webapp/WEB-INF/classes/Main.wo/Main.wod delete mode 100644 wotonomy-test/src/main/webapp/WEB-INF/classes/OtherAction.java delete mode 100644 wotonomy-test/src/main/webapp/WEB-INF/classes/Session.java delete mode 100644 wotonomy-test/src/main/webapp/WEB-INF/web.xml (limited to 'wotonomy-test') diff --git a/wotonomy-test/.gitignore b/wotonomy-test/.gitignore deleted file mode 100644 index 0b5a49d..0000000 --- a/wotonomy-test/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.DS_Store -target diff --git a/wotonomy-test/WEB-INF/classes/Application.java b/wotonomy-test/WEB-INF/classes/Application.java deleted file mode 100644 index 815e210..0000000 --- a/wotonomy-test/WEB-INF/classes/Application.java +++ /dev/null @@ -1,14 +0,0 @@ -// Decompiled by Jad v1.5.8c. Copyright 2001 Pavel Kouznetsov. -// Jad home page: http://www.geocities.com/kpdus/jad.html -// Decompiler options: packimports(3) fieldsfirst nonlb space -// Source File Name: Application.java - -import java.io.PrintStream; -import net.wotonomy.web.WOApplication; - -public class Application extends WOApplication { - - public Application() { - System.out.println("Application()"); - } -} diff --git a/wotonomy-test/WEB-INF/classes/DirectAction.java b/wotonomy-test/WEB-INF/classes/DirectAction.java deleted file mode 100644 index f5dc851..0000000 --- a/wotonomy-test/WEB-INF/classes/DirectAction.java +++ /dev/null @@ -1,71 +0,0 @@ - -import java.io.PrintStream; -import java.util.Date; -import net.wotonomy.foundation.NSArray; -import net.wotonomy.foundation.NSDictionary; -import net.wotonomy.web.*; - -public class DirectAction extends WODirectAction { - - private Date testing; - - public DirectAction(WORequest aRequest) { - super(aRequest); - testing = new Date(); - System.out.println("DirectAction()"); - } - - public WOActionResults defaultAction() { - return pageWithName("Main"); - } - - public Object getTesting() { - return testing; - } - - public void setTesting(Date anObject) { - testing = anObject; - } - - public WOActionResults testAction() { - System.out.println("DirectAction.testAction()"); - takeFormValuesForKeyArray(request().formValues().allKeys()); - WOResponse response = new WOResponse(); - response.appendContentString("This is really just a test."); - response.appendContentString("

"); - response.appendContentString(Application.application().name()); - response.appendContentString("

"); - response.appendContentHTMLString("

"); - response.appendContentString("

"); - response.appendContentString(getTesting().toString()); - response.appendContentString("

"); - response.appendContentString(request().formValues().toString()); - response.appendContentString("

"); - response.appendContentString("browserLanguages: "); - response.appendContentString(request().browserLanguages().toString()); - response.appendContentString("

"); - response.appendContentString("uri: "); - response.appendContentString(request().uri().toString()); - response.appendContentString("

"); - response.appendContentString("adaptorPrefix: "); - response.appendContentString(request().adaptorPrefix().toString()); - response.appendContentString("

"); - response.appendContentString("applicationName: "); - response.appendContentString(request().applicationName().toString()); - response.appendContentString("

"); - response.appendContentString("requestHandlerKey: "); - response.appendContentString(request().requestHandlerKey().toString()); - response.appendContentString("

"); - response.appendContentString("requestHandlerPath: "); - response.appendContentString(request().requestHandlerPath().toString()); - response.appendContentString("

"); - response.appendContentString("requestHandlerPathArray: "); - response.appendContentString(request().requestHandlerPathArray().toString()); - response.appendContentString("

"); - response.appendContentString("method: "); - response.appendContentString(request().method().toString()); - response.appendContentString("

"); - response.appendContentString("content: "); - return response; - } -} diff --git a/wotonomy-test/WEB-INF/classes/Main.java b/wotonomy-test/WEB-INF/classes/Main.java deleted file mode 100644 index a12ca44..0000000 --- a/wotonomy-test/WEB-INF/classes/Main.java +++ /dev/null @@ -1,54 +0,0 @@ -import net.wotonomy.foundation.NSDate; -import net.wotonomy.web.*; - -public class Main extends WOComponent { - - private boolean showing; - private String textFieldValue; - - public Main() { - super(); - showing = true; - } - - public NSDate getCurrentTime() { - return new NSDate(); - } - - public boolean getShowTime() { - return showing; - } - public void setShowTime(boolean value) { - showing = value; - } - - public WOActionResults submit() { - System.out.println("Form Submitted"); - System.out.println("textfield says '" + getTextValue() + "'"); - return null; - } - - public void takeValuesFromRequest(WORequest r, WOContext c) { - System.out.println("taking values from request"); - if (r.formValueForKey("show") != null) - setShowTime(r.formValueForKey("show").equals("true")); - } - - public String getTimeLinkString() { - return showing ? "Hide the time display" : "Show time display"; - } - - public void setTextValue(String value) { - textFieldValue = value; - } - public String getTextValue() { - return textFieldValue; - } - - public WOComponent switchTime() { - System.out.println("switching time display"); - setShowTime(!getShowTime()); - return this; - } - -} diff --git a/wotonomy-test/WEB-INF/classes/Main.wo/Main.html b/wotonomy-test/WEB-INF/classes/Main.wo/Main.html deleted file mode 100644 index 6729a94..0000000 --- a/wotonomy-test/WEB-INF/classes/Main.wo/Main.html +++ /dev/null @@ -1,22 +0,0 @@ - -MyTest - - - -The time is . -

-
- - - -Here's a textfield: - - - -

-Here's a link to an external site. -
-And here's a link to a direct action. - - - diff --git a/wotonomy-test/WEB-INF/classes/Main.wo/Main.wod b/wotonomy-test/WEB-INF/classes/Main.wo/Main.wod deleted file mode 100644 index 16bd25e..0000000 --- a/wotonomy-test/WEB-INF/classes/Main.wo/Main.wod +++ /dev/null @@ -1,22 +0,0 @@ - -MyTest - - - -The time is . -

-
- - - -Here's a textfield: - - - -

-Here's a link to an external site. -
-And here's a link to a direct action (not implemented yet). - - - diff --git a/wotonomy-test/WEB-INF/classes/OtherAction.java b/wotonomy-test/WEB-INF/classes/OtherAction.java deleted file mode 100644 index 00a3155..0000000 --- a/wotonomy-test/WEB-INF/classes/OtherAction.java +++ /dev/null @@ -1,21 +0,0 @@ -//A direct action subclass, with only one method -//that gets called from Main.wo - -import net.wotonomy.foundation.*; -import net.wotonomy.web.*; - -public class OtherAction extends WODirectAction { - - public OtherAction(WORequest r) { - super(r); - } - - public WOActionResults linkTestAction() { - System.out.println("creating and configuring Main.wo"); - WOComponent page = pageWithName("Main"); - page.takeValueForKey(new Boolean(false), "showTime"); - page.takeValueForKey("direct action called", "textValue"); - return page; - } - -} diff --git a/wotonomy-test/WEB-INF/classes/Session.java b/wotonomy-test/WEB-INF/classes/Session.java deleted file mode 100644 index e3e9de7..0000000 --- a/wotonomy-test/WEB-INF/classes/Session.java +++ /dev/null @@ -1,10 +0,0 @@ -//Empty session file - -import net.wotonomy.web.WOSession; - -public class Session extends WOSession { - - public Session() { - } - -} diff --git a/wotonomy-test/WEB-INF/web.xml b/wotonomy-test/WEB-INF/web.xml deleted file mode 100644 index b505b52..0000000 --- a/wotonomy-test/WEB-INF/web.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - ApplicatonServlet - Application - - - - ApplicatonServlet - / - - diff --git a/wotonomy-test/build.xml b/wotonomy-test/build.xml deleted file mode 100644 index 4104184..0000000 --- a/wotonomy-test/build.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/wotonomy-test/pom.xml b/wotonomy-test/pom.xml deleted file mode 100644 index c7074d6..0000000 --- a/wotonomy-test/pom.xml +++ /dev/null @@ -1,171 +0,0 @@ - - - 4.0.0 - - com.ashardalon - wotonomy-test - 0.1-SNAPSHOT - war - - Wotonomy test - This is a test of the Wotonomy framework - - - UTF-8 - UTF-8 - 11 - 10.0.0 - 3.11.0 - 3.4.0 - - - - - jakarta.platform - jakarta.jakartaee-api - ${jakartaee-api.version} - provided - - - net.wotonomy - wotonomy-datastore - 1.0-alpha5-SNAPSHOT - - - net.wotonomy - wotonomy-foundation - 1.0-alpha5-SNAPSHOT - - - net.wotonomy - wotonomy-persistence - 1.0-alpha5-SNAPSHOT - - - net.wotonomy - wotonomy-ui - 1.0-alpha5-SNAPSHOT - - - net.wotonomy - wotonomy-web - 1.0-alpha5-SNAPSHOT - - - - - wotonomy-test - - - org.apache.maven.plugins - maven-compiler-plugin - ${compiler-plugin.version} - - - maven-war-plugin - ${war-plugin.version} - - true - - - - maven-site-plugin - 3.7.1 - - - org.apache.maven.wagon - wagon-webdav-jackrabbit - 3.5.3 - - - - - - maven-project-info-reports-plugin - 3.0.0 - - - - com.ashardalon - slim-tomcat-maven-plugin - 1.1-SNAPSHOT - - https://blog.ashardalon.com/ - ashardalon-tomcat - /wotonomy - true - - - - deploy - - deploy - - - - - - - - - - - - maven-javadoc-plugin - 3.4.0 - - - - maven-surefire-plugin - 2.22.1 - - - maven-changes-plugin - 2.12.1 - - - - - - - ashardalon-dav - dav:https://ashardalon.com/projects/wotonomy-test - - - ashardalon - Ashardalon Snapshots - https://repo.ashardalon.com/snapshots - - - ashardalon - Ashardalon Releases - https://repo.ashardalon.com/releases - - - - - ashardalon-forge - Ashardalon Forge - https://repo.ashardalon.com - - true - - - true - - - - - - ashardalon-forge - Ashardalon Forge - https://repo.ashardalon.com - - true - - - true - - - - diff --git a/wotonomy-test/src/main/java/Application.java b/wotonomy-test/src/main/java/Application.java deleted file mode 100644 index 815e210..0000000 --- a/wotonomy-test/src/main/java/Application.java +++ /dev/null @@ -1,14 +0,0 @@ -// Decompiled by Jad v1.5.8c. Copyright 2001 Pavel Kouznetsov. -// Jad home page: http://www.geocities.com/kpdus/jad.html -// Decompiler options: packimports(3) fieldsfirst nonlb space -// Source File Name: Application.java - -import java.io.PrintStream; -import net.wotonomy.web.WOApplication; - -public class Application extends WOApplication { - - public Application() { - System.out.println("Application()"); - } -} diff --git a/wotonomy-test/src/main/java/DirectAction.java b/wotonomy-test/src/main/java/DirectAction.java deleted file mode 100644 index f5dc851..0000000 --- a/wotonomy-test/src/main/java/DirectAction.java +++ /dev/null @@ -1,71 +0,0 @@ - -import java.io.PrintStream; -import java.util.Date; -import net.wotonomy.foundation.NSArray; -import net.wotonomy.foundation.NSDictionary; -import net.wotonomy.web.*; - -public class DirectAction extends WODirectAction { - - private Date testing; - - public DirectAction(WORequest aRequest) { - super(aRequest); - testing = new Date(); - System.out.println("DirectAction()"); - } - - public WOActionResults defaultAction() { - return pageWithName("Main"); - } - - public Object getTesting() { - return testing; - } - - public void setTesting(Date anObject) { - testing = anObject; - } - - public WOActionResults testAction() { - System.out.println("DirectAction.testAction()"); - takeFormValuesForKeyArray(request().formValues().allKeys()); - WOResponse response = new WOResponse(); - response.appendContentString("This is really just a test."); - response.appendContentString("

"); - response.appendContentString(Application.application().name()); - response.appendContentString("

"); - response.appendContentHTMLString("

"); - response.appendContentString("

"); - response.appendContentString(getTesting().toString()); - response.appendContentString("

"); - response.appendContentString(request().formValues().toString()); - response.appendContentString("

"); - response.appendContentString("browserLanguages: "); - response.appendContentString(request().browserLanguages().toString()); - response.appendContentString("

"); - response.appendContentString("uri: "); - response.appendContentString(request().uri().toString()); - response.appendContentString("

"); - response.appendContentString("adaptorPrefix: "); - response.appendContentString(request().adaptorPrefix().toString()); - response.appendContentString("

"); - response.appendContentString("applicationName: "); - response.appendContentString(request().applicationName().toString()); - response.appendContentString("

"); - response.appendContentString("requestHandlerKey: "); - response.appendContentString(request().requestHandlerKey().toString()); - response.appendContentString("

"); - response.appendContentString("requestHandlerPath: "); - response.appendContentString(request().requestHandlerPath().toString()); - response.appendContentString("

"); - response.appendContentString("requestHandlerPathArray: "); - response.appendContentString(request().requestHandlerPathArray().toString()); - response.appendContentString("

"); - response.appendContentString("method: "); - response.appendContentString(request().method().toString()); - response.appendContentString("

"); - response.appendContentString("content: "); - return response; - } -} diff --git a/wotonomy-test/src/main/java/Main.java b/wotonomy-test/src/main/java/Main.java deleted file mode 100644 index a12ca44..0000000 --- a/wotonomy-test/src/main/java/Main.java +++ /dev/null @@ -1,54 +0,0 @@ -import net.wotonomy.foundation.NSDate; -import net.wotonomy.web.*; - -public class Main extends WOComponent { - - private boolean showing; - private String textFieldValue; - - public Main() { - super(); - showing = true; - } - - public NSDate getCurrentTime() { - return new NSDate(); - } - - public boolean getShowTime() { - return showing; - } - public void setShowTime(boolean value) { - showing = value; - } - - public WOActionResults submit() { - System.out.println("Form Submitted"); - System.out.println("textfield says '" + getTextValue() + "'"); - return null; - } - - public void takeValuesFromRequest(WORequest r, WOContext c) { - System.out.println("taking values from request"); - if (r.formValueForKey("show") != null) - setShowTime(r.formValueForKey("show").equals("true")); - } - - public String getTimeLinkString() { - return showing ? "Hide the time display" : "Show time display"; - } - - public void setTextValue(String value) { - textFieldValue = value; - } - public String getTextValue() { - return textFieldValue; - } - - public WOComponent switchTime() { - System.out.println("switching time display"); - setShowTime(!getShowTime()); - return this; - } - -} diff --git a/wotonomy-test/src/main/java/Main.wo/Main.html b/wotonomy-test/src/main/java/Main.wo/Main.html deleted file mode 100644 index 6729a94..0000000 --- a/wotonomy-test/src/main/java/Main.wo/Main.html +++ /dev/null @@ -1,22 +0,0 @@ - -MyTest - - - -The time is . -

-
- - - -Here's a textfield: - - - -

-Here's a link to an external site. -
-And here's a link to a direct action. - - - diff --git a/wotonomy-test/src/main/java/Main.wo/Main.wod b/wotonomy-test/src/main/java/Main.wo/Main.wod deleted file mode 100644 index 16bd25e..0000000 --- a/wotonomy-test/src/main/java/Main.wo/Main.wod +++ /dev/null @@ -1,22 +0,0 @@ - -MyTest - - - -The time is . -

-
- - - -Here's a textfield: - - - -

-Here's a link to an external site. -
-And here's a link to a direct action (not implemented yet). - - - diff --git a/wotonomy-test/src/main/java/OtherAction.java b/wotonomy-test/src/main/java/OtherAction.java deleted file mode 100644 index 00a3155..0000000 --- a/wotonomy-test/src/main/java/OtherAction.java +++ /dev/null @@ -1,21 +0,0 @@ -//A direct action subclass, with only one method -//that gets called from Main.wo - -import net.wotonomy.foundation.*; -import net.wotonomy.web.*; - -public class OtherAction extends WODirectAction { - - public OtherAction(WORequest r) { - super(r); - } - - public WOActionResults linkTestAction() { - System.out.println("creating and configuring Main.wo"); - WOComponent page = pageWithName("Main"); - page.takeValueForKey(new Boolean(false), "showTime"); - page.takeValueForKey("direct action called", "textValue"); - return page; - } - -} diff --git a/wotonomy-test/src/main/java/Session.java b/wotonomy-test/src/main/java/Session.java deleted file mode 100644 index e3e9de7..0000000 --- a/wotonomy-test/src/main/java/Session.java +++ /dev/null @@ -1,10 +0,0 @@ -//Empty session file - -import net.wotonomy.web.WOSession; - -public class Session extends WOSession { - - public Session() { - } - -} diff --git a/wotonomy-test/src/main/webapp/Main.wo/Main.html b/wotonomy-test/src/main/webapp/Main.wo/Main.html deleted file mode 100644 index 6729a94..0000000 --- a/wotonomy-test/src/main/webapp/Main.wo/Main.html +++ /dev/null @@ -1,22 +0,0 @@ - -MyTest - - - -The time is . -

-
- - - -Here's a textfield: - - - -

-Here's a link to an external site. -
-And here's a link to a direct action. - - - diff --git a/wotonomy-test/src/main/webapp/Main.wo/Main.wod b/wotonomy-test/src/main/webapp/Main.wo/Main.wod deleted file mode 100644 index 16bd25e..0000000 --- a/wotonomy-test/src/main/webapp/Main.wo/Main.wod +++ /dev/null @@ -1,22 +0,0 @@ - -MyTest - - - -The time is . -

-
- - - -Here's a textfield: - - - -

-Here's a link to an external site. -
-And here's a link to a direct action (not implemented yet). - - - diff --git a/wotonomy-test/src/main/webapp/WEB-INF/classes/Application.java b/wotonomy-test/src/main/webapp/WEB-INF/classes/Application.java deleted file mode 100644 index 815e210..0000000 --- a/wotonomy-test/src/main/webapp/WEB-INF/classes/Application.java +++ /dev/null @@ -1,14 +0,0 @@ -// Decompiled by Jad v1.5.8c. Copyright 2001 Pavel Kouznetsov. -// Jad home page: http://www.geocities.com/kpdus/jad.html -// Decompiler options: packimports(3) fieldsfirst nonlb space -// Source File Name: Application.java - -import java.io.PrintStream; -import net.wotonomy.web.WOApplication; - -public class Application extends WOApplication { - - public Application() { - System.out.println("Application()"); - } -} diff --git a/wotonomy-test/src/main/webapp/WEB-INF/classes/DirectAction.java b/wotonomy-test/src/main/webapp/WEB-INF/classes/DirectAction.java deleted file mode 100644 index f5dc851..0000000 --- a/wotonomy-test/src/main/webapp/WEB-INF/classes/DirectAction.java +++ /dev/null @@ -1,71 +0,0 @@ - -import java.io.PrintStream; -import java.util.Date; -import net.wotonomy.foundation.NSArray; -import net.wotonomy.foundation.NSDictionary; -import net.wotonomy.web.*; - -public class DirectAction extends WODirectAction { - - private Date testing; - - public DirectAction(WORequest aRequest) { - super(aRequest); - testing = new Date(); - System.out.println("DirectAction()"); - } - - public WOActionResults defaultAction() { - return pageWithName("Main"); - } - - public Object getTesting() { - return testing; - } - - public void setTesting(Date anObject) { - testing = anObject; - } - - public WOActionResults testAction() { - System.out.println("DirectAction.testAction()"); - takeFormValuesForKeyArray(request().formValues().allKeys()); - WOResponse response = new WOResponse(); - response.appendContentString("This is really just a test."); - response.appendContentString("

"); - response.appendContentString(Application.application().name()); - response.appendContentString("

"); - response.appendContentHTMLString("

"); - response.appendContentString("

"); - response.appendContentString(getTesting().toString()); - response.appendContentString("

"); - response.appendContentString(request().formValues().toString()); - response.appendContentString("

"); - response.appendContentString("browserLanguages: "); - response.appendContentString(request().browserLanguages().toString()); - response.appendContentString("

"); - response.appendContentString("uri: "); - response.appendContentString(request().uri().toString()); - response.appendContentString("

"); - response.appendContentString("adaptorPrefix: "); - response.appendContentString(request().adaptorPrefix().toString()); - response.appendContentString("

"); - response.appendContentString("applicationName: "); - response.appendContentString(request().applicationName().toString()); - response.appendContentString("

"); - response.appendContentString("requestHandlerKey: "); - response.appendContentString(request().requestHandlerKey().toString()); - response.appendContentString("

"); - response.appendContentString("requestHandlerPath: "); - response.appendContentString(request().requestHandlerPath().toString()); - response.appendContentString("

"); - response.appendContentString("requestHandlerPathArray: "); - response.appendContentString(request().requestHandlerPathArray().toString()); - response.appendContentString("

"); - response.appendContentString("method: "); - response.appendContentString(request().method().toString()); - response.appendContentString("

"); - response.appendContentString("content: "); - return response; - } -} diff --git a/wotonomy-test/src/main/webapp/WEB-INF/classes/Main.java b/wotonomy-test/src/main/webapp/WEB-INF/classes/Main.java deleted file mode 100644 index a12ca44..0000000 --- a/wotonomy-test/src/main/webapp/WEB-INF/classes/Main.java +++ /dev/null @@ -1,54 +0,0 @@ -import net.wotonomy.foundation.NSDate; -import net.wotonomy.web.*; - -public class Main extends WOComponent { - - private boolean showing; - private String textFieldValue; - - public Main() { - super(); - showing = true; - } - - public NSDate getCurrentTime() { - return new NSDate(); - } - - public boolean getShowTime() { - return showing; - } - public void setShowTime(boolean value) { - showing = value; - } - - public WOActionResults submit() { - System.out.println("Form Submitted"); - System.out.println("textfield says '" + getTextValue() + "'"); - return null; - } - - public void takeValuesFromRequest(WORequest r, WOContext c) { - System.out.println("taking values from request"); - if (r.formValueForKey("show") != null) - setShowTime(r.formValueForKey("show").equals("true")); - } - - public String getTimeLinkString() { - return showing ? "Hide the time display" : "Show time display"; - } - - public void setTextValue(String value) { - textFieldValue = value; - } - public String getTextValue() { - return textFieldValue; - } - - public WOComponent switchTime() { - System.out.println("switching time display"); - setShowTime(!getShowTime()); - return this; - } - -} diff --git a/wotonomy-test/src/main/webapp/WEB-INF/classes/Main.wo/Main.html b/wotonomy-test/src/main/webapp/WEB-INF/classes/Main.wo/Main.html deleted file mode 100644 index 6729a94..0000000 --- a/wotonomy-test/src/main/webapp/WEB-INF/classes/Main.wo/Main.html +++ /dev/null @@ -1,22 +0,0 @@ - -MyTest - - - -The time is . -

-
- - - -Here's a textfield: - - - -

-Here's a link to an external site. -
-And here's a link to a direct action. - - - diff --git a/wotonomy-test/src/main/webapp/WEB-INF/classes/Main.wo/Main.wod b/wotonomy-test/src/main/webapp/WEB-INF/classes/Main.wo/Main.wod deleted file mode 100644 index 16bd25e..0000000 --- a/wotonomy-test/src/main/webapp/WEB-INF/classes/Main.wo/Main.wod +++ /dev/null @@ -1,22 +0,0 @@ - -MyTest - - - -The time is . -

-
- - - -Here's a textfield: - - - -

-Here's a link to an external site. -
-And here's a link to a direct action (not implemented yet). - - - diff --git a/wotonomy-test/src/main/webapp/WEB-INF/classes/OtherAction.java b/wotonomy-test/src/main/webapp/WEB-INF/classes/OtherAction.java deleted file mode 100644 index 00a3155..0000000 --- a/wotonomy-test/src/main/webapp/WEB-INF/classes/OtherAction.java +++ /dev/null @@ -1,21 +0,0 @@ -//A direct action subclass, with only one method -//that gets called from Main.wo - -import net.wotonomy.foundation.*; -import net.wotonomy.web.*; - -public class OtherAction extends WODirectAction { - - public OtherAction(WORequest r) { - super(r); - } - - public WOActionResults linkTestAction() { - System.out.println("creating and configuring Main.wo"); - WOComponent page = pageWithName("Main"); - page.takeValueForKey(new Boolean(false), "showTime"); - page.takeValueForKey("direct action called", "textValue"); - return page; - } - -} diff --git a/wotonomy-test/src/main/webapp/WEB-INF/classes/Session.java b/wotonomy-test/src/main/webapp/WEB-INF/classes/Session.java deleted file mode 100644 index e3e9de7..0000000 --- a/wotonomy-test/src/main/webapp/WEB-INF/classes/Session.java +++ /dev/null @@ -1,10 +0,0 @@ -//Empty session file - -import net.wotonomy.web.WOSession; - -public class Session extends WOSession { - - public Session() { - } - -} diff --git a/wotonomy-test/src/main/webapp/WEB-INF/web.xml b/wotonomy-test/src/main/webapp/WEB-INF/web.xml deleted file mode 100644 index b505b52..0000000 --- a/wotonomy-test/src/main/webapp/WEB-INF/web.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - ApplicatonServlet - Application - - - - ApplicatonServlet - / - - -- cgit v1.2.3