<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>docs/Project Homepage.url</filename>
    </added>
    <added>
      <filename>docs/Source Code Repository.url</filename>
    </added>
    <added>
      <filename>script/templates/python/app/app.py</filename>
    </added>
    <added>
      <filename>script/templates/python/app/app.xaml</filename>
    </added>
    <added>
      <filename>script/templates/python/css/screen.css</filename>
    </added>
    <added>
      <filename>script/templates/python/js/error.js</filename>
    </added>
    <added>
      <filename>script/templates/ruby/app/app.rb</filename>
    </added>
    <added>
      <filename>script/templates/ruby/app/app.xaml</filename>
    </added>
    <added>
      <filename>script/templates/ruby/css/screen.css</filename>
    </added>
    <added>
      <filename>script/templates/ruby/js/error.js</filename>
    </added>
    <added>
      <filename>utilities/README.markdown</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,30 +1,17 @@
-README ------------------------------------------------------------------------
-  http://silverlight.net/dlr
-  http://codeplex.com/sdlsdk
-
-  The &quot;Silverlight Dynamic Languages SDK&quot; 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.
-
-  The Silverlight Dynamic Languages SDK is required to run these samples; 
-  please download it from http://codeplex.com/sdlsdk. Simply unzip this 
-  package into the SDK's root directory.
-
-  Note: this package is meant to be used to develop applications with 
-  Silverlight 2 RTW. To install Silverlight, visit the following:
-
-  http://www.microsoft.com/silverlight/resources/install.aspx?v=2.0 
-
-History -----------------------------------------------------------------------
-
-  June 9, 2008    - Release for Silverlight 2 Beta 2, adds new samples
-                    and forks from main package.
-  June 18, 2008   - Adds DLRConsole to this package
-  August 30, 2008 - All index.html files point to the right version of
-                    Silverlight
-  Sept 30, 2008   - Samples for Silverlight 2 RC. 3dtext has been removed for
-                    Silverlight custom font breaking change, and jscript/fractulator
-                    has been removed for JScript-&gt;Python interop not working
-                    anymore
-  Oct 15, 2008    - Samples for Silverlight 2 RTW
+README ------------------------------------------------------------------------
+  http://silverlight.net/dlr
+  http://codeplex.com/sdlsdk
+
+  The &quot;Silverlight Dynamic Languages SDK&quot; is the integration between Silverlight 
+  and Dynamic Languages running on the Dynamic Language Runtime (DLR). The 
+  languages included in this package are IronRuby and IronPython
+  
+  The Silverlight Dynamic Languages SDK is required to run these samples; 
+  please download it from http://codeplex.com/sdlsdk. Simply unzip this 
+  package into the SDK's root directory.
+
+  Note: this package is meant to be used to develop applications with 
+  Silverlight 2 RTW. To install Silverlight, visit the following:
+
+  http://www.microsoft.com/silverlight/resources/install.aspx?v=2.0
+  
\ No newline at end of file</diff>
      <filename>samples/README</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 FILE_PATH = File.expand_path(File.dirname(__FILE__))
 usage = &lt;&lt;-EOS
 
-Usage: sl [ruby|python|jscript] &lt;application_name&gt;
+Usage: sl [ruby|python] &lt;application_name&gt;
   Creates a Silverlight application in the &quot;application_name&quot; directory.
 EOS
 require 'fileutils'</diff>
      <filename>script/sl</filename>
    </modified>
    <modified>
      <diff>@@ -1,55 +1,55 @@
-@echo off
-SETLOCAL
-
-if &quot;%1&quot; == &quot;&quot; goto USAGE
-if /i &quot;%1&quot; == &quot;/?&quot; goto USAGE
-if /i &quot;%1&quot; == &quot;-?&quot; goto USAGE
-if /i &quot;%1&quot; == &quot;/h&quot; goto USAGE
-if /i &quot;%1&quot; == &quot;-h&quot; goto USAGE
-
-SET LANG=&quot;%1&quot;
-SET TEMPLATES_DIR=&quot;%~dp0templates\%LANG%&quot;
-
-if not exist %TEMPLATES_DIR% (
-    echo Template not found: %TEMPLATES_DIR%
-    echo.
-    goto END 
-)
-
-if &quot;%2&quot;==&quot;&quot; (
-    SET APP_PATH=&quot;%CD%\%LANG%_App&quot;
-) else (
-    SET APP_PATH=%2
-)
-if NOT &quot;%APP_PATH:~-1%&quot; == &quot;\&quot; SET APP_PATH=%APP_PATH%\
-
-SET OVERWRITE=y
-if exist %APP_PATH% set /p OVERWRITE=%APP_PATH% already exists. Do you want to overwrite? (Y/N)
-
-if /i &quot;%OVERWRITE%&quot;==&quot;y&quot; (
-    echo.
-) else (
-    echo.
-    echo Sample was not created. 
-    goto END
-)
-
-xcopy /s /y /r /q %TEMPLATES_DIR%\*.* %APP_PATH%
-if &quot;%ERRORLEVEL%&quot;==&quot;0&quot; (
-    echo Your %LANG% Silverlight application was created in %APP_PATH%.
-) else (
-    echo Failed. Please try again.
-)
-
-goto END
-
-:USAGE
-echo This is a tool to create a Silverlight application for dynamic languages.
-echo.
-echo Usage:
-echo     sl [python] ^&lt;ApplicationPath^&gt;
-echo.
-
-
-:END
-ENDLOCAL
+@echo off
+SETLOCAL
+
+if &quot;%1&quot; == &quot;&quot; goto USAGE
+if /i &quot;%1&quot; == &quot;/?&quot; goto USAGE
+if /i &quot;%1&quot; == &quot;-?&quot; goto USAGE
+if /i &quot;%1&quot; == &quot;/h&quot; goto USAGE
+if /i &quot;%1&quot; == &quot;-h&quot; goto USAGE
+
+SET LANG=&quot;%1&quot;
+SET TEMPLATES_DIR=&quot;%~dp0templates\%LANG%&quot;
+
+if not exist %TEMPLATES_DIR% (
+    echo Template not found: %TEMPLATES_DIR%
+    echo.
+    goto END 
+)
+
+if &quot;%2&quot;==&quot;&quot; (
+    SET APP_PATH=&quot;%CD%\%LANG%_App&quot;
+) else (
+    SET APP_PATH=%2
+)
+if NOT &quot;%APP_PATH:~-1%&quot; == &quot;\&quot; SET APP_PATH=%APP_PATH%\
+
+SET OVERWRITE=y
+if exist %APP_PATH% set /p OVERWRITE=%APP_PATH% already exists. Do you want to overwrite? (Y/N)
+
+if /i &quot;%OVERWRITE%&quot;==&quot;y&quot; (
+    echo.
+) else (
+    echo.
+    echo Sample was not created. 
+    goto END
+)
+
+xcopy /s /y /r /q %TEMPLATES_DIR%\*.* %APP_PATH%
+if &quot;%ERRORLEVEL%&quot;==&quot;0&quot; (
+    echo Your %LANG% Silverlight application was created in %APP_PATH%.
+) else (
+    echo Failed. Please try again.
+)
+
+goto END
+
+:USAGE
+echo This is a tool to create a Silverlight application for dynamic languages.
+echo.
+echo Usage:
+echo     sl [ruby^|python] ^&lt;ApplicationPath^&gt;
+echo.
+
+
+:END
+ENDLOCAL</diff>
      <filename>script/sl.bat</filename>
    </modified>
    <modified>
      <diff>@@ -1,109 +1,112 @@
-&#65279;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
-&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; &gt;
-&lt;head&gt;
-    &lt;title&gt;Silverlight Template&lt;/title&gt;
-
-    &lt;!-- Basic stylesheet for applicaiton --&gt;
-    &lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;stylesheets/screen.css&quot; /&gt;
-    &lt;!-- Formatting for Dynamic Language error window --&gt;
-    &lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;stylesheets/error.css&quot; /&gt;
-    &lt;!-- Defines &quot;onSilverlightError&quot; function for Silverlight plugin --&gt;
-    &lt;script type=&quot;text/javascript&quot; src=&quot;javascripts/error.js&quot;&gt;&lt;/script&gt;
-&lt;/head&gt;
-
-&lt;body&gt;
-  &lt;!-- 
-    Runtime errors from Silverlight will be displayed here.
-    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=&quot;silverlightControlHost&quot;&gt;
-
-    &lt;!-- 
-      Silverlight 2 Beta 2 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;100%&quot; height=&quot;100%&quot;&gt;
-
-      &lt;!-- 
-        &quot;source&quot; points to the actual Silverlight application
-        If using &quot;Chiron /w&quot;, value should be the &quot;&lt;your app folder&gt;.xap&quot;
-      --&gt;
-      &lt;param name=&quot;source&quot; value=&quot;python.xap&quot;/&gt;
-
-      &lt;!-- 
-        &quot;initParams&quot; is a comma-seperated way to pass key=value pair arguments 
-        into your Silverlight application. Dynamic Languages use special 
-        arguments to configure the application:
-    
-        * start = app.(rb|py|js)
-          - this is the entry-point file to the application. 
-          - By default, it will look for any file named &quot;app&quot;, regardless of 
-            the extension. The extension will be used to figure out the language. 
-          - This option can be set to anything you want, but it must include 
-            the extension.
-
-        * debug = [true]|false
-          - Runs your code as debug-able; stack traces will be shown if an error
-            occurs. 
-          - This lets you attach the browser to the Visual Studio
-            debugger and step through the running program (only when the
-            Silverlight tools are installed).
-          - When omitted/set to false, all errors will be silent 
-            (for deployment purposes)
-
-        * reportErrors = [HTML-element-ID]
-          - In the event of an error, the error window will be written into the 
-            innerHTML property of the HTML element with an ID attribute matching 
-            the value of this field.
-          - If there is no matching ID, a HTML element is created with that ID, 
-            and the error window inserted.
-          - If this field is omitted, no errors will be shown.
-            + You can define the &quot;onerror&quot; param, which will let you handle any 
-              error with JavaScript (the index.html templates do this, if you
-              want sample code).
-          - This just causes HTML to be generated in the HTML element; the styling 
-            of the error window is defined in a separate error.css file that must 
-            be included in the page.
-
-        * 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.
-      --&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;
-      
-      &lt;!-- 
-        Other properties of the Silverlight plug-in. For documentation on this, see:
-        http://msdn.microsoft.com/en-us/library/cc189089(VS.95).aspx#silverlight_plug_in_configuring
-      --&gt;
-      &lt;param name=&quot;background&quot; value=&quot;white&quot; /&gt;
-      &lt;param name=&quot;windowless&quot; value=&quot;true&quot; /&gt;
-
-      &lt;!-- 
-        Shows a &quot;Install Microsoft Silverlight&quot; link if Silverlight is 
-        not installed
-      --&gt;
-      &lt;a href=&quot;http://go.microsoft.com/fwlink/?LinkID=124807&quot; style=&quot;text-decoration: none;&quot;&gt;
-        &lt;img src=&quot;http://go.microsoft.com/fwlink/?LinkId=108181&quot; alt=&quot;Get Microsoft Silverlight&quot; style=&quot;border-style: none&quot;/&gt;
-      &lt;/a&gt;
-
-    &lt;/object&gt;
-
-    &lt;!-- 
-      &lt;iframe&gt; needed to prevent Safari from caching the page and reloading
-      the plugin when the user navigates back to a previously-visted 
-      Silverlight page.
-    --&gt;
-    &lt;iframe style='visibility:hidden;height:0;width:0;border:0px'&gt;&lt;/iframe&gt;
-  
-  &lt;/div&gt;
-
-&lt;/body&gt;
-&lt;/html&gt;
+&#65279;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
+&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; &gt;
+&lt;head&gt;
+    &lt;title&gt;Silverlight Template&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;
+  &lt;!-- 
+    Runtime errors from Silverlight will be displayed here.
+    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=&quot;silverlightControlHost&quot;&gt;
+
+    &lt;!-- 
+      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;100%&quot; height=&quot;100%&quot;&gt;
+
+      &lt;!-- 
+        &quot;source&quot; points to the actual Silverlight application
+        If using &quot;Chiron /w&quot;, value should be the &quot;&lt;your app folder&gt;.xap&quot;
+      --&gt;
+      &lt;param name=&quot;source&quot; value=&quot;app.xap&quot;/&gt;
+
+      &lt;!-- 
+        &quot;initParams&quot; is a comma-seperated way to pass key=value pair arguments 
+        into your Silverlight application. Dynamic Languages use special 
+        arguments to configure the application:
+    
+        * start = app.(rb|py|js)
+          - this is the entry-point file to the application. 
+          - By default, it will look for any file named &quot;app&quot;, regardless of 
+            the extension. The extension will be used to figure out the language. 
+          - This option can be set to anything you want, but it must include 
+            the extension.
+
+        * debug = [true]|false
+          - Runs your code as debug-able; stack traces will be shown if an error
+            occurs. 
+          - This lets you attach the browser to the Visual Studio
+            debugger and step through the running program (only when the
+            Silverlight tools are installed).
+          - When omitted/set to false, all errors will be silent 
+            (for deployment purposes)
+
+        * reportErrors = [HTML-element-ID]
+          - In the event of an error, the error window will be written into the 
+            innerHTML property of the HTML element with an ID attribute matching 
+            the value of this field.
+          - If there is no matching ID, a HTML element is created with that ID, 
+            and the error window inserted.
+          - If this field is omitted, no errors will be shown.
+            + You can define the &quot;onerror&quot; param, which will let you handle any 
+              error with JavaScript (the index.html templates do this, if you
+              want sample code).
+          - This just causes HTML to be generated in the HTML element; the styling 
+            of the error window is defined in a separate error.css file that must 
+            be included in the page.
+
+        * 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;!-- Handle all Silverlight errors with function defined in javascripts/error.js --&gt;
+      &lt;param name=&quot;onerror&quot; value=&quot;onSilverlightError&quot; /&gt;
+      
+      &lt;!-- 
+        Other properties of the Silverlight plug-in. For documentation on this, see:
+        http://msdn.microsoft.com/en-us/library/cc189089(VS.95).aspx#silverlight_plug_in_configuring
+      --&gt;
+      &lt;param name=&quot;background&quot; value=&quot;white&quot; /&gt;
+      &lt;param name=&quot;windowless&quot; value=&quot;true&quot; /&gt;
+
+      &lt;!-- 
+        Shows a &quot;Install Microsoft Silverlight&quot; link if Silverlight is 
+        not installed
+      --&gt;
+      &lt;a href=&quot;http://go.microsoft.com/fwlink/?LinkID=124807&quot; style=&quot;text-decoration: none;&quot;&gt;
+        &lt;img src=&quot;http://go.microsoft.com/fwlink/?LinkId=108181&quot; alt=&quot;Get Microsoft Silverlight&quot; style=&quot;border-style: none&quot;/&gt;
+      &lt;/a&gt;
+
+    &lt;/object&gt;
+
+    &lt;!-- 
+      &lt;iframe&gt; needed to prevent Safari from caching the page and reloading
+      the plugin when the user navigates back to a previously-visted 
+      Silverlight page.
+    --&gt;
+    &lt;iframe style='visibility:hidden;height:0;width:0;border:0px'&gt;&lt;/iframe&gt;
+  
+  &lt;/div&gt;
+
+&lt;/body&gt;
+&lt;/html&gt;</diff>
      <filename>script/templates/python/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -3,12 +3,11 @@
 &lt;head&gt;
     &lt;title&gt;Silverlight Template&lt;/title&gt;
 
-    &lt;!-- Basic stylesheet for applicaiton --&gt;
-    &lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;stylesheets/screen.css&quot; /&gt;
-    &lt;!-- Formatting for Dynamic Language error window --&gt;
-    &lt;link type=&quot;text/css&quot; rel=&quot;stylesheet&quot; href=&quot;stylesheets/error.css&quot; /&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;javascripts/error.js&quot;&gt;&lt;/script&gt;
+    &lt;script type=&quot;text/javascript&quot; src=&quot;js/error.js&quot;&gt;&lt;/script&gt;
 &lt;/head&gt;
 
 &lt;body&gt;
@@ -22,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;100%&quot; height=&quot;100%&quot;&gt;
@@ -31,7 +30,7 @@
         &quot;source&quot; points to the actual Silverlight application
         If using &quot;Chiron /w&quot;, value should be the &quot;&lt;your app folder&gt;.xap&quot;
       --&gt;
-      &lt;param name=&quot;source&quot; value=&quot;ruby.xap&quot;/&gt;
+      &lt;param name=&quot;source&quot; value=&quot;app.xap&quot;/&gt;
 
       &lt;!-- 
         &quot;initParams&quot; is a comma-seperated way to pass key=value pair arguments 
@@ -68,11 +67,15 @@
             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;
         </diff>
      <filename>script/templates/ruby/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -163,7 +163,7 @@
     2. the urlPrefix will be added to relative assembly paths
   --&gt;
   &lt;AppManifest.xaml&gt;
-    &lt;Deployment xmlns=&quot;http://schemas.microsoft.com/client/2007/deployment&quot; xmlns:x=&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot; RuntimeVersion=&quot;2.0.40115.0&quot; EntryPointAssembly=&quot;Microsoft.Scripting.Silverlight&quot; EntryPointType=&quot;Microsoft.Scripting.Silverlight.DynamicApplication&quot;&gt;
+    &lt;Deployment xmlns=&quot;http://schemas.microsoft.com/client/2007/deployment&quot; xmlns:x=&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot; RuntimeVersion=&quot;2.0.31005.0&quot; EntryPointAssembly=&quot;Microsoft.Scripting.Silverlight&quot; EntryPointType=&quot;Microsoft.Scripting.Silverlight.DynamicApplication&quot;&gt;
       &lt;Deployment.Parts&gt;
         &lt;!-- Add additional assemblies here --&gt;
       &lt;/Deployment.Parts&gt;</diff>
      <filename>utilities/chiron-http-handler/ChironHttpHandler.SampleSite/web.config</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>samples/jscript/3dshapes/app/app.jsx</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/app/app.xaml</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bg.JPG</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt01a.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt01b.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt02a.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt02b.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt03a.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt03b.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt04a.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt04b.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt05a.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt05b.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt06a.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/bt06b.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/images/linebg.JPG</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/assets/stylesheets/error.css</filename>
    </removed>
    <removed>
      <filename>samples/jscript/3dshapes/index.html</filename>
    </removed>
    <removed>
      <filename>samples/jscript/clock/app/app.js</filename>
    </removed>
    <removed>
      <filename>samples/jscript/clock/app/app.xaml</filename>
    </removed>
    <removed>
      <filename>samples/jscript/clock/assets/images/silverlight_dusk1_std_1024x768.jpg</filename>
    </removed>
    <removed>
      <filename>samples/jscript/clock/assets/stylesheets/error.css</filename>
    </removed>
    <removed>
      <filename>samples/jscript/clock/index.html</filename>
    </removed>
    <removed>
      <filename>samples/jscript/collateraldamage/app/app.js</filename>
    </removed>
    <removed>
      <filename>samples/jscript/collateraldamage/app/blue.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/collateraldamage/app/collateral.xaml</filename>
    </removed>
    <removed>
      <filename>samples/jscript/collateraldamage/app/images/blue.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/collateraldamage/app/images/red.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/collateraldamage/app/red.png</filename>
    </removed>
    <removed>
      <filename>samples/jscript/collateraldamage/assets/js/Silverlight.js</filename>
    </removed>
    <removed>
      <filename>samples/jscript/collateraldamage/index.html</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/Scene.xaml</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/app.js</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/assets/images/eagle.jpg</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/assets/images/gorilla.jpg</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/assets/images/gyr.jpg</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/assets/images/heron1.jpg</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/assets/images/heron2.jpg</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/assets/images/jaguar.jpg</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/assets/images/penguin1.jpg</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/assets/images/penguin2.jpg</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/assets/images/penguin3.jpg</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/app/assets/images/tamarin.jpg</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/assets/js/Silverlight.js</filename>
    </removed>
    <removed>
      <filename>samples/jscript/photos/index.html</filename>
    </removed>
    <removed>
      <filename>script/templates/jscript/index.html</filename>
    </removed>
    <removed>
      <filename>script/templates/jscript/javascripts/error.js</filename>
    </removed>
    <removed>
      <filename>script/templates/jscript/jscript/app.js</filename>
    </removed>
    <removed>
      <filename>script/templates/jscript/jscript/app.xaml</filename>
    </removed>
    <removed>
      <filename>script/templates/jscript/stylesheets/error.css</filename>
    </removed>
    <removed>
      <filename>script/templates/jscript/stylesheets/screen.css</filename>
    </removed>
    <removed>
      <filename>script/templates/python/javascripts/error.js</filename>
    </removed>
    <removed>
      <filename>script/templates/python/python/app.py</filename>
    </removed>
    <removed>
      <filename>script/templates/python/python/app.xaml</filename>
    </removed>
    <removed>
      <filename>script/templates/python/stylesheets/error.css</filename>
    </removed>
    <removed>
      <filename>script/templates/python/stylesheets/screen.css</filename>
    </removed>
    <removed>
      <filename>script/templates/ruby/javascripts/error.js</filename>
    </removed>
    <removed>
      <filename>script/templates/ruby/ruby/app.rb</filename>
    </removed>
    <removed>
      <filename>script/templates/ruby/ruby/app.xaml</filename>
    </removed>
    <removed>
      <filename>script/templates/ruby/ruby/silverlight.rb</filename>
    </removed>
    <removed>
      <filename>script/templates/ruby/stylesheets/error.css</filename>
    </removed>
    <removed>
      <filename>script/templates/ruby/stylesheets/screen.css</filename>
    </removed>
    <removed>
      <filename>utilities/chiron-here.readme</filename>
    </removed>
    <removed>
      <filename>utilities/chiron-http-handler/README.markdown</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>75e0f00e7e4807fa22d938d5645995c1809ca401</id>
    </parent>
  </parents>
  <author>
    <name>Jimmy Schementi</name>
    <email>jschementi@gmail.com</email>
  </author>
  <url>http://github.com/jschementi/agdlr/commit/2ceaa1e30bfbd2c29c71c60bc6b34c1352f5c9aa</url>
  <id>2ceaa1e30bfbd2c29c71c60bc6b34c1352f5c9aa</id>
  <committed-date>2009-03-20T02:29:23-07:00</committed-date>
  <authored-date>2009-03-20T02:29:23-07:00</authored-date>
  <message>Remove JS, add Docs, update sample readme, clean up scripts, templates, and utilities</message>
  <tree>8b7238c4a8e5575e35f71ed0db670628d6db1ab2</tree>
  <committer>
    <name>Jimmy Schementi</name>
    <email>jschementi@gmail.com</email>
  </committer>
</commit>
