diff options
-rw-r--r-- | devtest/src/main/webapp/WEB-INF/web.xml | 2 | ||||
-rw-r--r-- | devtest/src/main/webapp/index.html | 15 |
2 files changed, 17 insertions, 0 deletions
diff --git a/devtest/src/main/webapp/WEB-INF/web.xml b/devtest/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 00000000..e7253749 --- /dev/null +++ b/devtest/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,2 @@ +<web-app> +</web-app> diff --git a/devtest/src/main/webapp/index.html b/devtest/src/main/webapp/index.html new file mode 100644 index 00000000..6323ff6d --- /dev/null +++ b/devtest/src/main/webapp/index.html @@ -0,0 +1,15 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> + <head> + <meta http-equiv="content-type" content="text/html; charset=UTF-8"> + </head> + <body> + <script type="text/javascript"> + // a workaround for capturing and passing gwt.codesvr parameter in development mode + function goTo(location) { + window.location = location + window.location.search; + } + goTo("test/test.html"); + </script> + </body> +</html> |