This repository has been archived by the owner on Jul 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
124 lines (104 loc) · 4.26 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<title>NCIP Open Source</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/grid.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- Loading list of repos and groups from JSON files -->
<script type="text/javascript" src="ncip-group.json"></script>
<script type="text/javascript" src="ncip-repo.json"></script>
<script type="text/javascript" src="assets/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="assets/strftime.js"></script>
<script type="text/javascript" src="assets/ncipnamespace.js"></script>
<script>
var browserIsIELessThan10 = false;
if ($.browser.msie && parseInt($.browser.version, 10) < 10){
browserIsIELessThan10 = true;
}
</script>
<script type="text/javascript">
(function ($, undefined) {
var NCIPGlobal = window.NCIPGlobal;
function addGroupRepresentation(group) {
if (group) {
var $item = $("<li>").addClass("repo grid-1 " + group.category);
var $link = $("<a>").attr("href", "group.html?name=" + group.name).appendTo($item);
$link.append($("<h2>").text(group.name));
$link.append($("<p>").text(group.description));
$item.appendTo("#repos");
}
}
function processMembers(members) {
$(function () {
if (members) {
$("#num-members").text(members.length);
}
});
};
function addGroups(repoGroups) {
var repoGroups = ncip_groups;
$(function () {
$.each(repoGroups, function (i, group) {
addGroupRepresentation(group);
});
});
}
addGroups();
NCIPGlobal.processReposCallback = NCIPGlobal.addRecentlyUpdatedRepos;
NCIPGlobal.processMembersCallback = processMembers;
NCIPGlobal.initializeCache();
NCIPGlobal.findAllOrgsFromReposCatalog(ncip_repos);
if ( browserIsIELessThan10 ) {
NCIPGlobal.getReposFromOneOrg = NCIPGlobal.getReposFromOneOrgWithoutCORS;
NCIPGlobal.getMembersFromOneOrg = NCIPGlobal.getMembersFromOneOrgWithoutCORS;
}
NCIPGlobal.getJSONIfModified = NCIPGlobal.getJSONIfModifiedWithCORS;
NCIPGlobal.getReposFromAllOrgs();
NCIPGlobal.getMembersFromAllOrgs();
})(jQuery);
</script>
</head>
<body>
<div id="wrapper" class="grid clearfix">
<div id="main" class="grid-1">
<div id="logo"><h1>NCIP Open Source</h1></div>
<a href="http://ncip.github.io/">
<img src="images/logo.png" alt="NCIP Logo" height="200" width="200">
</a>
<h2>Supporting</h2>
<h2>Cancer Research</h2>
<h2>with Open Source</h2>
<p>Visit <a href="http://ncip.nci.nih.gov/">ncip.nci.nih.gov</a></p>
<p><a href="https://github.com/NCIP/ncip.github.com/wiki/_pages">Wiki Pages</a></p>
</div>
<div class="grid grid-3">
<div id="recently-updated" class="grid-2 omega header">
<h1>Recently updated <a href="https://github.com/ncip/repositories">View All on GitHub</a></h1>
<ol id="recently-updated-repos"></ol>
</div>
<div id="statistics" class="grid-1 alpha header">
<h1>Statistics</h1>
<p>
<a href="https://github.com/ncip/repositories"><span id="num-repos"><img src="images/spinner.gif" /></span> public repos</a>
<br>
<a href="https://github.com/ncip?tab=members"><span id="num-members"><img src="images/spinner.gif" /></span> members</a>
</p>
<p class="email"><a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
<div class="grid grid-3">
<div id="category" class="grid-1 iota iotaleft categoryheader biology">
<h4>Cancer Biology and Genomics</h4>
</div>
<div id="category" class="grid-1 iota iotacenter categoryheader translational">
<h4>Clinical and Translational</h4>
</div>
<div id="category" class="grid-1 iota iotaright categoryheader semantics">
<h4>Semantics and Interoperability</h4>
</div>
</div>
<ol id="repos"></ol>
</div>
</body>
</html>