Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
debomatic-webui
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
debomatic-webui-admins
debomatic-webui
Commits
c783290d
Commit
c783290d
authored
Mar 08, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed unsed methods
parent
2f3adf58
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
31 deletions
+0
-31
debomatic-webui/public/javascripts/main.js
debomatic-webui/public/javascripts/main.js
+0
-31
No files found.
debomatic-webui/public/javascripts/main.js
View file @
c783290d
function
get_path
(
path
)
{
info
=
path
.
split
(
'
/
'
);
data
=
{}
if
(
info
.
length
>=
1
)
{
data
.
distribution
=
{}
data
.
distribution
.
name
=
info
[
0
];
socket
.
emit
(
"
get_distribution_packages
"
,
data
)
select_navbar_voice
(
data
)
}
if
(
info
.
length
>=
3
){
data
.
package
=
{}
data
.
package
.
name
=
info
[
1
];
data
.
package
.
version
=
info
[
2
];
socket
.
emit
(
"
get_package_file_list
"
,
data
)
}
if
(
info
.
length
>=
4
)
{
data
.
file
=
{}
data
.
file
.
name
=
info
[
3
]
socket
.
emit
(
"
get_file
"
,
data
)
}
update_breadcrumb
(
path
)
}
function
select_navbar_voice
(
data
)
{
}
function
update_breadcrumb
(
hash
)
{
}
var
socket
=
io
.
connect
(
'
//localhost:3000
'
);
var
socket
=
io
.
connect
(
'
//localhost:3000
'
);
var
old_data
=
Utils
.
from_hash_to_data
()
var
old_data
=
Utils
.
from_hash_to_data
()
...
...
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