Deployed the page to Github Pages.

This commit is contained in:
Batuhan Berk Başoğlu 2024-11-03 21:30:09 -05:00
parent 1d79754e93
commit 2c89899458
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo
62797 changed files with 6551425 additions and 15279 deletions

115
node_modules/karma/static/client.html generated vendored Normal file
View file

@ -0,0 +1,115 @@
<!DOCTYPE html>
<!--
The entry point for client. This file is loaded just once when the client is captured.
It contains socket.io and all the communication logic.
-->
<html>
<head>
%X_UA_COMPATIBLE%
<title>Karma</title>
<link href="favicon.ico" rel="icon" type="image/x-icon">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<style type="text/css">
iframe {
height: 100%;
width: 100%;
border: 0;
}
html, body {
height: 100%;
padding: 0;
margin: 0;
font-family: sans-serif;
}
.offline {
background: #DDD;
}
.online {
background: #6C4;
}
.idle {
}
.executing {
background: #F99;
}
#banner {
padding: 5px 10px;
}
h1 {
font-size: 1.8em;
margin: 0;
padding: 0;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
li {
padding: 5px 12px;
}
.btn-debug {
float: right;
}
.offline .btn-debug {
display: none;
}
.btn-debug {
-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6) );
background:-moz-linear-gradient( center top, #ffffff 5%, #f6f6f6 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6');
background-color:#ffffff;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #dcdcdc;
display:inline-block;
color:#666666;
font-family:arial;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:1px 1px 0px #ffffff;
}
.btn-debug:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff) );
background:-moz-linear-gradient( center top, #f6f6f6 5%, #ffffff 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff');
background-color:#f6f6f6;
}
</style>
</head>
<body>
<div id="banner" class="offline">
<a href="#" onclick="window.open('debug.html%X_UA_COMPATIBLE_URL%')" class="btn-debug">DEBUG</a>
<h1 id="title">Karma - starting</h1>
</div>
<ul id="browsers"></ul>
<iframe id="context" src="about:blank" width="100%" height="100%"></iframe>
<script src="socket.io/socket.io.min.js"></script>
<script src="karma.js"></script>
</body>
</html>

125
node_modules/karma/static/client_with_context.html generated vendored Normal file
View file

@ -0,0 +1,125 @@
<!DOCTYPE html>
<!--
This is the combined client and execution context.
Is used for single-shot tests.
-->
<html>
<head>
<title>Karma</title>
<link href="favicon.ico" rel="icon" type="image/x-icon">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<style type="text/css">
iframe {
height: 100%;
width: 100%;
border: 0;
}
html, body {
height: 100%;
padding: 0;
margin: 0;
font-family: sans-serif;
}
.offline {
background: #DDD;
}
.online {
background: #6C4;
}
.idle {
}
.executing {
background: #F99;
}
#banner {
padding: 5px 10px;
}
h1 {
font-size: 1.8em;
margin: 0;
padding: 0;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
li {
padding: 5px 12px;
}
.btn-debug {
float: right;
}
.offline .btn-debug {
display: none;
}
.btn-debug {
-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6) );
background:-moz-linear-gradient( center top, #ffffff 5%, #f6f6f6 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6');
background-color:#ffffff;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:6px;
border:1px solid #dcdcdc;
display:inline-block;
color:#666666;
font-family:arial;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
text-shadow:1px 1px 0px #ffffff;
}
.btn-debug:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff) );
background:-moz-linear-gradient( center top, #f6f6f6 5%, #ffffff 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff');
background-color:#f6f6f6;
}
</style>
</head>
<body>
<div id="banner" class="offline">
<h1 id="title">Karma - starting</h1>
</div>
<script src="socket.io/socket.io.min.js"></script>
<script src="karma.js"></script>
<script src="context.js"></script>
<!-- The scripts need to be at the end of body, so that some test running frameworks
(Angular Scenario, for example) need the body to be loaded so that it can insert its magic
into it. If it is before body, then it fails to find the body and crashes and burns in an epic
manner. -->
<script type="text/javascript">
// sets window.__karma__ and overrides console and error handling
%CLIENT_CONFIG%
window.__karma__.setupContext(window);
// All served files with the latest timestamps
%MAPPINGS%
%SCRIPT_URL_ARRAY%
</script>
<!-- Dynamically replaced with <script> tags -->
</body>
</html>

38
node_modules/karma/static/context.html generated vendored Normal file
View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<!--
This is the execution context.
Loaded within the iframe.
Reloaded before every execution run.
-->
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
</head>
<body>
<!-- The scripts need to be in the body DOM element, as some test running frameworks need the body
to have already been created so they can insert their magic into it. For example, if loaded
before body, Angular Scenario test framework fails to find the body and crashes and burns in
an epic manner. -->
<script src="context.js"></script>
<script type="text/javascript">
// Configure our Karma and set up bindings
%CLIENT_CONFIG%
window.__karma__.setupContext(window);
// All served files with the latest timestamps
%MAPPINGS%
</script>
<!-- Dynamically replaced with <script> tags -->
%SCRIPTS%
<!-- Since %SCRIPTS% might include modules, the `loaded()` call needs to be in a module too.
This ensures all the tests will have been declared before karma tries to run them. -->
<script type="module">
window.__karma__.loaded();
</script>
<script nomodule>
window.__karma__.loaded();
</script>
</body>
</html>

2645
node_modules/karma/static/context.js generated vendored Normal file

File diff suppressed because it is too large Load diff

40
node_modules/karma/static/debug.html generated vendored Normal file
View file

@ -0,0 +1,40 @@
<!doctype html>
<!--
This file is almost the same as context.html - loads all source files,
but its purpose is to be loaded in the main frame (not within an iframe),
just for immediate execution, without reporting to Karma server.
-->
<html>
<head>
%X_UA_COMPATIBLE%
<title>Karma DEBUG RUNNER</title>
<link href="favicon.ico" rel="icon" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
</head>
<body>
<!-- The scripts need to be at the end of body, so that some test running frameworks
(Angular Scenario, for example) need the body to be loaded so that it can insert its magic
into it. If it is before body, then it fails to find the body and crashes and burns in an epic
manner. -->
<script src="context.js"></script>
<script src="debug.js"></script>
<script type="text/javascript">
// Configure our Karma
%CLIENT_CONFIG%
// All served files with the latest timestamps
%MAPPINGS%
</script>
<!-- Dynamically replaced with <script> tags -->
%SCRIPTS%
<!-- Since %SCRIPTS% might include modules, the `loaded()` call needs to be in a module too.
This ensures all the tests will have been declared before karma tries to run them. -->
<script type="module">
window.__karma__.loaded();
</script>
<script nomodule>
window.__karma__.loaded();
</script>
</body>
</html>

28
node_modules/karma/static/debug.js generated vendored Normal file
View file

@ -0,0 +1,28 @@
// Override the Karma setup for local debugging
window.__karma__.info = function (info) {
if (info.dump && window.console) window.console.log(info.dump)
}
window.__karma__.complete = function () {
if (window.console) window.console.log('Skipped ' + this.skipped + ' tests')
}
window.__karma__.skipped = 0
window.__karma__.result = window.console ? function (result) {
if (result.skipped) {
this.skipped++
return
}
var msg = result.success ? 'SUCCESS ' : 'FAILED '
window.console.log(msg + result.suite.join(' ') + ' ' + result.description)
for (var i = 0; i < result.log.length; i++) {
// Printing error without losing stack trace
(function (err) {
setTimeout(function () {
window.console.error(err)
})
})(result.log[i])
}
} : function () {}
window.__karma__.loaded = function () {
this.start()
}

BIN
node_modules/karma/static/favicon.ico generated vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

2904
node_modules/karma/static/karma.js generated vendored Normal file

File diff suppressed because it is too large Load diff