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/11/13 16:11:07 UTC

svn commit: r835872 - in /incubator/pivot/trunk/demos/www: index.html web_start.jsp

Author: smartini
Date: Fri Nov 13 15:11:06 2009
New Revision: 835872

URL: http://svn.apache.org/viewvc?rev=835872&view=rev
Log:
add link to XML Viewer jnlp file, and fix some html warnings

Modified:
    incubator/pivot/trunk/demos/www/index.html
    incubator/pivot/trunk/demos/www/web_start.jsp

Modified: incubator/pivot/trunk/demos/www/index.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/index.html?rev=835872&r1=835871&r2=835872&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/index.html (original)
+++ incubator/pivot/trunk/demos/www/index.html Fri Nov 13 15:11:06 2009
@@ -65,85 +65,86 @@
 <h2>Demos</h2>
 <p>This page contains a collection of Pivot demos. All demos require Java 6 or greater.</p>
 <p>Note that the demos listed on this page are all executed within the browser as applets. To
-launch the demos via Java Web Start, click <a href="web_start.jsp">here</a>.
+launch the demos via Java Web Start, click <a href="web_start.jsp">here</a>.</p>
+<hr/>
 
 <h3><a href="kitchen_sink.html">"Kitchen Sink"</a></h3>
 <p>Demonstrates a number of commonly used Pivot components.</p>
 <p><img src="kitchen_sink.png"></p>
-<hr>
+<hr/>
 
 <h3><a href="component_explorer.html">Component Explorer</a></h3>
 <p>Allows a user to browse the properties, styles, and events provided by each standard
 Pivot component.</p>
 <p><img src="component_explorer.png"></p>
-<hr>
+<hr/>
 
 <h3><a href="stock_tracker.html">Stock Tracker</a></h3>
 <p>An example of a simple but practical "real world" application built using
 Pivot. Monitors stock quotes provided by <a href="http://finance.yahoo.com/">Yahoo!
 Finance</a>.</p>
 <p><img src="stock_tracker.png"></p>
-<hr>
+<hr/>
 
 <h3><a href="itunes_search.html">iTunes Search</a></h3>
 <p>Simple application that allows a user to run search queries against the
 iTunes Music Store and presents the results in a table view.</p>
 <p><img src="itunes_search.png"></p>
-<hr>
+<hr/>
 
 <h3><a href="http://ixnay.biz/charts.html">Charting</a> <img src="page_go.png"></h3>
 <p>Demonstrates charting in Pivot using the JFreeChart chart provider (hosted at http://ixnay.biz).</p>
 <p><img src="charts.png"></p>
-<hr>
+<hr/>
 
 <h3><a href="http://www.satelliteconsulting.com/">News Ticker/Slide Show</a> <img src="page_go.png"></h3>
 <p>Demonstrates Pivot used in a real-world context, used to show a news feed
 and a slide show of client logos (hosted at http://www.satelliteconsulting.com).</p>
 <p><img src="sci.png"></p>
-<hr>
+<hr/>
 
 <h3><a href="json_viewer.html">JSON Viewer</a></h3>
 <p>Allows users to visually browse a JSON structure using a TreeView component.</p>
 <p><img src="json_viewer.png"></p>
-<hr>
+<hr/>
 
 <h3><a href="xml_viewer.html">XML Viewer</a></h3>
 <p>Allows users to visually browse an XML document using a TreeView component.</p>
 <p><img src="xml_viewer.png"></p>
-<hr>
+<hr/>
 
 <h3><a href="scripting.html">Scripting</a></h3>
 <p>Simple example of a Pivot application written using JavaScript.</p>
-<hr>
+<hr/>
 
 <h3><a href="file_drag_drop.html">File Drag &amp; Drop</a></h3>
 <p>Demonstrates Pivot's support for drag and drop.</p>
-<hr>
+<hr/>
 
 <h3><a href="table_row_editor.html">Table Row Editor</a></h3>
 <p>Example of a table row editor that uses a "Family Feud"-like flip effect to
 edit rows.</p>
-<hr>
+<hr/>
 
 <h3><a href="animated_clock.html">Animated Clock</a></h3>
 <p>Demonstrates Pivot's MovieView component, which is used to present a clock
 constructed using Pivot's drawing API.</p>
 <p><img src="clock.png"></p>
-<hr>
+<hr/>
 
 <h3><a href="large_data.html">Large Data Sets</a></h3>
 <p>Demonstrates Pivot's ability to handle large data sets of up to 1,000,000
 rows.</p>
-<hr>
+<hr/>
 
 <h3><a href="rss_feed.html">RSS Feed</a></h3>
 <p>Demonstrates how to build a simple RSS client in Pivot.</p>
-<hr>
+<hr/>
 
 <h3><a href="dom_interaction.html">DOM Interaction</a></h3>
 <p>Demonstrates Pivot's support for bi-directional communication between a Pivot
 application and the browser DOM.</p>
-<hr>
+<hr/>
 
 <h3><a href="decorators.html">Decorators</a></h3>
 <p>Demonstrates the use of "decorators" in Pivot. Decorators allow a developer to
@@ -151,18 +152,18 @@
 image effects, etc. This example shows a window with a reflection decorator and
 a frame with a fade decorator.</p>
 <p><img src="decorators.png"></p>
-<hr>
+<hr/>
 
 <h3><a href="fixed_column_table.html">Fixed Column Table</a></h3>
 <p>Explains how to create a table with fixed columns in Pivot. Fixed columns are
 handy when displaying tables with many columns.</p>
-<hr>
+<hr/>
 
 <h3><a href="multiselect.html">Multiple Selection</a></h3>
 <p>Demonstrates Pivot's use of ranges to maintain selection state in a ListView
 component. This is more efficient than maintaining a list of individual
 selected indexes.</p>
-<hr>
+<hr/>
 
 </body>
 </html>

Modified: incubator/pivot/trunk/demos/www/web_start.jsp
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/web_start.jsp?rev=835872&r1=835871&r2=835872&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/web_start.jsp (original)
+++ incubator/pivot/trunk/demos/www/web_start.jsp Fri Nov 13 15:11:06 2009
@@ -70,7 +70,7 @@
 <body>
 <h2>Web Start Demos</h2>
 <p>This page contains a collection of Pivot demos. All demos require Java 6 or greater.</p>
-<p>The demos listed on this page are all executed via Java Web Start. To launch the demos within the browser as applets, click <a href="index.html">here</a>.
+<p>The demos listed on this page are all executed via Java Web Start. To launch the demos within the browser as applets, click <a href="index.html">here</a>.</p>
 
 <h3>"Kitchen Sink"</h3>
 <p>Demonstrates a number of commonly used Pivot components.</p>
@@ -101,7 +101,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>Component Explorer</h3>
 <p>Allows a user to browse the properties, styles, and events provided by each standard
@@ -119,7 +119,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>Stock Tracker</h3>
 <p>An example of a simple but practical "real world" application built using
@@ -145,7 +145,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>iTunes Search</h3>
 <p>Simple application that allows a user to run search queries against the
@@ -163,7 +163,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>JSON Viewer</h3>
 <p>Allows users to visually browse a JSON structure using a TreeView component.</p>
@@ -180,7 +180,24 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
+
+<h3>XML Viewer</h3>
+<p>Allows users to visually browse an XML document using a TreeView component.</p>
+<p><img src="xml_viewer.png"></p>
+
+<table>
+<tr>
+<td>
+Signed:
+<script>
+var url = "<%= codebase %>xml_viewer.jnlp";
+deployJava.createWebStartLaunchButton(url, '1.6');
+</script>
+</td>
+</tr>
+</table>
+<hr/>
 
 <h3>Scripting</h3>
 <p>Simple example of a Pivot application written using JavaScript.</p>
@@ -196,7 +213,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>File Drag &amp; Drop</h3>
 <p>Demonstrates Pivot's support for drag and drop.</p>
@@ -212,7 +229,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>Table Row Editor</h3>
 <p>Example of a table row editor that uses a "Family Feud"-like flip effect to
@@ -229,7 +246,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>Animated Clock</h3>
 <p>Demonstrates Pivot's MovieView component, which is used to present a clock
@@ -247,7 +264,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>Large Data Sets</h3>
 <p>Demonstrates Pivot's ability to handle large data sets of up to 1,000,000
@@ -264,7 +281,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>RSS Feed</h3>
 <p>Demonstrates how to build a simple RSS client in Pivot.</p>
@@ -280,7 +297,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>Decorators</h3>
 <p>Demonstrates the use of "decorators" in Pivot. Decorators allow a developer to
@@ -300,7 +317,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>Fixed Column Table</h3>
 <p>Explains how to create a table with fixed columns in Pivot. Fixed columns are
@@ -317,7 +334,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 <h3>Multiple Selection</h3>
 <p>Demonstrates Pivot's use of ranges to maintain selection state in a ListView
@@ -335,7 +352,7 @@
 </td>
 </tr>
 </table>
-<hr>
+<hr/>
 
 </body>
 </html>