<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>test/javascript/assets/builder.js</filename>
    </added>
    <added>
      <filename>test/javascript/assets/controls.js</filename>
    </added>
    <added>
      <filename>test/javascript/assets/dragdrop.js</filename>
    </added>
    <added>
      <filename>test/javascript/assets/effects.js</filename>
    </added>
    <added>
      <filename>test/javascript/assets/slider.js</filename>
    </added>
    <added>
      <filename>test/javascript/assets/sound.js</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_eight.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_five.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_four.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_lorem.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_lorem_area.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_one.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_seven.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_six.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_three.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_two.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_unformatted_eight.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_unformatted_five.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_unformatted_four.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_unformatted_lorem.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_unformatted_lorem_area.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_unformatted_one.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_unformatted_seven.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_unformatted_six.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_unformatted_three.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translate_unformatted_two.xml</filename>
    </added>
    <added>
      <filename>test/javascript/fixtures/translations.json</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -49,8 +49,7 @@ namespace :test do
 
     t.load_tests(tests_to_run)
     t.prepare_tests
-    t.mount_assets
-    t.mount_test_paths
+    t.mount_paths
 
     %w( safari firefox ie konqueror opera ).each do |browser|
       t.browser(browser.to_sym) unless browsers_to_test &amp;&amp; !browsers_to_test.include?(browser)</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -6,45 +6,85 @@ body {
   font-size:0.8em;
 }
 
+.navigation {
+  background: #9DC569;
+  color: #fff;
+}
+
+.navigation h1 {
+  font-size: 20px;
+}
+
+.navigation h2 {
+  font-size: 16px;
+  font-weight: normal;
+  margin: 0;
+  border: 1px solid #e8a400;
+  border-bottom: 0;
+  background: #ffc;
+  color: #E8A400;
+  padding: 8px;
+  padding-bottom: 0;
+}
+
+.navigation ul {
+  margin-top: 0;
+  border: 1px solid #E8A400;
+  border-top: none;
+  background: #ffc;
+  padding: 8px;
+  margin-left: 0;
+}
+
+.navigation ul li {
+  font-size: 12px;
+  list-style-type: none;
+  margin-top: 1px;
+  margin-bottom: 1px;
+  color: #555;
+}
+
+.navigation a {
+  color: #ffc;
+}
+
+.navigation ul li a {
+  color: #000;
+}
+
 #log {
   padding-bottom: 1em;
   border-bottom: 2px solid #000;
   margin-bottom: 2em;
 }
 
-.logsummary {
-  margin-top: 1em;
+#logsummary {
   margin-bottom: 1em;
   padding: 1ex;
   border: 1px solid #000;
   font-weight: bold;
 }
 
-.logtable {
+#logtable {
   width:100%;
   border-collapse: collapse;
   border: 1px dotted #666;
 }
 
-.logtable td, .logtable th {
+#logtable td, #logtable th {
   text-align: left;
   padding: 3px 8px;
   border: 1px dotted #666;
 }
 
-.logtable .passed {
+#logtable .passed {
   background-color: #cfc;
 }
 
-.logtable .failed, .logtable .error {
+#logtable .failed, #logtable .error {
   background-color: #fcc;
 }
 
-.logtable td div.action_buttons {
-  display: inline;
-}
-
-.logtable td div.action_buttons input {
-  margin: 0 5px;
-  font-size: 10px;
+#logtable .nameCell {
+  cursor: pointer;
 }</diff>
      <filename>test/javascript/assets/test.css</filename>
    </modified>
    <modified>
      <diff>@@ -27,8 +27,8 @@ var TestUtil = {
   bindElement: function(id, text, selector) {
     text     = text || 'paragraph '+id;
     selector = selector || 'input[type~=text]';
-    ClickToGlobalize.DefaultOptions.translateUrl            = 'fixtures/translate_'+id+'.xml';
-    ClickToGlobalize.DefaultOptions.translateUnformattedUrl = 'fixtures/translate_unformatted_'+id+'.xml';
+    ClickToGlobalize.DefaultOptions.translateUrl            = '/fixtures/translate_'+id+'.xml';
+    ClickToGlobalize.DefaultOptions.translateUnformattedUrl = '/fixtures/translate_unformatted_'+id+'.xml';
     
     element = $$$(text).first();
 </diff>
      <filename>test/javascript/functional/ajax_inplaceeditor_test.js</filename>
    </modified>
    <modified>
      <diff>@@ -389,13 +389,11 @@ class ClickToGlobalizeJavaScriptTestTask &lt; JavaScriptTestTask
     @test_builder.setup
   end
 
-  def mount_assets
-    mount &quot;/&quot;,       TEST_ASSETS_PATH
-    mount &quot;/assets&quot;, ASSETS_PATH
-  end
-
-  def mount_test_paths
-    mount &quot;/test&quot;, TMP_TEST_PATH
+  def mount_paths
+    mount &quot;/&quot;,      TEST_ASSETS_PATH
+    mount &quot;/assets&quot;,     ASSETS_PATH
+    mount &quot;/fixtures&quot;, FIXTURES_PATH
+    mount &quot;/test&quot;,     TMP_TEST_PATH
   end
 end
 </diff>
      <filename>test/javascript/lib/jstest.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
         &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
 &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt;
 &lt;head&gt;
-  &lt;title&gt;Prototype Unit test file | &lt;%= @test_case.title %&gt;&lt;/title&gt;
+  &lt;title&gt;Click to Globalize test file | &lt;%= @test_case.title %&gt;&lt;/title&gt;
   &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
   &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;
     var eventResults = {};
@@ -13,10 +13,10 @@
   &lt;script src=&quot;/unittest.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
   &lt;link rel=&quot;stylesheet&quot; href=&quot;/test.css&quot; type=&quot;text/css&quot; /&gt;
   
-  &lt;script src=&quot;/assets/click_to_globalize.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
+  &lt;script src=&quot;/assets/javascripts/click_to_globalize.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
 &lt;/head&gt;
 &lt;body&gt;
-&lt;h1&gt;Prototype Unit test file&lt;/h1&gt;
+&lt;h1&gt;Click to Globalize test file&lt;/h1&gt;
 &lt;h2&gt;&lt;%= @test_case.title %&gt;&lt;/h2&gt;
 
 &lt;!-- Log output start --&gt;</diff>
      <filename>test/javascript/templates/template.erb</filename>
    </modified>
    <modified>
      <diff>@@ -24,7 +24,7 @@ new Test.Unit.Runner({
     authenticityToken = '45c0a7bf277d5e40d490438f41a67069e5334d96';
     requestForgeryProtectionToken = 'authenticity_token';
     clickToGlobalize  = new ClickToGlobalize(authenticityToken, requestForgeryProtectionToken, 
-      {translationsUrl: 'fixtures/translations.json'});
+      {translationsUrl: '/fixtures/translations.json'});
     document.fire(&quot;dom:loaded&quot;);
   },
   testRespondTo: function() {</diff>
      <filename>test/javascript/unit/click_to_globalize_test.js</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>test/javascript/functional/fixtures/translate_eight.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_five.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_four.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_lorem.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_lorem_area.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_one.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_seven.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_six.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_three.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_two.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_unformatted_eight.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_unformatted_five.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_unformatted_four.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_unformatted_lorem.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_unformatted_lorem_area.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_unformatted_one.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_unformatted_seven.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_unformatted_six.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_unformatted_three.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/functional/fixtures/translate_unformatted_two.xml</filename>
    </removed>
    <removed>
      <filename>test/javascript/unit/fixtures/translations.json</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>a7fbd6e0535d922fe6e59e9152d3c5381a68f71a</id>
    </parent>
  </parents>
  <author>
    <name>Luca Guidi</name>
    <email>guidi.luca@gmail.com</email>
  </author>
  <url>http://github.com/jodosha/click-to-globalize/commit/436319b640a25bda2d453ff33ef05ac94ed3d27d</url>
  <id>436319b640a25bda2d453ff33ef05ac94ed3d27d</id>
  <committed-date>2009-04-08T11:07:16-07:00</committed-date>
  <authored-date>2009-04-08T11:07:16-07:00</authored-date>
  <message>Make Javascript test running properly</message>
  <tree>a50ba1c22b9f2609276b2077a27a6ef14ac19bb1</tree>
  <committer>
    <name>Luca Guidi</name>
    <email>guidi.luca@gmail.com</email>
  </committer>
</commit>
