Files
scikit-image/doc/source/themes/agogo/static/docversions.js
T
Tony S Yu abbd7c8854 DOC: Use CSS to style versions sidebar.
Summary:

* Label current version with an html id so it can be highlighted in CSS.
* Note: Switched out arrow indicator for a disc b/c it's easier (unicode bullets are not well-supported).
* Move script file to theme and use standard Sphinx theming to include javascript file.
2012-02-09 00:02:57 -05:00

21 lines
755 B
JavaScript

function insert_version_links() {
var labels = ['dev', '0.4', '0.3'];
document.write('<ul class="versions">\n');
for (i = 0; i < labels.length; i++){
open_list = '<li>'
if (typeof(DOCUMENTATION_OPTIONS) !== 'undefined') {
if ((DOCUMENTATION_OPTIONS['VERSION'] == labels[i]) ||
(DOCUMENTATION_OPTIONS['VERSION'].match(/dev$/) && (i == 0))) {
open_list = '<li id="current">'
}
}
document.write(open_list);
document.write('<a href="URL">skimage VERSION</a> </li>\n'
.replace('VERSION', labels[i])
.replace('URL', 'http://scikits-image.org/docs/' + labels[i]));
}
document.write('</ul>\n');
}