Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
5979f27f
Commit
5979f27f
authored
Mar 24, 2013
by
kliment
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #346 from OliverEngineer/experimental
attempting fix for issue 305
parents
c5d812a0
3cfe86f9
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
117 additions
and
35 deletions
+117
-35
webinterface.py
printrun/webinterface.py
+38
-35
style.css
web/css/style.css
+0
-0
asyncCommand.js
web/js/asyncCommand.js
+79
-0
No files found.
printrun/webinterface.py
View file @
5979f27f
...
...
@@ -23,7 +23,7 @@ from printrun.printrun_utils import configfile, imagefile, sharedfile
users
=
{}
def
PrintHeader
():
return
'<html>
\n
<head>
\n
<title>Pronterface-Web</title>
\n
<link rel = "stylesheet" type = "text/css" href = "/css/style.css" type = "text/css"></link>
\n
</head>
\n
<body>
\n
'
return
'<html>
\n
<head>
\n
<title>Pronterface-Web</title>
\n
<link rel = "stylesheet" type = "text/css" href = "/css/style.css" type = "text/css"></link>
\n
<
script src="/js/asyncCommand.js"></script>
\n
<
/head>
\n
<body>
\n
'
def
PrintMenu
():
return
'<div id = "mainmenu"><ul><li><a href = "/">home</a></li><li><a href = "/settings">settings</a></li><li><a href = "/console">console</a></li><li><a href = "/status">status (XML)</a></li></ul></div>'
...
...
@@ -284,14 +284,14 @@ class WebInterface(object):
pageText
=
PrintHeader
()
+
self
.
name
+
PrintMenu
()
pageText
+=
"<div id='content'>
\n
"
pageText
+=
"<div id='controls'>
\n
"
pageText
+=
"<ul><li><a href='/connect'>Connect</a></li>
\n
"
pageText
+=
"<li><a href='/disconnect'>Disconnect</a></li>
\n
"
pageText
+=
"<li><a href='/reset'>Reset</a></li>
\n
"
pageText
+=
"<li><a href='/printbutton'>Print</a></li>
\n
"
pageText
+=
"<li><a href='/pausebutton'>Pause</a></li>
\n
"
pageText
+=
"<ul><li><a
class='command'
href='/connect'>Connect</a></li>
\n
"
pageText
+=
"<li><a
class='command'
href='/disconnect'>Disconnect</a></li>
\n
"
pageText
+=
"<li><a
class='command'
href='/reset'>Reset</a></li>
\n
"
pageText
+=
"<li><a
class='command'
href='/printbutton'>Print</a></li>
\n
"
pageText
+=
"<li><a
class='command'
href='/pausebutton'>Pause</a></li>
\n
"
for
i
in
gPronterPtr
.
cpbuttons
:
pageText
+=
"<li><a
href='/custom/button/"
+
i
[
1
]
+
"'>"
+
i
[
0
]
+
"</a></li>
\n
"
pageText
+=
"<li><a
class='command' href='/custom/button/"
+
i
.
command
+
"'>"
+
i
.
label
+
"</a></li>
\n
"
#for i in gPronterPtr.custombuttons:
# print(str(i));
...
...
@@ -303,38 +303,38 @@ class WebInterface(object):
pageText
+=
"<img src='/images/control_xy.png' usemap='#xymap'/>"
pageText
+=
'<map name = "xymap">'
pageText
+=
'<area shape = "rect" coords = "8, 5, 51, 48" href = "/home/axis/x" alt = "X Home" title = "X Home" />'
pageText
+=
'<area shape = "rect" coords = "195, 6, 236, 46" href = "/home/axis/y" alt = "Y Home" title = "Y Home" />'
pageText
+=
'<area shape = "rect" coords = "7, 192, 48, 232" href = "/home/axis/all" alt = "All Home" title = "All Home" />'
pageText
+=
'<area shape = "rect" coords = "194, 192, 235, 232" href = "/home/axis/z" alt = "Z Home" title = "Z Home" />'
pageText
+=
'<area shape = "rect" coords = "62, 7, 185, 34" href = "/move/axis/y/100" alt = "Y 100" title = "Y 100" />'
pageText
+=
'<area shape = "rect" coords = "68, 34, 175, 61" href = "/move/axis/y/10" alt = "Y 10" title = "Y 10" />'
pageText
+=
'<area shape = "rect" coords = "80, 60, 163, 84" href = "/move/axis/y/1" alt = "Y 1" title = "Y 1" />'
pageText
+=
'<area shape = "rect" coords = "106, 83, 138, 107" href = "/move/axis/y/.1" alt = "Y .1" title = "Y .1" />'
pageText
+=
'<area shape = "rect" coords = "110, 135, 142, 159" href = "/move/axis/y/-.1" alt = "Y -.1" title = "Y -.1" />'
pageText
+=
'<area shape = "rect" coords = "81, 157, 169, 181" href = "/move/axis/y/-1" alt = "Y -1" title = "Y -1" />'
pageText
+=
'<area shape = "rect" coords = "69, 180, 178, 206" href = "/move/axis/y/-10" alt = "Y -10" title = "Y -10" />'
pageText
+=
'<area shape = "rect" coords = "60, 205, 186, 231" href = "/move/axis/y/-100" alt = "Y -100" title = "Y -100" />'
pageText
+=
'<area shape = "rect" coords = "11, 53, 37, 179" href = "/move/axis/x/-100" alt = "X -100" title = "X -100" />'
pageText
+=
'<area shape = "rect" coords = "210, 59, 236, 185" href = "/move/axis/x/100" alt = "X 100" title = "X 100" />'
pageText
+=
'<area shape = "rect" coords = "38, 60, 64, 172" href = "/move/axis/x/-10" alt = "X -10" title = "X -10" />'
pageText
+=
'<area shape = "rect" coords = "185, 66, 211, 178" href = "/move/axis/x/10" alt = "X 10" title = "X 10" />'
pageText
+=
'<area shape = "rect" coords = "62, 84, 83, 157" href = "/move/axis/x/-1" alt = "X -1" title = "X -1" />'
pageText
+=
'<area shape = "rect" coords = "163, 87, 187, 160" href = "/move/axis/x/1" alt = "X 1" title = "X 1" />'
pageText
+=
'<area shape = "rect" coords = "82, 104, 110, 139" href = "/move/axis/x/-.1" alt = "X -.1" title = "X -.1" />'
pageText
+=
'<area shape = "rect" coords = "137, 105, 165, 140" href = "/move/axis/x/.1" alt = "X .1" title = "X .1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "8, 5, 51, 48" href = "/home/axis/x" alt = "X Home" title = "X Home" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "195, 6, 236, 46" href = "/home/axis/y" alt = "Y Home" title = "Y Home" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "7, 192, 48, 232" href = "/home/axis/all" alt = "All Home" title = "All Home" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "194, 192, 235, 232" href = "/home/axis/z" alt = "Z Home" title = "Z Home" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "62, 7, 185, 34" href = "/move/axis/y/100" alt = "Y 100" title = "Y 100" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "68, 34, 175, 61" href = "/move/axis/y/10" alt = "Y 10" title = "Y 10" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "80, 60, 163, 84" href = "/move/axis/y/1" alt = "Y 1" title = "Y 1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "106, 83, 138, 107" href = "/move/axis/y/.1" alt = "Y .1" title = "Y .1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "110, 135, 142, 159" href = "/move/axis/y/-.1" alt = "Y -.1" title = "Y -.1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "81, 157, 169, 181" href = "/move/axis/y/-1" alt = "Y -1" title = "Y -1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "69, 180, 178, 206" href = "/move/axis/y/-10" alt = "Y -10" title = "Y -10" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "60, 205, 186, 231" href = "/move/axis/y/-100" alt = "Y -100" title = "Y -100" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "11, 53, 37, 179" href = "/move/axis/x/-100" alt = "X -100" title = "X -100" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "210, 59, 236, 185" href = "/move/axis/x/100" alt = "X 100" title = "X 100" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "38, 60, 64, 172" href = "/move/axis/x/-10" alt = "X -10" title = "X -10" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "185, 66, 211, 178" href = "/move/axis/x/10" alt = "X 10" title = "X 10" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "62, 84, 83, 157" href = "/move/axis/x/-1" alt = "X -1" title = "X -1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "163, 87, 187, 160" href = "/move/axis/x/1" alt = "X 1" title = "X 1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "82, 104, 110, 139" href = "/move/axis/x/-.1" alt = "X -.1" title = "X -.1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "137, 105, 165, 140" href = "/move/axis/x/.1" alt = "X .1" title = "X .1" />'
pageText
+=
"</map>"
pageText
+=
"</div>
\n
"
#endxy
pageText
+=
"<div id='control_z'>"
pageText
+=
"<img src='/images/control_z.png' usemap='#zmap'/>"
pageText
+=
'<map name = "zmap">'
pageText
+=
'<area shape = "rect" coords = "4, 35, 54, 64" href = "/move/axis/z/10" alt = "Z 10" title = "Z 10" />'
pageText
+=
'<area shape = "rect" coords = "4, 60, 54, 89" href = "/move/axis/z/1" alt = "Z 1" title = "Z 1" />'
pageText
+=
'<area shape = "rect" coords = "4, 87, 54, 116" href = "/move/axis/z/.1" alt = "Z .1" title = "Z .1" />'
pageText
+=
'<area shape = "rect" coords = "4, 121, 54, 150" href = "/move/axis/z/-.1" alt = "Z -.1" title = "Z -.1" />'
pageText
+=
'<area shape = "rect" coords = "4, 147, 54, 176" href = "/move/axis/z/-1" alt = "Z -1" title = "Z -1" />'
pageText
+=
'<area shape = "rect" coords = "4, 173, 54, 202" href = "/move/axis/z/-10" alt = "Z -10" title = "Z -10" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "4, 35, 54, 64" href = "/move/axis/z/10" alt = "Z 10" title = "Z 10" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "4, 60, 54, 89" href = "/move/axis/z/1" alt = "Z 1" title = "Z 1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "4, 87, 54, 116" href = "/move/axis/z/.1" alt = "Z .1" title = "Z .1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "4, 121, 54, 150" href = "/move/axis/z/-.1" alt = "Z -.1" title = "Z -.1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "4, 147, 54, 176" href = "/move/axis/z/-1" alt = "Z -1" title = "Z -1" />'
pageText
+=
'<area shape = "rect" c
lass="command" c
oords = "4, 173, 54, 202" href = "/move/axis/z/-10" alt = "Z -10" title = "Z -10" />'
pageText
+=
"</map>"
#TODO Map Z Moves
pageText
+=
"</div>
\n
"
#endz
...
...
@@ -378,7 +378,10 @@ def StartWebInterfaceThread(webInterface):
cherrypy
.
config
.
update
({
'engine.autoreload_on'
:
False
})
cherrypy
.
config
.
update
(
configfile
(
webInterface
.
pface
.
web_config
or
"http.config"
))
conf
=
{
'/css/style.css'
:
{
'tools.staticfile.on'
:
True
,
'tools.staticfile.filename'
:
sharedfile
(
'css/style.css'
),
'tools.staticfile.filename'
:
sharedfile
(
'web/style.css'
),
},
'/js/asyncCommand.js'
:
{
'tools.staticfile.on'
:
True
,
'tools.staticfile.filename'
:
sharedfile
(
'web/js/asyncCommand.js'
),
},
'/images/control_xy.png'
:
{
'tools.staticfile.on'
:
True
,
'tools.staticfile.filename'
:
imagefile
(
'control_xy.png'
),
...
...
css/style.css
→
web/
css/style.css
View file @
5979f27f
File moved
web/js/asyncCommand.js
0 → 100644
View file @
5979f27f
function
pronterfaceWebInterface_setup
(){
pronterfaceWebInterface_attachAsync
();
}
function
pronterfaceWebInterface_attachAsync
(){
var
list
=
[];
if
(
document
.
getElementsByClassName
){
list
=
document
.
getElementsByClassName
(
'command'
);
}
else
if
(
document
.
getElementsByTagName
){
list
=
document
.
getElementsByTagName
(
'a'
);
list
.
concat
(
document
.
getElementsByTagName
(
'area'
)
);
//TODO filter list via checking the className attributes
}
else
{
console
&&
console
.
error
&&
console
.
error
(
'unable to gather list of elements'
);
return
false
;
}
for
(
var
i
=
0
;
i
<
list
.
length
;
i
++
){
list
[
i
].
addEventListener
&&
list
[
i
].
addEventListener
(
'click'
,
function
(
e
){
return
pronterfaceWebInterface_asyncCommand
(
null
,
e
);},
true
);
list
[
i
].
attachEvent
&&
list
[
i
].
attachEvent
(
'onclick'
,
function
(
e
){
return
pronterfaceWebInterface_asyncCommand
(
null
,
e
);}
);
}
return
true
;
}
function
pronterfaceWebInterface_asyncCommand
(
urlOrElement
,
event
){
if
(
!
urlOrElement
&&
event
.
target
)
urlOrElement
=
event
.
target
;
var
url
=
null
;
if
(
typeof
urlOrElement
==
'string'
){
url
=
urlOrElement
;
}
else
{
url
=
urlOrElement
&&
urlOrElement
.
href
;
}
if
(
typeof
url
!=
'string'
){
console
&&
console
.
error
&&
console
.
error
(
'url not a string'
,
urlOrElement
,
url
);
return
true
;
}
var
httpRequest
;
if
(
window
.
XMLHttpRequest
)
{
// Mozilla, Safari, ...
httpRequest
=
new
XMLHttpRequest
();
}
else
if
(
window
.
ActiveXObject
)
{
// IE 8 and older
httpRequest
=
new
ActiveXObject
(
"Microsoft.XMLHTTP"
);
}
if
(
!
httpRequest
){
alert
(
'no AJAX available?'
);
// follow link
return
true
;
}
//onreadystatechange
//onerror
httpRequest
.
open
(
'GET'
,
url
,
true
);
httpRequest
.
send
(
null
);
// don't follow link
if
(
event
){
event
.
stopImmediatePropagation
&&
event
.
stopImmediatePropagation
();
event
.
defaultPrevented
=
true
;
event
.
preventDefault
&&
event
.
preventDefault
();
}
return
false
;
}
if
(
document
.
addEventListener
)
{
document
.
addEventListener
(
"DOMContentLoaded"
,
pronterfaceWebInterface_setup
,
false
);
}
else
if
(
document
.
attachEvent
)
{
document
.
attachEvent
(
"onreadystatechange"
,
pronterfaceWebInterface_setup
);
}
else
{
document
.
onload
=
pronterfaceWebInterface_setup
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment