diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-12-06 16:59:48 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-12-06 16:59:48 +0000 |
| commit | 1c329624a5e4b9122b047c93cd64fbeb217d8682 (patch) | |
| tree | df09d6ddd169bd37c3c105273c057dba079279c5 /doc/scripts.js | |
| parent | 6eca02a31f9fdbc7d039a89f6f8ea212fe5121d9 (diff) | |
| download | sqlalchemy-1c329624a5e4b9122b047c93cd64fbeb217d8682.tar.gz | |
- merged -r5338:5429 of sphinx branch.
- Documentation has been converted to Sphinx.
In particular, the generated API documentation
has been constructed into a full blown
"API Reference" section which organizes
editorial documentation combined with
generated docstrings. Cross linking between
sections and API docs are vastly improved,
a javascript-powered search feature is
provided, and a full index of all
classes, functions and members is provided.
Diffstat (limited to 'doc/scripts.js')
| -rw-r--r-- | doc/scripts.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/doc/scripts.js b/doc/scripts.js deleted file mode 100644 index 8558d92af..000000000 --- a/doc/scripts.js +++ /dev/null @@ -1,25 +0,0 @@ - -function togglePopbox(id, show, hide) { - var link = document.getElementById(id + "_link"); - var div = document.getElementById(id + "_div"); - if (div.style.display == 'block') { - div.style.display = 'none'; - if (link) { - link.firstChild.nodeValue = show; - } - } - else if (div.style.display == 'none') { - div.style.display = 'block'; - if (link) { - link.firstChild.nodeValue = hide; - } - } -} - -function alphaApi() { - window.open("alphaapi.html", "_blank", "width=600,height=400, scrollbars=yes,resizable=yes,toolbar=no"); -} - -function alphaImplementation() { - window.open("alphaimplementation.html", "_blank", "width=600,height=400, scrollbars=yes,resizable=yes,toolbar=no"); -}
\ No newline at end of file |
