<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>test/css/screen.css</filename>
    </added>
    <added>
      <filename>test/js/error.js</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -5,8 +5,7 @@ AgDLR - Dynamic Languages in Silverlight
 
   &quot;agdlr&quot;, the Silverlight Dynamic Languages project, is the integration 
   between Silverlight and Dynamic Languages running on the Dynamic Language 
-  Runtime (DLR). The languages included in this package are IronRuby, 
-  IronPython, and Managed JScript.
+  Runtime (DLR). The languages included in this package are IronPython and IronRuby.
 
   Note: this package is meant to be used to develop applications with 
   Silverlight 2 RTW. Install Silverlight for [Windows](http://go.microsoft.com/fwlink/?LinkID=119972)
@@ -14,17 +13,21 @@ AgDLR - Dynamic Languages in Silverlight
 
 Package
 -------
-  /script:  tools for creating and running Silverlight applications
+  /bin:       AgDLR Binaries
+  
+  /docs:      Documentation
 
-  /LICENSE: Microsoft Public License
+  /samples:   See /samples/README for more information
+  
+  /script:    Tools for creating and running Silverlight applications
 
-  /README:  This file.
+  /test:      AgDLR Test Suite. Run with /script/test.bat
+  
+  /utilities: See /utilities/README.markdown
 
-  /samples: See /samples/README for more information
+  /src.url:   Source code download link for Microsoft.Scripting.Silverlight.dll and Chiron.exe.
 
-  /src:     Source code for Microsoft.Scripting.Silverlight.dll and Chiron.exe. See /src/README for more information.
-
-  /lib:     Ruby and Python Silverlight libraries 
+  /LICENSE:   Microsoft Public License
 
 Getting Started
 ---------------</diff>
      <filename>README.markdown</filename>
    </modified>
    <modified>
      <diff>@@ -16,7 +16,7 @@
     This will contain debugging information and should be 
     removed or hidden when debugging is completed 
   --&gt;
-	&lt;div id='errorLocation'&gt;&lt;/div&gt;
+  &lt;div id='errorLocation'&gt;&lt;/div&gt;
 
   &lt;div id=&quot;silverlightControlHost&quot;&gt;
 
@@ -89,6 +89,11 @@
       &lt;param name=&quot;background&quot; value=&quot;white&quot; /&gt;
       &lt;param name=&quot;windowless&quot; value=&quot;true&quot; /&gt;
 
+      &lt;!--
+	  &lt;param name=&quot;minRuntimeVersion&quot; value=&quot;2.0.31005.0&quot; /&gt;
+      &lt;param name=&quot;autoUpgrade&quot; value=&quot;true&quot; /&gt;
+      --&gt;
+
       &lt;!-- 
         Shows a &quot;Install Microsoft Silverlight&quot; link if Silverlight is 
         not installed</diff>
      <filename>script/templates/python/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -16,7 +16,7 @@
     This will contain debugging information and should be 
     removed or hidden when debugging is completed 
   --&gt;
-	&lt;div id='errorLocation'&gt;&lt;/div&gt;
+  &lt;div id='errorLocation'&gt;&lt;/div&gt;
 
   &lt;div id=&quot;silverlightControlHost&quot;&gt;
 
@@ -89,6 +89,11 @@
       &lt;param name=&quot;background&quot; value=&quot;white&quot; /&gt;
       &lt;param name=&quot;windowless&quot; value=&quot;true&quot; /&gt;
 
+      &lt;!--
+	  &lt;param name=&quot;minRuntimeVersion&quot; value=&quot;2.0.31005.0&quot; /&gt;
+      &lt;param name=&quot;autoUpgrade&quot; value=&quot;true&quot; /&gt;
+      --&gt;
+
       &lt;!-- 
         Shows a &quot;Install Microsoft Silverlight&quot; link if Silverlight is 
         not installed</diff>
      <filename>script/templates/ruby/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,12 @@
 &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; &gt;
 &lt;head&gt;
     &lt;title&gt;AgDLR Test Runner&lt;/title&gt;
+
+    &lt;!-- Basic stylesheet for application --&gt;
+    &lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;css/screen.css&quot; /&gt;
+
+    &lt;!-- Defines &quot;onSilverlightError&quot; function for Silverlight plugin --&gt;
+    &lt;script type=&quot;text/javascript&quot; src=&quot;js/error.js&quot;&gt;&lt;/script&gt;
 &lt;/head&gt;
 
 &lt;body&gt;
@@ -15,7 +21,7 @@
   &lt;div id=&quot;silverlightControlHost&quot;&gt;
 
     &lt;!-- 
-      Silverlight 2 Beta 2 plug-in control 
+      Silverlight plug-in control 
       http://msdn.microsoft.com/en-us/library/cc189089(VS.95).aspx#silverlight_plug_in_configuring
     --&gt;
     &lt;object data=&quot;data:application/x-silverlight,&quot; type=&quot;application/x-silverlight-2&quot; width=&quot;300&quot; height=&quot;300&quot;&gt;
@@ -61,13 +67,17 @@
             of the error window is defined in a separate error.css file that must 
             be included in the page.
 
-        * exceptionDetail = true|false
+        * exceptionDetail = true|[false]
           - If set to true, this will also show the entire managed stack trace 
             in the error window rather than just the dynamic stack trace. 
             This is useful when debugging C#/Visual Basic when called from a 
             dynamic language.
+
+        * console = true|[false]
+          - If set to true, will show a read-eval-print loop (REPL) window at
+            the bottom of the page, for whatever language the start script is in.
       --&gt;
-      &lt;param name=&quot;initParams&quot; value=&quot;debug=true, reportErrors=errorLocation, console = true&quot; /&gt;
+      &lt;param name=&quot;initParams&quot; value=&quot;debug=true, reportErrors=errorLocation&quot; /&gt;
         
       &lt;!-- Handle all Silverlight errors with function defined in javascripts/error.js --&gt;
       &lt;param name=&quot;onerror&quot; value=&quot;onSilverlightError&quot; /&gt;
@@ -79,6 +89,11 @@
       &lt;param name=&quot;background&quot; value=&quot;white&quot; /&gt;
       &lt;param name=&quot;windowless&quot; value=&quot;true&quot; /&gt;
 
+      &lt;!--
+	  &lt;param name=&quot;minRuntimeVersion&quot; value=&quot;2.0.31005.0&quot; /&gt;
+      &lt;param name=&quot;autoUpgrade&quot; value=&quot;true&quot; /&gt;
+      --&gt;
+
       &lt;!-- 
         Shows a &quot;Install Microsoft Silverlight&quot; link if Silverlight is 
         not installed</diff>
      <filename>test/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -89,6 +89,11 @@
       &lt;param name=&quot;background&quot; value=&quot;white&quot; /&gt;
       &lt;param name=&quot;windowless&quot; value=&quot;true&quot; /&gt;
 
+      &lt;!--
+	  &lt;param name=&quot;minRuntimeVersion&quot; value=&quot;2.0.31005.0&quot; /&gt;
+      &lt;param name=&quot;autoUpgrade&quot; value=&quot;true&quot; /&gt;
+      --&gt;
+
       &lt;!-- 
         Shows a &quot;Install Microsoft Silverlight&quot; link if Silverlight is 
         not installed</diff>
      <filename>utilities/xap-http-handler/XapHttpHandler.SampleSite/index.html</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>test/javascripts/error.js</filename>
    </removed>
    <removed>
      <filename>test/stylesheets/console.css</filename>
    </removed>
    <removed>
      <filename>test/stylesheets/error.css</filename>
    </removed>
    <removed>
      <filename>test/stylesheets/screen.css</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>235b755fd3122cf51ce0dad89d2f9b6b7a2124d4</id>
    </parent>
  </parents>
  <author>
    <name>Jimmy Schementi</name>
    <email>jschementi@gmail.com</email>
  </author>
  <url>http://github.com/jschementi/agdlr/commit/e1d3f02ca2d27692b41f7693a23353ad618c3830</url>
  <id>e1d3f02ca2d27692b41f7693a23353ad618c3830</id>
  <committed-date>2009-03-20T03:24:09-07:00</committed-date>
  <authored-date>2009-03-20T03:24:09-07:00</authored-date>
  <message>More release cleanup</message>
  <tree>10b30a579c4526f83ee6370b4633ec0bb70a95d2</tree>
  <committer>
    <name>Jimmy Schementi</name>
    <email>jschementi@gmail.com</email>
  </committer>
</commit>
