Mercurial > pydertron
changeset 23:7cbbec55aef6
Minor modifications.
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Thu, 10 Sep 2009 17:05:05 -0700 |
parents | 915fdf283ac5 |
children | c2c369402a2e |
files | docs.css docs.html docs.txt |
diffstat | 3 files changed, 7 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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; }
--- 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.</p> <p>For instance, here we'll create a <tt class="docutils literal"><span class="pre">JsSandbox</span></tt> whose module root -points to the <tt class="docutils literal"><span class="pre">monkeys</span></tt> SecurableModule compliance test over HTTP:</p> +points to the <a class="reference" href="http://interoperablejs.googlecode.com/svn/trunk/compliance/monkeys/">monkeys</a> SecurableModule compliance test over HTTP:</p> <blockquote> <pre class="doctest-block"> >>> url = ("http://interoperablejs.googlecode.com/svn/trunk/"
--- 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: