You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by gb...@apache.org on 2009/06/17 17:38:44 UTC

svn commit: r785681 - in /incubator/pivot/trunk: demos/web.xml demos/www/ demos/www/index.html demos/www/kitchen_sink.html tutorials/web.xml tutorials/www/ web/www/lib/ wtk/lib/

Author: gbrown
Date: Wed Jun 17 15:38:44 2009
New Revision: 785681

URL: http://svn.apache.org/viewvc?rev=785681&view=rev
Log:
Preliminary work towards packaging demos and tutorials as WAR files.

Added:
    incubator/pivot/trunk/demos/web.xml
    incubator/pivot/trunk/demos/www/
    incubator/pivot/trunk/demos/www/index.html
    incubator/pivot/trunk/demos/www/kitchen_sink.html
    incubator/pivot/trunk/tutorials/web.xml
    incubator/pivot/trunk/tutorials/www/
Removed:
    incubator/pivot/trunk/web/www/lib/
    incubator/pivot/trunk/wtk/lib/

Added: incubator/pivot/trunk/demos/web.xml
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/web.xml?rev=785681&view=auto
==============================================================================
--- incubator/pivot/trunk/demos/web.xml (added)
+++ incubator/pivot/trunk/demos/web.xml Wed Jun 17 15:38:44 2009
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to you under the Apache License,
+Version 2.0 (the "License"); you may not use this file except in
+compliance with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
+    version="2.4">
+    <description>Pivot Demos</description>
+    <display-name>Pivot Demos</display-name>
+</web-app>
+

Added: incubator/pivot/trunk/demos/www/index.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/index.html?rev=785681&view=auto
==============================================================================
--- incubator/pivot/trunk/demos/www/index.html (added)
+++ incubator/pivot/trunk/demos/www/index.html Wed Jun 17 15:38:44 2009
@@ -0,0 +1,25 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to you under the Apache License,
+Version 2.0 (the "License"); you may not use this file except in
+compliance with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<html>
+<head>
+<title>Index of Pivot Demos</title>
+</head>
+<body>
+<p><a href="kitchen_sink.html">"Kitchen Sink"</a></p>
+</body>
+</html>

Added: incubator/pivot/trunk/demos/www/kitchen_sink.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/kitchen_sink.html?rev=785681&view=auto
==============================================================================
--- incubator/pivot/trunk/demos/www/kitchen_sink.html (added)
+++ incubator/pivot/trunk/demos/www/kitchen_sink.html Wed Jun 17 15:38:44 2009
@@ -0,0 +1,29 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to you under the Apache License,
+Version 2.0 (the "License"); you may not use this file except in
+compliance with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<html>
+<head>
+<title>Pivot "Kitchen Sink" Demo</title>
+</head>
+<body style="margin:0px; padding:0px">
+<applet code="org.apache.pivot.wtk.BrowserApplicationContext$HostApplet"
+   archive="lib/pivot-core.jar,lib/pivot-wtk.jar,lib/pivot-wtk.terra.jar,lib/pivot-tutorials.jar"
+   width="100%" height="100%">
+   <param name="applicationClassName" value="org.apache.pivot.tutorials.KitchenSink">
+</applet>
+</body>
+</html>

Added: incubator/pivot/trunk/tutorials/web.xml
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/web.xml?rev=785681&view=auto
==============================================================================
--- incubator/pivot/trunk/tutorials/web.xml (added)
+++ incubator/pivot/trunk/tutorials/web.xml Wed Jun 17 15:38:44 2009
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to you under the Apache License,
+Version 2.0 (the "License"); you may not use this file except in
+compliance with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
+    version="2.4">
+    <description>Pivot Tutorials</description>
+    <display-name>Pivot Tutorials</display-name>
+</web-app>
+