diff options
author | Manolo Carrasco <manolo@apache.org> | 2010-05-01 08:20:09 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2010-05-01 08:20:09 +0000 |
commit | 9ed21a4ad75240a3839e7a836e5ceb8118bfb7d4 (patch) | |
tree | ec34a3d909b3f6dd700cd59e9d7adaf8dbdd5341 /samples/src/main/webapp | |
parent | ff19b9dfd2c06e46e327f3f93e635e31969bb169 (diff) | |
download | gwtquery-9ed21a4ad75240a3839e7a836e5ceb8118bfb7d4.tar.gz gwtquery-9ed21a4ad75240a3839e7a836e5ceb8118bfb7d4.zip |
moved webapp stuff to standar maven location
Diffstat (limited to 'samples/src/main/webapp')
-rw-r--r-- | samples/src/main/webapp/WEB-INF/web.xml | 2 | ||||
-rw-r--r-- | samples/src/main/webapp/index.html | 22 |
2 files changed, 24 insertions, 0 deletions
diff --git a/samples/src/main/webapp/WEB-INF/web.xml b/samples/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 00000000..e7253749 --- /dev/null +++ b/samples/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,2 @@ +<web-app> +</web-app> diff --git a/samples/src/main/webapp/index.html b/samples/src/main/webapp/index.html new file mode 100644 index 00000000..6f17887d --- /dev/null +++ b/samples/src/main/webapp/index.html @@ -0,0 +1,22 @@ +<!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; + } + </script> + <ul> +<li><a href="javascript:goTo('gwtquery.samples.GwtQuerySample/GwtQuerySample.html')">gwtquery.samples.GwtQuerySample/GwtQuerySample.html</a></li> +<li><a href="javascript:goTo('gwtquery.samples.GwtQueryDemo/GwtQueryDemo.html')">gwtquery.samples.GwtQueryDemo/GwtQueryDemo.html</a></li> +<li><a href="javascript:goTo('gwtquery.samples.GwtQueryEffects/GwtQueryEffects.html')">gwtquery.samples.GwtQueryEffects/GwtQueryEffects.html</a></li> +<li><a href="javascript:goTo('gwtquery.samples.GwtQueryWidgets/GwtQueryWidgets.html')">gwtquery.samples.GwtQueryWidgets/GwtQueryWidgets.html</a></li> +<li><a href="javascript:goTo('gwtquery.samples.GwtQueryPlugin/GwtQueryPlugin.html')">gwtquery.samples.GwtQueryPlugin/GwtQueryPlugin.html</a></li> +<li><a href="javascript:goTo('gwtquery.samples.GwtQueryBench/GwtQueryBench.html')">gwtquery.samples.GwtQueryBench/GwtQueryBench.html</a></li> + </ul> + </body> +</html> |