Skip to content
This repository was archived by the owner on Sep 21, 2022. It is now read-only.

Commit 50794c7

Browse files
committed
Replace existing repo
0 parents  commit 50794c7

90 files changed

Lines changed: 14001 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
html/js/backup/*
2+
cgi-bin/*.pyc
3+
.DS_Store

bootstrap/css/bootstrap.min.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*!
2+
* IE10 viewport hack for Surface/desktop Windows 8 bug
3+
* Copyright 2014-2015 Twitter, Inc.
4+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5+
*/
6+
7+
/*
8+
* See the Getting Started docs for more information:
9+
* http://getbootstrap.com/getting-started/#support-ie10-width
10+
*/
11+
@-ms-viewport { width: device-width; }
12+
@-o-viewport { width: device-width; }
13+
@viewport { width: device-width; }

bootstrap/js/bootstrap.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
2+
// IT'S JUST JUNK FOR OUR DOCS!
3+
// ++++++++++++++++++++++++++++++++++++++++++
4+
/*!
5+
* Copyright 2014-2015 Twitter, Inc.
6+
*
7+
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
8+
* details, see https://creativecommons.org/licenses/by/3.0/.
9+
*/
10+
// Intended to prevent false-positive bug reports about Bootstrap not working properly in old versions of IE due to folks testing using IE's unreliable emulation modes.
11+
(function () {
12+
'use strict';
13+
14+
function emulatedIEMajorVersion() {
15+
var groups = /MSIE ([0-9.]+)/.exec(window.navigator.userAgent)
16+
if (groups === null) {
17+
return null
18+
}
19+
var ieVersionNum = parseInt(groups[1], 10)
20+
var ieMajorVersion = Math.floor(ieVersionNum)
21+
return ieMajorVersion
22+
}
23+
24+
function actualNonEmulatedIEMajorVersion() {
25+
// Detects the actual version of IE in use, even if it's in an older-IE emulation mode.
26+
// IE JavaScript conditional compilation docs: https://msdn.microsoft.com/library/121hztk3%28v=vs.94%29.aspx
27+
// @cc_on docs: https://msdn.microsoft.com/library/8ka90k2e%28v=vs.94%29.aspx
28+
var jscriptVersion = new Function('/*@cc_on return @_jscript_version; @*/')() // jshint ignore:line
29+
if (jscriptVersion === undefined) {
30+
return 11 // IE11+ not in emulation mode
31+
}
32+
if (jscriptVersion < 9) {
33+
return 8 // IE8 (or lower; haven't tested on IE<8)
34+
}
35+
return jscriptVersion // IE9 or IE10 in any mode, or IE11 in non-IE11 mode
36+
}
37+
38+
var ua = window.navigator.userAgent
39+
if (ua.indexOf('Opera') > -1 || ua.indexOf('Presto') > -1) {
40+
return // Opera, which might pretend to be IE
41+
}
42+
var emulated = emulatedIEMajorVersion()
43+
if (emulated === null) {
44+
return // Not IE
45+
}
46+
var nonEmulated = actualNonEmulatedIEMajorVersion()
47+
48+
if (emulated !== nonEmulated) {
49+
window.alert('WARNING: You appear to be using IE' + nonEmulated + ' in IE' + emulated + ' emulation mode.\nIE emulation modes can behave significantly differently from ACTUAL older versions of IE.\nPLEASE DON\'T FILE BOOTSTRAP BUGS based on testing in IE emulation modes!')
50+
}
51+
})();
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*!
2+
* IE10 viewport hack for Surface/desktop Windows 8 bug
3+
* Copyright 2014-2015 Twitter, Inc.
4+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5+
*/
6+
7+
// See the Getting Started docs for more information:
8+
// http://getbootstrap.com/getting-started/#support-ie10-width
9+
10+
(function () {
11+
'use strict';
12+
13+
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
14+
var msViewportStyle = document.createElement('style')
15+
msViewportStyle.appendChild(
16+
document.createTextNode(
17+
'@-ms-viewport{width:auto!important}'
18+
)
19+
)
20+
document.querySelector('head').appendChild(msViewportStyle)
21+
}
22+
23+
})();

bootstrap/js/jquery.min.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bco_editor.css

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
/* Move down content because we have a fixed navbar that is 50px tall */
2+
body {
3+
padding-top: 50px;
4+
padding-bottom: 20px;
5+
}
6+
7+
.searchboxcn{
8+
min-height:50px;
9+
width:90%;
10+
margin:50px 0 30px 5%;
11+
padding:0px;
12+
border:0px dashed orange;
13+
}
14+
.pagecn{
15+
min-height:700px;
16+
width:90%;
17+
margin-left:5%;
18+
border:0px dashed orange;
19+
}
20+
.pagelinkcn{
21+
width:50%;margin:40px 5px 0px 0px;
22+
border:0px dashed red;
23+
display:none;
24+
font-size:12px;
25+
}
26+
27+
.menudiv{
28+
display:block;
29+
float:right;
30+
width:auto;
31+
color:#fff;
32+
border:0px dashed #fff;
33+
cursor:pointer;
34+
}
35+
36+
.pagelink{
37+
cursor:pointer;
38+
}
39+
.txtinputbox{
40+
height:35px;
41+
width:100%;
42+
margin:0px 0px 5px 0px;
43+
padding:10px;
44+
border:1px solid #ddd;
45+
border-radius:5px;
46+
font-style:normal;
47+
}
48+
49+
.submitbtn{
50+
height:35px;
51+
padding:0px 15px 0px 15px;
52+
background:#ddd;
53+
border:1px solid #ddd;
54+
border-radius:5px;
55+
font-style:normal;
56+
}
57+
58+
.submitbtn:hover{
59+
background:#eee;
60+
}
61+
62+
63+
.loginmsg{
64+
display:block;
65+
float:right;
66+
width:auto;
67+
color:#777;
68+
}
69+
70+
.divider{
71+
display:block;
72+
float:right;
73+
width:auto;
74+
color:#fff;
75+
font-size:10px;
76+
margin:1px 10px 0px 10px;
77+
}
78+
79+
.createlink, .editlink, .viewlink{
80+
cursor:pointer;
81+
}
82+
83+
div.progresswrapper{
84+
position:absolute;
85+
top:0%;
86+
left:0%;
87+
width:100%;
88+
height:100%;
89+
background:#fff;
90+
z-index:2000;
91+
opacity: 0.9;
92+
filter: alpha(opacity=90); /* For IE8 and earlier */
93+
}
94+
95+
96+
div.progresscn{
97+
position:fixed;
98+
top:40%;
99+
margin-left:45%;
100+
width:10%;
101+
z-index:2001;
102+
}
103+
104+
105+
.queryfield{
106+
width:99%;
107+
height:30px;
108+
margin-right:1%;
109+
}
110+
.queryvalue{
111+
width:99%;
112+
height:35px;
113+
margin-right:1%;
114+
padding:10px;
115+
border-radius:5px;
116+
border:1px solid #ccc;
117+
}
118+
.searchbtn{
119+
height:35px;
120+
width:80%;
121+
}
122+

favicon.ico

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
5+
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src 'unsafe-inline'; img-src data:; connect-src 'self'">
6+
<title>Page not found &middot; GitHub Pages</title>
7+
<style type="text/css" media="screen">
8+
body {
9+
background-color: #f1f1f1;
10+
margin: 0;
11+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
12+
}
13+
14+
.container { margin: 50px auto 40px auto; width: 600px; text-align: center; }
15+
16+
a { color: #4183c4; text-decoration: none; }
17+
a:hover { text-decoration: underline; }
18+
19+
h1 { width: 800px; position:relative; left: -100px; letter-spacing: -1px; line-height: 60px; font-size: 60px; font-weight: 100; margin: 0px 0 50px 0; text-shadow: 0 1px 0 #fff; }
20+
p { color: rgba(0, 0, 0, 0.5); margin: 20px 0; line-height: 1.6; }
21+
22+
ul { list-style: none; margin: 25px 0; padding: 0; }
23+
li { display: table-cell; font-weight: bold; width: 1%; }
24+
25+
.logo { display: inline-block; margin-top: 35px; }
26+
.logo-img-2x { display: none; }
27+
@media
28+
only screen and (-webkit-min-device-pixel-ratio: 2),
29+
only screen and ( min--moz-device-pixel-ratio: 2),
30+
only screen and ( -o-min-device-pixel-ratio: 2/1),
31+
only screen and ( min-device-pixel-ratio: 2),
32+
only screen and ( min-resolution: 192dpi),
33+
only screen and ( min-resolution: 2dppx) {
34+
.logo-img-1x { display: none; }
35+
.logo-img-2x { display: inline-block; }
36+
}
37+
38+
#suggestions {
39+
margin-top: 35px;
40+
color: #ccc;
41+
}
42+
#suggestions a {
43+
color: #666666;
44+
font-weight: 200;
45+
font-size: 14px;
46+
margin: 0 10px;
47+
}
48+
49+
</style>
50+
</head>
51+
<body>
52+
53+
<div class="container">
54+
55+
<h1>404</h1>
56+
<p><strong>File not found</strong></p>
57+
58+
<p>
59+
The site configured at this address does not
60+
contain the requested file.
61+
</p>
62+
63+
<p>
64+
If this is your site, make sure that the filename case matches the URL.<br>
65+
For root URLs (like <code>http://example.com/</code>) you must provide an
66+
<code>index.html</code> file.
67+
</p>
68+
69+
<p>
70+
<a href="https://help.github.com/pages/">Read the full documentation</a>
71+
for more information about using <strong>GitHub Pages</strong>.
72+
</p>
73+
74+
<div id="suggestions">
75+
<a href="https://status.github.com">GitHub Status</a> &mdash;
76+
<a href="https://twitter.com/githubstatus">@githubstatus</a>
77+
</div>
78+
79+
<a href="/" class="logo logo-img-1x">
80+
<img width="32" height="32" title="" alt="" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFMTZCRDY3REIzRjAxMUUyQUQzREIxQzRENUFFNUM5NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFMTZCRDY3RUIzRjAxMUUyQUQzREIxQzRENUFFNUM5NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUxNkJENjdCQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUxNkJENjdDQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+SM9MCAAAA+5JREFUeNrEV11Ik1EY3s4+ddOp29Q5b0opCgKFsoKoi5Kg6CIhuwi6zLJLoYLopq4qsKKgi4i6CYIoU/q5iDAKs6syoS76IRWtyJ+p7cdt7sf1PGOD+e0c3dygAx/67ZzzPM95/877GYdHRg3ZjMXFxepQKNS6sLCwJxqNNuFpiMfjVs4ZjUa/pmmjeD6VlJS8NpvNT4QQ7mxwjSsJiEQim/1+/9lgMHgIr5ohuxG1WCw9Vqv1clFR0dCqBODElV6v90ogEDjGdYbVjXhpaendioqK07CIR7ZAqE49PT09BPL2PMgTByQGsYiZlQD4uMXtdr+JxWINhgINYhGT2MsKgMrm2dnZXgRXhaHAg5jEJodUAHxux4LudHJE9RdEdA+i3Juz7bGHe4mhE9FNrgwBCLirMFV9Okh5eflFh8PR5nK5nDabrR2BNJlKO0T35+Li4n4+/J+/JQCxhmu5h3uJoXNHPbmWZAHMshWB8l5/ipqammaAf0zPDDx1ONV3vurdidqwAQL+pEc8sLcAe1CCvQ3YHxIW8Pl85xSWNC1hADDIv0rIE/o4J0k3kww4xSlwIhcq3EFFOm7KN/hUGOQkt0CFa5WpNJlMvxBEz/IVQAxg/ZRZl9wiHA63yDYieM7DnLP5CiAGsC7I5sgtYKJGWe2A8seFqgFJrJjEPY1Cn3pJ8/9W1e5VWsFDTEmFrBcoDhZJEQkXuhICMyKpjhahqN21hRYATKfUOlDmkygrR4o4C0VOLGJKrOITKB4jijzdXygBKixyC5TDQdnk/Pz8qRw6oOWGlsTKGOQW6OH6FBWsyePxdOXLTgxiyebILZCjz+GLgMIKnXNzc49YMlcRdHXcSwxFVgTInQhC9G33UhNoJLuqq6t345p9y3eUy8OTk5PjAHuI9uo4b07FBaOhsu0A4Unc+T1TU1Nj3KsSSE5yJ65jqF2DDd8QqWYmAZrIM2VlZTdnZmb6AbpdV9V6ec9znf5Q7HjYumdRE0JOp3MjitO4SFa+cZz8Umqe3TCbSLvdfkR/kWDdNQl5InuTcysOcpFT35ZrbBxx4p3JAHlZVVW1D/634VRt+FvLBgK/v5LV9WS+10xMTEwtRw7XvqOL+e2Q8V3AYIOIAXQ26/heWVnZCVfcyKHg2CBgTpmPmjYM8l24GyaUHyaIh7XwfR9ErE8qHoDfn2LTNAVC0HX6MFcBIP8Bi+6F6cdW/DICkANRfx99fEYFQ7Nph5i/uQiA214gno7K+guhaiKg9gC62+M8eR7XsBsYJ4ilam60Fb7r7uAj8wFyuwM1oIOWgfmDy6RXEEQzJMPe23DXrVS7rtyD3Df8z/FPgAEAzWU5Ku59ZAUAAAAASUVORK5CYII=">
81+
</a>
82+
83+
<a href="/" class="logo logo-img-2x">
84+
<img width="32" height="32" title="" alt="" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEQUM1QkUxRUI0MUMxMUUyQUQzREIxQzRENUFFNUM5NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEQUM1QkUxRkI0MUMxMUUyQUQzREIxQzRENUFFNUM5NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUxNkJENjdGQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUxNkJENjgwQjNGMDExRTJBRDNEQjFDNEQ1QUU1Qzk2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+hfPRaQAAB6lJREFUeNrsW2mM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">
85+
</a>
86+
</div>
87+
</body>
88+
</html>

home.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
<br>
3+
<div class="jumbotron" style="padding:50px;">
4+
<div class="container">
5+
<p>
6+
This is a portal for creating BioCompute Objects (BCOs) following schema standardized ...
7+
</p>
8+
</div>
9+
</div>
10+
11+
<div class="container" style="">
12+
<div class="row">
13+
<div class="col-md-4" style="margin-right:20px;">
14+
<h3>Login</h3>
15+
You can login here to create BioCompute objects.
16+
<p style="margin-top:10px;">
17+
Email<br><input type=text name=email placeholder=email class=txtinputbox><br>
18+
Password<br><input type=password name=password placeholder=password class=txtinputbox>
19+
</p>
20+
<p>
21+
<a id=login class="btn btn-default" href="#" role="button">Login &raquo;</a>
22+
</p>
23+
</form>
24+
</div>
25+
<div class="col-md-4">
26+
<h3>Registration</h3>
27+
If you have not signed up already, please register here.
28+
<p style="margin-top:10px;">
29+
First Name<br><input type=text name=fname placeholder="first name" class=txtinputbox><br>
30+
Last Name<br><input type=text name=lname placeholder="last name" class=txtinputbox><br>
31+
Email Address<br><input type=text name=email_r placeholder="email" class=txtinputbox><br>
32+
New Password<br><input type=password name=password_r placeholder="password" class=txtinputbox>
33+
</p>
34+
<p><a id=register class="btn btn-default" href="#" role="button">Register &raquo;</a></p>
35+
</div>
36+
</div>
37+
</div>
38+
39+
40+
41+

0 commit comments

Comments
 (0)