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 2012/01/19 01:51:42 UTC

svn commit: r1233143 [2/47] - in /pivot/site/trunk/deploy: ./ 2.0.1/ 2.0.1/docs/ 2.0.1/docs/api/ demos/ tutorials/

Modified: pivot/site/trunk/deploy/demos/file-drag-drop.html
URL: http://svn.apache.org/viewvc/pivot/site/trunk/deploy/demos/file-drag-drop.html?rev=1233143&r1=1233142&r2=1233143&view=diff
==============================================================================
--- pivot/site/trunk/deploy/demos/file-drag-drop.html (original)
+++ pivot/site/trunk/deploy/demos/file-drag-drop.html Thu Jan 19 00:51:39 2012
@@ -1,4 +1,4 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <!--
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
@@ -14,69 +14,71 @@ distributed under the License is distrib
 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 xmlns="http://www.w3.org/1999/xhtml"><head><meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /><title>File Drag &amp; Drop | Apache Pivot</title><link xmlns="" type="text/css" rel="stylesheet" href="/styles/pivot.css"><script xmlns="http://www.w3.org/1999/xhtml" type="text/javascript">
-                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
-                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
-                </script><script type="text/javascript">
-                try {
-                var pageTracker = _gat._getTracker("UA-7977275-3");
-                pageTracker._trackPageview();
-                } catch(err) {}</script></head><body><div xmlns="" id="wrapper"><div id="main"><div id="header"><div class="logo"><a href="/index.html"><img title="Apache Pivot Homepage" alt="Apache Pivot" src="/images/logo.png"></a></div><div class="tagline"><img style="visibility:hidden" alt="Rich Internet Applications in Java" src="/images/tagline.png"></div><ul class="navi"><li><a href="/demos/">Demos</a></li><li><a href="/download.cgi#2.0">Download</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/get-involved.html">Get Involved</a></li><li><a href="/about.html">About</a></li></ul></div><div class="group" id="contentBase"><h1>File Drag &amp; Drop</h1><ul class="naviLeft"><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/stock-tracker.html">Stock Tracker</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="/demos/itunes-search.html">iTunes Search</a></li><li
 ><a href="/demos/suggest.html">Suggestion Popups</a></li><li><a href="/demos/color-scheme-builder.html">Color Scheme Builder</a></li><li><a href="/demos/xml-viewer.html">XML Viewer</a></li><li><a href="/demos/json-viewer.html">JSON Viewer</a></li><li><a href="/demos/decorators.html">Decorators</a></li><li><a href="/demos/table-row-editor.html">Table Row Editor</a></li><li><a href="/demos/file-drag-drop.html">File Drag &amp; Drop</a></li><li><a href="/demos/large-data.html">Large Data Sets</a></li><li><a href="/demos/rss-feed.html">RSS Feed</a></li><li><a href="/demos/dom-interaction.html">DOM Interaction</a></li><li><a href="/demos/fixed-column-table.html">Fixed-Column Table</a></li><li><a href="/demos/multiselect.html">Multiple Selection</a></li><li><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new">Charting</a></li><li><a href="http://www.satelliteconsulting.com/" target="_new">News Ticker/Slide Show</a></li></ul><div class="content">
-        <p>
-            This application demonstrates Pivot's support for drag and drop. Users can drag files
-            from the desktop or local file system into the applet for upload to a web or other
-            server.
-        </p>
-        <script src="http://java.com/js/deployJava.js" type="text/javascript"></script><script type="text/javascript">
-
-            var attributes = {
-                code:"org.apache.pivot.wtk.BrowserApplicationContext$HostApplet",
-                width:"380",
-                height:"260"
-            };
-
-
-
-
-
-            var libraries = [];
-            libraries.push("/lib/pivot-core-2.0.signed.jar");
-                libraries.push("/lib/pivot-wtk-2.0.signed.jar");
-                libraries.push("/lib/pivot-wtk-terra-2.0.signed.jar");
-                libraries.push("/lib/pivot-demos-2.0.signed.jar");
-
-                    libraries.push("/lib/svgSalamander-tiny.signed.jar");
-
-
-            attributes.archive = libraries.join(",");
-
-
-            var parameters = {
-                codebase_lookup:false,
-                application_class_name:'org.apache.pivot.wtk.ScriptApplication'
-            };
-
-
-            var javaArguments = ["-Dsun.awt.noerasebackground=true",
-                "-Dsun.awt.erasebackgroundonresize=true"];
-
-
-
-            parameters.java_arguments = javaArguments.join(" ");
-
-
-
-                var startupProperties = [];
-
-                    startupProperties.push("src=/org/apache/pivot/demos/dnd/file_drop_target_demo.bxml");
-
-                parameters.startup_properties = startupProperties.join("&");
-
-
-            deployJava.runApplet(attributes, parameters, "1.6");
-        </script>
-        <p>
-            Note that the application doesn't actually perform the upload - it merely serves as a
-            demonstration of Pivot's ability to interact with the native OS.
-        </p>
-    </div></div></div><div class="group" id="footer"><div class="footerLogo">Copyright (c) 1999-2011<br>The Apache Software Foundation.</div><div class="footerLinks"><ul class="footerMenuGr"><li><strong>Demos</strong><ul><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new">Charting</a></li><li><a href="/demos/">More Demos</a></li></ul></li><li><strong>Documentation</strong><ul><li><a href="/getting-started.html">Getting Started</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/faq.html">FAQ</a></li><li><a href="/2.0/docs/api/">Javadoc (2.0)</a></li></ul></li><li><strong>Get Involved</strong><ul><li><a href="/svn.html">SVN Repositories</a></li><li><a href="/lists.html">Mailing Lists</a></li><li><a href="http://issues.apache.org/jira/browse/PIVOT">Bug Database</a></li><li><a h
 ref="http://cwiki.apache.org/PIVOT/">Wiki</a></li></ul></li><li><strong>Related</strong><ul><li><a href="http://code.google.com/p/pivot-jfree/">JFreeChart Provider</a></li></ul></li><li><strong>About</strong><ul><li><a href="/who-we-are.html">Who We Are</a></li><li><a href="/contact.html">Contact</a></li><li><a href="/news.html">News</a></li><li><a href="/legal.html">Legal/License</a></li></ul></li></ul></div></div></div></body></html>
\ No newline at end of file
+--><html xmlns="http://www.w3.org/1999/xhtml"><head><META http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>File Drag &amp; Drop | Apache Pivot</title><link href="/styles/pivot.css" rel="stylesheet" type="text/css"><script type="text/javascript">
+                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+                </script><script type="text/javascript">
+                try {
+                var pageTracker = _gat._getTracker("UA-7977275-3");
+                pageTracker._trackPageview();
+                } catch(err) {}</script></head><body><div id="wrapper"><div id="main"><div id="header"><div xmlns="" class="logo"><a href="/index.html"><img src="/images/logo.png" alt="Apache Pivot" title="Apache Pivot Homepage"></a></div><div class="tagline"><img src="/images/tagline.png" alt="Rich Internet Applications in Java" style="visibility:hidden"></div><ul class="navi"><li><a href="/demos/">Demos</a></li><li><a href="/download.cgi#2.0.1">Download</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/get-involved.html">Get Involved</a></li><li><a href="/about.html">About</a></li></ul></div><div id="contentBase" class="group"><h1>File Drag &amp; Drop</h1><ul class="naviLeft"><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/stock-tracker.html">Stock Tracker</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="/demos/bxml-explorer.html" target="_new">BXML Expl
 orer</a></li><li><a href="/demos/itunes-search.html">iTunes Search</a></li><li><a href="/demos/suggest.html">Suggestion Popups</a></li><li><a href="/demos/color-scheme-builder.html">Color Scheme Builder</a></li><li><a href="/demos/xml-viewer.html">XML Viewer</a></li><li><a href="/demos/json-viewer.html">JSON Viewer</a></li><li><a href="/demos/decorators.html">Decorators</a></li><li><a href="/demos/table-row-editor.html">Table Row Editor</a></li><li><a href="/demos/file-drag-drop.html">File Drag &amp; Drop</a></li><li><a href="/demos/large-data.html">Large Data Sets</a></li><li><a href="/demos/rss-feed.html">RSS Feed</a></li><li><a href="/demos/dom-interaction.html">DOM Interaction</a></li><li><a href="/demos/fixed-column-table.html">Fixed-Column Table</a></li><li><a href="/demos/multiselect.html">Multiple Selection</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/Other+Demos" target="_new">Charting</a></li></ul><div class="content">
+        <p>
+            This application demonstrates Pivot's support for drag and drop. Users can drag files
+            from the desktop or local file system into the applet for upload to a web or other
+            server.
+        </p>
+        <script type="text/javascript" src="http://java.com/js/deployJava.js"></script><script type="text/javascript">
+            
+            var attributes = {
+                code:"org.apache.pivot.wtk.BrowserApplicationContext$HostApplet",
+                width:"380",
+                height:"260"
+            };
+
+            
+            
+
+            
+            var libraries = [];
+            libraries.push("/lib/pivot-core-2.0.1.signed.jar");
+                libraries.push("/lib/pivot-wtk-2.0.1.signed.jar");
+                libraries.push("/lib/pivot-wtk-terra-2.0.1.signed.jar");
+                libraries.push("/lib/pivot-demos-2.0.1.signed.jar");
+                
+                    libraries.push("/lib/svgSalamander-tiny.signed.jar");
+                
+
+            attributes.archive = libraries.join(",");
+
+            
+            var parameters = {
+                codebase_lookup:false,
+                application_class_name:'org.apache.pivot.wtk.ScriptApplication'
+            };
+
+            
+            var javaArguments = ["-Dsun.awt.noerasebackground=true",
+                "-Dsun.awt.erasebackgroundonresize=true"];
+
+            
+
+            parameters.java_arguments = javaArguments.join(" ");
+
+            
+            
+                var startupProperties = [];
+                
+                    startupProperties.push("src=/org/apache/pivot/demos/dnd/file_drop_target_demo.bxml");
+                
+                parameters.startup_properties = startupProperties.join("&");
+            
+
+            deployJava.runApplet(attributes, parameters, "1.6");
+        </script>
+        <p>
+            Note that the application doesn't actually perform the upload - it merely serves as a
+            demonstration of Pivot's ability to interact with the native OS.
+        </p>
+    </div></div></div><div id="footer" class="group"><div class="footerLogo">Copyright (c) 1999-2012<br>The Apache Software Foundation.</div><div class="footerLinks"><ul class="footerMenuGr"><li><strong>Demos</strong><ul><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/Other+Demos" target="_new">Charting</a></li><li><a href="/demos/">More Demos</a></li></ul></li><li><strong>Documentation</strong><ul><li><a href="/getting-started.html">Getting Started</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/faq.html">FAQ</a></li><li><a href="/2.0.1/docs/api/">Javadoc (2.0.1)</a></li></ul></li><li><strong>Get Involved</strong><ul><li><a href="/svn.html">SVN Repositories</a></li><li><a href="/lists.html">Mailing Lists</a></li><li><a href="http://issues.apache.org/jira/browse/PIVOT">Bug Database</a>
 </li><li><a href="http://cwiki.apache.org/PIVOT/">Wiki</a></li></ul></li><li><strong>Related</strong><ul><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-jfree/">JFreeChart Provider</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-common/">Pivot-Common</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-contrib/">Pivot-Contrib</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-multilang/">Pivot-Multilang</a></li></ul></li><li><strong>About</strong><ul><li><a href="/who-we-are.html">Who We Are</a></li><li><a href="/contact.html">Contact</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/News">News</a></li><li><a href="/legal.html">Legal/License</a></li></ul></li></ul></div><div class="footerLinks">
+                	Apache Pivot is a trademark of the Apache Software Foundation
+                </div></div></div></body></html>
\ No newline at end of file

Modified: pivot/site/trunk/deploy/demos/fixed-column-table.html
URL: http://svn.apache.org/viewvc/pivot/site/trunk/deploy/demos/fixed-column-table.html?rev=1233143&r1=1233142&r2=1233143&view=diff
==============================================================================
--- pivot/site/trunk/deploy/demos/fixed-column-table.html (original)
+++ pivot/site/trunk/deploy/demos/fixed-column-table.html Thu Jan 19 00:51:39 2012
@@ -1,4 +1,4 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <!--
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
@@ -14,64 +14,66 @@ distributed under the License is distrib
 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 xmlns="http://www.w3.org/1999/xhtml"><head><meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /><title>Fixed-Column Table | Apache Pivot</title><link xmlns="" type="text/css" rel="stylesheet" href="/styles/pivot.css"><script xmlns="http://www.w3.org/1999/xhtml" type="text/javascript">
-                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
-                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
-                </script><script type="text/javascript">
-                try {
-                var pageTracker = _gat._getTracker("UA-7977275-3");
-                pageTracker._trackPageview();
-                } catch(err) {}</script></head><body><div xmlns="" id="wrapper"><div id="main"><div id="header"><div class="logo"><a href="/index.html"><img title="Apache Pivot Homepage" alt="Apache Pivot" src="/images/logo.png"></a></div><div class="tagline"><img style="visibility:hidden" alt="Rich Internet Applications in Java" src="/images/tagline.png"></div><ul class="navi"><li><a href="/demos/">Demos</a></li><li><a href="/download.cgi#2.0">Download</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/get-involved.html">Get Involved</a></li><li><a href="/about.html">About</a></li></ul></div><div class="group" id="contentBase"><h1>Fixed-Column Table</h1><ul class="naviLeft"><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/stock-tracker.html">Stock Tracker</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="/demos/itunes-search.html">iTunes Search</a></li><li><
 a href="/demos/suggest.html">Suggestion Popups</a></li><li><a href="/demos/color-scheme-builder.html">Color Scheme Builder</a></li><li><a href="/demos/xml-viewer.html">XML Viewer</a></li><li><a href="/demos/json-viewer.html">JSON Viewer</a></li><li><a href="/demos/decorators.html">Decorators</a></li><li><a href="/demos/table-row-editor.html">Table Row Editor</a></li><li><a href="/demos/file-drag-drop.html">File Drag &amp; Drop</a></li><li><a href="/demos/large-data.html">Large Data Sets</a></li><li><a href="/demos/rss-feed.html">RSS Feed</a></li><li><a href="/demos/dom-interaction.html">DOM Interaction</a></li><li><a href="/demos/fixed-column-table.html">Fixed-Column Table</a></li><li><a href="/demos/multiselect.html">Multiple Selection</a></li><li><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new">Charting</a></li><li><a href="http://www.satelliteconsulting.com/" target="_new">News Ticker/Slide Show</a></li></ul><div class="content">
-        <p>
-            Demonstrates how to create a table with fixed columns in Pivot. Fixed columns are
-            handy when displaying tables with many columns.
-        </p>
-        <script src="http://java.com/js/deployJava.js" type="text/javascript"></script><script type="text/javascript">
-
-            var attributes = {
-                code:"org.apache.pivot.wtk.BrowserApplicationContext$HostApplet",
-                width:"300",
-                height:"170"
-            };
-
-
-
-
-
-            var libraries = [];
-            libraries.push("/lib/pivot-core-2.0.jar");
-                libraries.push("/lib/pivot-wtk-2.0.jar");
-                libraries.push("/lib/pivot-wtk-terra-2.0.jar");
-                libraries.push("/lib/pivot-demos-2.0.jar");
-
-                    libraries.push("/lib/svgSalamander-tiny.jar");
-
-
-            attributes.archive = libraries.join(",");
-
-
-            var parameters = {
-                codebase_lookup:false,
-                application_class_name:'org.apache.pivot.wtk.ScriptApplication'
-            };
-
-
-            var javaArguments = ["-Dsun.awt.noerasebackground=true",
-                "-Dsun.awt.erasebackgroundonresize=true"];
-
-
-
-            parameters.java_arguments = javaArguments.join(" ");
-
-
-
-                var startupProperties = [];
-
-                    startupProperties.push("src=/org/apache/pivot/demos/tables/fixed_column_table_demo.bxml");
-
-                parameters.startup_properties = startupProperties.join("&");
-
-
-            deployJava.runApplet(attributes, parameters, "1.6");
-        </script>
-    </div></div></div><div class="group" id="footer"><div class="footerLogo">Copyright (c) 1999-2011<br>The Apache Software Foundation.</div><div class="footerLinks"><ul class="footerMenuGr"><li><strong>Demos</strong><ul><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new">Charting</a></li><li><a href="/demos/">More Demos</a></li></ul></li><li><strong>Documentation</strong><ul><li><a href="/getting-started.html">Getting Started</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/faq.html">FAQ</a></li><li><a href="/2.0/docs/api/">Javadoc (2.0)</a></li></ul></li><li><strong>Get Involved</strong><ul><li><a href="/svn.html">SVN Repositories</a></li><li><a href="/lists.html">Mailing Lists</a></li><li><a href="http://issues.apache.org/jira/browse/PIVOT">Bug Database</a></li><li><a h
 ref="http://cwiki.apache.org/PIVOT/">Wiki</a></li></ul></li><li><strong>Related</strong><ul><li><a href="http://code.google.com/p/pivot-jfree/">JFreeChart Provider</a></li></ul></li><li><strong>About</strong><ul><li><a href="/who-we-are.html">Who We Are</a></li><li><a href="/contact.html">Contact</a></li><li><a href="/news.html">News</a></li><li><a href="/legal.html">Legal/License</a></li></ul></li></ul></div></div></div></body></html>
\ No newline at end of file
+--><html xmlns="http://www.w3.org/1999/xhtml"><head><META http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Fixed-Column Table | Apache Pivot</title><link href="/styles/pivot.css" rel="stylesheet" type="text/css"><script type="text/javascript">
+                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+                </script><script type="text/javascript">
+                try {
+                var pageTracker = _gat._getTracker("UA-7977275-3");
+                pageTracker._trackPageview();
+                } catch(err) {}</script></head><body><div id="wrapper"><div id="main"><div id="header"><div xmlns="" class="logo"><a href="/index.html"><img src="/images/logo.png" alt="Apache Pivot" title="Apache Pivot Homepage"></a></div><div class="tagline"><img src="/images/tagline.png" alt="Rich Internet Applications in Java" style="visibility:hidden"></div><ul class="navi"><li><a href="/demos/">Demos</a></li><li><a href="/download.cgi#2.0.1">Download</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/get-involved.html">Get Involved</a></li><li><a href="/about.html">About</a></li></ul></div><div id="contentBase" class="group"><h1>Fixed-Column Table</h1><ul class="naviLeft"><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/stock-tracker.html">Stock Tracker</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="/demos/bxml-explorer.html" target="_new">BXML Explor
 er</a></li><li><a href="/demos/itunes-search.html">iTunes Search</a></li><li><a href="/demos/suggest.html">Suggestion Popups</a></li><li><a href="/demos/color-scheme-builder.html">Color Scheme Builder</a></li><li><a href="/demos/xml-viewer.html">XML Viewer</a></li><li><a href="/demos/json-viewer.html">JSON Viewer</a></li><li><a href="/demos/decorators.html">Decorators</a></li><li><a href="/demos/table-row-editor.html">Table Row Editor</a></li><li><a href="/demos/file-drag-drop.html">File Drag &amp; Drop</a></li><li><a href="/demos/large-data.html">Large Data Sets</a></li><li><a href="/demos/rss-feed.html">RSS Feed</a></li><li><a href="/demos/dom-interaction.html">DOM Interaction</a></li><li><a href="/demos/fixed-column-table.html">Fixed-Column Table</a></li><li><a href="/demos/multiselect.html">Multiple Selection</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/Other+Demos" target="_new">Charting</a></li></ul><div class="content">
+        <p>
+            Demonstrates how to create a table with fixed columns in Pivot. Fixed columns are
+            handy when displaying tables with many columns.
+        </p>
+        <script type="text/javascript" src="http://java.com/js/deployJava.js"></script><script type="text/javascript">
+            
+            var attributes = {
+                code:"org.apache.pivot.wtk.BrowserApplicationContext$HostApplet",
+                width:"300",
+                height:"170"
+            };
+
+            
+            
+
+            
+            var libraries = [];
+            libraries.push("/lib/pivot-core-2.0.1.jar");
+                libraries.push("/lib/pivot-wtk-2.0.1.jar");
+                libraries.push("/lib/pivot-wtk-terra-2.0.1.jar");
+                libraries.push("/lib/pivot-demos-2.0.1.jar");
+                
+                    libraries.push("/lib/svgSalamander-tiny.jar");
+                
+
+            attributes.archive = libraries.join(",");
+
+            
+            var parameters = {
+                codebase_lookup:false,
+                application_class_name:'org.apache.pivot.wtk.ScriptApplication'
+            };
+
+            
+            var javaArguments = ["-Dsun.awt.noerasebackground=true",
+                "-Dsun.awt.erasebackgroundonresize=true"];
+
+            
+
+            parameters.java_arguments = javaArguments.join(" ");
+
+            
+            
+                var startupProperties = [];
+                
+                    startupProperties.push("src=/org/apache/pivot/demos/tables/fixed_column_table_demo.bxml");
+                
+                parameters.startup_properties = startupProperties.join("&");
+            
+
+            deployJava.runApplet(attributes, parameters, "1.6");
+        </script>
+    </div></div></div><div id="footer" class="group"><div class="footerLogo">Copyright (c) 1999-2012<br>The Apache Software Foundation.</div><div class="footerLinks"><ul class="footerMenuGr"><li><strong>Demos</strong><ul><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/Other+Demos" target="_new">Charting</a></li><li><a href="/demos/">More Demos</a></li></ul></li><li><strong>Documentation</strong><ul><li><a href="/getting-started.html">Getting Started</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/faq.html">FAQ</a></li><li><a href="/2.0.1/docs/api/">Javadoc (2.0.1)</a></li></ul></li><li><strong>Get Involved</strong><ul><li><a href="/svn.html">SVN Repositories</a></li><li><a href="/lists.html">Mailing Lists</a></li><li><a href="http://issues.apache.org/jira/browse/PIVOT">Bug Database</a>
 </li><li><a href="http://cwiki.apache.org/PIVOT/">Wiki</a></li></ul></li><li><strong>Related</strong><ul><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-jfree/">JFreeChart Provider</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-common/">Pivot-Common</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-contrib/">Pivot-Contrib</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-multilang/">Pivot-Multilang</a></li></ul></li><li><strong>About</strong><ul><li><a href="/who-we-are.html">Who We Are</a></li><li><a href="/contact.html">Contact</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/News">News</a></li><li><a href="/legal.html">Legal/License</a></li></ul></li></ul></div><div class="footerLinks">
+                	Apache Pivot is a trademark of the Apache Software Foundation
+                </div></div></div></body></html>
\ No newline at end of file

Modified: pivot/site/trunk/deploy/demos/index.html
URL: http://svn.apache.org/viewvc/pivot/site/trunk/deploy/demos/index.html?rev=1233143&r1=1233142&r2=1233143&view=diff
==============================================================================
--- pivot/site/trunk/deploy/demos/index.html (original)
+++ pivot/site/trunk/deploy/demos/index.html Thu Jan 19 00:51:39 2012
@@ -1,4 +1,4 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <!--
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
@@ -14,55 +14,58 @@ distributed under the License is distrib
 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 xmlns="http://www.w3.org/1999/xhtml"><head><meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /><title>Demos | Apache Pivot</title><link xmlns="" type="text/css" rel="stylesheet" href="/styles/pivot.css"><script xmlns="http://www.w3.org/1999/xhtml" type="text/javascript">
-                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
-                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
-                </script><script type="text/javascript">
-                try {
-                var pageTracker = _gat._getTracker("UA-7977275-3");
-                pageTracker._trackPageview();
-                } catch(err) {}</script></head><body><div xmlns="" id="wrapper"><div id="main"><div id="header"><div class="logo"><a href="/index.html"><img title="Apache Pivot Homepage" alt="Apache Pivot" src="/images/logo.png"></a></div><div class="tagline"><img style="visibility:hidden" alt="Rich Internet Applications in Java" src="/images/tagline.png"></div><ul class="navi"><li><a href="/demos/">Demos</a></li><li><a href="/download.cgi#2.0">Download</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/get-involved.html">Get Involved</a></li><li><a href="/about.html">About</a></li></ul></div><div class="group" id="contentBase"><h1>Demos</h1><ul class="naviLeft"><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/stock-tracker.html">Stock Tracker</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="/demos/itunes-search.html">iTunes Search</a></li><li><a href="/demo
 s/suggest.html">Suggestion Popups</a></li><li><a href="/demos/color-scheme-builder.html">Color Scheme Builder</a></li><li><a href="/demos/xml-viewer.html">XML Viewer</a></li><li><a href="/demos/json-viewer.html">JSON Viewer</a></li><li><a href="/demos/decorators.html">Decorators</a></li><li><a href="/demos/table-row-editor.html">Table Row Editor</a></li><li><a href="/demos/file-drag-drop.html">File Drag &amp; Drop</a></li><li><a href="/demos/large-data.html">Large Data Sets</a></li><li><a href="/demos/rss-feed.html">RSS Feed</a></li><li><a href="/demos/dom-interaction.html">DOM Interaction</a></li><li><a href="/demos/fixed-column-table.html">Fixed-Column Table</a></li><li><a href="/demos/multiselect.html">Multiple Selection</a></li><li><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new">Charting</a></li><li><a href="http://www.satelliteconsulting.com/" target="_new">News Ticker/Slide Show</a></li></ul><div class="content"><ul class="featuredDemos"><p 
 style="padding-bottom:10px;"><em>
-                    Note: all demos require <a href="http://www.java.com/">Java 6</a> or greater.
-                </em></p><li><h2>"Kitchen Sink"</h2><div class="featuredDemosBox"><p class="featuredDemoImg"><a href="/demos/kitchen-sink.html" target="_new"><img alt="&quot;Kitchen Sink&quot;" src="/images/demos_feat_kitchen.jpg"></a></p><p class="featuredDemoDesc">
-            Demonstrates a number of commonly used Pivot components.
-        </p><p class="featuredDemoView"><a href="/demos/kitchen-sink.html" target="_new">View</a></p></div></li><li><h2>Stock Tracker</h2><div class="featuredDemosBox"><p class="featuredDemoImg"><a href="/demos/stock-tracker.html"><img alt="Stock Tracker" src="/images/demos_feat_stock.jpg"></a></p><p class="featuredDemoDesc">
-            An example of a simple but practical "real world" Pivot application. It monitors stock
-            quotes provided by Yahoo! Finance.
-        </p><p class="featuredDemoView"><a href="/demos/stock-tracker.html">View</a></p></div></li><li><h2>iTunes Search</h2><div class="featuredDemosBox"><p class="featuredDemoImg"><a href="/demos/itunes-search.html"><img alt="iTunes Search" src="/images/demos_feat_itunes.jpg"></a></p><p class="featuredDemoDesc">
-            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 class="featuredDemoView"><a href="/demos/itunes-search.html">View</a></p></div></li><li><h2>Charting</h2><div class="featuredDemosBox"><p class="featuredDemoImg"><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new"><img alt="Charting" src="/images/demos_feat_chart.jpg"></a></p><p class="featuredDemoDesc">
-                    Demonstrates charting in Pivot using the JFreeChart chart provider (hosted at
-                    http://ixnay.biz/).
-                </p><p class="featuredDemoView"><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new">View</a></p></div></li><li style="margin-right:0;"><h2>Decorators</h2><div class="featuredDemosBox"><p class="featuredDemoImg"><a href="/demos/decorators.html"><img alt="Decorators" src="/images/demos_feat_deco.jpg"></a></p><p class="featuredDemoDesc">
-            Decorators allow a developer to attach additional presentation to components, such as
-            drop shadows, reflections, image effects, etc.
-        </p><p class="featuredDemoView"><a href="/demos/decorators.html">View</a></p></div></li></ul><h2>Other Demos</h2><ul class="otherDemos"><li><strong>Component Explorer</strong><em>
-            Allows interaction with the properties and styles of the stock Pivot components.
-        </em><div class="btnView"><a href="/demos/component-explorer.html" target="_new"><span>View</span></a></div></li><li><strong>Suggestion Popups</strong><em>
-            Demonstrates Pivot's SuggestionPopup class by integrating it with Yahoo!
-            search.
-        </em><div class="btnView"><a href="/demos/suggest.html"><span>View</span></a></div></li><li><strong>Color Scheme Builder</strong><em>
-            Allows users to create and preview custom color schemes for Pivot applications.
-        </em><div class="btnView"><a href="/demos/color-scheme-builder.html"><span>View</span></a></div></li><li><strong>XML Viewer</strong><em>
-            Allows users to visually browse an XML document using a TreeView component.
-        </em><div class="btnView"><a href="/demos/xml-viewer.html"><span>View</span></a></div></li><li><strong>JSON Viewer</strong><em>
-            Allows users to visually browse a JSON structure using a TreeView component.
-        </em><div class="btnView"><a href="/demos/json-viewer.html"><span>View</span></a></div></li><li><strong>Table Row Editor</strong><em>
-            An example of a table row editor that uses a slide effect to edit rows.
-        </em><div class="btnView"><a href="/demos/table-row-editor.html"><span>View</span></a></div></li><li><strong>File Drag &amp; Drop</strong><em>
-            Demonstrates Pivot's support for drag and drop.
-        </em><div class="btnView"><a href="/demos/file-drag-drop.html"><span>View</span></a></div></li><li><strong>Large Data Sets</strong><em>
-            Demonstrates Pivot's ability to handle large data sets of up to 1,000,000 rows.
-        </em><div class="btnView"><a href="/demos/large-data.html"><span>View</span></a></div></li><li><strong>RSS Feed</strong><em>
-            Demonstrates how to build a simple RSS client in Pivot.
-        </em><div class="btnView"><a href="/demos/rss-feed.html"><span>View</span></a></div></li><li><strong>DOM Interaction</strong><em>
-            Demonstrates Pivot's support for bi-directional communication between a Pivot
-            application and the browser DOM.
-        </em><div class="btnView"><a href="/demos/dom-interaction.html"><span>View</span></a></div></li><li><strong>Fixed-Column Table</strong><em>
-            Explains how to create a table with fixed columns in Pivot. Fixed columns are handy
-            when displaying tables with many columns.
-        </em><div class="btnView"><a href="/demos/fixed-column-table.html"><span>View</span></a></div></li><li><strong>Multiple Selection</strong><em>
-            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.
-        </em><div class="btnView"><a href="/demos/multiselect.html"><span>View</span></a></div></li></ul></div></div></div><div class="group" id="footer"><div class="footerLogo">Copyright (c) 1999-2011<br>The Apache Software Foundation.</div><div class="footerLinks"><ul class="footerMenuGr"><li><strong>Demos</strong><ul><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new">Charting</a></li><li><a href="/demos/">More Demos</a></li></ul></li><li><strong>Documentation</strong><ul><li><a href="/getting-started.html">Getting Started</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/faq.html">FAQ</a></li><li><a href="/2.0/docs/api/">Javadoc (2.0)</a></li></ul></li><li><strong>Get Involved</strong><ul><li><a href="/svn.html">SVN Repositories</a></li><li><a href="/lists.html">Mailing
  Lists</a></li><li><a href="http://issues.apache.org/jira/browse/PIVOT">Bug Database</a></li><li><a href="http://cwiki.apache.org/PIVOT/">Wiki</a></li></ul></li><li><strong>Related</strong><ul><li><a href="http://code.google.com/p/pivot-jfree/">JFreeChart Provider</a></li></ul></li><li><strong>About</strong><ul><li><a href="/who-we-are.html">Who We Are</a></li><li><a href="/contact.html">Contact</a></li><li><a href="/news.html">News</a></li><li><a href="/legal.html">Legal/License</a></li></ul></li></ul></div></div></div></body></html>
\ No newline at end of file
+--><html xmlns="http://www.w3.org/1999/xhtml"><head><META http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Demos | Apache Pivot</title><link href="/styles/pivot.css" rel="stylesheet" type="text/css"><script type="text/javascript">
+                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+                </script><script type="text/javascript">
+                try {
+                var pageTracker = _gat._getTracker("UA-7977275-3");
+                pageTracker._trackPageview();
+                } catch(err) {}</script></head><body><div id="wrapper"><div id="main"><div id="header"><div xmlns="" class="logo"><a href="/index.html"><img src="/images/logo.png" alt="Apache Pivot" title="Apache Pivot Homepage"></a></div><div class="tagline"><img src="/images/tagline.png" alt="Rich Internet Applications in Java" style="visibility:hidden"></div><ul class="navi"><li><a href="/demos/">Demos</a></li><li><a href="/download.cgi#2.0.1">Download</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/get-involved.html">Get Involved</a></li><li><a href="/about.html">About</a></li></ul></div><div id="contentBase" class="group"><h1>Demos</h1><ul class="naviLeft"><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/stock-tracker.html">Stock Tracker</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="/demos/bxml-explorer.html" target="_new">BXML Explorer</a></li><l
 i><a href="/demos/itunes-search.html">iTunes Search</a></li><li><a href="/demos/suggest.html">Suggestion Popups</a></li><li><a href="/demos/color-scheme-builder.html">Color Scheme Builder</a></li><li><a href="/demos/xml-viewer.html">XML Viewer</a></li><li><a href="/demos/json-viewer.html">JSON Viewer</a></li><li><a href="/demos/decorators.html">Decorators</a></li><li><a href="/demos/table-row-editor.html">Table Row Editor</a></li><li><a href="/demos/file-drag-drop.html">File Drag &amp; Drop</a></li><li><a href="/demos/large-data.html">Large Data Sets</a></li><li><a href="/demos/rss-feed.html">RSS Feed</a></li><li><a href="/demos/dom-interaction.html">DOM Interaction</a></li><li><a href="/demos/fixed-column-table.html">Fixed-Column Table</a></li><li><a href="/demos/multiselect.html">Multiple Selection</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/Other+Demos" target="_new">Charting</a></li></ul><div class="content"><ul class="featuredDemos"><p style="p
 adding-bottom:10px;"><em>
+                    Note: all demos require <a href="http://www.java.com/">Java 6</a> or greater.
+                </em></p><li><h2>"Kitchen Sink"</h2><div class="featuredDemosBox"><p class="featuredDemoImg"><a href="/demos/kitchen-sink.html" target="_new"><img src="/images/demos_feat_kitchen.jpg" alt="&quot;Kitchen Sink&quot;"></a></p><p class="featuredDemoDesc">
+            Demonstrates a number of commonly used Pivot components.
+        </p><p class="featuredDemoView"><a href="/demos/kitchen-sink.html" target="_new">View</a></p></div></li><li><h2>Stock Tracker</h2><div class="featuredDemosBox"><p class="featuredDemoImg"><a href="/demos/stock-tracker.html"><img src="/images/demos_feat_stock.jpg" alt="Stock Tracker"></a></p><p class="featuredDemoDesc">
+            An example of a simple but practical "real world" Pivot application. It monitors stock
+            quotes provided by Yahoo! Finance.
+        </p><p class="featuredDemoView"><a href="/demos/stock-tracker.html">View</a></p></div></li><li><h2>iTunes Search</h2><div class="featuredDemosBox"><p class="featuredDemoImg"><a href="/demos/itunes-search.html"><img src="/images/demos_feat_itunes.jpg" alt="iTunes Search"></a></p><p class="featuredDemoDesc">
+            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 class="featuredDemoView"><a href="/demos/itunes-search.html">View</a></p></div></li><li style="margin-right:0;"><h2>Decorators</h2><div class="featuredDemosBox"><p class="featuredDemoImg"><a href="/demos/decorators.html"><img src="/images/demos_feat_deco.jpg" alt="Decorators"></a></p><p class="featuredDemoDesc">
+            Decorators allow a developer to attach additional presentation to components, such as
+            drop shadows, reflections, image effects, etc.
+        </p><p class="featuredDemoView"><a href="/demos/decorators.html">View</a></p></div></li></ul><h2>Other Demos</h2><ul class="otherDemos"><li><strong>Component Explorer</strong><em>
+            Allows interaction with the properties and styles of the stock Pivot components.
+        </em><div class="btnView"><a href="/demos/component-explorer.html" target="_new"><span>View</span></a></div></li><li><strong>BXML Explorer</strong><em>
+            Does a Graphical preview of bxml files,
+            change (currently from outside)
+            and reload, to see changes immediately.
+        </em><div class="btnView"><a href="/demos/bxml-explorer.html" target="_new"><span>View</span></a></div></li><li><strong>Suggestion Popups</strong><em>
+            Demonstrates Pivot's SuggestionPopup class by integrating it with Yahoo!
+            search.
+        </em><div class="btnView"><a href="/demos/suggest.html"><span>View</span></a></div></li><li><strong>Color Scheme Builder</strong><em>
+            Allows users to create and preview custom color schemes for Pivot applications.
+        </em><div class="btnView"><a href="/demos/color-scheme-builder.html"><span>View</span></a></div></li><li><strong>XML Viewer</strong><em>
+            Allows users to visually browse an XML document using a TreeView component.
+        </em><div class="btnView"><a href="/demos/xml-viewer.html"><span>View</span></a></div></li><li><strong>JSON Viewer</strong><em>
+            Allows users to visually browse a JSON structure using a TreeView component.
+        </em><div class="btnView"><a href="/demos/json-viewer.html"><span>View</span></a></div></li><li><strong>Table Row Editor</strong><em>
+            An example of a table row editor that uses a slide effect to edit rows.
+        </em><div class="btnView"><a href="/demos/table-row-editor.html"><span>View</span></a></div></li><li><strong>File Drag &amp; Drop</strong><em>
+            Demonstrates Pivot's support for drag and drop.
+        </em><div class="btnView"><a href="/demos/file-drag-drop.html"><span>View</span></a></div></li><li><strong>Large Data Sets</strong><em>
+            Demonstrates Pivot's ability to handle large data sets of up to 1,000,000 rows.
+        </em><div class="btnView"><a href="/demos/large-data.html"><span>View</span></a></div></li><li><strong>RSS Feed</strong><em>
+            Demonstrates how to build a simple RSS client in Pivot.
+        </em><div class="btnView"><a href="/demos/rss-feed.html"><span>View</span></a></div></li><li><strong>DOM Interaction</strong><em>
+            Demonstrates Pivot's support for bi-directional communication between a Pivot
+            application and the browser DOM.
+        </em><div class="btnView"><a href="/demos/dom-interaction.html"><span>View</span></a></div></li><li><strong>Fixed-Column Table</strong><em>
+            Explains how to create a table with fixed columns in Pivot. Fixed columns are handy
+            when displaying tables with many columns.
+        </em><div class="btnView"><a href="/demos/fixed-column-table.html"><span>View</span></a></div></li><li><strong>Multiple Selection</strong><em>
+            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.
+        </em><div class="btnView"><a href="/demos/multiselect.html"><span>View</span></a></div></li></ul></div></div></div><div id="footer" class="group"><div class="footerLogo">Copyright (c) 1999-2012<br>The Apache Software Foundation.</div><div class="footerLinks"><ul class="footerMenuGr"><li><strong>Demos</strong><ul><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/Other+Demos" target="_new">Charting</a></li><li><a href="/demos/">More Demos</a></li></ul></li><li><strong>Documentation</strong><ul><li><a href="/getting-started.html">Getting Started</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/faq.html">FAQ</a></li><li><a href="/2.0.1/docs/api/">Javadoc (2.0.1)</a></li></ul></li><li><strong>Get Involved</strong><ul><li><a href="/svn.html">SVN Repositories</a></li><li><a href="/lists.
 html">Mailing Lists</a></li><li><a href="http://issues.apache.org/jira/browse/PIVOT">Bug Database</a></li><li><a href="http://cwiki.apache.org/PIVOT/">Wiki</a></li></ul></li><li><strong>Related</strong><ul><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-jfree/">JFreeChart Provider</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-common/">Pivot-Common</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-contrib/">Pivot-Contrib</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-multilang/">Pivot-Multilang</a></li></ul></li><li><strong>About</strong><ul><li><a href="/who-we-are.html">Who We Are</a></li><li><a href="/contact.html">Contact</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/News">News</a></li><li><a href="/legal.html">Legal/License</a></li></ul></li></ul></div><div class="footerLinks">
+                	Apache Pivot is a trademark of the Apache Software Foundation
+                </div></div></div></body></html>
\ No newline at end of file

Modified: pivot/site/trunk/deploy/demos/itunes-search.html
URL: http://svn.apache.org/viewvc/pivot/site/trunk/deploy/demos/itunes-search.html?rev=1233143&r1=1233142&r2=1233143&view=diff
==============================================================================
--- pivot/site/trunk/deploy/demos/itunes-search.html (original)
+++ pivot/site/trunk/deploy/demos/itunes-search.html Thu Jan 19 00:51:39 2012
@@ -1,4 +1,4 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <!--
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
@@ -14,59 +14,61 @@ distributed under the License is distrib
 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 xmlns="http://www.w3.org/1999/xhtml"><head><meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /><title>iTunes Search | Apache Pivot</title><link xmlns="" type="text/css" rel="stylesheet" href="/styles/pivot.css"><script xmlns="http://www.w3.org/1999/xhtml" type="text/javascript">
-                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
-                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
-                </script><script type="text/javascript">
-                try {
-                var pageTracker = _gat._getTracker("UA-7977275-3");
-                pageTracker._trackPageview();
-                } catch(err) {}</script></head><body><div xmlns="" id="wrapper"><div id="main"><div id="header"><div class="logo"><a href="/index.html"><img title="Apache Pivot Homepage" alt="Apache Pivot" src="/images/logo.png"></a></div><div class="tagline"><img style="visibility:hidden" alt="Rich Internet Applications in Java" src="/images/tagline.png"></div><ul class="navi"><li><a href="/demos/">Demos</a></li><li><a href="/download.cgi#2.0">Download</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/get-involved.html">Get Involved</a></li><li><a href="/about.html">About</a></li></ul></div><div class="group" id="contentBase"><h1>iTunes Search</h1><ul class="naviLeft"><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/stock-tracker.html">Stock Tracker</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="/demos/itunes-search.html">iTunes Search</a></li><li><a hre
 f="/demos/suggest.html">Suggestion Popups</a></li><li><a href="/demos/color-scheme-builder.html">Color Scheme Builder</a></li><li><a href="/demos/xml-viewer.html">XML Viewer</a></li><li><a href="/demos/json-viewer.html">JSON Viewer</a></li><li><a href="/demos/decorators.html">Decorators</a></li><li><a href="/demos/table-row-editor.html">Table Row Editor</a></li><li><a href="/demos/file-drag-drop.html">File Drag &amp; Drop</a></li><li><a href="/demos/large-data.html">Large Data Sets</a></li><li><a href="/demos/rss-feed.html">RSS Feed</a></li><li><a href="/demos/dom-interaction.html">DOM Interaction</a></li><li><a href="/demos/fixed-column-table.html">Fixed-Column Table</a></li><li><a href="/demos/multiselect.html">Multiple Selection</a></li><li><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new">Charting</a></li><li><a href="http://www.satelliteconsulting.com/" target="_new">News Ticker/Slide Show</a></li></ul><div class="content">
-        <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>
-        <script src="http://java.com/js/deployJava.js" type="text/javascript"></script><script type="text/javascript">
-
-            var attributes = {
-                code:"org.apache.pivot.wtk.BrowserApplicationContext$HostApplet",
-                width:"640",
-                height:"480"
-            };
-
-
-
-
-
-            var libraries = [];
-            libraries.push("/lib/pivot-core-2.0.signed.jar");
-                libraries.push("/lib/pivot-wtk-2.0.signed.jar");
-                libraries.push("/lib/pivot-wtk-terra-2.0.signed.jar");
-                libraries.push("/lib/pivot-web-2.0.signed.jar");
-                libraries.push("/lib/pivot-demos-2.0.signed.jar");
-
-                    libraries.push("/lib/svgSalamander-tiny.signed.jar");
-
-
-            attributes.archive = libraries.join(",");
-
-
-            var parameters = {
-                codebase_lookup:false,
-                application_class_name:'org.apache.pivot.demos.itunes.SearchDemo'
-            };
-
-
-            var javaArguments = ["-Dsun.awt.noerasebackground=true",
-                "-Dsun.awt.erasebackgroundonresize=true"];
-
-
-
-            parameters.java_arguments = javaArguments.join(" ");
-
-
-
-
-            deployJava.runApplet(attributes, parameters, "1.6");
-        </script>
-    </div></div></div><div class="group" id="footer"><div class="footerLogo">Copyright (c) 1999-2011<br>The Apache Software Foundation.</div><div class="footerLinks"><ul class="footerMenuGr"><li><strong>Demos</strong><ul><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new">Charting</a></li><li><a href="/demos/">More Demos</a></li></ul></li><li><strong>Documentation</strong><ul><li><a href="/getting-started.html">Getting Started</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/faq.html">FAQ</a></li><li><a href="/2.0/docs/api/">Javadoc (2.0)</a></li></ul></li><li><strong>Get Involved</strong><ul><li><a href="/svn.html">SVN Repositories</a></li><li><a href="/lists.html">Mailing Lists</a></li><li><a href="http://issues.apache.org/jira/browse/PIVOT">Bug Database</a></li><li><a h
 ref="http://cwiki.apache.org/PIVOT/">Wiki</a></li></ul></li><li><strong>Related</strong><ul><li><a href="http://code.google.com/p/pivot-jfree/">JFreeChart Provider</a></li></ul></li><li><strong>About</strong><ul><li><a href="/who-we-are.html">Who We Are</a></li><li><a href="/contact.html">Contact</a></li><li><a href="/news.html">News</a></li><li><a href="/legal.html">Legal/License</a></li></ul></li></ul></div></div></div></body></html>
\ No newline at end of file
+--><html xmlns="http://www.w3.org/1999/xhtml"><head><META http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>iTunes Search | Apache Pivot</title><link href="/styles/pivot.css" rel="stylesheet" type="text/css"><script type="text/javascript">
+                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+                </script><script type="text/javascript">
+                try {
+                var pageTracker = _gat._getTracker("UA-7977275-3");
+                pageTracker._trackPageview();
+                } catch(err) {}</script></head><body><div id="wrapper"><div id="main"><div id="header"><div xmlns="" class="logo"><a href="/index.html"><img src="/images/logo.png" alt="Apache Pivot" title="Apache Pivot Homepage"></a></div><div class="tagline"><img src="/images/tagline.png" alt="Rich Internet Applications in Java" style="visibility:hidden"></div><ul class="navi"><li><a href="/demos/">Demos</a></li><li><a href="/download.cgi#2.0.1">Download</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/get-involved.html">Get Involved</a></li><li><a href="/about.html">About</a></li></ul></div><div id="contentBase" class="group"><h1>iTunes Search</h1><ul class="naviLeft"><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/stock-tracker.html">Stock Tracker</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="/demos/bxml-explorer.html" target="_new">BXML Explorer</a
 ></li><li><a href="/demos/itunes-search.html">iTunes Search</a></li><li><a href="/demos/suggest.html">Suggestion Popups</a></li><li><a href="/demos/color-scheme-builder.html">Color Scheme Builder</a></li><li><a href="/demos/xml-viewer.html">XML Viewer</a></li><li><a href="/demos/json-viewer.html">JSON Viewer</a></li><li><a href="/demos/decorators.html">Decorators</a></li><li><a href="/demos/table-row-editor.html">Table Row Editor</a></li><li><a href="/demos/file-drag-drop.html">File Drag &amp; Drop</a></li><li><a href="/demos/large-data.html">Large Data Sets</a></li><li><a href="/demos/rss-feed.html">RSS Feed</a></li><li><a href="/demos/dom-interaction.html">DOM Interaction</a></li><li><a href="/demos/fixed-column-table.html">Fixed-Column Table</a></li><li><a href="/demos/multiselect.html">Multiple Selection</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/Other+Demos" target="_new">Charting</a></li></ul><div class="content">
+        <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>
+        <script type="text/javascript" src="http://java.com/js/deployJava.js"></script><script type="text/javascript">
+            
+            var attributes = {
+                code:"org.apache.pivot.wtk.BrowserApplicationContext$HostApplet",
+                width:"640",
+                height:"480"
+            };
+
+            
+            
+
+            
+            var libraries = [];
+            libraries.push("/lib/pivot-core-2.0.1.signed.jar");
+                libraries.push("/lib/pivot-wtk-2.0.1.signed.jar");
+                libraries.push("/lib/pivot-wtk-terra-2.0.1.signed.jar");
+                libraries.push("/lib/pivot-web-2.0.1.signed.jar");
+                libraries.push("/lib/pivot-demos-2.0.1.signed.jar");
+                
+                    libraries.push("/lib/svgSalamander-tiny.signed.jar");
+                
+
+            attributes.archive = libraries.join(",");
+
+            
+            var parameters = {
+                codebase_lookup:false,
+                application_class_name:'org.apache.pivot.demos.itunes.SearchDemo'
+            };
+
+            
+            var javaArguments = ["-Dsun.awt.noerasebackground=true",
+                "-Dsun.awt.erasebackgroundonresize=true"];
+
+            
+
+            parameters.java_arguments = javaArguments.join(" ");
+
+            
+            
+
+            deployJava.runApplet(attributes, parameters, "1.6");
+        </script>
+    </div></div></div><div id="footer" class="group"><div class="footerLogo">Copyright (c) 1999-2012<br>The Apache Software Foundation.</div><div class="footerLinks"><ul class="footerMenuGr"><li><strong>Demos</strong><ul><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/Other+Demos" target="_new">Charting</a></li><li><a href="/demos/">More Demos</a></li></ul></li><li><strong>Documentation</strong><ul><li><a href="/getting-started.html">Getting Started</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/faq.html">FAQ</a></li><li><a href="/2.0.1/docs/api/">Javadoc (2.0.1)</a></li></ul></li><li><strong>Get Involved</strong><ul><li><a href="/svn.html">SVN Repositories</a></li><li><a href="/lists.html">Mailing Lists</a></li><li><a href="http://issues.apache.org/jira/browse/PIVOT">Bug Database</a>
 </li><li><a href="http://cwiki.apache.org/PIVOT/">Wiki</a></li></ul></li><li><strong>Related</strong><ul><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-jfree/">JFreeChart Provider</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-common/">Pivot-Common</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-contrib/">Pivot-Contrib</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-multilang/">Pivot-Multilang</a></li></ul></li><li><strong>About</strong><ul><li><a href="/who-we-are.html">Who We Are</a></li><li><a href="/contact.html">Contact</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/News">News</a></li><li><a href="/legal.html">Legal/License</a></li></ul></li></ul></div><div class="footerLinks">
+                	Apache Pivot is a trademark of the Apache Software Foundation
+                </div></div></div></body></html>
\ No newline at end of file

Modified: pivot/site/trunk/deploy/demos/json-viewer.html
URL: http://svn.apache.org/viewvc/pivot/site/trunk/deploy/demos/json-viewer.html?rev=1233143&r1=1233142&r2=1233143&view=diff
==============================================================================
--- pivot/site/trunk/deploy/demos/json-viewer.html (original)
+++ pivot/site/trunk/deploy/demos/json-viewer.html Thu Jan 19 00:51:39 2012
@@ -1,4 +1,4 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <!--
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
@@ -14,57 +14,59 @@ distributed under the License is distrib
 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 xmlns="http://www.w3.org/1999/xhtml"><head><meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /><title>JSON Viewer | Apache Pivot</title><link xmlns="" type="text/css" rel="stylesheet" href="/styles/pivot.css"><script xmlns="http://www.w3.org/1999/xhtml" type="text/javascript">
-                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
-                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
-                </script><script type="text/javascript">
-                try {
-                var pageTracker = _gat._getTracker("UA-7977275-3");
-                pageTracker._trackPageview();
-                } catch(err) {}</script></head><body><div xmlns="" id="wrapper"><div id="main"><div id="header"><div class="logo"><a href="/index.html"><img title="Apache Pivot Homepage" alt="Apache Pivot" src="/images/logo.png"></a></div><div class="tagline"><img style="visibility:hidden" alt="Rich Internet Applications in Java" src="/images/tagline.png"></div><ul class="navi"><li><a href="/demos/">Demos</a></li><li><a href="/download.cgi#2.0">Download</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/get-involved.html">Get Involved</a></li><li><a href="/about.html">About</a></li></ul></div><div class="group" id="contentBase"><h1>JSON Viewer</h1><ul class="naviLeft"><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/stock-tracker.html">Stock Tracker</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="/demos/itunes-search.html">iTunes Search</a></li><li><a href=
 "/demos/suggest.html">Suggestion Popups</a></li><li><a href="/demos/color-scheme-builder.html">Color Scheme Builder</a></li><li><a href="/demos/xml-viewer.html">XML Viewer</a></li><li><a href="/demos/json-viewer.html">JSON Viewer</a></li><li><a href="/demos/decorators.html">Decorators</a></li><li><a href="/demos/table-row-editor.html">Table Row Editor</a></li><li><a href="/demos/file-drag-drop.html">File Drag &amp; Drop</a></li><li><a href="/demos/large-data.html">Large Data Sets</a></li><li><a href="/demos/rss-feed.html">RSS Feed</a></li><li><a href="/demos/dom-interaction.html">DOM Interaction</a></li><li><a href="/demos/fixed-column-table.html">Fixed-Column Table</a></li><li><a href="/demos/multiselect.html">Multiple Selection</a></li><li><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new">Charting</a></li><li><a href="http://www.satelliteconsulting.com/" target="_new">News Ticker/Slide Show</a></li></ul><div class="content">
-        <p>
-            Allows users to visually browse a JSON structure using a TreeView component.
-        </p>
-        <script src="http://java.com/js/deployJava.js" type="text/javascript"></script><script type="text/javascript">
-
-            var attributes = {
-                code:"org.apache.pivot.wtk.BrowserApplicationContext$HostApplet",
-                width:"360",
-                height:"480"
-            };
-
-
-
-
-
-            var libraries = [];
-            libraries.push("/lib/pivot-core-2.0.signed.jar");
-                libraries.push("/lib/pivot-wtk-2.0.signed.jar");
-                libraries.push("/lib/pivot-wtk-terra-2.0.signed.jar");
-                libraries.push("/lib/pivot-demos-2.0.signed.jar");
-
-                    libraries.push("/lib/svgSalamander-tiny.signed.jar");
-
-
-            attributes.archive = libraries.join(",");
-
-
-            var parameters = {
-                codebase_lookup:false,
-                application_class_name:'org.apache.pivot.demos.json.JSONViewer'
-            };
-
-
-            var javaArguments = ["-Dsun.awt.noerasebackground=true",
-                "-Dsun.awt.erasebackgroundonresize=true"];
-
-
-
-            parameters.java_arguments = javaArguments.join(" ");
-
-
-
-
-            deployJava.runApplet(attributes, parameters, "1.6");
-        </script>
-    </div></div></div><div class="group" id="footer"><div class="footerLogo">Copyright (c) 1999-2011<br>The Apache Software Foundation.</div><div class="footerLinks"><ul class="footerMenuGr"><li><strong>Demos</strong><ul><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="http://ixnay.biz/pivot-jfree-demos/charts_demo.html" target="_new">Charting</a></li><li><a href="/demos/">More Demos</a></li></ul></li><li><strong>Documentation</strong><ul><li><a href="/getting-started.html">Getting Started</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/faq.html">FAQ</a></li><li><a href="/2.0/docs/api/">Javadoc (2.0)</a></li></ul></li><li><strong>Get Involved</strong><ul><li><a href="/svn.html">SVN Repositories</a></li><li><a href="/lists.html">Mailing Lists</a></li><li><a href="http://issues.apache.org/jira/browse/PIVOT">Bug Database</a></li><li><a h
 ref="http://cwiki.apache.org/PIVOT/">Wiki</a></li></ul></li><li><strong>Related</strong><ul><li><a href="http://code.google.com/p/pivot-jfree/">JFreeChart Provider</a></li></ul></li><li><strong>About</strong><ul><li><a href="/who-we-are.html">Who We Are</a></li><li><a href="/contact.html">Contact</a></li><li><a href="/news.html">News</a></li><li><a href="/legal.html">Legal/License</a></li></ul></li></ul></div></div></div></body></html>
\ No newline at end of file
+--><html xmlns="http://www.w3.org/1999/xhtml"><head><META http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>JSON Viewer | Apache Pivot</title><link href="/styles/pivot.css" rel="stylesheet" type="text/css"><script type="text/javascript">
+                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+                </script><script type="text/javascript">
+                try {
+                var pageTracker = _gat._getTracker("UA-7977275-3");
+                pageTracker._trackPageview();
+                } catch(err) {}</script></head><body><div id="wrapper"><div id="main"><div id="header"><div xmlns="" class="logo"><a href="/index.html"><img src="/images/logo.png" alt="Apache Pivot" title="Apache Pivot Homepage"></a></div><div class="tagline"><img src="/images/tagline.png" alt="Rich Internet Applications in Java" style="visibility:hidden"></div><ul class="navi"><li><a href="/demos/">Demos</a></li><li><a href="/download.cgi#2.0.1">Download</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/get-involved.html">Get Involved</a></li><li><a href="/about.html">About</a></li></ul></div><div id="contentBase" class="group"><h1>JSON Viewer</h1><ul class="naviLeft"><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/stock-tracker.html">Stock Tracker</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="/demos/bxml-explorer.html" target="_new">BXML Explorer</a><
 /li><li><a href="/demos/itunes-search.html">iTunes Search</a></li><li><a href="/demos/suggest.html">Suggestion Popups</a></li><li><a href="/demos/color-scheme-builder.html">Color Scheme Builder</a></li><li><a href="/demos/xml-viewer.html">XML Viewer</a></li><li><a href="/demos/json-viewer.html">JSON Viewer</a></li><li><a href="/demos/decorators.html">Decorators</a></li><li><a href="/demos/table-row-editor.html">Table Row Editor</a></li><li><a href="/demos/file-drag-drop.html">File Drag &amp; Drop</a></li><li><a href="/demos/large-data.html">Large Data Sets</a></li><li><a href="/demos/rss-feed.html">RSS Feed</a></li><li><a href="/demos/dom-interaction.html">DOM Interaction</a></li><li><a href="/demos/fixed-column-table.html">Fixed-Column Table</a></li><li><a href="/demos/multiselect.html">Multiple Selection</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/Other+Demos" target="_new">Charting</a></li></ul><div class="content">
+        <p>
+            Allows users to visually browse a JSON structure using a TreeView component.
+        </p>
+        <script type="text/javascript" src="http://java.com/js/deployJava.js"></script><script type="text/javascript">
+            
+            var attributes = {
+                code:"org.apache.pivot.wtk.BrowserApplicationContext$HostApplet",
+                width:"360",
+                height:"480"
+            };
+
+            
+            
+
+            
+            var libraries = [];
+            libraries.push("/lib/pivot-core-2.0.1.signed.jar");
+                libraries.push("/lib/pivot-wtk-2.0.1.signed.jar");
+                libraries.push("/lib/pivot-wtk-terra-2.0.1.signed.jar");
+                libraries.push("/lib/pivot-demos-2.0.1.signed.jar");
+                
+                    libraries.push("/lib/svgSalamander-tiny.signed.jar");
+                
+
+            attributes.archive = libraries.join(",");
+
+            
+            var parameters = {
+                codebase_lookup:false,
+                application_class_name:'org.apache.pivot.demos.json.JSONViewer'
+            };
+
+            
+            var javaArguments = ["-Dsun.awt.noerasebackground=true",
+                "-Dsun.awt.erasebackgroundonresize=true"];
+
+            
+
+            parameters.java_arguments = javaArguments.join(" ");
+
+            
+            
+
+            deployJava.runApplet(attributes, parameters, "1.6");
+        </script>
+    </div></div></div><div id="footer" class="group"><div class="footerLogo">Copyright (c) 1999-2012<br>The Apache Software Foundation.</div><div class="footerLinks"><ul class="footerMenuGr"><li><strong>Demos</strong><ul><li><a href="/demos/kitchen-sink.html" target="_new">"Kitchen Sink"</a></li><li><a href="/demos/component-explorer.html" target="_new">Component Explorer</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/Other+Demos" target="_new">Charting</a></li><li><a href="/demos/">More Demos</a></li></ul></li><li><strong>Documentation</strong><ul><li><a href="/getting-started.html">Getting Started</a></li><li><a href="/tutorials/">Tutorial</a></li><li><a href="/faq.html">FAQ</a></li><li><a href="/2.0.1/docs/api/">Javadoc (2.0.1)</a></li></ul></li><li><strong>Get Involved</strong><ul><li><a href="/svn.html">SVN Repositories</a></li><li><a href="/lists.html">Mailing Lists</a></li><li><a href="http://issues.apache.org/jira/browse/PIVOT">Bug Database</a>
 </li><li><a href="http://cwiki.apache.org/PIVOT/">Wiki</a></li></ul></li><li><strong>Related</strong><ul><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-jfree/">JFreeChart Provider</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-common/">Pivot-Common</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-contrib/">Pivot-Contrib</a></li><li><a href="http://code.google.com/a/apache-extras.org/p/pivot-multilang/">Pivot-Multilang</a></li></ul></li><li><strong>About</strong><ul><li><a href="/who-we-are.html">Who We Are</a></li><li><a href="/contact.html">Contact</a></li><li><a href="http://cwiki.apache.org/confluence/display/PIVOT/News">News</a></li><li><a href="/legal.html">Legal/License</a></li></ul></li></ul></div><div class="footerLinks">
+                	Apache Pivot is a trademark of the Apache Software Foundation
+                </div></div></div></body></html>
\ No newline at end of file

Modified: pivot/site/trunk/deploy/demos/kitchen-sink.html
URL: http://svn.apache.org/viewvc/pivot/site/trunk/deploy/demos/kitchen-sink.html?rev=1233143&r1=1233142&r2=1233143&view=diff
==============================================================================
--- pivot/site/trunk/deploy/demos/kitchen-sink.html (original)
+++ pivot/site/trunk/deploy/demos/kitchen-sink.html Thu Jan 19 00:51:39 2012
@@ -1,4 +1,4 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <!--
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
@@ -17,62 +17,62 @@ limitations under the License.
 --><!--
 TODO create version that specifies system property:
 org.apache.pivot.wtk.skin.terra.location=org/apache/pivot/tutorials/TerraTheme_dark.json
---><html xmlns="http://www.w3.org/1999/xhtml"><head><meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /><title>"Kitchen Sink" | Apache Pivot</title><style xmlns="" type="text/css">
-                    * {
-                        padding: 0px;
-                        margin: 0px;
-                    }
-
-                    html, body {
-                        height: 100%;
-                        overflow: hidden;
-                    }
-                </style><script xmlns="http://www.w3.org/1999/xhtml" type="text/javascript">
-                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
-                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
-                </script><script type="text/javascript">
-                try {
-                var pageTracker = _gat._getTracker("UA-7977275-3");
-                pageTracker._trackPageview();
-                } catch(err) {}</script></head><body><script xmlns="" src="http://java.com/js/deployJava.js" type="text/javascript"></script><script type="text/javascript">
-
-            var attributes = {
-                code:"org.apache.pivot.wtk.BrowserApplicationContext$HostApplet",
-                width:"100%",
-                height:"100%"
-            };
-
-
-
-
-
-            var libraries = [];
-            libraries.push("/lib/pivot-core-2.0.jar");
-                libraries.push("/lib/pivot-wtk-2.0.jar");
-                libraries.push("/lib/pivot-wtk-terra-2.0.jar");
-                libraries.push("/lib/pivot-tutorials-2.0.jar");
-
-                    libraries.push("/lib/svgSalamander-tiny.jar");
-
-
-            attributes.archive = libraries.join(",");
-
-
-            var parameters = {
-                codebase_lookup:false,
-                application_class_name:'org.apache.pivot.tutorials.KitchenSink'
-            };
-
-
-            var javaArguments = ["-Dsun.awt.noerasebackground=true",
-                "-Dsun.awt.erasebackgroundonresize=true"];
-
-
-
-            parameters.java_arguments = javaArguments.join(" ");
-
-
-
-
-            deployJava.runApplet(attributes, parameters, "1.6");
+--><html xmlns="http://www.w3.org/1999/xhtml"><head><META http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>"Kitchen Sink" | Apache Pivot</title><style type="text/css">
+                    * {
+                        padding: 0px;
+                        margin: 0px;
+                    }
+
+                    html, body {
+                        height: 100%;
+                        overflow: hidden;
+                    }
+                </style><script type="text/javascript">
+                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+                </script><script type="text/javascript">
+                try {
+                var pageTracker = _gat._getTracker("UA-7977275-3");
+                pageTracker._trackPageview();
+                } catch(err) {}</script></head><body><script type="text/javascript" src="http://java.com/js/deployJava.js"></script><script type="text/javascript">
+            
+            var attributes = {
+                code:"org.apache.pivot.wtk.BrowserApplicationContext$HostApplet",
+                width:"100%",
+                height:"100%"
+            };
+
+            
+            
+
+            
+            var libraries = [];
+            libraries.push("/lib/pivot-core-2.0.1.jar");
+                libraries.push("/lib/pivot-wtk-2.0.1.jar");
+                libraries.push("/lib/pivot-wtk-terra-2.0.1.jar");
+                libraries.push("/lib/pivot-tutorials-2.0.1.jar");
+                
+                    libraries.push("/lib/svgSalamander-tiny.jar");
+                
+
+            attributes.archive = libraries.join(",");
+
+            
+            var parameters = {
+                codebase_lookup:false,
+                application_class_name:'org.apache.pivot.tutorials.KitchenSink'
+            };
+
+            
+            var javaArguments = ["-Dsun.awt.noerasebackground=true",
+                "-Dsun.awt.erasebackgroundonresize=true"];
+
+            
+
+            parameters.java_arguments = javaArguments.join(" ");
+
+            
+            
+
+            deployJava.runApplet(attributes, parameters, "1.6");
         </script></body></html>
\ No newline at end of file