Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.toolbox
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Guillaume Hervier
slapos.toolbox
Commits
5d5a0a86
Commit
5d5a0a86
authored
Oct 11, 2012
by
Marco Mariani
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'mmariani-jslint' into slaprunner
parents
356e6558
625aa19a
Changes
17
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
1754 additions
and
1511 deletions
+1754
-1511
slapos/runner/__init__.py
slapos/runner/__init__.py
+1
-1
slapos/runner/static/js/jquery/jqueryTabs.js
slapos/runner/static/js/jquery/jqueryTabs.js
+12
-12
slapos/runner/static/js/jquery/popup.js
slapos/runner/static/js/jquery/popup.js
+14
-14
slapos/runner/static/js/scripts/account.js
slapos/runner/static/js/scripts/account.js
+73
-62
slapos/runner/static/js/scripts/common.js
slapos/runner/static/js/scripts/common.js
+75
-55
slapos/runner/static/js/scripts/cookies.js
slapos/runner/static/js/scripts/cookies.js
+43
-31
slapos/runner/static/js/scripts/editor.js
slapos/runner/static/js/scripts/editor.js
+146
-121
slapos/runner/static/js/scripts/folder.js
slapos/runner/static/js/scripts/folder.js
+136
-127
slapos/runner/static/js/scripts/inspectInstance.js
slapos/runner/static/js/scripts/inspectInstance.js
+283
-239
slapos/runner/static/js/scripts/inspectSoftware.js
slapos/runner/static/js/scripts/inspectSoftware.js
+92
-79
slapos/runner/static/js/scripts/login.js
slapos/runner/static/js/scripts/login.js
+44
-35
slapos/runner/static/js/scripts/process.js
slapos/runner/static/js/scripts/process.js
+178
-138
slapos/runner/static/js/scripts/project.js
slapos/runner/static/js/scripts/project.js
+97
-99
slapos/runner/static/js/scripts/repo.js
slapos/runner/static/js/scripts/repo.js
+194
-180
slapos/runner/static/js/scripts/softwareFolder.js
slapos/runner/static/js/scripts/softwareFolder.js
+287
-263
slapos/runner/static/js/scripts/viewlog.js
slapos/runner/static/js/scripts/viewlog.js
+78
-54
slapos/shacache/config.py
slapos/shacache/config.py
+1
-1
No files found.
slapos/runner/__init__.py
View file @
5d5a0a86
...
@@ -16,7 +16,7 @@ class Parser(OptionParser):
...
@@ -16,7 +16,7 @@ class Parser(OptionParser):
"""
"""
def
__init__
(
self
,
usage
=
None
,
version
=
None
):
def
__init__
(
self
,
usage
=
None
,
version
=
None
):
"""
"""
Initialize all
options possible
s.
Initialize all
possible option
s.
"""
"""
OptionParser
.
__init__
(
self
,
usage
=
usage
,
version
=
version
,
OptionParser
.
__init__
(
self
,
usage
=
usage
,
version
=
version
,
option_list
=
[
option_list
=
[
...
...
slapos/runner/static/js/jquery/jqueryTabs.js
View file @
5d5a0a86
$
(
document
).
ready
(
function
(){
$
(
document
).
ready
(
function
(){
$
(
"
.tabContents
"
).
hide
();
// Hide all tab content divs by default
$
(
"
.tabContents
"
).
hide
();
// Hide all tab content divs by default
var
hashes
=
window
.
location
.
href
.
split
(
'
#
'
);
var
hashes
=
window
.
location
.
href
.
split
(
'
#
'
);
var
fromheight
=
0
;
var
fromheight
=
0
;
var
previoustab
=
null
;
var
previoustab
=
null
;
...
@@ -18,17 +18,17 @@ $(document).ready(function(){
...
@@ -18,17 +18,17 @@ $(document).ready(function(){
});
});
}
}
else
{
$
(
"
.tabContents:first
"
).
show
();
previoustab
=
"
.tabContents:first
"
;}
// Show the first div of tab content by default
else
{
$
(
"
.tabContents:first
"
).
show
();
previoustab
=
"
.tabContents:first
"
;}
// Show the first div of tab content by default
$
(
"
#tabContaier ul li a
"
).
click
(
function
(){
//Fire the click event
$
(
"
#tabContaier ul li a
"
).
click
(
function
(){
//Fire the click event
if
(
$
(
this
).
hasClass
(
'
active
'
)){
if
(
$
(
this
).
hasClass
(
'
active
'
)){
return
false
;
return
false
;
}
}
fromheight
=
$
(
previoustab
).
height
();
fromheight
=
$
(
previoustab
).
height
();
var
activeTab
=
$
(
this
).
attr
(
"
href
"
);
// Catch the click link
var
activeTab
=
$
(
this
).
attr
(
"
href
"
);
// Catch the click link
$
(
"
#tabContaier .tabDetails
"
).
css
(
"
height
"
,
$
(
"
#tabContaier .tabDetails
"
).
height
());
$
(
"
#tabContaier .tabDetails
"
).
css
(
"
height
"
,
$
(
"
#tabContaier .tabDetails
"
).
height
());
$
(
"
#tabContaier ul li a
"
).
removeClass
(
"
active
"
);
// Remove pre-highlighted link
$
(
"
#tabContaier ul li a
"
).
removeClass
(
"
active
"
);
// Remove pre-highlighted link
$
(
this
).
addClass
(
"
active
"
);
// set clicked link to highlight state
$
(
this
).
addClass
(
"
active
"
);
// set clicked link to highlight state
$
(
"
.tabContents
"
).
hide
();
// hide currently visible tab content div
$
(
"
.tabContents
"
).
hide
();
// hide currently visible tab content div
$
(
activeTab
).
fadeIn
();
// show the target tab content div by matching clicked link.
$
(
activeTab
).
fadeIn
();
// show the target tab content div by matching clicked link.
var
diff
=
fromheight
-
$
(
activeTab
).
height
();
var
diff
=
fromheight
-
$
(
activeTab
).
height
();
if
(
diff
>
0
){
$
(
"
#tabContaier .tabDetails
"
).
animate
({
height
:
'
-=
'
+
diff
+
'
px
'
},
850
,
'
swing
'
,
function
()
{
if
(
diff
>
0
){
$
(
"
#tabContaier .tabDetails
"
).
animate
({
height
:
'
-=
'
+
diff
+
'
px
'
},
850
,
'
swing
'
,
function
()
{
$
(
"
#tabContaier .tabDetails
"
).
css
(
"
height
"
,
""
);
$
(
"
#tabContaier .tabDetails
"
).
css
(
"
height
"
,
""
);
...
@@ -39,5 +39,5 @@ $(document).ready(function(){
...
@@ -39,5 +39,5 @@ $(document).ready(function(){
previoustab
=
activeTab
;
previoustab
=
activeTab
;
$
(
"
#tabContaier .tabDetails
"
).
css
(
"
height
"
,
$
(
"
#tabContaier .tabDetails
"
).
height
());
$
(
"
#tabContaier .tabDetails
"
).
css
(
"
height
"
,
$
(
"
#tabContaier .tabDetails
"
).
height
());
return
false
;
//this reinitialize tab index when reload page
return
false
;
//this reinitialize tab index when reload page
});
});
});
});
\ No newline at end of file
slapos/runner/static/js/jquery/popup.js
View file @
5d5a0a86
...
@@ -30,43 +30,43 @@
...
@@ -30,43 +30,43 @@
$box
.
show
();
$box
.
show
();
$box
.
append
(
'
<div><table id="bcontent"><tr>
'
+
$box
.
append
(
'
<div><table id="bcontent"><tr>
'
+
'
<td valign="middle" class="logo
'
+
option
.
type
+
'
_message"></td>
'
+
'
<td valign="middle" class="logo
'
+
option
.
type
+
'
_message"></td>
'
+
'
<td valign="middle"><p>
'
+
msg
+
'
</p></td>
'
+
'
<td valign="middle"><p>
'
+
msg
+
'
</p></td>
'
+
'
<td valign="middle" class="b_close"><span id="pClose"></span></td></tr></table></div>
'
);
'
<td valign="middle" class="b_close"><span id="pClose"></span></td></tr></table></div>
'
);
$
(
window
).
scroll
(
function
(){
$
(
window
).
scroll
(
function
(){
$box
.
animate
({
top
:
$
(
window
).
scrollTop
()
+
"
px
"
},{
queue
:
false
,
duration
:
350
});
$box
.
animate
({
top
:
$
(
window
).
scrollTop
()
+
"
px
"
},{
queue
:
false
,
duration
:
350
});
});
});
h
=
$
(
"
#bcontent
"
).
height
()
+
5
;
h
=
$
(
"
#bcontent
"
).
height
()
+
5
;
$
(
"
#pClose
"
).
bind
(
"
click
"
,
function
()
{
$
(
"
#pClose
"
).
bind
(
"
click
"
,
function
()
{
close
();
close
();
});
});
showBox
();
showBox
();
if
(
option
.
duration
!=
0
){
if
(
option
.
duration
!=
0
){
showDelayTimer
=
setTimeout
(
function
(){
showDelayTimer
=
setTimeout
(
function
(){
showDelayTimer
=
null
;
showDelayTimer
=
null
;
close
();
close
();
},
option
.
duration
);
},
option
.
duration
);
}
}
}
}
function
showBox
(){
function
showBox
(){
if
(
option
.
load
){
if
(
option
.
load
){
$
(
window
).
load
(
function
(){
$
(
window
).
load
(
function
(){
$box
.
css
(
'
top
'
,
+
(
$
(
window
).
scrollTop
()
-
h
)
+
'
px
'
);
$box
.
css
(
'
top
'
,
+
(
$
(
window
).
scrollTop
()
-
h
)
+
'
px
'
);
$box
.
animate
({
top
:
"
+=
"
+
h
+
"
px
"
},
"
slow
"
);
$box
.
animate
({
top
:
"
+=
"
+
h
+
"
px
"
},
"
slow
"
);
isShow
=
true
;
isShow
=
true
;
});
});
}
}
else
{
else
{
$box
.
css
(
'
top
'
,
+
(
$
(
window
).
scrollTop
()
-
h
)
+
'
px
'
);
$box
.
css
(
'
top
'
,
+
(
$
(
window
).
scrollTop
()
-
h
)
+
'
px
'
);
$box
.
animate
({
top
:
"
+=
"
+
h
+
"
px
"
},
"
slow
"
);
$box
.
animate
({
top
:
"
+=
"
+
h
+
"
px
"
},
"
slow
"
);
isShow
=
true
;
isShow
=
true
;
}
}
}
}
function
close
(){
function
close
(){
$box
.
animate
({
top
:
"
-=
"
+
h
+
"
px
"
},
"
slow
"
,
function
(){
$box
.
animate
({
top
:
"
-=
"
+
h
+
"
px
"
},
"
slow
"
,
function
(){
$box
.
fadeOut
(
"
normal
"
,
function
()
{
$box
.
fadeOut
(
"
normal
"
,
function
()
{
isShow
=
false
;
isShow
=
false
;
});
});
});
});
}
}
}
}
});
});
...
...
slapos/runner/static/js/scripts/account.js
View file @
5d5a0a86
$
(
document
).
ready
(
function
()
{
/*jslint undef: true */
var
send
=
false
;
/*global $, document, window, $SCRIPT_ROOT */
$
(
"
#update
"
).
click
(
function
(){
/* vim: set et sts=4: */
var
haspwd
=
false
;
var
hasAccount
=
!
(
$
(
"
input#hasAccount
"
).
val
()
===
""
);
$
(
document
).
ready
(
function
()
{
if
(
$
(
"
input#username
"
).
val
()
===
""
||
!
$
(
"
input#username
"
).
val
().
match
(
/^
[\w\d\.
_-
]
+$/
)){
"
use strict
"
;
$
(
"
#error
"
).
Popup
(
"
Invalid user name. Please check it!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
var
send
=
false
;
return
false
;
$
(
"
#update
"
).
click
(
function
()
{
}
var
haspwd
=
false
,
else
if
(
$
(
"
input#username
"
).
val
().
length
<
6
){
hasAccount
=
(
$
(
"
input#hasAccount
"
).
val
()
!==
""
);
$
(
"
#error
"
).
Popup
(
"
Username must have at least 6 characters
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
if
(
$
(
"
input#username
"
).
val
()
===
""
||
!
$
(
"
input#username
"
).
val
().
match
(
/^
[\w\d\.
_
\-]
+$/
))
{
return
false
;
$
(
"
#error
"
).
Popup
(
"
Invalid user name. Please check it!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
}
return
false
;
if
(
$
(
"
input#name
"
).
val
()
===
""
){
$
(
"
#error
"
).
Popup
(
"
Please enter your name and surname!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
if
(
!
$
(
"
input#email
"
).
val
().
match
(
/^
([
a-zA-Z0-9_
\.\-])
+
\@(([
a-zA-Z0-9
\-])
+
\.)
+
([
a-zA-Z0-9
]{2,4})
+$/
)){
$
(
"
#error
"
).
Popup
(
"
Please enter a valid email adress!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
if
(
!
hasAccount
&&
!
$
(
"
input#password
"
).
val
().
match
(
/^
[\w\d\.
_-
]
+$/
)){
$
(
"
#error
"
).
Popup
(
"
Please enter your new password!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
if
(
$
(
"
input#password
"
).
val
()
!==
""
&&
$
(
"
input#password
"
).
val
().
length
<
6
){
$
(
"
#error
"
).
Popup
(
"
The password must have at least 6 characters
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
if
(
$
(
"
input#password
"
).
val
()
!==
""
){
if
(
$
(
"
input#password
"
).
val
()
===
""
||
!
$
(
"
input#password
"
).
val
().
match
(
/^
[\w\d\.
_-
]
+$/
)){
$
(
"
#error
"
).
Popup
(
"
Please enter your new password!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
if
(
$
(
"
input#password
"
).
val
()
!==
$
(
"
input#cpassword
"
).
val
()){
$
(
"
#error
"
).
Popup
(
"
your password does not match!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
haspwd
=
true
;
}
if
(
!
$
(
"
input#rcode
"
).
val
().
match
(
/^
[\w\d]
+$/
)){
$
(
"
#error
"
).
Popup
(
"
Please enter your password recovery code.
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
if
(
send
)
return
false
;
send
=
true
;
$
.
ajax
({
type
:
"
POST
"
,
url
:
$SCRIPT_ROOT
+
((
hasAccount
)?
'
/updateAccount
'
:
'
/configAccount
'
),
data
:
{
name
:
$
(
"
input#name
"
).
val
(),
username
:
$
(
"
input#username
"
).
val
(),
email
:
$
(
"
input#email
"
).
val
(),
password
:((
haspwd
)
?
$
(
"
input#password
"
).
val
():
""
),
rcode
:
$
(
"
input#rcode
"
).
val
()},
success
:
function
(
data
){
if
(
data
.
code
==
1
){
location
.
href
=
$SCRIPT_ROOT
+
"
/
"
}
}
else
{
if
(
$
(
"
input#username
"
).
val
().
length
<
6
)
{
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
});
$
(
"
#error
"
).
Popup
(
"
Username must have at least 6 characters
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
}
send
=
false
;
if
(
$
(
"
input#name
"
).
val
()
===
""
)
{
},
$
(
"
#error
"
).
Popup
(
"
Please enter your name and surname!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
error
:
function
(){
send
=
false
;}
return
false
;
}
if
(
!
$
(
"
input#email
"
).
val
().
match
(
/^
([
a-zA-Z0-9_
\.\-])
+
\@(([
a-zA-Z0-9
\-])
+
\.)
+
([
a-zA-Z0-9
]{2,4})
+$/
))
{
$
(
"
#error
"
).
Popup
(
"
Please enter a valid email adress!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
if
(
!
hasAccount
&&
!
$
(
"
input#password
"
).
val
().
match
(
/^
[\w\d\.
_
\-]
+$/
))
{
$
(
"
#error
"
).
Popup
(
"
Please enter your new password!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
if
(
$
(
"
input#password
"
).
val
()
!==
""
&&
$
(
"
input#password
"
).
val
().
length
<
6
)
{
$
(
"
#error
"
).
Popup
(
"
The password must have at least 6 characters
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
if
(
$
(
"
input#password
"
).
val
()
!==
""
)
{
if
(
$
(
"
input#password
"
).
val
()
===
""
||
!
$
(
"
input#password
"
).
val
().
match
(
/^
[\w\d\.
_
\-]
+$/
))
{
$
(
"
#error
"
).
Popup
(
"
Please enter your new password!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
if
(
$
(
"
input#password
"
).
val
()
!==
$
(
"
input#cpassword
"
).
val
())
{
$
(
"
#error
"
).
Popup
(
"
your password does not match!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
haspwd
=
true
;
}
if
(
!
$
(
"
input#rcode
"
).
val
().
match
(
/^
[\w\d]
+$/
))
{
$
(
"
#error
"
).
Popup
(
"
Please enter your password recovery code.
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
}
if
(
send
)
{
return
false
;
}
send
=
true
;
$
.
ajax
({
type
:
"
POST
"
,
url
:
$SCRIPT_ROOT
+
((
hasAccount
)
?
'
/updateAccount
'
:
'
/configAccount
'
),
data
:
{
name
:
$
(
"
input#name
"
).
val
(),
username
:
$
(
"
input#username
"
).
val
(),
email
:
$
(
"
input#email
"
).
val
(),
password
:
((
haspwd
)
?
$
(
"
input#password
"
).
val
()
:
""
),
rcode
:
$
(
"
input#rcode
"
).
val
()
},
success
:
function
(
data
)
{
if
(
data
.
code
===
1
)
{
window
.
location
.
href
=
$SCRIPT_ROOT
+
"
/
"
;
}
else
{
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
});
}
send
=
false
;
},
error
:
function
()
{
send
=
false
;
}
});
return
false
;
});
});
return
false
;
});
});
});
\ No newline at end of file
slapos/runner/static/js/scripts/common.js
View file @
5d5a0a86
/*jslint undef: true */
/*global $, window, $SCRIPT_ROOT */
/* vim: set et sts=4: */
/*Common javascript function*/
/*Common javascript function*/
String
.
prototype
.
toHtmlChar
=
function
(){
String
.
prototype
.
toHtmlChar
=
function
()
{
var
c
=
{
'
<
'
:
'
<
'
,
'
>
'
:
'
>
'
,
'
&
'
:
'
&
'
,
'
"
'
:
'
"
'
,
"
'
"
:
'
'
'
,
"
use strict
"
;
'
#
'
:
'
#
'
};
var
c
=
{
return
this
.
replace
(
/
[
<&>'"#
]
/g
,
function
(
s
)
{
return
c
[
s
];
}
);
'
<
'
:
'
<
'
,
'
>
'
:
'
>
'
,
'
&
'
:
'
&
'
,
'
"
'
:
'
"
'
,
"
'
"
:
'
'
'
,
'
#
'
:
'
#
'
};
return
this
.
replace
(
/
[
<&>'"#
]
/g
,
function
(
s
)
{
return
c
[
s
];
});
};
};
String
.
prototype
.
trim
=
function
()
{
String
.
prototype
.
trim
=
function
()
{
"
use strict
"
;
return
this
.
replace
(
/^
\s
*/
,
""
).
replace
(
/
\s
*$/
,
""
);
return
this
.
replace
(
/^
\s
*/
,
""
).
replace
(
/
\s
*$/
,
""
);
};
};
/****************************************/
/****************************************/
function
setInput
(
$elt
)
{
function
setInput
(
$elt
)
{
if
(
!
$elt
){
$elt
=
$
(
'
input[type="text"], input[type="password"]
'
);}
"
use strict
"
;
$elt
.
addClass
(
"
idleField
"
);
if
(
!
$elt
)
{
$elt
.
focus
(
function
()
{
$elt
=
$
(
'
input[type="text"], input[type="password"]
'
);
$
(
this
).
removeClass
(
"
idleField
"
).
addClass
(
"
focusField
"
);
}
if
(
this
.
value
==
this
.
defaultValue
){
$elt
.
addClass
(
"
idleField
"
);
this
.
value
=
''
;
$elt
.
focus
(
function
()
{
}
$
(
this
).
removeClass
(
"
idleField
"
).
addClass
(
"
focusField
"
);
if
(
this
.
value
!=
this
.
defaultValue
){
if
(
this
.
value
===
this
.
defaultValue
)
{
this
.
select
();
this
.
value
=
''
;
}
}
});
if
(
this
.
value
!==
this
.
defaultValue
)
{
$elt
.
blur
(
function
()
{
this
.
select
();
$
(
this
).
removeClass
(
"
focusField
"
).
addClass
(
"
idleField
"
);
}
if
(
$
.
trim
(
this
.
value
)
===
''
){
});
this
.
value
=
(
this
.
defaultValue
?
this
.
defaultValue
:
''
);
$elt
.
blur
(
function
()
{
}
$
(
this
).
removeClass
(
"
focusField
"
).
addClass
(
"
idleField
"
);
});
if
(
$
.
trim
(
this
.
value
)
===
''
)
{
this
.
value
=
(
this
.
defaultValue
||
''
);
}
});
}
}
/*******************Bind remove all button*******************/
/*******************Bind remove all button*******************/
function
bindRemove
(){
function
bindRemove
()
{
$
(
"
a#removeSr
"
).
click
(
function
(){
"
use strict
"
;
if
(
!
window
.
confirm
(
"
Do you really want to remove all software release?
"
)){
$
(
"
a#removeSr
"
).
click
(
function
()
{
return
false
;
if
(
!
window
.
confirm
(
"
Do you really want to remove all software release?
"
))
{
}
return
false
;
location
.
href
=
$SCRIPT_ROOT
+
'
/removeSoftware
'
;
}
});
window
.
location
.
href
=
$SCRIPT_ROOT
+
'
/removeSoftware
'
;
$
(
"
a#removeIst
"
).
click
(
function
(){
});
if
(
!
window
.
confirm
(
"
Do you really want to remove all computer partition?
"
)){
$
(
"
a#removeIst
"
).
click
(
function
()
{
return
false
;
if
(
!
window
.
confirm
(
"
Do you really want to remove all computer partition?
"
))
{
}
return
false
;
location
.
href
=
$SCRIPT_ROOT
+
'
/removeInstance
'
;
}
});
window
.
location
.
href
=
$SCRIPT_ROOT
+
'
/removeInstance
'
;
});
}
}
/**************************/
/**************************/
(
function
(
$
,
document
,
window
)
{
(
function
(
$
,
document
,
window
)
{
"
use strict
"
;
$
.
extend
(
$
.
fn
,
{
$
.
extend
(
$
.
fn
,
{
slideBox
:
function
(
state
)
{
slideBox
:
function
(
state
)
{
if
(
!
state
)
state
=
"
hide
"
;
if
(
!
state
)
{
var
header
=
$
(
"
#
"
+
$
(
this
).
attr
(
'
id
'
)
+
"
>h2
"
);
state
=
"
hide
"
;
var
box
=
$
(
"
#
"
+
$
(
this
).
attr
(
'
id
'
)
+
"
>div
"
);
}
header
.
addClass
(
state
);
var
header
=
$
(
"
#
"
+
$
(
this
).
attr
(
'
id
'
)
+
"
>h2
"
),
if
(
state
==
"
hide
"
){
box
.
css
(
'
display
'
,
'
none
'
);}
box
=
$
(
"
#
"
+
$
(
this
).
attr
(
'
id
'
)
+
"
>div
"
);
header
.
click
(
function
(){
header
.
addClass
(
state
);
var
state
=
box
.
css
(
"
display
"
);
if
(
state
===
"
hide
"
)
{
if
(
state
==
"
none
"
){
box
.
css
(
'
display
'
,
'
none
'
);
box
.
slideDown
(
"
normal
"
);
}
header
.
removeClass
(
"
hide
"
);
header
.
click
(
function
()
{
header
.
addClass
(
"
show
"
);
var
state
=
box
.
css
(
"
display
"
);
}
if
(
state
===
"
none
"
)
{
else
{
box
.
slideDown
(
"
normal
"
);
box
.
slideUp
(
"
normal
"
);
header
.
removeClass
(
"
hide
"
);
header
.
removeClass
(
"
show
"
);
header
.
addClass
(
"
show
"
);
header
.
addClass
(
"
hide
"
);
}
else
{
}
box
.
slideUp
(
"
normal
"
);
});
header
.
removeClass
(
"
show
"
);
}
header
.
addClass
(
"
hide
"
);
}
});
}
});
});
}(
jQuery
,
document
,
this
));
}(
jQuery
,
document
,
this
));
\ No newline at end of file
slapos/runner/static/js/scripts/cookies.js
View file @
5d5a0a86
/*jslint undef: true */
/*global document, escape, unescape */
/* vim: set et sts=4: */
/*Cookies Management*/
/*Cookies Management*/
function
setCookie
(
name
,
value
,
expires
,
path
,
domain
,
secure
){
function
setCookie
(
name
,
value
,
expires
,
path
,
domain
,
secure
)
{
if
(
!
expires
){
"
use strict
"
;
var
today
=
new
Date
();
if
(
!
expires
)
{
expires
=
new
Date
(
today
.
getTime
()
+
365
*
24
*
60
*
60
*
1000
);
var
today
=
new
Date
();
}
expires
=
new
Date
(
today
.
getTime
()
+
365
*
24
*
60
*
60
*
1000
);
document
.
cookie
=
name
+
"
=
"
+
escape
(
value
)
+
}
"
; expires=
"
+
expires
.
toGMTString
()
+
document
.
cookie
=
name
+
"
=
"
+
escape
(
value
)
+
((
path
)
?
"
; path=
"
+
path
:
"
/
"
)
+
"
; expires=
"
+
expires
.
toGMTString
()
+
((
domain
)
?
"
; domain=
"
+
domain
:
""
)
+
((
path
)
?
"
; path=
"
+
path
:
"
/
"
)
+
((
secure
)
?
"
; secure
"
:
""
);
((
domain
)
?
"
; domain=
"
+
domain
:
""
)
+
}
((
secure
)
?
"
; secure
"
:
""
);
function
deleteCookie
(
name
,
path
,
domain
)
{
if
(
getCookie
(
name
))
{
document
.
cookie
=
name
+
"
=
"
+
((
path
)
?
"
; path=
"
+
path
:
"
/
"
)
+
((
domain
)
?
"
; domain=
"
+
domain
:
""
)
+
"
; expires=Thu, 01-Jan-70 00:00:01 GMT
"
;
}
}
}
function
getCookie
(
name
)
{
function
getCookie
(
name
)
{
var
i
,
x
,
y
,
ARRcookies
=
document
.
cookie
.
split
(
"
;
"
);
"
use strict
"
;
for
(
i
=
0
;
i
<
ARRcookies
.
length
;
i
++
){
var
i
,
x
=
ARRcookies
[
i
].
substr
(
0
,
ARRcookies
[
i
].
indexOf
(
"
=
"
));
x
,
y
=
ARRcookies
[
i
].
substr
(
ARRcookies
[
i
].
indexOf
(
"
=
"
)
+
1
);
y
,
x
=
x
.
replace
(
/^
\s
+|
\s
+$/g
,
""
);
result
,
if
(
x
==
name
){
ARRcookies
=
document
.
cookie
.
split
(
"
;
"
);
var
result
=
unescape
(
y
);
for
(
i
=
0
;
i
<
ARRcookies
.
length
;
i
+=
1
)
{
if
(
result
!=
""
&&
result
!=
null
){
x
=
ARRcookies
[
i
].
substr
(
0
,
ARRcookies
[
i
].
indexOf
(
"
=
"
));
return
result
;
y
=
ARRcookies
[
i
].
substr
(
ARRcookies
[
i
].
indexOf
(
"
=
"
)
+
1
);
}
x
=
x
.
replace
(
/^
\s
+|
\s
+$/g
,
""
);
return
null
;
if
(
x
===
name
)
{
result
=
unescape
(
y
);
if
(
result
!==
""
&&
result
!==
null
)
{
return
result
;
}
return
null
;
}
}
return
null
;
}
function
deleteCookie
(
name
,
path
,
domain
)
{
"
use strict
"
;
if
(
getCookie
(
name
))
{
document
.
cookie
=
name
+
"
=
"
+
(
path
?
"
; path=
"
+
path
:
"
/
"
)
+
(
domain
?
"
; domain=
"
+
domain
:
""
)
+
"
; expires=Thu, 01-Jan-70 00:00:01 GMT
"
;
}
}
}
return
null
;
}
}
/**************************/
/**************************/
slapos/runner/static/js/scripts/editor.js
View file @
5d5a0a86
$
(
document
).
ready
(
function
()
{
/*jslint undef: true */
var
editor
=
ace
.
edit
(
"
editor
"
);
/*global $, document, ace, $SCRIPT_ROOT */
editor
.
setTheme
(
"
ace/theme/crimson_editor
"
);
/* vim: set et sts=4: */
var
CurentMode
=
require
(
"
ace/mode/buildout
"
).
Mode
;
editor
.
getSession
().
setMode
(
new
CurentMode
());
editor
.
getSession
().
setTabSize
(
2
);
editor
.
getSession
().
setUseSoftTabs
(
true
);
editor
.
renderer
.
setHScrollBarAlwaysVisible
(
false
);
var
file
=
$
(
"
input#profile
"
).
val
();
$
(
document
).
ready
(
function
()
{
var
workdir
=
$
(
"
input#workdir
"
).
val
();
"
use strict
"
;
var
edit
=
false
;
var
send
=
false
;
selectFile
(
file
);
$
(
"
#save
"
).
click
(
function
(){
var
editor
,
CurrentMode
,
file
,
workdir
,
edit
,
send
;
if
(
!
edit
){
$
(
"
#error
"
).
Popup
(
"
Can not load your file, please make sure that you have selected a Software Release
"
,
{
type
:
'
alert
'
,
duration
:
5000
});
return
false
;
}
if
(
send
)
return
;
send
=
true
$
.
ajax
({
type
:
"
POST
"
,
url
:
$SCRIPT_ROOT
+
'
/saveFileContent
'
,
data
:
{
file
:
file
,
content
:
editor
.
getSession
().
getValue
()},
success
:
function
(
data
){
if
(
data
.
code
==
1
){
$
(
"
#error
"
).
Popup
(
"
File Saved!
"
,
{
type
:
'
confirm
'
,
duration
:
2000
});
}
else
{
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
});
}
send
=
false
;
}
});
return
false
;
});
$
(
"
#getmd5
"
).
click
(
function
(){
getmd5sum
();
return
false
;
});
$
(
"
#adddevelop
"
).
click
(
function
(){
var
developList
=
new
Array
();
var
i
=
0
;
$
(
"
#plist li
"
).
each
(
function
(
index
){
var
elt
=
$
(
this
).
find
(
"
input:checkbox
"
);
if
(
elt
.
is
(
"
:checked
"
)){
developList
[
i
]
=
workdir
+
"
/
"
+
elt
.
val
();
i
++
;
elt
.
attr
(
"
checked
"
,
false
);
}
});
if
(
developList
.
length
>
0
){
setDevelop
(
developList
);}
return
false
;
});
function
selectFile
(
file
)
{
function
selectFile
(
file
)
{
edit
=
false
;
edit
=
false
;
$
.
ajax
({
$
.
ajax
({
type
:
"
POST
"
,
type
:
"
POST
"
,
url
:
$SCRIPT_ROOT
+
'
/getFileContent
'
,
url
:
$SCRIPT_ROOT
+
'
/getFileContent
'
,
data
:
"
file=
"
+
file
,
data
:
"
file=
"
+
file
,
success
:
function
(
data
)
{
success
:
function
(
data
)
{
if
(
data
.
code
==
1
)
{
if
(
data
.
code
===
1
)
{
editor
.
getSession
().
setValue
(
data
.
result
);
editor
.
getSession
().
setValue
(
data
.
result
);
edit
=
true
;
edit
=
true
;
}
}
else
{
else
{
$
(
"
#error
"
).
Popup
(
"
Can not load your file, please make sure that you have selected a Software Release
"
,
$
(
"
#error
"
).
Popup
(
"
Can not load your file, please make sure that you have selected a Software Release
"
,
{
type
:
'
alert
'
,
duration
:
5000
});
{
type
:
'
alert
'
,
duration
:
5000
});
}
}
}
}
});
});
return
;
return
;
}
}
function
getmd5sum
(){
function
getmd5sum
()
{
if
(
send
)
return
;
if
(
send
)
{
send
=
true
return
;
$
.
ajax
({
}
type
:
"
POST
"
,
send
=
true
;
url
:
$SCRIPT_ROOT
+
'
/getmd5sum
'
,
$
.
ajax
({
data
:
{
file
:
file
},
type
:
"
POST
"
,
success
:
function
(
data
){
url
:
$SCRIPT_ROOT
+
'
/getmd5sum
'
,
if
(
data
.
code
==
1
){
data
:
{
file
:
file
},
$
(
"
#md5sum
"
).
empty
();
success
:
function
(
data
)
{
$
(
"
#md5sum
"
).
append
(
'
md5sum : <span>
'
+
data
.
result
+
'
</span>
'
);
if
(
data
.
code
===
1
)
{
}
$
(
"
#md5sum
"
).
empty
();
else
{
$
(
"
#md5sum
"
).
append
(
'
md5sum : <span>
'
+
data
.
result
+
'
</span>
'
);
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
});
}
else
{
}
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
});
send
=
false
;
}
}
send
=
false
;
});
}
}
});
function
setDevelop
(
developList
){
}
if
(
developList
==
null
||
developList
.
length
<=
0
)
return
;
editor
.
navigateFileStart
();
function
setDevelop
(
developList
)
{
editor
.
find
(
'
buildout
'
,{
caseSensitive
:
true
,
wholeWord
:
true
});
if
(
developList
===
null
||
developList
.
length
<=
0
)
{
if
(
!
editor
.
getSelectionRange
().
isEmpty
()){
return
;
//editor.find("",{caseSensitive: true,wholeWord: true,regExp: true});
}
//if(!editor.getSelectionRange().isEmpty()){
editor
.
navigateFileStart
();
//alert("found");
editor
.
find
(
'
buildout
'
,
{
caseSensitive
:
true
,
wholeWord
:
true
});
//}
if
(
editor
.
getSelectionRange
().
isEmpty
())
{
//else{alert("no found");
$
(
"
#error
"
).
Popup
(
"
Can not found part [buildout]! Please make sure that you have a cfg file
"
,
//}
{
type
:
'
alert
'
,
duration
:
3000
});
}
return
;
else
{
}
$
(
"
#error
"
).
Popup
(
"
Can not found part [buildout]! Please make sure that you have a cfg file
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
//else {
return
;
// //editor.find("",{caseSensitive: true,wholeWord: true,regExp: true});
}
// //if (!editor.getSelectionRange().isEmpty()) {
editor
.
navigateLineEnd
();
// //alert("found");
$
.
post
(
$SCRIPT_ROOT
+
"
/getPath
"
,
{
file
:
developList
.
join
(
"
#
"
)},
function
(
data
)
{
// //}
if
(
data
.
code
==
1
){
// //else{alert("no found");
var
result
=
data
.
result
.
split
(
'
#
'
);
// //}
editor
.
insert
(
"
\n
develop =
\n\t
"
+
result
[
0
]
+
"
\n
"
);
//}
for
(
var
i
=
1
;
i
<
result
.
length
;
i
++
)
editor
.
navigateLineEnd
();
editor
.
insert
(
"
\t
"
+
result
[
i
]
+
"
\n
"
);
$
.
post
(
$SCRIPT_ROOT
+
"
/getPath
"
,
{
file
:
developList
.
join
(
"
#
"
)},
function
(
data
)
{
}
if
(
data
.
code
===
1
)
{
})
var
i
,
.
error
(
function
()
{
})
result
=
data
.
result
.
split
(
'
#
'
);
.
complete
(
function
(){});
editor
.
insert
(
"
\n
develop =
\n\t
"
+
result
[
0
]
+
"
\n
"
);
editor
.
insert
(
"
\n
"
);
for
(
i
=
1
;
i
<
result
.
length
;
i
+=
1
)
{
}
editor
.
insert
(
"
\t
"
+
result
[
i
]
+
"
\n
"
);
});
}
\ No newline at end of file
}
})
.
error
(
function
()
{
})
.
complete
(
function
()
{});
editor
.
insert
(
"
\n
"
);
}
editor
=
ace
.
edit
(
"
editor
"
);
CurrentMode
=
require
(
"
ace/mode/buildout
"
).
Mode
;
file
=
$
(
"
input#profile
"
).
val
();
workdir
=
$
(
"
input#workdir
"
).
val
();
edit
=
false
;
send
=
false
;
editor
.
setTheme
(
"
ace/theme/crimson_editor
"
);
editor
.
getSession
().
setMode
(
new
CurrentMode
());
editor
.
getSession
().
setTabSize
(
2
);
editor
.
getSession
().
setUseSoftTabs
(
true
);
editor
.
renderer
.
setHScrollBarAlwaysVisible
(
false
);
selectFile
(
file
);
$
(
"
#save
"
).
click
(
function
()
{
if
(
!
edit
)
{
$
(
"
#error
"
).
Popup
(
"
Can not load your file, please make sure that you have selected a Software Release
"
,
{
type
:
'
alert
'
,
duration
:
5000
});
return
false
;
}
if
(
send
)
{
return
;
}
send
=
true
;
$
.
ajax
({
type
:
"
POST
"
,
url
:
$SCRIPT_ROOT
+
'
/saveFileContent
'
,
data
:
{
file
:
file
,
content
:
editor
.
getSession
().
getValue
()},
success
:
function
(
data
)
{
if
(
data
.
code
===
1
)
{
$
(
"
#error
"
).
Popup
(
"
File Saved!
"
,
{
type
:
'
confirm
'
,
duration
:
2000
});
}
else
{
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
});
}
send
=
false
;
}
});
return
false
;
});
$
(
"
#getmd5
"
).
click
(
function
()
{
getmd5sum
();
return
false
;
});
$
(
"
#adddevelop
"
).
click
(
function
()
{
var
developList
=
[],
i
=
0
;
$
(
"
#plist li
"
).
each
(
function
(
index
)
{
var
elt
=
$
(
this
).
find
(
"
input:checkbox
"
);
if
(
elt
.
is
(
"
:checked
"
))
{
developList
[
i
]
=
workdir
+
"
/
"
+
elt
.
val
();
i
+=
1
;
elt
.
attr
(
"
checked
"
,
false
);
}
});
if
(
developList
.
length
>
0
)
{
setDevelop
(
developList
);
}
return
false
;
});
});
slapos/runner/static/js/scripts/folder.js
View file @
5d5a0a86
$
(
document
).
ready
(
function
()
{
/*jslint undef: true */
var
send
=
false
;
/*global $, document, $SCRIPT_ROOT */
var
cloneRequest
;
/* vim: set et sts=4: */
$
(
'
#fileNavigator
'
).
gsFileManager
({
script
:
$SCRIPT_ROOT
+
"
/fileBrowser
"
,
root
:
"
workspace/
"
});
configRadio
();
$
(
"
input#nothing
"
).
change
(
function
(){
$
(
document
).
ready
(
function
()
{
configRadio
();
"
use strict
"
;
});
$
(
"
input#ssh
"
).
change
(
function
(){
function
configRadio
()
{
configRadio
();
$
(
"
#modelist li
"
).
each
(
function
(
index
)
{
});
var
boxselector
=
"
#box
"
+
index
;
$
(
"
input#https
"
).
change
(
function
(){
if
(
$
(
this
).
hasClass
(
'
checked
'
))
{
configRadio
();
$
(
this
).
removeClass
(
'
checked
'
);
});
$
(
boxselector
).
slideUp
(
"
normal
"
);
$
(
"
#clone
"
).
click
(
function
(){
}
if
(
send
){
if
(
$
(
this
).
find
(
"
input:radio
"
).
is
(
'
:checked
'
))
{
cloneRequest
.
abort
();
$
(
this
).
addClass
(
'
checked
'
);
$
(
"
#imgwaitting
"
).
fadeOut
(
'
normal
'
);
//change content here
$
(
"
#clone
"
).
empty
();
$
(
boxselector
).
slideDown
(
"
normal
"
);
$
(
"
#clone
"
).
append
(
"
Clone
"
);
}
send
=
false
;
if
(
index
!==
2
)
{
return
;
$
(
"
input#password
"
).
val
(
""
);
}
$
(
"
input#cpassword
"
).
val
(
""
);
var
repo_url
=
$
(
"
input#repo
"
).
val
();
}
var
email
=
""
;
});
var
name
=
""
;
}
/* /^(ht|f)tps?:\/\/[a-z0-9-\.]+\.[a-z]{2,4}\/?([^\s<>\#%"\,\{\}\\|\\\^\[\]`]+)?$/ */
if
(
$
(
"
input#repo
"
).
val
()
===
''
||
!
repo_url
.
match
(
/^
[\w\d\.\/
:~@_-
]
+$/
)){
var
send
=
false
,
$
(
"
#error
"
).
Popup
(
"
Invalid url for the repository
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
cloneRequest
;
return
false
;
}
$
(
'
#fileNavigator
'
).
gsFileManager
({
script
:
$SCRIPT_ROOT
+
"
/fileBrowser
"
,
root
:
"
workspace/
"
});
if
(
$
(
"
input#name
"
).
val
()
===
''
||
!
$
(
"
input#name
"
).
val
().
match
(
/^
[\w\d\.
_-
]
+$/
)){
configRadio
();
$
(
"
#error
"
).
Popup
(
"
Invalid project name
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
$
(
"
input#nothing
"
).
change
(
function
()
{
return
false
;
configRadio
();
}
});
if
(
$
(
"
input#user
"
).
val
()
!==
""
){
$
(
"
input#ssh
"
).
change
(
function
()
{
name
=
$
(
"
input#user
"
).
val
();
configRadio
();
}
});
if
(
$
(
"
input#email
"
).
val
()
!==
''
&&
$
(
"
input#email
"
).
val
()
!==
"
Enter your email adress...
"
){
$
(
"
input#https
"
).
change
(
function
()
{
if
(
!
$
(
"
input#email
"
).
val
().
match
(
/^
([
a-zA-Z0-9_
\.\-])
+
\@(([
a-zA-Z0-9
\-])
+
\.)
+
([
a-zA-Z0-9
]{2,4})
+$/
)){
configRadio
();
$
(
"
#error
"
).
Popup
(
"
Please enter a valid email adress!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
});
return
false
;
$
(
"
#clone
"
).
click
(
function
()
{
}
if
(
send
)
{
email
=
$
(
"
input#email
"
).
val
();
cloneRequest
.
abort
();
}
$
(
"
#imgwaitting
"
).
fadeOut
(
'
normal
'
);
if
(
$
(
"
input#https
"
).
is
(
'
:checked
'
)){
$
(
"
#clone
"
).
empty
();
if
(
$
(
"
input#username
"
).
val
()
==
""
||
!
$
(
"
input#username
"
).
val
().
match
(
/^
[\w\d\.
_-
]
+$/
)){
$
(
"
#clone
"
).
append
(
"
Clone
"
);
$
(
"
#error
"
).
Popup
(
"
Please enter a correct username
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
send
=
false
;
return
false
;
return
;
}
}
if
(
$
(
"
input#password
"
).
val
()
!=
""
){
var
repo_url
=
$
(
"
input#repo
"
).
val
(),
if
(
repo_url
.
indexOf
(
"
https://
"
)
!=
-
1
){
email
=
""
,
repo_url
=
"
https://
"
+
$
(
"
input#username
"
).
val
()
+
name
=
""
;
"
:
"
+
$
(
"
input#password
"
).
val
()
+
"
@
"
+
repo_url
.
substring
(
8
);
/* /^(ht|f)tps?:\/\/[a-z0-9-\.]+\.[a-z]{2,4}\/?([^\s<>\#%"\,\{\}\\|\\\^\[\]`]+)?$/ */
}
if
(
$
(
"
input#repo
"
).
val
()
===
''
||
!
repo_url
.
match
(
/^
[\w\d\.\/
:~@_
\-]
+$/
))
{
else
{
$
(
"
#error
"
).
Popup
(
"
Invalid url for the repository
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
$
(
"
#error
"
).
Popup
(
"
The URL of your repository should start with 'https://'
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
return
false
;
return
false
;
}
}
if
(
$
(
"
input#name
"
).
val
()
===
''
||
!
$
(
"
input#name
"
).
val
().
match
(
/^
[\w\d\.
_
\-]
+$/
))
{
}
$
(
"
#error
"
).
Popup
(
"
Invalid project name
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
else
{
return
false
;
$
(
"
#error
"
).
Popup
(
"
Please enter your password
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
}
return
false
;
if
(
$
(
"
input#user
"
).
val
()
!==
""
)
{
}
name
=
$
(
"
input#user
"
).
val
();
}
}
else
if
(
repo_url
.
indexOf
(
"
https://
"
)
!=
-
1
){
if
(
$
(
"
input#email
"
).
val
()
!==
''
&&
$
(
"
input#email
"
).
val
()
!==
"
Enter your email adress...
"
)
{
$
(
"
#error
"
).
Popup
(
"
Please select HTTPS Security Mode for this repository
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
if
(
!
$
(
"
input#email
"
).
val
().
match
(
/^
([
a-zA-Z0-9_
\.\-])
+
\@(([
a-zA-Z0-9
\-])
+
\.)
+
([
a-zA-Z0-9
]{2,4})
+$/
))
{
return
false
;
$
(
"
#error
"
).
Popup
(
"
Please enter a valid email adress!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
}
return
false
;
$
(
"
#imgwaitting
"
).
fadeIn
(
'
normal
'
);
}
$
(
"
#clone
"
).
empty
();
email
=
$
(
"
input#email
"
).
val
();
$
(
"
#clone
"
).
append
(
"
Stop
"
);
}
send
=
true
;
if
(
$
(
"
input#https
"
).
is
(
'
:checked
'
))
{
cloneRequest
=
$
.
ajax
({
if
(
$
(
"
input#username
"
).
val
()
===
""
||
!
$
(
"
input#username
"
).
val
().
match
(
/^
[\w\d\.
_
\-]
+$/
))
{
type
:
"
POST
"
,
$
(
"
#error
"
).
Popup
(
"
Please enter a correct username
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
url
:
$SCRIPT_ROOT
+
'
/cloneRepository
'
,
return
false
;
data
:
{
repo
:
repo_url
,
name
:
(
$
(
"
input#workdir
"
).
val
()
+
"
/
"
+
}
$
(
"
input#name
"
).
val
()),
email
:
email
,
if
(
$
(
"
input#password
"
).
val
()
!==
""
)
{
user
:
name
},
if
(
repo_url
.
indexOf
(
"
https://
"
)
!==
-
1
)
{
success
:
function
(
data
){
repo_url
=
"
https://
"
+
$
(
"
input#username
"
).
val
()
+
if
(
data
.
code
==
1
){
"
:
"
+
$
(
"
input#password
"
).
val
()
+
$
(
"
#file_navigation
"
).
fadeIn
(
'
normal
'
);
"
@
"
+
repo_url
.
substring
(
8
);
$
(
"
#error
"
).
Popup
(
"
Your repository is cloned!
"
,
{
type
:
'
confirm
'
,
duration
:
3000
});
}
else
{
$
(
"
input#repo
"
).
val
(
"
Enter the url of your repository...
"
);
$
(
"
#error
"
).
Popup
(
"
The URL of your repository should start with 'https://'
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
$
(
"
input#name
"
).
val
(
"
Enter the project name...
"
);
return
false
;
$
(
'
#fileNavigator
'
).
gsFileManager
({
script
:
$SCRIPT_ROOT
+
"
/fileBrowser
"
,
root
:
"
workspace/
"
});
}
}
}
else
{
else
{
$
(
"
#error
"
).
Popup
(
"
Please enter your password
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
});
return
false
;
}
}
$
(
"
#imgwaitting
"
).
hide
();
}
else
if
(
repo_url
.
indexOf
(
"
https://
"
)
!==
-
1
)
{
$
(
"
#clone
"
).
empty
();
$
(
"
#error
"
).
Popup
(
"
Please select HTTPS Security Mode for this repository
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
$
(
"
#clone
"
).
append
(
"
Clone
"
);
return
false
;
send
=
false
;
}
},
$
(
"
#imgwaitting
"
).
fadeIn
(
'
normal
'
);
error
:
function
(
request
,
error
)
{
$
(
"
#error
"
).
Popup
(
"
unable to clone your project, please check your internet connection
"
,
{
type
:
'
error
'
,
duration
:
3000
});
$
(
"
#imgwaitting
"
).
hide
();
$
(
"
#clone
"
).
empty
();
$
(
"
#clone
"
).
empty
();
$
(
"
#clone
"
).
append
(
"
Clone
"
);
$
(
"
#clone
"
).
append
(
"
Stop
"
);
}
send
=
true
;
});
cloneRequest
=
$
.
ajax
({
return
false
;
type
:
"
POST
"
,
});
url
:
$SCRIPT_ROOT
+
'
/cloneRepository
'
,
function
configRadio
(){
data
:
{
$
(
"
#modelist li
"
).
each
(
function
(
index
)
{
repo
:
repo_url
,
var
boxselector
=
"
#box
"
+
index
;
name
:
$
(
"
input#workdir
"
).
val
()
+
"
/
"
+
$
(
"
input#name
"
).
val
(),
if
(
$
(
this
).
hasClass
(
'
checked
'
)){
email
:
email
,
$
(
this
).
removeClass
(
'
checked
'
);
user
:
name
$
(
boxselector
).
slideUp
(
"
normal
"
);
},
}
success
:
function
(
data
)
{
if
(
$
(
this
).
find
(
"
input:radio
"
).
is
(
'
:checked
'
)){
if
(
data
.
code
===
1
)
{
$
(
this
).
addClass
(
'
checked
'
);
$
(
"
#file_navigation
"
).
fadeIn
(
'
normal
'
);
//change content here
$
(
"
#error
"
).
Popup
(
"
Your repository is cloned!
"
,
{
type
:
'
confirm
'
,
duration
:
3000
});
$
(
boxselector
).
slideDown
(
"
normal
"
);
$
(
"
input#repo
"
).
val
(
"
Enter the url of your repository...
"
);
}
$
(
"
input#name
"
).
val
(
"
Enter the project name...
"
);
if
(
index
!=
2
){
$
(
'
#fileNavigator
'
).
gsFileManager
({
script
:
$SCRIPT_ROOT
+
"
/fileBrowser
"
,
root
:
"
workspace/
"
});
$
(
"
input#password
"
).
val
(
""
);
}
else
{
$
(
"
input#cpassword
"
).
val
(
""
);
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
});
}
}
});
$
(
"
#imgwaitting
"
).
hide
();
}
$
(
"
#clone
"
).
empty
();
$
(
"
#clone
"
).
append
(
"
Clone
"
);
send
=
false
;
},
error
:
function
(
request
,
error
)
{
$
(
"
#error
"
).
Popup
(
"
unable to clone your project, please check your internet connection
"
,
{
type
:
'
error
'
,
duration
:
3000
});
$
(
"
#imgwaitting
"
).
hide
();
$
(
"
#clone
"
).
empty
();
$
(
"
#clone
"
).
append
(
"
Clone
"
);
}
});
return
false
;
});
function
selectFile
(
file
){
function
selectFile
(
file
)
{
//nothing
//nothing
return
;
return
;
}
}
});
});
\ No newline at end of file
slapos/runner/static/js/scripts/inspectInstance.js
View file @
5d5a0a86
This diff is collapsed.
Click to expand it.
slapos/runner/static/js/scripts/inspectSoftware.js
View file @
5d5a0a86
$
(
document
).
ready
(
function
()
{
/*jslint undef: true */
var
editor
;
/*global $, document, window, $SCRIPT_ROOT, ace */
var
send
=
false
;
/* vim: set et sts=4: */
var
runnerDir
=
$
(
"
input#runnerdir
"
).
val
();
$
(
"
#reloadfiles
"
).
click
(
function
(){
fillContent
();
});
fillContent
();
function
fillContent
(){
$
(
'
#fileNavigator
'
).
gsFileManager
({
script
:
$SCRIPT_ROOT
+
"
/fileBrowser
"
,
root
:
runnerDir
});
}
$
(
"
#open
"
).
click
(
function
(){
$
(
document
).
ready
(
function
()
{
var
elt
=
$
(
"
option:selected
"
,
$
(
"
#softwarelist
"
));
"
use strict
"
;
if
(
elt
.
val
()
===
"
No Software Release found
"
){
$
(
"
#error
"
).
Popup
(
"
Please select your Software Release
"
,
{
type
:
'
alert
'
,
duration
:
5000
});
var
editor
,
return
false
;
send
=
false
,
runnerDir
=
$
(
"
input#runnerdir
"
).
val
();
function
fillContent
()
{
$
(
'
#fileNavigator
'
).
gsFileManager
({
script
:
$SCRIPT_ROOT
+
"
/fileBrowser
"
,
root
:
runnerDir
});
}
}
$
.
ajax
({
type
:
"
POST
"
,
url
:
$SCRIPT_ROOT
+
'
/setCurrentProject
'
,
data
:
"
path=
"
+
elt
.
attr
(
'
rel
'
),
success
:
function
(
data
){
if
(
data
.
code
==
1
){
location
.
href
=
$SCRIPT_ROOT
+
'
/editSoftwareProfile
'
}
else
{
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
});
}
}
});
return
false
;
});
$
(
"
#delete
"
).
click
(
function
(){
$
(
"
#reloadfiles
"
).
click
(
function
()
{
if
(
$
(
"
#softwarelist
"
).
val
()
===
"
No Software Release found
"
){
fillContent
();
$
(
"
#error
"
).
Popup
(
"
Please select your Software Release
"
,
{
type
:
'
alert
'
,
duration
:
5000
});
});
fillContent
();
$
(
"
#open
"
).
click
(
function
()
{
var
elt
=
$
(
"
option:selected
"
,
$
(
"
#softwarelist
"
));
if
(
elt
.
val
()
===
"
No Software Release found
"
)
{
$
(
"
#error
"
).
Popup
(
"
Please select your Software Release
"
,
{
type
:
'
alert
'
,
duration
:
5000
});
return
false
;
}
$
.
ajax
({
type
:
"
POST
"
,
url
:
$SCRIPT_ROOT
+
'
/setCurrentProject
'
,
data
:
"
path=
"
+
elt
.
attr
(
'
rel
'
),
success
:
function
(
data
)
{
if
(
data
.
code
===
1
)
{
window
.
location
.
href
=
$SCRIPT_ROOT
+
'
/editSoftwareProfile
'
;
}
else
{
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
});
}
}
});
return
false
;
return
false
;
}
});
if
(
send
)
return
;
if
(
!
window
.
confirm
(
"
Do you really want to delete this software release?
"
)){
return
;
}
send
=
false
;
var
elt
=
$
(
"
option:selected
"
,
$
(
"
#softwarelist
"
));
$
.
ajax
({
type
:
"
POST
"
,
url
:
$SCRIPT_ROOT
+
'
/removeSoftwareDir
'
,
data
:
{
md5
:
$
(
"
#softwarelist
"
).
val
(),
title
:
elt
.
attr
(
'
title
'
)},
success
:
function
(
data
){
if
(
data
.
code
==
1
){
$
(
"
#softwarelist
"
).
empty
();
for
(
var
i
=
0
;
i
<
data
.
result
.
length
;
i
++
){
$
(
"
#softwarelist
"
).
append
(
'
<option value="
'
+
data
.
result
[
i
][
'
md5
'
]
+
'
" title="
'
+
data
.
result
[
i
][
'
title
'
]
+
'
" rel="
'
+
data
.
result
[
i
][
'
path
'
]
+
'
">
'
+
data
.
result
[
i
][
'
title
'
]
+
'
</option>
'
);
}
if
(
data
.
result
.
length
<
1
){
$
(
"
#softwarelist
"
).
append
(
'
<option>No Software Release found</option>
'
);
$
(
'
#fileTree
'
).
empty
();
}
fillContent
();
$
(
"
#error
"
).
Popup
(
"
Operation complete, Selected Software Release has been delete!
"
,
{
type
:
'
confirm
'
,
duration
:
5000
});
}
else
{
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
});
}
send
=
false
;
}
});
return
false
;
});
function
setupEditor
(){
$
(
"
#delete
"
).
click
(
function
()
{
editor
=
ace
.
edit
(
"
editor
"
);
if
(
$
(
"
#softwarelist
"
).
val
()
===
"
No Software Release found
"
)
{
editor
.
setTheme
(
"
ace/theme/crimson_editor
"
);
$
(
"
#error
"
).
Popup
(
"
Please select your Software Release
"
,
{
type
:
'
alert
'
,
duration
:
5000
});
return
false
;
}
if
(
send
)
{
return
;
}
if
(
!
window
.
confirm
(
"
Do you really want to delete this software release?
"
))
{
return
;
}
send
=
false
;
var
elt
=
$
(
"
option:selected
"
,
$
(
"
#softwarelist
"
));
$
.
ajax
({
type
:
"
POST
"
,
url
:
$SCRIPT_ROOT
+
'
/removeSoftwareDir
'
,
data
:
{
md5
:
$
(
"
#softwarelist
"
).
val
(),
title
:
elt
.
attr
(
'
title
'
)
},
success
:
function
(
data
)
{
var
i
;
if
(
data
.
code
===
1
)
{
$
(
"
#softwarelist
"
).
empty
();
for
(
i
=
0
;
i
<
data
.
result
.
length
;
i
+=
1
)
{
$
(
"
#softwarelist
"
).
append
(
'
<option value="
'
+
data
.
result
[
i
].
md5
+
'
" title="
'
+
data
.
result
[
i
].
title
+
'
" rel="
'
+
data
.
result
[
i
].
path
+
'
">
'
+
data
.
result
[
i
].
title
+
'
</option>
'
);
}
if
(
data
.
result
.
length
<
1
)
{
$
(
"
#softwarelist
"
).
append
(
'
<option>No Software Release found</option>
'
);
$
(
'
#fileTree
'
).
empty
();
}
fillContent
();
$
(
"
#error
"
).
Popup
(
"
Operation complete, Selected Software Release has been delete!
"
,
{
type
:
'
confirm
'
,
duration
:
5000
});
}
else
{
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
});
}
send
=
false
;
}
});
return
false
;
});
var
CurentMode
=
require
(
"
ace/mode/text
"
).
Mode
;
function
setupEditor
()
{
editor
.
getSession
().
setMode
(
new
CurentMode
());
editor
=
ace
.
edit
(
"
editor
"
);
editor
.
getSession
().
setTabSize
(
2
);
editor
.
setTheme
(
"
ace/theme/crimson_editor
"
);
editor
.
getSession
().
setUseSoftTabs
(
true
);
editor
.
renderer
.
setHScrollBarAlwaysVisible
(
false
);
var
CurentMode
=
require
(
"
ace/mode/text
"
).
Mode
;
editor
.
setReadOnly
(
true
);
editor
.
getSession
().
setMode
(
new
CurentMode
());
}
editor
.
getSession
().
setTabSize
(
2
);
});
editor
.
getSession
().
setUseSoftTabs
(
true
);
\ No newline at end of file
editor
.
renderer
.
setHScrollBarAlwaysVisible
(
false
);
editor
.
setReadOnly
(
true
);
}
});
slapos/runner/static/js/scripts/login.js
View file @
5d5a0a86
$
(
document
).
ready
(
function
()
{
/*jslint undef: true */
var
send
=
false
;
/*global $, document, window, $SCRIPT_ROOT */
//change background
/* vim: set et sts=4: */
$
(
"
body
"
).
css
(
"
background
"
,
"
#9C9C9C
"
);
$
(
"
#login
"
).
click
(
function
(){
$
(
document
).
ready
(
function
()
{
if
(
send
)
return
false
;
"
use strict
"
;
if
(
$
(
"
input#clogin
"
).
val
()
===
""
||
!
$
(
"
input#clogin
"
).
val
().
match
(
/^
[\w\d\.
-
]
+$/
)){
$
(
"
#error
"
).
Popup
(
"
Please enter a valid user name
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
var
send
=
false
;
return
false
;
//change background
}
$
(
"
body
"
).
css
(
"
background
"
,
"
#9C9C9C
"
);
if
(
$
(
"
input#cpwd
"
).
val
()
===
""
||
$
(
"
input#cpwd
"
).
val
()
===
"
******
"
){
$
(
"
#login
"
).
click
(
function
()
{
$
(
"
#error
"
).
Popup
(
"
Please enter your password
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
if
(
send
)
{
return
false
;
return
false
;
}
}
send
=
true
;
if
(
$
(
"
input#clogin
"
).
val
()
===
""
||
!
$
(
"
input#clogin
"
).
val
().
match
(
/^
[\w\d\.\-]
+$/
))
{
var
param
=
{
clogin
:
$
(
"
input#clogin
"
).
val
(),
cpwd
:
$
(
"
input#cpwd
"
).
val
()};
$
(
"
#error
"
).
Popup
(
"
Please enter a valid user name
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
var
url
=
$SCRIPT_ROOT
+
"
/doLogin
"
;
return
false
;
$
(
"
#login
"
).
removeClass
(
"
button
"
).
addClass
(
"
dsblebutton
"
);
}
$
.
post
(
url
,
param
,
function
(
data
)
{
if
(
$
(
"
input#cpwd
"
).
val
()
===
""
||
$
(
"
input#cpwd
"
).
val
()
===
"
******
"
)
{
if
(
data
.
code
==
1
){
$
(
"
#error
"
).
Popup
(
"
Please enter your password
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
location
.
href
=
$SCRIPT_ROOT
+
'
/
'
;
return
false
;
}
}
else
{
send
=
true
;
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
alert
'
,
duration
:
3000
});
var
param
=
{
clogin
:
$
(
"
input#clogin
"
).
val
(),
cpwd
:
$
(
"
input#cpwd
"
).
val
()
},
}
url
=
$SCRIPT_ROOT
+
"
/doLogin
"
;
})
.
error
(
function
()
{
$
(
"
#login
"
).
removeClass
(
"
button
"
).
addClass
(
"
dsblebutton
"
);
$
(
"
#error
"
).
Popup
(
"
Cannot send your account identifier please try again!!
"
,
$
.
post
(
url
,
param
,
function
(
data
)
{
{
type
:
'
alert
'
,
duration
:
3000
});})
if
(
data
.
code
===
1
)
{
.
complete
(
function
()
{
window
.
location
.
href
=
$SCRIPT_ROOT
+
'
/
'
;
$
(
"
#login
"
).
removeClass
(
'
dsblebutton
'
).
addClass
(
'
button
'
);
}
else
{
send
=
false
;
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
alert
'
,
duration
:
3000
});
}
})
.
error
(
function
()
{
$
(
"
#error
"
).
Popup
(
"
Cannot send your account identifier please try again!!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
})
.
complete
(
function
()
{
$
(
"
#login
"
).
removeClass
(
'
dsblebutton
'
).
addClass
(
'
button
'
);
send
=
false
;
});
return
false
;
});
});
return
false
;
});
});
});
\ No newline at end of file
slapos/runner/static/js/scripts/process.js
View file @
5d5a0a86
This diff is collapsed.
Click to expand it.
slapos/runner/static/js/scripts/project.js
View file @
5d5a0a86
$
(
document
).
ready
(
function
()
{
/*jslint undef: true */
var
method
=
$
(
"
input#method
"
).
val
();
/*global $, document, window, $SCRIPT_ROOT */
var
workdir
=
$
(
"
input#workdir
"
).
val
();
/* vim: set et sts=4: */
if
(
method
!=
"
file
"
){
script
=
"
/openFolder
"
;
$
(
document
).
ready
(
function
()
{
$
(
'
#fileTree
'
).
fileTree
({
root
:
workdir
,
script
:
$SCRIPT_ROOT
+
script
,
folderEvent
:
'
click
'
,
expandSpeed
:
750
,
collapseSpeed
:
750
,
multiFolder
:
false
,
selectFolder
:
true
},
function
(
file
)
{
"
use strict
"
;
selectFile
(
file
);
});
var
method
=
$
(
"
input#method
"
).
val
(),
}
workdir
=
$
(
"
input#workdir
"
).
val
();
$
(
"
input#subfolder
"
).
val
(
""
);
$
(
"
#create
"
).
click
(
function
(){
function
checkFolder
(
path
)
{
repo_url
=
$
(
"
input#software
"
).
val
();
$
.
ajax
({
if
(
$
(
"
input#software
"
).
val
()
==
""
||
!
$
(
"
input#software
"
).
val
().
match
(
/^
[\w\d
._-
]
+$/
)){
type
:
"
POST
"
,
$
(
"
#error
"
).
Popup
(
"
Invalid Software name
"
,
{
type
:
'
alert
'
,
duration
:
3000
})
url
:
$SCRIPT_ROOT
+
'
/checkFolder
'
,
return
false
;
data
:
"
path=
"
+
path
,
}
success
:
function
(
data
)
{
if
(
$
(
"
input#subfolder
"
).
val
()
==
""
){
var
path
=
data
.
result
;
$
(
"
#error
"
).
Popup
(
"
Select the parent folder of your software!
"
,
{
type
:
'
alert
'
,
duration
:
3000
})
$
(
"
input#path
"
).
val
(
path
);
return
false
;
if
(
path
!==
""
)
{
}
$
(
"
#check
"
).
fadeIn
(
'
normal
'
);
$
.
ajax
({
}
else
{
type
:
"
POST
"
,
$
(
"
#check
"
).
hide
();
url
:
$SCRIPT_ROOT
+
'
/createSoftware
'
,
}
data
:
"
folder=
"
+
$
(
"
input#subfolder
"
).
val
()
+
$
(
"
input#software
"
).
val
(),
}
success
:
function
(
data
){
});
if
(
data
.
code
==
1
){
return
""
;
location
.
href
=
$SCRIPT_ROOT
+
'
/editSoftwareProfile
'
}
}
else
{
function
selectFile
(
file
)
{
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
})
$
(
"
#info
"
).
empty
();
$
(
"
input#subfolder
"
).
val
(
file
);
}
if
(
method
===
"
open
"
)
{
}
$
(
"
#info
"
).
append
(
"
Selection:
"
+
file
);
});
checkFolder
(
file
);
return
false
;
}
else
{
});
if
(
$
(
"
input#software
"
).
val
()
!==
""
&&
$
(
"
input#software
"
).
val
().
match
(
/^
[\w\d
._
\-]
+$/
))
{
$
(
"
#info
"
).
append
(
"
New Software in:
"
+
file
+
$
(
"
input#software
"
).
val
());
$
(
"
#open
"
).
click
(
function
(){
}
else
{
$
(
"
#flash
"
).
fadeOut
(
'
normal
'
);
$
(
"
#info
"
).
append
(
"
Selection:
"
+
file
);
$
(
"
#flash
"
).
empty
();
}
$
(
"
#flash
"
).
fadeIn
(
'
normal
'
);
}
if
(
$
(
"
input#path
"
).
val
()
==
""
){
return
;
$
(
"
#error
"
).
Popup
(
"
Select a valid Software Release folder!
"
,
{
type
:
'
alert
'
,
duration
:
3000
})
}
return
false
;
}
if
(
method
!==
"
file
"
)
{
$
.
ajax
({
$
(
'
#fileTree
'
).
fileTree
({
root
:
workdir
,
script
:
$SCRIPT_ROOT
+
'
/openFolder
'
,
folderEvent
:
'
click
'
,
expandSpeed
:
750
,
collapseSpeed
:
750
,
multiFolder
:
false
,
selectFolder
:
true
},
function
(
file
)
{
type
:
"
POST
"
,
selectFile
(
file
);
url
:
$SCRIPT_ROOT
+
'
/setCurrentProject
'
,
});
data
:
"
path=
"
+
$
(
"
input#path
"
).
val
(),
}
success
:
function
(
data
){
$
(
"
input#subfolder
"
).
val
(
""
);
if
(
data
.
code
==
1
){
$
(
"
#create
"
).
click
(
function
()
{
location
.
href
=
$SCRIPT_ROOT
+
'
/editSoftwareProfile
'
if
(
$
(
"
input#software
"
).
val
()
===
""
||
!
$
(
"
input#software
"
).
val
().
match
(
/^
[\w\d
._
\-]
+$/
))
{
}
$
(
"
#error
"
).
Popup
(
"
Invalid Software name
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
else
{
return
false
;
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
})
}
}
if
(
$
(
"
input#subfolder
"
).
val
()
===
""
)
{
}
$
(
"
#error
"
).
Popup
(
"
Select the parent folder of your software!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
});
return
false
;
return
false
;
}
});
$
.
ajax
({
type
:
"
POST
"
,
function
selectFile
(
file
){
url
:
$SCRIPT_ROOT
+
'
/createSoftware
'
,
$
(
"
#info
"
).
empty
();
data
:
"
folder=
"
+
$
(
"
input#subfolder
"
).
val
()
+
$
(
"
input#software
"
).
val
(),
$
(
"
input#subfolder
"
).
val
(
file
);
success
:
function
(
data
)
{
path
=
""
;
if
(
data
.
code
===
1
)
{
if
(
method
==
"
open
"
){
window
.
location
.
href
=
$SCRIPT_ROOT
+
'
/editSoftwareProfile
'
;
$
(
"
#info
"
).
append
(
"
Selection:
"
+
file
);
}
else
{
checkFolder
(
file
);
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
});
}
}
else
{
}
if
(
$
(
"
input#software
"
).
val
()
!=
""
&&
$
(
"
input#software
"
).
val
().
match
(
/^
[\w\d
._-
]
+$/
)){
});
$
(
"
#info
"
).
append
(
"
New Software in:
"
+
file
+
$
(
"
input#software
"
).
val
());
return
false
;
}
});
else
{
$
(
"
#info
"
).
append
(
"
Selection:
"
+
file
);
$
(
"
#open
"
).
click
(
function
()
{
}
$
(
"
#flash
"
).
fadeOut
(
'
normal
'
);
}
$
(
"
#flash
"
).
empty
();
return
;
$
(
"
#flash
"
).
fadeIn
(
'
normal
'
);
}
if
(
$
(
"
input#path
"
).
val
()
===
""
)
{
$
(
"
#error
"
).
Popup
(
"
Select a valid Software Release folder!
"
,
{
type
:
'
alert
'
,
duration
:
3000
});
function
checkFolder
(
path
){
return
false
;
$
.
ajax
({
}
type
:
"
POST
"
,
$
.
ajax
({
url
:
$SCRIPT_ROOT
+
'
/checkFolder
'
,
type
:
"
POST
"
,
data
:
"
path=
"
+
path
,
url
:
$SCRIPT_ROOT
+
'
/setCurrentProject
'
,
success
:
function
(
data
){
data
:
"
path=
"
+
$
(
"
input#path
"
).
val
(),
var
path
=
data
.
result
;
success
:
function
(
data
)
{
$
(
"
input#path
"
).
val
(
path
);
if
(
data
.
code
===
1
)
{
if
(
path
!=
""
){
window
.
location
.
href
=
$SCRIPT_ROOT
+
'
/editSoftwareProfile
'
;
$
(
"
#check
"
).
fadeIn
(
'
normal
'
);
}
else
{
}
$
(
"
#error
"
).
Popup
(
data
.
result
,
{
type
:
'
error
'
,
duration
:
5000
});
else
{
}
$
(
"
#check
"
).
hide
();
}
}
});
}
return
false
;
});
});
return
""
;
});
}
});
\ No newline at end of file
slapos/runner/static/js/scripts/repo.js
View file @
5d5a0a86
This diff is collapsed.
Click to expand it.
slapos/runner/static/js/scripts/softwareFolder.js
View file @
5d5a0a86
This diff is collapsed.
Click to expand it.
slapos/runner/static/js/scripts/viewlog.js
View file @
5d5a0a86
$
(
document
).
ready
(
function
()
{
/*jslint undef: true */
openedlogpage
=
$
(
"
input#type
"
).
val
();
/*global $, document, window, processState, getCookie, setCookie, setSpeed, $SCRIPT_ROOT */
updatelogBox
();
/*global openedlogpage: true */
var
state
=
getCookie
(
"
autoUpdate
"
);
/* vim: set et sts=4: */
$
(
"
#logheader
"
).
click
(
function
(){
$
(
document
).
ready
(
function
()
{
setupBox
();
"
use strict
"
;
});
$
(
"
#manual
"
).
change
(
function
(){
function
setupBox
()
{
setCookie
(
"
autoUpdate
"
,
"
manual
"
);
var
state
=
$
(
"
#logconfigbox
"
).
css
(
"
display
"
);
if
(
$
(
"
input#type
"
).
val
()
==
"
instance
"
){
location
.
href
=
$SCRIPT_ROOT
+
"
/viewInstanceLog
"
;}
if
(
state
===
"
none
"
)
{
else
{
location
.
href
=
$SCRIPT_ROOT
+
"
/viewSoftwareLog
"
;}
$
(
"
#logconfigbox
"
).
slideDown
(
"
normal
"
);
});
$
(
"
#logheader
"
).
removeClass
(
"
hide
"
);
$
(
"
#live
"
).
change
(
function
(){
$
(
"
#logheader
"
).
addClass
(
"
show
"
);
updatelogBox
();
$
(
"
#logconfigbox
"
).
find
(
"
input:radio
"
).
attr
(
'
checked
'
,
false
);
$
(
"
#live
"
).
attr
(
'
checked
'
,
true
);
}
else
{
setSpeed
(
100
);
setCookie
(
"
autoUpdate
"
,
"
live
"
);
openedlogpage
=
$
(
"
input#type
"
).
val
();});
$
(
"
#logconfigbox
"
).
slideUp
(
"
normal
"
);
$
(
"
#slow
"
).
change
(
function
(){
$
(
"
#logheader
"
).
removeClass
(
"
show
"
);
updatelogBox
();
$
(
"
#logconfigbox
"
).
find
(
"
input:radio
"
).
attr
(
'
checked
'
,
false
);
$
(
"
#slow
"
).
attr
(
'
checked
'
,
true
);
$
(
"
#logheader
"
).
addClass
(
"
hide
"
);
setSpeed
(
2500
);
setCookie
(
"
autoUpdate
"
,
"
slow
"
);
openedlogpage
=
$
(
"
input#type
"
).
val
();});
}
if
(
state
){
$
(
"
#
"
+
state
).
attr
(
'
checked
'
,
true
);
updatelogBox
();
if
(
state
==
"
manual
"
){
openedlogpage
=
""
;
setSpeed
(
0
);
}
else
{
setSpeed
((
state
==
"
live
"
)?
100
:
2500
);}
}
else
{
$
(
"
#slow
"
).
attr
(
'
checked
'
,
true
);}
function
setupBox
(){
var
state
=
$
(
"
#logconfigbox
"
).
css
(
"
display
"
);
if
(
state
==
"
none
"
){
$
(
"
#logconfigbox
"
).
slideDown
(
"
normal
"
);
$
(
"
#logheader
"
).
removeClass
(
"
hide
"
);
$
(
"
#logheader
"
).
addClass
(
"
show
"
);
}
else
{
$
(
"
#logconfigbox
"
).
slideUp
(
"
normal
"
);
$
(
"
#logheader
"
).
removeClass
(
"
show
"
);
$
(
"
#logheader
"
).
addClass
(
"
hide
"
);
}
}
}
function
updatelogBox
()
{
function
updatelogBox
(){
if
(
processState
===
"
Stopped
"
||
processState
===
"
Checking
"
||
$
(
"
#manual
"
).
is
(
"
:checked
"
))
{
if
(
processState
==
"
Stopped
"
||
processState
==
"
Checking
"
||
$
(
"
#manual
"
).
is
(
"
:checked
"
)){
$
(
"
#salpgridLog
"
).
hide
();
$
(
"
#salpgridLog
"
).
hide
();
$
(
"
#manualLog
"
).
show
();
$
(
"
#manualLog
"
).
show
();
$
(
"
#manualLog
"
)
$
(
"
#manualLog
"
)
.
scrollTop
(
$
(
"
#manualLog
"
)[
0
].
scrollHeight
-
$
(
"
#manualLog
"
).
height
());
.
scrollTop
(
$
(
"
#manualLog
"
)[
0
].
scrollHeight
-
$
(
"
#manualLog
"
)
}
else
{
.
height
());
$
(
"
#salpgridLog
"
).
show
();
$
(
"
#manualLog
"
).
hide
();
}
}
}
else
{
$
(
"
#salpgridLog
"
).
show
();
openedlogpage
=
$
(
"
input#type
"
).
val
();
$
(
"
#manualLog
"
).
hide
();
updatelogBox
();
var
state
=
getCookie
(
"
autoUpdate
"
);
$
(
"
#logheader
"
).
click
(
function
()
{
setupBox
();
});
$
(
"
#manual
"
).
change
(
function
()
{
setCookie
(
"
autoUpdate
"
,
"
manual
"
);
if
(
$
(
"
input#type
"
).
val
()
===
"
instance
"
)
{
window
.
location
.
href
=
$SCRIPT_ROOT
+
"
/viewInstanceLog
"
;
}
else
{
window
.
location
.
href
=
$SCRIPT_ROOT
+
"
/viewSoftwareLog
"
;
}
});
$
(
"
#live
"
).
change
(
function
()
{
updatelogBox
();
$
(
"
#logconfigbox
"
).
find
(
"
input:radio
"
).
attr
(
'
checked
'
,
false
);
$
(
"
#live
"
).
attr
(
'
checked
'
,
true
);
setSpeed
(
100
);
setCookie
(
"
autoUpdate
"
,
"
live
"
);
openedlogpage
=
$
(
"
input#type
"
).
val
();
});
$
(
"
#slow
"
).
change
(
function
()
{
updatelogBox
();
$
(
"
#logconfigbox
"
).
find
(
"
input:radio
"
).
attr
(
'
checked
'
,
false
);
$
(
"
#slow
"
).
attr
(
'
checked
'
,
true
);
setSpeed
(
2500
);
setCookie
(
"
autoUpdate
"
,
"
slow
"
);
openedlogpage
=
$
(
"
input#type
"
).
val
();
});
if
(
state
)
{
$
(
"
#
"
+
state
).
attr
(
'
checked
'
,
true
);
updatelogBox
();
if
(
state
===
"
manual
"
)
{
openedlogpage
=
""
;
setSpeed
(
0
);
}
else
{
setSpeed
((
state
===
"
live
"
)
?
100
:
2500
);
}
}
else
{
$
(
"
#slow
"
).
attr
(
'
checked
'
,
true
);
}
}
}
});
});
\ No newline at end of file
slapos/shacache/config.py
View file @
5d5a0a86
...
@@ -26,7 +26,7 @@ class NetworkcacheParser(OptionParser):
...
@@ -26,7 +26,7 @@ class NetworkcacheParser(OptionParser):
"""
"""
def
__init__
(
self
,
usage
=
None
,
version
=
None
):
def
__init__
(
self
,
usage
=
None
,
version
=
None
):
"""
"""
Initialize all
options possible
s.
Initialize all
possible option
s.
"""
"""
OptionParser
.
__init__
(
self
,
usage
=
usage
,
version
=
version
,
OptionParser
.
__init__
(
self
,
usage
=
usage
,
version
=
version
,
option_list
=
[
option_list
=
[
...
...
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