Skip to content

Commit 1018d5d

Browse files
committed
Merge pull request #51 from joewashear007/DevBranch
Dev branch
2 parents 3c01f03 + 8a29ebd commit 1018d5d

File tree

225 files changed

+105
-25156
lines changed

Some content is hidden

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

225 files changed

+105
-25156
lines changed

server.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -327,11 +327,12 @@ def _make_server_temp_dir(self):
327327
self.cwd = os.path.dirname(os.path.realpath(__file__))
328328
self.tempdir = tempfile.mkdtemp()
329329
os.chdir(self.tempdir)
330+
print("New temp dir:", self.tempdir)
330331

331332
def _make_webpage(self):
332333
shutil.copytree( self.cwd+"/web/js", self.tempdir+"/js/")
333334
shutil.copytree( self.cwd+"/web/css/", self.tempdir+"/css/")
334-
shutil.copytree( self.cwd+"/web/fonts/", self.tempdir+"/fonts/")
335+
#shutil.copytree( self.cwd+"/web/fonts/", self.tempdir+"/fonts/")
335336
html = open(self.tempdir + "/index.html" ,"w")
336337
for line in open(self.cwd + "/web/index.temp", "r"):
337338
if line.find("$address") > 0 :

test.blend

148 KB
Binary file not shown.

web/css/BlenderController.css

+25-25
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*!
2-
* jQuery Mobile 1.4.0
3-
* Git HEAD hash: f09aae0e035d6805e461a7be246d04a0dbc98f69 <> Date: Thu Dec 19 2013 17:34:22 UTC
2+
* jQuery Mobile 1.4.1
3+
* Git HEAD hash: 18c1e32bfc4e0e92756dedc105d799131607f5bb <> Date: Wed Feb 12 2014 22:15:20 UTC
44
* http://jquerymobile.com
55
*
6-
* Copyright 2010, 2013 jQuery Foundation, Inc. and other contributors
6+
* Copyright 2010, 2014 jQuery Foundation, Inc. and other contributors
77
* Released under the MIT license.
88
* http://jquery.org/license
99
*
@@ -24,7 +24,7 @@ button,
2424
.ui-btn {
2525
font-size: 1em;
2626
line-height: 1.3;
27-
font-family: sans-serif /*{global-font-family}*/;
27+
font-family: sans-serif /*{global-font-family}*/;
2828
}
2929
legend,
3030
.ui-input-text input,
@@ -208,7 +208,7 @@ html .ui-alt-icon .ui-radio-off:after {
208208
}
209209
/* Loader */
210210
.ui-icon-loading {
211-
background: url(images/ajax-loader.gif);
211+
background: url("images/ajax-loader.gif");
212212
background-size: 2.875em 2.875em;
213213
}
214214
/* Swatches */
@@ -220,10 +220,10 @@ html .ui-alt-icon .ui-radio-off:after {
220220
html .ui-bar-a .ui-bar-inherit,
221221
html .ui-body-a .ui-bar-inherit,
222222
html body .ui-group-theme-a .ui-bar-inherit {
223-
background: #ba6505 /*{a-bar-background-color}*/;
224-
border-color: #d09d6c /*{a-bar-border}*/;
225-
color: #ffffff /*{a-bar-color}*/;
226-
text-shadow: 0 /*{a-bar-shadow-x}*/ 2px /*{a-bar-shadow-y}*/ 0 /*{a-bar-shadow-radius}*/ #444444 /*{a-bar-shadow-color}*/;
223+
background: #e28755 /*{a-bar-background-color}*/;
224+
border-color: #f95806 /*{a-bar-border}*/;
225+
color: #9e2200 /*{a-bar-color}*/;
226+
text-shadow: 1px /*{a-bar-shadow-x}*/ 1px /*{a-bar-shadow-y}*/ 1px /*{a-bar-shadow-radius}*/ #ffd8b3 /*{a-bar-shadow-color}*/;
227227
font-weight: bold;
228228
}
229229
.ui-bar-a {
@@ -234,10 +234,10 @@ html body .ui-group-theme-a .ui-bar-inherit {
234234
.ui-overlay-a,
235235
.ui-page-theme-a,
236236
.ui-page-theme-a .ui-panel-wrapper {
237-
background: #292929 /*{a-page-background-color}*/;
237+
background: #ffffff /*{a-page-background-color}*/;
238238
border-color: #bbbbbb /*{a-page-border}*/;
239239
color: #333333 /*{a-page-color}*/;
240-
text-shadow: 0 /*{a-page-shadow-x}*/ 1px /*{a-page-shadow-y}*/ 0 /*{a-page-shadow-radius}*/ #f3f3f3 /*{a-page-shadow-color}*/;
240+
text-shadow: 0 /*{a-page-shadow-x}*/ 0 /*{a-page-shadow-y}*/ 0 /*{a-page-shadow-radius}*/ #000000 /*{a-page-shadow-color}*/;
241241
}
242242
/* Body: Read-only lists, text inputs, collapsible content */
243243
.ui-body-a,
@@ -294,7 +294,7 @@ html .ui-body-a .ui-btn:visited,
294294
html body .ui-group-theme-a .ui-btn:visited,
295295
html head + body .ui-btn.ui-btn-a:visited {
296296
background: #f6f6f6 /*{a-bup-background-color}*/;
297-
border-color: #d09d6c /*{a-bup-border}*/;
297+
border-color: #f95806 /*{a-bup-border}*/;
298298
color: #333333 /*{a-bup-color}*/;
299299
text-shadow: 0 /*{a-bup-shadow-x}*/ 2px /*{a-bup-shadow-y}*/ 0 /*{a-bup-shadow-radius}*/ #f3f3f3 /*{a-bup-shadow-color}*/;
300300
}
@@ -305,7 +305,7 @@ html .ui-body-a .ui-btn:hover,
305305
html body .ui-group-theme-a .ui-btn:hover,
306306
html head + body .ui-btn.ui-btn-a:hover {
307307
background: #ededed /*{a-bhover-background-color}*/;
308-
border-color: #dddddd /*{a-bhover-border}*/;
308+
border-color: #f95806 /*{a-bhover-border}*/;
309309
color: #333333 /*{a-bhover-color}*/;
310310
text-shadow: 0 /*{a-bhover-shadow-x}*/ 2px /*{a-bhover-shadow-y}*/ 0 /*{a-bhover-shadow-radius}*/ #f3f3f3 /*{a-bhover-shadow-color}*/;
311311
}
@@ -315,7 +315,7 @@ html .ui-bar-a .ui-btn:active,
315315
html .ui-body-a .ui-btn:active,
316316
html body .ui-group-theme-a .ui-btn:active,
317317
html head + body .ui-btn.ui-btn-a:active {
318-
background: #e8e8e8 /*{a-bdown-background-color}*/;
318+
background: #e28755 /*{a-bdown-background-color}*/;
319319
border-color: #dddddd /*{a-bdown-border}*/;
320320
color: #333333 /*{a-bdown-color}*/;
321321
text-shadow: 0 /*{a-bdown-shadow-x}*/ 2px /*{a-bdown-shadow-y}*/ 0 /*{a-bdown-shadow-radius}*/ #f3f3f3 /*{a-bdown-shadow-color}*/;
@@ -344,18 +344,18 @@ html .ui-bar-a .ui-slider-track .ui-btn-active,
344344
html .ui-body-a .ui-slider-track .ui-btn-active,
345345
html body .ui-group-theme-a .ui-slider-track .ui-btn-active,
346346
html body div.ui-slider-track.ui-body-a .ui-btn-active {
347-
background-color: #ba6505 /*{a-active-background-color}*/;
348-
border-color: #d09d6c /*{a-active-border}*/;
347+
background-color: #e28755 /*{a-active-background-color}*/;
348+
border-color: #f95806 /*{a-active-border}*/;
349349
color: #ffffff /*{a-active-color}*/;
350-
text-shadow: 0 /*{a-active-shadow-x}*/ 2px /*{a-active-shadow-y}*/ 0 /*{a-active-shadow-radius}*/ #eb7300 /*{a-active-shadow-color}*/;
350+
text-shadow: 1px /*{a-active-shadow-x}*/ 1px /*{a-active-shadow-y}*/ 1px /*{a-active-shadow-radius}*/ #ffd8b3 /*{a-active-shadow-color}*/;
351351
}
352352
/* Active radio button icon */
353353
.ui-page-theme-a .ui-radio-on:after,
354354
html .ui-bar-a .ui-radio-on:after,
355355
html .ui-body-a .ui-radio-on:after,
356356
html body .ui-group-theme-a .ui-radio-on:after,
357357
.ui-btn.ui-radio-on.ui-btn-a:after {
358-
border-color: #ba6505 /*{a-active-background-color}*/;
358+
border-color: #e28755 /*{a-active-background-color}*/;
359359
}
360360
/* Focus */
361361
.ui-page-theme-a .ui-btn:focus,
@@ -370,9 +370,9 @@ html .ui-body-a .ui-focus,
370370
html body .ui-group-theme-a .ui-focus,
371371
html head + body .ui-btn-a.ui-focus,
372372
html head + body .ui-body-a.ui-focus {
373-
-webkit-box-shadow: 0 0 12px #ba6505 /*{a-active-background-color}*/;
374-
-moz-box-shadow: 0 0 12px #ba6505 /*{a-active-background-color}*/;
375-
box-shadow: 0 0 12px #ba6505 /*{a-active-background-color}*/;
373+
-webkit-box-shadow: 0 0 12px #e28755 /*{a-active-background-color}*/;
374+
-moz-box-shadow: 0 0 12px #e28755 /*{a-active-background-color}*/;
375+
box-shadow: 0 0 12px #e28755 /*{a-active-background-color}*/;
376376
}
377377
/* B
378378
-----------------------------------------------------------------------------------------------------------*/
@@ -382,10 +382,10 @@ html head + body .ui-body-a.ui-focus {
382382
html .ui-bar-b .ui-bar-inherit,
383383
html .ui-body-b .ui-bar-inherit,
384384
html body .ui-group-theme-b .ui-bar-inherit {
385-
background: #ed1c24 /*{b-bar-background-color}*/;
386-
border-color: #820f13 /*{b-bar-border}*/;
387-
color: #fff55c /*{b-bar-color}*/;
388-
text-shadow: 0 /*{b-bar-shadow-x}*/ 2px /*{b-bar-shadow-y}*/ 0 /*{b-bar-shadow-radius}*/ #444444 /*{b-bar-shadow-color}*/;
385+
background: #ec798e /*{b-bar-background-color}*/;
386+
border-color: #c41219 /*{b-bar-border}*/;
387+
color: #c41219 /*{b-bar-color}*/;
388+
text-shadow: 1px /*{b-bar-shadow-x}*/ 1px /*{b-bar-shadow-y}*/ 1px /*{b-bar-shadow-radius}*/ #fabdbd /*{b-bar-shadow-color}*/;
389389
font-weight: bold;
390390
}
391391
.ui-bar-b {

web/css/BlenderController.min.css

+6-6
Large diffs are not rendered by default.

web/css/font-awesome.min.css

-4
This file was deleted.

0 commit comments

Comments
 (0)