Skip to content

Commit

Permalink
Set the GH_TOKEN
Browse files Browse the repository at this point in the history
  • Loading branch information
jimsch committed Sep 19, 2016
1 parent df2fb9c commit 8448c38
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions check/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,21 +435,27 @@ def main():
print("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en-us'>", file=fout)
print("<head>", file=fout)
print("<title>SACM Information Model</title>", file=fout)

print("<script type='text/javascript'>", file=fout)
CopyFile('css/jquery.js', fout)
print("</script>", file=fout)

print("<script type='text/javascript'>", file=fout)
CopyFile('css/tablesorter.min.js', fout)
print("</script>", file=fout)

print("<script type='text/javascript'>", file=fout)
print("$(document).ready(function(){ $('#myTable').tablesorter();});", file=fout)
print("</script>", file=fout)

# print("<style>", file=fout)
# CopyFile('css/jq.css', fout)
# print("</script>", file=fout)

print("<style>", file=fout)
CopyFile('css/style.css', fout)
print("</style>", file=fout)

print("</head>", file=fout)
print("<body>", file=fout)
print("<table id='myTable' class='tablesorter'>", file=fout)
Expand Down

0 comments on commit 8448c38

Please sign in to comment.