summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2018-02-16 17:12:06 +1100
committerChris Johns <chrisj@rtems.org>2018-02-16 17:12:06 +1100
commit9c7468b0991dfe9cd8b208379b69ecfb3a3498c7 (patch)
tree5ef02d108a425654e534198da45a7cc6d628bc5d
parent69c21ada3b2f588e80a82e5e418588ed72261b43 (diff)
Translate the docs path to a doxygen path.
-rw-r--r--docs/docs.rtems.org/static/rtems/js/catalogue.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/docs.rtems.org/static/rtems/js/catalogue.js b/docs/docs.rtems.org/static/rtems/js/catalogue.js
index 1734ab2..37b1e51 100644
--- a/docs/docs.rtems.org/static/rtems/js/catalogue.js
+++ b/docs/docs.rtems.org/static/rtems/js/catalogue.js
@@ -37,6 +37,8 @@ function catalogueFooter() {
' </div/>';
}
+
+
function panel_handlers(tag, id, show) {
$('#' + id + '1').on('shown.bs.collapse', function () {
$("#" + id + " i.indicator").removeClass("glyphicon-chevron-up").addClass("glyphicon-chevron-down");
@@ -92,7 +94,7 @@ function paintCatalogue(xml, path, tag, doxygen, show) {
});
if (doxygen == true) {
table += '<tr>\n';
- table += '<td><a href="doxygen/' + path + '">RTEMS CPU Kit Doxygen</a></td>\n';
+ table += '<td><a href="doxygen/' + path.replace('docs', 'doxygen') + '">RTEMS CPU Kit Doxygen</a></td>\n';
table += empty;
table += empty;
table += '</tr>\n';