Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
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
Léo-Paul Géneau
slapos.core
Commits
7f42bc1b
Commit
7f42bc1b
authored
Jun 01, 2012
by
Thomas Lechauve
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new routing system implemented
parent
b3ee8da5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
72 additions
and
63 deletions
+72
-63
jquery.urlJS/src/jquery.urljs.js
jquery.urlJS/src/jquery.urljs.js
+5
-4
vifib/index.html
vifib/index.html
+42
-42
vifib/static/js/core.js
vifib/static/js/core.js
+20
-13
vifib/static/js/jquery.urljs.js
vifib/static/js/jquery.urljs.js
+5
-4
No files found.
jquery.urlJS/src/jquery.urljs.js
View file @
7f42bc1b
...
...
@@ -36,15 +36,16 @@ $.extend({
search
:
function
(
hash
)
{
var
stop
=
false
,
i
=
0
,
j
=
0
,
i
,
j
,
regex
,
result
,
extracted
;
while
((
stop
===
false
)
&&
(
i
<
this
.
list
.
length
))
{
i
=
this
.
list
.
length
-
1
;
while
((
stop
===
false
)
&&
(
i
>=
0
))
{
j
=
0
;
while
((
stop
===
false
)
&&
(
j
<
this
.
list
[
i
].
length
))
{
extracted
=
$
.
router
.
extractKeys
(
this
.
list
[
i
][
j
].
route
);
regex
=
new
RegExp
(
'
^
'
+
extracted
.
regex
+
'
$
'
);
regex
=
new
RegExp
(
extracted
.
regex
);
if
(
regex
.
test
(
hash
.
route
))
{
result
=
regex
.
exec
(
hash
.
route
);
stop
=
true
;
...
...
@@ -57,7 +58,7 @@ $.extend({
}
j
+=
1
;
}
i
+
=
1
;
i
-
=
1
;
}
}
},
...
...
vifib/index.html
View file @
7f42bc1b
...
...
@@ -281,56 +281,56 @@
{{
message
}}
<
/div
>
</script>
</head>
<body>
<div
id=
"loading"
style=
"position: absolute; right: 20px; top: 20px;"
></div>
<div
class=
"navbar"
>
<div
class=
"navbar-inner"
>
<div
class=
"container-fluid"
>
<div
class=
"row-fluid"
>
<div
class=
"span2"
>
<!--<a href="#" class="brand">Vifib</a>-->
<img
src=
"static/img/vifib_logo.gray.png"
style=
"max-height: 40px"
/>
</div>
<div
class=
"span10"
>
<ul
class=
"nav"
>
<li><a
href=
"#/dashboard"
>
Dashboard
</a></li>
<li><a
href=
"#/about"
>
About
</a></li>
<li><a
href=
"#/contact"
>
Contact
</a></li>
</ul>
<script
id=
"root"
type=
"text/html"
>
<
div
id
=
"
loading
"
style
=
"
position: absolute; right: 20px; top: 20px;
"
><
/div
>
<
div
class
=
"
navbar
"
>
<
div
class
=
"
navbar-inner
"
>
<
div
class
=
"
container-fluid
"
>
<
div
class
=
"
row-fluid
"
>
<
div
class
=
"
span2
"
>
<!--<
a
href
=
"
#
"
class
=
"
brand
"
>
Vifib
<
/a>--
>
<
img
src
=
"
static/img/vifib_logo.gray.png
"
style
=
"
max-height: 40px
"
/>
<
/div
>
<
div
class
=
"
span10
"
>
<
ul
class
=
"
nav
"
>
<
li
><
a
href
=
"
#/dashboard
"
>
Dashboard
<
/a></
li
>
<
li
><
a
href
=
"
#/about
"
>
About
<
/a></
li
>
<
li
><
a
href
=
"
#/contact
"
>
Contact
<
/a></
li
>
<
/ul
>
<
/div
>
<
/div
>
<
/div
>
<
/div
>
<
/div
>
</div>
<div
class=
"container-fluid"
>
<div
class=
"row-fluid"
>
<div
class=
"span3"
>
<div
class=
"well"
style=
"padding:0"
>
<ul
class=
"nav nav-list"
>
<li
class=
"nav-header"
>
Softwares
</li>
<li><a
href=
"#/catalog"
><i
class=
"icon-"
></i>
Browse catalog
</a></li>
<li><a
href=
"#/catalog/all"
><i
class=
"icon-"
></i>
Softwares availables
</a></li>
<li
class=
"nav-header"
>
Servers
</li>
<li><a
href=
"#/computers"
><i
class=
"icon-list"
></i>
List all servers
</a></li>
<li><a
href=
"#/computer"
><i
class=
"icon-plus-sign"
></i>
Add new server
</a></li>
<li
class=
"nav-header"
>
Services
</li>
<li><a
href=
"#/instances"
><i
class=
"icon-list"
></i>
List all instances
</a></li>
<li><a
href=
"#/instance"
><i
class=
"icon-plus-sign"
></i>
Add new instance
</a></li>
<li
class=
"nav-header"
>
Account
</li>
<li><a
href=
"#/invoices"
><i
class=
"icon-inbox"
></i>
Invoices
</a></li>
<li><a
href=
"#/settings"
><i
class=
"icon-cog"
></i>
Settings
</a></li>
</ul>
<
div
class
=
"
container-fluid
"
>
<
div
class
=
"
row-fluid
"
>
<
div
class
=
"
span3
"
>
<
div
class
=
"
well
"
style
=
"
padding:0
"
>
<
ul
class
=
"
nav nav-list
"
>
<
li
class
=
"
nav-header
"
>
Softwares
<
/li
>
<
li
><
a
href
=
"
#/catalog
"
><
i
class
=
"
icon-
"
><
/i>Browse catalog</
a
><
/li
>
<
li
><
a
href
=
"
#/catalog/all
"
><
i
class
=
"
icon-
"
><
/i>Softwares availables</
a
><
/li
>
<
li
class
=
"
nav-header
"
>
Servers
<
/li
>
<
li
><
a
href
=
"
#/computers
"
><
i
class
=
"
icon-list
"
><
/i>List all servers</
a
><
/li
>
<
li
><
a
href
=
"
#/computer
"
><
i
class
=
"
icon-plus-sign
"
><
/i>Add new server</
a
><
/li
>
<
li
class
=
"
nav-header
"
>
Services
<
/li
>
<
li
><
a
href
=
"
#/instances
"
><
i
class
=
"
icon-list
"
><
/i>List all instances</
a
><
/li
>
<
li
><
a
href
=
"
#/instance
"
><
i
class
=
"
icon-plus-sign
"
><
/i>Add new instance</
a
><
/li
>
<
li
class
=
"
nav-header
"
>
Account
<
/li
>
<
li
><
a
href
=
"
#/invoices
"
><
i
class
=
"
icon-inbox
"
><
/i>Invoices</
a
><
/li
>
<
li
><
a
href
=
"
#/settings
"
><
i
class
=
"
icon-cog
"
><
/i>Settings</
a
><
/li
>
<
/ul
>
<
/div
>
<
/div
>
<
section
class
=
"
span9
"
id
=
"
main
"
style
=
"
min-height: 200px
"
>
<!--
Body
content
-->
<
/section
>
<
/div
>
<section
class=
"span9"
id=
"main"
style=
"min-height: 200px"
>
<!--Body content-->
</section>
<
/div
>
</div>
</script>
</head>
<body>
<script
type=
"text/javascript"
src=
"static/js/jquery-1.7.2.js"
></script>
<script
type=
"text/javascript"
src=
"static/js/bootstrap-transition.js"
></script>
<script
type=
"text/javascript"
src=
"static/js/bootstrap-alert.js"
></script>
...
...
vifib/static/js/core.js
View file @
7f42bc1b
...
...
@@ -59,18 +59,18 @@
methods
=
{
init
:
function
()
{
var
routes
=
[];
routes
[
0
]
=
[
[
'
/catalog
'
,
methods
[
'
showCatalog
'
]],
[
'
/catalog/all
'
,
methods
[
'
showCatalogAll
'
]],
[
'
/instance
'
,
methods
[
'
requestInstance
'
]],
[
'
/instance/:url
'
,
methods
[
'
showInstance
'
]],
[
'
/instance/:url/bang
'
,
methods
[
'
showBangInstance
'
]],
[
'
/computers
'
,
methods
[
'
listComputers
'
]],
[
'
/instances
'
,
methods
[
'
listInstances
'
]],
[
'
/invoices
'
,
methods
[
'
listInvoices
'
]],
[
'
/dashboard
'
,
methods
[
'
showDashboard
'
]]
];
var
routes
=
[
[[
'
/
'
,
methods
[
'
showRoot
'
]]]
];
//
routes[0] = [
//
['/catalog', methods['showCatalog']],
//
['/catalog/all', methods['showCatalogAll']],
//
['/instance', methods['requestInstance']],
//
['/instance/:url', methods['showInstance']],
//
['/instance/:url/bang', methods['showBangInstance']],
//
['/computers', methods['listComputers']],
//
['/instances', methods['listInstances']],
//
['/invoices', methods['listInvoices']],
//
['/dashboard', methods['showDashboard']]
//
];
return
this
.
each
(
function
()
{
// Initialize slapos in this context
$
(
this
).
slapos
({
'
host
'
:
'
http://10.8.2.34:12006/erp5/portal_vifib_rest_api_v1
'
});
...
...
@@ -89,6 +89,13 @@
});
},
showRoot
:
function
(
params
)
{
var
route
=
$
.
router
.
routes
.
current
,
nextLevel
=
route
.
level
+
1
;
$
(
this
).
vifib
(
'
render
'
,
'
root
'
);
$
.
router
.
routes
.
add
(
'
/catalog
'
,
nextLevel
,
methods
.
showCatalog
,
$
(
"
#main
"
));
},
genInstanceUrl
:
function
(
uri
)
{
return
$
.
genHash
([
'
instance
'
,
encodeURIComponent
(
uri
)]);
},
...
...
@@ -457,4 +464,4 @@
};
}(
jQuery
));
$
(
'
#main
'
).
vifib
();
$
(
'
body
'
).
vifib
();
vifib/static/js/jquery.urljs.js
View file @
7f42bc1b
...
...
@@ -36,15 +36,16 @@ $.extend({
search
:
function
(
hash
)
{
var
stop
=
false
,
i
=
0
,
j
=
0
,
i
,
j
,
regex
,
result
,
extracted
;
while
((
stop
===
false
)
&&
(
i
<
this
.
list
.
length
))
{
i
=
this
.
list
.
length
-
1
;
while
((
stop
===
false
)
&&
(
i
>=
0
))
{
j
=
0
;
while
((
stop
===
false
)
&&
(
j
<
this
.
list
[
i
].
length
))
{
extracted
=
$
.
router
.
extractKeys
(
this
.
list
[
i
][
j
].
route
);
regex
=
new
RegExp
(
'
^
'
+
extracted
.
regex
+
'
$
'
);
regex
=
new
RegExp
(
extracted
.
regex
);
if
(
regex
.
test
(
hash
.
route
))
{
result
=
regex
.
exec
(
hash
.
route
);
stop
=
true
;
...
...
@@ -57,7 +58,7 @@ $.extend({
}
j
+=
1
;
}
i
+
=
1
;
i
-
=
1
;
}
}
},
...
...
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