# HG changeset patch # User Atul Varma # Date 1252627505 25200 # Node ID 7cbbec55aef6ba5df0f474689768176687c16f22 # Parent 915fdf283ac50614a90841f901f0ad574ccd508a Minor modifications. diff -r 915fdf283ac5 -r 7cbbec55aef6 docs.css --- a/docs.css Thu Sep 10 16:59:18 2009 -0700 +++ b/docs.css Thu Sep 10 17:05:05 2009 -0700 @@ -31,13 +31,12 @@ } hr { - border: 0; - color: black; - background-color: black; - height: 1px; + display: none; } .footer { + text-align: right; width: 50em; + padding: 0.25em; margin: 0 auto; } diff -r 915fdf283ac5 -r 7cbbec55aef6 docs.html --- a/docs.html Thu Sep 10 16:59:18 2009 -0700 +++ b/docs.html Thu Sep 10 17:05:05 2009 -0700 @@ -19,7 +19,7 @@ Python and JavaScript so that you don't need to deal with any of the low-level details of the Pydermonkey API.

For instance, here we'll create a JsSandbox whose module root -points to the monkeys SecurableModule compliance test over HTTP:

+points to the monkeys SecurableModule compliance test over HTTP:

 >>> url = ("http://interoperablejs.googlecode.com/svn/trunk/"
diff -r 915fdf283ac5 -r 7cbbec55aef6 docs.txt
--- a/docs.txt	Thu Sep 10 16:59:18 2009 -0700
+++ b/docs.txt	Thu Sep 10 17:05:05 2009 -0700
@@ -17,12 +17,14 @@
 __ http://wiki.commonjs.org/wiki/CommonJS
 
 For instance, here we'll create a ``JsSandbox`` whose module root
-points to the ``monkeys`` SecurableModule compliance test over HTTP:
+points to the `monkeys`__ SecurableModule compliance test over HTTP:
 
   >>> url = ("http://interoperablejs.googlecode.com/svn/trunk/"
   ...        "compliance/monkeys/")
   >>> sandbox = JsSandbox(HttpFileSystem(url))
 
+__ http://interoperablejs.googlecode.com/svn/trunk/compliance/monkeys/
+
 This compliance test requires a global ``sys`` object that contains one
 method, ``print()``, that takes two arguments. First, we'll create the
 ``print()`` function and prepare it for exposure to JS code: