summaryrefslogtreecommitdiffstats
path: root/common/coverpage/static/rtems/js/catalogue.js
diff options
context:
space:
mode:
Diffstat (limited to 'common/coverpage/static/rtems/js/catalogue.js')
-rw-r--r--common/coverpage/static/rtems/js/catalogue.js108
1 files changed, 108 insertions, 0 deletions
diff --git a/common/coverpage/static/rtems/js/catalogue.js b/common/coverpage/static/rtems/js/catalogue.js
new file mode 100644
index 0000000..ec52794
--- /dev/null
+++ b/common/coverpage/static/rtems/js/catalogue.js
@@ -0,0 +1,108 @@
+/*!
+ * Catalogue 0.1
+ * Copyright 2017 Chris Johns <chrisj@rtems.org>
+ * Licensed under the MIT license
+ */
+
+function parseCatalogue(xml) {
+ if (window.DOMParser)
+ {
+ parser = new DOMParser();
+ xmlDoc = parser.parseFromString(xml, "text/xml");
+ }
+ else // Internet Explorer
+ {
+ xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
+ xmlDoc.async = false;
+ xmlDoc.loadXML(xml);
+ }
+ return xmlDoc;
+}
+
+function catalogueHeader(id, title, date) {
+ return '' +
+ ' <div class="table-responsive">' +
+ ' <table class="table table-hover table-condensed table-nonfluid">' +
+ ' <tbody>' +
+ ' <thead>' +
+ ' <tr id="' + id + '" class="accordion-toggle" data-toggle="collapse"' +
+ ' data-parent="#rtems-catalogue" data-target=".' + id + 'Details">' +
+ ' <th><span class="label label-default">' + date + '</span> ' + title + '</th>\n' +
+ ' <th><i class="indicator glyphicon glyphicon-chevron-up pull-right"></i></th>' +
+ ' </tr>' +
+ ' </thead>' +
+ ' <tr>' +
+ ' <td colspan="3" class="hiddenRow">' +
+ ' <div class="accordion-body collapse ' + id + 'Details" id="' + id + '1">' +
+ ' <table class="table table-condensed table-nonfluid">' +
+ ' <tbody>' +
+ ' <thead><tr><th>Online</th><th>PDF</th><th>Single Page</th><tr></thead>';
+}
+function catalogueFooter() {
+ return '' +
+ ' </tbody>' +
+ ' </table>' +
+ ' </div>' +
+ ' </td>' +
+ ' </tr>' +
+ ' </tbody>' +
+ ' </table>' +
+ ' </dev/>';
+}
+
+function paintCatalogue(xml) {
+ var el_cat_title = $('#rtems-catalogue-title');
+ var el_cat = $('#rtems-catalogue');
+ /*
+ * Use jquery as XMLDocument is consider not stable on Firefox's web site.
+ */
+ var pdfIcon = 'static/images/Adobe_PDF_file_icon_32x32.png';
+ var htmlIcon = 'static/images/html-xxl.png';
+ var docs = $(xml).find('rtems-docs');
+ var date = $(docs).attr('date');
+ var title = $(docs).find('catalogue');
+ var id = 'xxx';
+ var table = catalogueHeader(id, title.text(), date);
+ $(docs).find('doc').each(function() {
+ var name = $(this).find('name').text();
+ var title = $(this).find('title').text();
+ var release = $(this).find('release').text();
+ var version = $(this).find('version').text();
+ var html = $(this).find('html').text();
+ var pdf = $(this).find('pdf').text();
+ var singlehtml = $(this).find('singlehtml').text();
+ var empty = '<td></a></td>\n';
+ table += '<tr>\n';
+ if (html)
+ table += '<td><a href="' + html + '">' + title + '</a></td>\n';
+ else
+ table += empty;
+ if (pdf)
+ table += '<td><a href="' + pdf + '">' +
+ '<img src="' + pdfIcon + '" width="20" height="20"></a></td>\n';
+ else
+ table += empty;
+ if (singlehtml)
+ table += '<td><a href="' + singlehtml + '">' +
+ '<img src="' + htmlIcon + '" width="20" height="20"></a></td>\n';
+ else
+ table += empty;
+ table += '</tr>\n';
+ });
+ table += catalogueFooter();
+ //el_cat_title.html('<h3>' + $(title).text() + '</h3>');
+ el_cat.html(table);
+ $('#' + id + '1').on('shown.bs.collapse', function () {
+ $("#" + id + " i.indicator").removeClass("glyphicon-chevron-up").addClass("glyphicon-chevron-down");
+ });
+ $('#' + id + '1').on('hidden.bs.collapse', function () {
+ $("#" + id + " i.indicator").removeClass("glyphicon-chevron-down").addClass("glyphicon-chevron-up");
+ });
+ $('#' + id + '1').collapse('show');
+}
+
+function loadCatalogue(path) {
+ var f = $.get(path, function(xml) {
+ paintCatalogue(xml);
+ }, 'xml');
+}