-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php~
189 lines (155 loc) · 4.9 KB
/
index.php~
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<html lang="en">
<?php
include "data/connect.php";
?>
<head>
<!--script id="clProcessImage" type="text/x-opencl">
kernel void clProcessImage(global const uchar4* src,
global uchar4* dest, uint width, uint height) {
uint x = get_global_id(0);
uint y = get_global_id(1);
if (x >= width || y >= height) return;
int i = y * width + x;
uchar4 color = src[i];
uchar lum = (uchar)(0.30f * color.x + 0.59f * color.y + 0.11f * color.z);
dst[i] = (uchar)(lum, lum, lum, 255);
</script-->
<!--[if lte IE 6]>
<style>#leftt, #leftb, #rightt, #rightb, #topl,
#topr, #botr, #botl {display: none; }</style>
<![endif]-->
<meta http-equiv="Cache-Control" content="no-cache">
<script type="text/javascript" src="data/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
var articles;
function getArticles() {
document.getElementById("title").innerHTML = "WooBurgh";
var xmlhttp = new window.XMLHttpRequest();
var result;
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("articles").innerHTML = xmlhttp.responseText;
}
};
xmlhttp.open("POST", "data/articles.php", true);
xmlhttp.send();
}
function modSize() {
var viewWidth = window.innerWidth;
var viewHeight = window.innerHeight;
/*
* Possibly update this in the future so
* there is a gradient of alphas so the borders
* turns transparent
*/
var list = document.getElementById("border").children;
for (var i = 0; i < list.length; i++) {
list[i].style.display = (viewWidth < 920 || viewHeight < 400)?
"none":"inline";
}
}
function go(link, t) {
document.getElementById("title").innerHTML = t;
//Load article
var xmlhttp = new window.XMLHttpRequest();
var result;
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status==200) {
var response = xmlhttp.responseText.split("BREAK");
document.getElementById("articles").innerHTML = response[response.length-1];
for (var i = 0; i < response.length-1; i++) {
/**
* This code is only for the purpose of
* being able to use this on my slackbox
* as well as the mac. So, it will be unecessary
* if this ever gets on an actual webserver
* */
var url = "http://localhost/htdocs" + response[i];
var test = new window.XMLHttpRequest();
test.onreadystatechange = function() {
if (test.readyState == 4 && xmlhttp.status == 200) {
$.ajax({
url: "http://localhost/htdocs" + response[i],
dataType: "script",
success: function(){}
});
} else {
$.ajax({
url: "http://localhost/" + response[i],
dataType: "script",
success: function(){}
});
}
}
test.open('HEAD', url);
}
}
}
xmlhttp.open("GET", "data/article.php?article=" + link, true);
xmlhttp.send();
}
document.onkeydown = function(e) {
switch (e.keyCode) {
case 8:
getArticles();
break;
}
}
function detectCL() {
if (window.webcl == undefined) {
alert("OPENCL: Unfortunately your system does not support WebCL. " +
"Make sure that you have both the OpenCL driver " +
"and the WebCL browser extension installed.");
return false;
}
try {
var platforms = webcl.getPlatforms();
var devices = [];
for (var i in platforms) {
var plat = platforms[i];
devices[i] = plat.getDevices();
}
return true;
} catch (e) {
alert("OPENCL: Unfortunately platform or device inquiry failed.");
return false;
}
}
</script>
<title id="title">WooBurgh</title>
<link rel="stylesheet" media="screen" href="style.css">
</head>
<div id="about" onclick="go('articles/about.txt', this)">About Me</div>
<body onresize="modSize()" onload="
getArticles();
detectCL();">
<!--For Page Border --!>
<div id="border">
<div id="leftt"></div> <div id="leftb"></div>
<div id="rightt"></div> <div id="rightb"></div>
<div id="topl"></div> <div id="topr"></div>
<div id="botl"></div> <div id="botr"></div>
</div>
<section class="intro" role="banner">
<header>
<h1 onclick="getArticles()">WooBurgh</h1>
<h2>The Wonderous World of HTML/PHP/JAVASCRIPT</h2>
</header>
</section>
<section class="body">
<!--canvas oncontextmenu="return false" id="fractal" width="600" height="600">
Sorry, canvas is not supported :P<br />
You should probably upgrade/switch your browser...
</canvas>
<script type="text/javascript" src="projects/fractal.js"></script!-->
<div id="articles">
<table>
<tr>
<td><div class="article" id="0">It appears there are no articles....</div></td>
</tr>
</table>
</div>
<div id="output"></div>
</section>
</body>
</html>