Skip to content
Snippets Groups Projects
Commit fcffe224 authored by Katleho Madisa's avatar Katleho Madisa
Browse files

Merge branch 'sar-259/Testing-skallop-docs' into 'master'

SAR-259 Resolving the error on SKA Logging docs

See merge request ska-telescope/ska-ser-logging!13
parents 6234c3a1 56c891d8
No related branches found
No related tags found
No related merge requests found
jQuery(function(){
var github_v3_endpoint = "https://api.github.com/orgs/ska-telescope/repos";
var list = $("#list-of-projects > ul");
if( list.length ){
list.empty();
$.getJSON(github_v3_endpoint, function(data){
$.each(data, function(key, val){
//console.log(val);
if(val["description"])
description = val["description"];
else
description = "";
item = "<li><a href=\"" +
val["html_url"] +
"\">" +
val["name"] +
"</a> " +
description +
"</li>";
$(item).appendTo(list);
}); //end each
}); //end getJSON
}else{ //if list not found
//console.log("list not found")
}
});
jQuery(function(){
var ci_dashboard = "https://ska-telescope.gitlab.io/ska_ci_dashboard/";
var dashboard_table = $("#ci-dashboard > table");
if( dashboard_table.length ){
$.get(ci_dashboard, function(data){
dashboard_table.html($(data).find("#dataTable"));
});
}
});
...@@ -23,8 +23,8 @@ sys.path.insert(0, os.path.abspath('../../src')) ...@@ -23,8 +23,8 @@ sys.path.insert(0, os.path.abspath('../../src'))
import sphinx_rtd_theme import sphinx_rtd_theme
def setup(app): def setup(app):
app.add_stylesheet('css/custom.css') app.add_css_file('css/custom.css')
app.add_javascript('js/github.js') app.add_js_file('js/gitlab.js')
# -- General configuration ------------------------------------------------ # -- General configuration ------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment