You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by sm...@apache.org on 2009/10/13 11:04:05 UTC

svn commit: r824647 - /incubator/pivot/trunk/demos/www/

Author: smartini
Date: Tue Oct 13 09:04:05 2009
New Revision: 824647

URL: http://svn.apache.org/viewvc?rev=824647&view=rev
Log:
renamed some jnlp signed files, and some little modifications

Added:
    incubator/pivot/trunk/demos/www/kitchen_sink.custom_colors.jnlp
    incubator/pivot/trunk/demos/www/kitchen_sink.signed.jnlp
    incubator/pivot/trunk/demos/www/pivot-runtime.signed.jnlp
Removed:
    incubator/pivot/trunk/demos/www/kitchen_sink-signed-customcolors.jnlp
    incubator/pivot/trunk/demos/www/kitchen_sink-signed.jnlp
    incubator/pivot/trunk/demos/www/pivot-runtime-signed.jnlp
Modified:
    incubator/pivot/trunk/demos/www/kitchen_sink.jnlp
    incubator/pivot/trunk/demos/www/pivot-runtime.jnlp

Added: incubator/pivot/trunk/demos/www/kitchen_sink.custom_colors.jnlp
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/kitchen_sink.custom_colors.jnlp?rev=824647&view=auto
==============================================================================
--- incubator/pivot/trunk/demos/www/kitchen_sink.custom_colors.jnlp (added)
+++ incubator/pivot/trunk/demos/www/kitchen_sink.custom_colors.jnlp Tue Oct 13 09:04:05 2009
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<%
+/*
+ * 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.
+ */
+%>
+
+<%-- @ page language="java" contentType="application/xml; charset=UTF-8" pageEncoding="UTF-8" --%> <%-- Enable this for Page Debugging purposes --%>
+<%@ page language="java" contentType="application/x-java-jnlp-file" pageEncoding="UTF-8" %>
+
+<%@ include file="version.jsp" %>
+<%@ include file="url_utilities.jsp" %>
+
+<jnlp spec="1.6+" codebase="<%= codebase %>" href="<%= href %>">
+    <information>
+        <title>Pivot "Kitchen Sink" Demo with Custom Colors - Signed</title>
+        <vendor>Apache Pivot</vendor>
+        <homepage href="http://incubator.apache.org/pivot/"/>
+        <description>
+            Similar to Sun's "Swing Set" demo, this application demonstrates a number of commonly used Pivot components.
+            Note that here are used Pivot signed jars.
+        </description>
+        <offline-allowed/>
+        <shortcut online="false">
+            <desktop/>
+        </shortcut>
+    </information>
+
+    <resources>
+<%@ include file="common_properties_for_jnlp.jsp" %>
+
+        <property name="org.apache.pivot.wtk.skin.terra.location" value="org/apache/pivot/tutorials/TerraTheme_dark.json" />
+
+        <java version="1.6+" href="http://java.sun.com/products/autodl/j2se" />
+
+        <extension name="pivot-runtime" href="<%= codebase %>pivot-runtime.signed.jnlp" />
+
+        <jar href="lib/pivot-tutorials-<%= version %>.signed.jar" main="true" />
+    </resources>
+
+    <application-desc main-class="org.apache.pivot.wtk.DesktopApplicationContext">
+        <argument>org.apache.pivot.tutorials.KitchenSink</argument>
+        <argument>--width:800</argument>
+        <argument>--height:600</argument>
+        <argument>--center:true</argument>
+    </application-desc>
+    
+    <update check="background" />
+</jnlp>

Modified: incubator/pivot/trunk/demos/www/kitchen_sink.jnlp
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/kitchen_sink.jnlp?rev=824647&r1=824646&r2=824647&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/kitchen_sink.jnlp (original)
+++ incubator/pivot/trunk/demos/www/kitchen_sink.jnlp Tue Oct 13 09:04:05 2009
@@ -39,7 +39,7 @@
     </information>
 
     <resources>
-<%@ include file="common_properties.jsp" %>
+<%@ include file="common_properties_for_jnlp.jsp" %>
 
         <java version="1.6+" href="http://java.sun.com/products/autodl/j2se" />
 

Added: incubator/pivot/trunk/demos/www/kitchen_sink.signed.jnlp
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/kitchen_sink.signed.jnlp?rev=824647&view=auto
==============================================================================
--- incubator/pivot/trunk/demos/www/kitchen_sink.signed.jnlp (added)
+++ incubator/pivot/trunk/demos/www/kitchen_sink.signed.jnlp Tue Oct 13 09:04:05 2009
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<%
+/*
+ * 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.
+ */
+%>
+
+<%-- @ page language="java" contentType="application/xml; charset=UTF-8" pageEncoding="UTF-8" --%> <%-- Enable this for Page Debugging purposes --%>
+<%@ page language="java" contentType="application/x-java-jnlp-file" pageEncoding="UTF-8" %>
+
+<%@ include file="version.jsp" %>
+<%@ include file="url_utilities.jsp" %>
+
+<jnlp spec="1.6+" codebase="<%= codebase %>" href="<%= href %>">
+    <information>
+        <title>Pivot "Kitchen Sink" Demo - Signed</title>
+        <vendor>Apache Pivot</vendor>
+        <homepage href="http://incubator.apache.org/pivot/"/>
+        <description>
+            Similar to Sun's "Swing Set" demo, this application demonstrates a number of commonly used Pivot components.
+            Note that here are used Pivot signed jars.
+        </description>
+        <offline-allowed/>
+        <shortcut online="false">
+            <desktop/>
+        </shortcut>
+    </information>
+
+    <resources>
+<%@ include file="common_properties_for_jnlp.jsp" %>
+
+        <java version="1.6+" href="http://java.sun.com/products/autodl/j2se" />
+
+        <extension name="pivot-runtime" href="<%= codebase %>pivot-runtime.signed.jnlp" />
+
+        <jar href="lib/pivot-tutorials-<%= version %>.signed.jar" main="true" />
+    </resources>
+
+    <application-desc main-class="org.apache.pivot.wtk.DesktopApplicationContext">
+        <argument>org.apache.pivot.tutorials.KitchenSink</argument>
+        <argument>--width:800</argument>
+        <argument>--height:600</argument>
+        <argument>--center:true</argument>
+    </application-desc>
+    
+    <update check="background" />
+</jnlp>

Modified: incubator/pivot/trunk/demos/www/pivot-runtime.jnlp
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/pivot-runtime.jnlp?rev=824647&r1=824646&r2=824647&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/pivot-runtime.jnlp (original)
+++ incubator/pivot/trunk/demos/www/pivot-runtime.jnlp Tue Oct 13 09:04:05 2009
@@ -41,6 +41,7 @@
         <java version="1.6+" href="http://java.sun.com/products/autodl/j2se" />
 
         <jar href="lib/pivot-core-<%= version %>.jar" />
+        <jar href="lib/pivot-web-<%= version %>.jar" />
         <jar href="lib/pivot-wtk-<%= version %>.jar" />
         <jar href="lib/pivot-wtk-<%= version %>.terra.jar" />
     </resources>

Added: incubator/pivot/trunk/demos/www/pivot-runtime.signed.jnlp
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/pivot-runtime.signed.jnlp?rev=824647&view=auto
==============================================================================
--- incubator/pivot/trunk/demos/www/pivot-runtime.signed.jnlp (added)
+++ incubator/pivot/trunk/demos/www/pivot-runtime.signed.jnlp Tue Oct 13 09:04:05 2009
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<%
+/*
+ * 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.
+ */
+%>
+
+<%-- @ page language="java" contentType="application/xml; charset=UTF-8" pageEncoding="UTF-8" --%> <%-- Enable this for Page Debugging purposes --%>
+<%@ page language="java" contentType="application/x-java-jnlp-file" pageEncoding="UTF-8" %>
+
+<%@ include file="version.jsp" %>
+<%@ include file="url_utilities.jsp" %>
+
+<jnlp spec="1.6+" codebase="<%= codebase %>" href="<%= href %>">
+    <information>
+        <title>Apache Pivot - Runtime</title>
+        <vendor>Apache Pivot</vendor>
+        <homepage href="http://incubator.apache.org/pivot/"/>
+        <description>Pivot Runtime - Standard Libraries - Signed</description>
+        <offline-allowed/>
+    </information>
+
+    <resources>
+        <property name="jnlp.packEnabled"                     value="true" />
+        <property name="sun.awt.noerasebackground"            value="true" />
+        <property name="sun.awt.erasebackgroundonresize=true" value="true" />
+
+        <java version="1.6+" href="http://java.sun.com/products/autodl/j2se" />
+
+        <jar href="lib/pivot-core-<%= version %>.signed.jar" />
+        <jar href="lib/pivot-web-<%= version %>.signed.jar" />
+        <jar href="lib/pivot-wtk-<%= version %>.signed.jar" />
+        <jar href="lib/pivot-wtk-<%= version %>.terra.signed.jar" />
+    </resources>
+
+  <component-desc />
+</jnlp>