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

svn commit: r820295 - in /incubator/pivot/trunk: demos/www/ tutorials/www/

Author: gbrown
Date: Wed Sep 30 15:16:32 2009
New Revision: 820295

URL: http://svn.apache.org/viewvc?rev=820295&view=rev
Log:
Add sun.awt.noerasebackground and sun.awt.erasebackgroundonresize system properties to demo and tutorial applets.

Modified:
    incubator/pivot/trunk/demos/www/animated_clock.template.html
    incubator/pivot/trunk/demos/www/decorators.template.html
    incubator/pivot/trunk/demos/www/dom_interaction.template.html
    incubator/pivot/trunk/demos/www/fixed_column_table.template.html
    incubator/pivot/trunk/demos/www/itunes_search.template.html
    incubator/pivot/trunk/demos/www/kitchen_sink.template.html
    incubator/pivot/trunk/demos/www/large_data.template.html
    incubator/pivot/trunk/demos/www/multiselect.template.html
    incubator/pivot/trunk/demos/www/rss_feed.template.html
    incubator/pivot/trunk/demos/www/scripting.template.html
    incubator/pivot/trunk/demos/www/table_row_editor.template.html
    incubator/pivot/trunk/tutorials/www/accordions.template.html
    incubator/pivot/trunk/tutorials/www/activity_indicators.template.html
    incubator/pivot/trunk/tutorials/www/borders.template.html
    incubator/pivot/trunk/tutorials/www/box_panes.template.html
    incubator/pivot/trunk/tutorials/www/card_panes.template.html
    incubator/pivot/trunk/tutorials/www/checkboxes.template.html
    incubator/pivot/trunk/tutorials/www/clipboard.template.html
    incubator/pivot/trunk/tutorials/www/expanders.template.html
    incubator/pivot/trunk/tutorials/www/flow_panes.template.html
    incubator/pivot/trunk/tutorials/www/forms.template.html
    incubator/pivot/trunk/tutorials/www/hello_world.template.html
    incubator/pivot/trunk/tutorials/www/hello_wtkx.template.html
    incubator/pivot/trunk/tutorials/www/labels_and_image_views.template.html
    incubator/pivot/trunk/tutorials/www/link_buttons.template.html
    incubator/pivot/trunk/tutorials/www/list_buttons.template.html
    incubator/pivot/trunk/tutorials/www/lists.template.html
    incubator/pivot/trunk/tutorials/www/meters.template.html
    incubator/pivot/trunk/tutorials/www/panels.template.html
    incubator/pivot/trunk/tutorials/www/panoramas.template.html
    incubator/pivot/trunk/tutorials/www/push_buttons.template.html
    incubator/pivot/trunk/tutorials/www/radio_buttons.template.html
    incubator/pivot/trunk/tutorials/www/rollups.template.html
    incubator/pivot/trunk/tutorials/www/scroll_panes.template.html
    incubator/pivot/trunk/tutorials/www/separators.template.html
    incubator/pivot/trunk/tutorials/www/sliders.template.html
    incubator/pivot/trunk/tutorials/www/spinners.template.html
    incubator/pivot/trunk/tutorials/www/stack_panes.template.html
    incubator/pivot/trunk/tutorials/www/stock_tracker.localization.template.html
    incubator/pivot/trunk/tutorials/www/stock_tracker.template.html
    incubator/pivot/trunk/tutorials/www/tab_panes.template.html
    incubator/pivot/trunk/tutorials/www/table_panes.template.html
    incubator/pivot/trunk/tutorials/www/text.template.html
    incubator/pivot/trunk/tutorials/www/toggle_buttons.template.html

Modified: incubator/pivot/trunk/demos/www/animated_clock.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/animated_clock.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/animated_clock.template.html (original)
+++ incubator/pivot/trunk/demos/www/animated_clock.template.html Wed Sep 30 15:16:32 2009
@@ -32,7 +32,8 @@
     height:320
 };
 var parameters = {application_class_name:"org.apache.pivot.demos.clock.ClockDemo",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 var version = "1.6";
 deployJava.runApplet(attributes, parameters, version);

Modified: incubator/pivot/trunk/demos/www/decorators.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/decorators.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/decorators.template.html (original)
+++ incubator/pivot/trunk/demos/www/decorators.template.html Wed Sep 30 15:16:32 2009
@@ -34,7 +34,8 @@
     height:640
 };
 var parameters = {application_class_name:"org.apache.pivot.demos.decorator.DecoratorDemo",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 var version = "1.6";
 deployJava.runApplet(attributes, parameters, version);

Modified: incubator/pivot/trunk/demos/www/dom_interaction.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/dom_interaction.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/dom_interaction.template.html (original)
+++ incubator/pivot/trunk/demos/www/dom_interaction.template.html Wed Sep 30 15:16:32 2009
@@ -51,7 +51,8 @@
     id:"domTestApplet"
 };
 var parameters = {application_class_name:"org.apache.pivot.demos.dom.DOMInteractionDemo",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 var version = "1.6";
 deployJava.runApplet(attributes, parameters, version);

Modified: incubator/pivot/trunk/demos/www/fixed_column_table.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/fixed_column_table.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/fixed_column_table.template.html (original)
+++ incubator/pivot/trunk/demos/www/fixed_column_table.template.html Wed Sep 30 15:16:32 2009
@@ -32,7 +32,8 @@
     height:170
 };
 var parameters = {application_class_name:"org.apache.pivot.demos.tables.FixedColumnTable",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 var version = "1.6";
 deployJava.runApplet(attributes, parameters, version);

Modified: incubator/pivot/trunk/demos/www/itunes_search.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/itunes_search.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/itunes_search.template.html (original)
+++ incubator/pivot/trunk/demos/www/itunes_search.template.html Wed Sep 30 15:16:32 2009
@@ -32,7 +32,8 @@
     height:480
 };
 var parameters = {application_class_name:"org.apache.pivot.demos.itunes.SearchDemo",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 var version = "1.6";
 deployJava.runApplet(attributes, parameters, version);

Modified: incubator/pivot/trunk/demos/www/kitchen_sink.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/kitchen_sink.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/kitchen_sink.template.html (original)
+++ incubator/pivot/trunk/demos/www/kitchen_sink.template.html Wed Sep 30 15:16:32 2009
@@ -31,7 +31,8 @@
     height:480
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.KitchenSink",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 var version = "1.6";
 deployJava.runApplet(attributes, parameters, version);

Modified: incubator/pivot/trunk/demos/www/large_data.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/large_data.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/large_data.template.html (original)
+++ incubator/pivot/trunk/demos/www/large_data.template.html Wed Sep 30 15:16:32 2009
@@ -43,7 +43,7 @@
 var parameters = {application_class_name:"org.apache.pivot.demos.million.LargeData",
     startup_properties:"basePath=pivot-demos/assets",
     codebase_lookup:false,
-    java_arguments:"-Xms512M"
+    java_arguments:"-Xms512M -Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 var version = "1.6";
 deployJava.runApplet(attributes, parameters, version);

Modified: incubator/pivot/trunk/demos/www/multiselect.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/multiselect.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/multiselect.template.html (original)
+++ incubator/pivot/trunk/demos/www/multiselect.template.html Wed Sep 30 15:16:32 2009
@@ -31,7 +31,8 @@
     height:360
 };
 var parameters = {application_class_name:"org.apache.pivot.demos.lists.MultiSelect",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 var version = "1.6";
 deployJava.runApplet(attributes, parameters, version);

Modified: incubator/pivot/trunk/demos/www/rss_feed.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/rss_feed.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/rss_feed.template.html (original)
+++ incubator/pivot/trunk/demos/www/rss_feed.template.html Wed Sep 30 15:16:32 2009
@@ -37,7 +37,8 @@
     height:360
 };
 var parameters = {application_class_name:"org.apache.pivot.demos.rss.RSSFeedDemo",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 var version = "1.6";
 deployJava.runApplet(attributes, parameters, version);

Modified: incubator/pivot/trunk/demos/www/scripting.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/scripting.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/scripting.template.html (original)
+++ incubator/pivot/trunk/demos/www/scripting.template.html Wed Sep 30 15:16:32 2009
@@ -33,7 +33,8 @@
     height:480
 };
 var parameters = {application_class_name:"org.apache.pivot.demos.scripting.ScriptingDemo",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 var version = "1.6";
 deployJava.runApplet(attributes, parameters, version);

Modified: incubator/pivot/trunk/demos/www/table_row_editor.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/demos/www/table_row_editor.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/demos/www/table_row_editor.template.html (original)
+++ incubator/pivot/trunk/demos/www/table_row_editor.template.html Wed Sep 30 15:16:32 2009
@@ -32,7 +32,8 @@
     height:360
 };
 var parameters = {application_class_name:"org.apache.pivot.demos.roweditor.RowEditorDemo",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 var version = "1.6";
 deployJava.runApplet(attributes, parameters, version);

Modified: incubator/pivot/trunk/tutorials/www/accordions.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/accordions.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/accordions.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/accordions.template.html Wed Sep 30 15:16:32 2009
@@ -45,7 +45,8 @@
     height:380
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.navigation.Accordions",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/activity_indicators.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/activity_indicators.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/activity_indicators.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/activity_indicators.template.html Wed Sep 30 15:16:32 2009
@@ -45,7 +45,8 @@
     height:240
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.progress.ActivityIndicators",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/borders.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/borders.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/borders.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/borders.template.html Wed Sep 30 15:16:32 2009
@@ -45,7 +45,8 @@
     height:240
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.layout.Borders",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/box_panes.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/box_panes.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/box_panes.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/box_panes.template.html Wed Sep 30 15:16:32 2009
@@ -56,7 +56,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.layout.BoxPanes",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/card_panes.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/card_panes.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/card_panes.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/card_panes.template.html Wed Sep 30 15:16:32 2009
@@ -60,7 +60,8 @@
     height:480
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.navigation.CardPanes",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/checkboxes.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/checkboxes.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/checkboxes.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/checkboxes.template.html Wed Sep 30 15:16:32 2009
@@ -44,7 +44,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.buttons.Checkboxes",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/clipboard.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/clipboard.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/clipboard.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/clipboard.template.html Wed Sep 30 15:16:32 2009
@@ -42,7 +42,8 @@
     height:480
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.clipboard.Clipboard",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/expanders.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/expanders.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/expanders.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/expanders.template.html Wed Sep 30 15:16:32 2009
@@ -43,7 +43,8 @@
     height:360
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.navigation.Expanders",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/flow_panes.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/flow_panes.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/flow_panes.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/flow_panes.template.html Wed Sep 30 15:16:32 2009
@@ -42,7 +42,8 @@
     height:240
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.layout.FlowPanes",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/forms.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/forms.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/forms.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/forms.template.html Wed Sep 30 15:16:32 2009
@@ -45,7 +45,8 @@
     height:384
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.layout.Forms",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/hello_world.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/hello_world.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/hello_world.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/hello_world.template.html Wed Sep 30 15:16:32 2009
@@ -43,7 +43,8 @@
     height:80
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.HelloJava",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/hello_wtkx.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/hello_wtkx.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/hello_wtkx.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/hello_wtkx.template.html Wed Sep 30 15:16:32 2009
@@ -43,7 +43,8 @@
     height:80
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.HelloWTKX",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>
@@ -140,7 +141,8 @@
     height:80
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.HelloJavaScript",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/labels_and_image_views.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/labels_and_image_views.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/labels_and_image_views.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/labels_and_image_views.template.html Wed Sep 30 15:16:32 2009
@@ -43,7 +43,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.labels.Labels",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/link_buttons.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/link_buttons.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/link_buttons.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/link_buttons.template.html Wed Sep 30 15:16:32 2009
@@ -44,7 +44,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.buttons.LinkButtons",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/list_buttons.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/list_buttons.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/list_buttons.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/list_buttons.template.html Wed Sep 30 15:16:32 2009
@@ -44,7 +44,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.lists.ListButtons",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/lists.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/lists.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/lists.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/lists.template.html Wed Sep 30 15:16:32 2009
@@ -45,7 +45,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.lists.ListViews",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/meters.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/meters.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/meters.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/meters.template.html Wed Sep 30 15:16:32 2009
@@ -43,7 +43,8 @@
     height:100
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.progress.Meters",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/panels.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/panels.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/panels.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/panels.template.html Wed Sep 30 15:16:32 2009
@@ -44,7 +44,8 @@
     height:320
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.layout.Panels",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/panoramas.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/panoramas.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/panoramas.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/panoramas.template.html Wed Sep 30 15:16:32 2009
@@ -45,7 +45,8 @@
     height:360
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.navigation.Panoramas",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/push_buttons.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/push_buttons.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/push_buttons.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/push_buttons.template.html Wed Sep 30 15:16:32 2009
@@ -43,7 +43,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.buttons.PushButtons",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/radio_buttons.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/radio_buttons.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/radio_buttons.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/radio_buttons.template.html Wed Sep 30 15:16:32 2009
@@ -44,7 +44,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.buttons.RadioButtons",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/rollups.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/rollups.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/rollups.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/rollups.template.html Wed Sep 30 15:16:32 2009
@@ -46,7 +46,8 @@
     height:360
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.navigation.Rollups",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/scroll_panes.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/scroll_panes.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/scroll_panes.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/scroll_panes.template.html Wed Sep 30 15:16:32 2009
@@ -45,7 +45,8 @@
     height:360
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.navigation.ScrollPanes",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/separators.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/separators.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/separators.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/separators.template.html Wed Sep 30 15:16:32 2009
@@ -44,7 +44,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.separators.Separators",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/sliders.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/sliders.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/sliders.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/sliders.template.html Wed Sep 30 15:16:32 2009
@@ -43,7 +43,8 @@
     height:30
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.boundedrange.Sliders",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/spinners.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/spinners.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/spinners.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/spinners.template.html Wed Sep 30 15:16:32 2009
@@ -45,7 +45,8 @@
     height:30
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.boundedrange.Spinners",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/stack_panes.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/stack_panes.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/stack_panes.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/stack_panes.template.html Wed Sep 30 15:16:32 2009
@@ -45,7 +45,8 @@
     height:360
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.layout.StackPanes",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/stock_tracker.localization.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/stock_tracker.localization.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/stock_tracker.localization.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/stock_tracker.localization.template.html Wed Sep 30 15:16:32 2009
@@ -111,7 +111,8 @@
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.stocktracker.StockTracker",
     startup_properties:"language=fr",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/stock_tracker.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/stock_tracker.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/stock_tracker.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/stock_tracker.template.html Wed Sep 30 15:16:32 2009
@@ -44,7 +44,8 @@
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.stocktracker.StockTracker",
     startup_properties:"language=en",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/tab_panes.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/tab_panes.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/tab_panes.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/tab_panes.template.html Wed Sep 30 15:16:32 2009
@@ -43,7 +43,8 @@
     height:480
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.navigation.TabPanes",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/table_panes.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/table_panes.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/table_panes.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/table_panes.template.html Wed Sep 30 15:16:32 2009
@@ -59,7 +59,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.layout.SimpleTablePanes",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>
@@ -214,7 +215,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.layout.TablePanes",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/text.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/text.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/text.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/text.template.html Wed Sep 30 15:16:32 2009
@@ -46,7 +46,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.text.Text",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>

Modified: incubator/pivot/trunk/tutorials/www/toggle_buttons.template.html
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/tutorials/www/toggle_buttons.template.html?rev=820295&r1=820294&r2=820295&view=diff
==============================================================================
--- incubator/pivot/trunk/tutorials/www/toggle_buttons.template.html (original)
+++ incubator/pivot/trunk/tutorials/www/toggle_buttons.template.html Wed Sep 30 15:16:32 2009
@@ -43,7 +43,8 @@
     style:"border:solid 1px #999999"
 };
 var parameters = {application_class_name:"org.apache.pivot.tutorials.buttons.ToggleButtons",
-    codebase_lookup:false
+    codebase_lookup:false,
+    java_arguments:"-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true"
 };
 deployJava.writeAppletTag(attributes, parameters);
 </script>