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
aa95892b
Commit
aa95892b
authored
Jun 15, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
better event name label
parent
e9bdc5f6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
debomatic-webui/lib/client.js
debomatic-webui/lib/client.js
+1
-1
debomatic-webui/lib/config.js
debomatic-webui/lib/config.js
+9
-9
debomatic-webui/public/javascripts/page_distribution.js
debomatic-webui/public/javascripts/page_distribution.js
+2
-2
No files found.
debomatic-webui/lib/client.js
View file @
aa95892b
...
...
@@ -44,7 +44,7 @@ function __send_package_files_list(event_name, socket, data) {
function
__send_package_status
(
socket
,
data
,
package_data
)
{
var
event_name
=
config
.
events
.
client
.
distribution_packages
.
status
;
var
event_name
=
config
.
events
.
client
.
distribution_packages
_
status
;
var
new_data
=
{};
new_data
.
distribution
=
data
.
distribution
;
...
...
debomatic-webui/lib/config.js
View file @
aa95892b
...
...
@@ -72,17 +72,17 @@ config.version = '0.4.2';
config
.
events
=
{};
config
.
events
.
error
=
'
error
'
;
config
.
events
.
broadcast
=
{};
config
.
events
.
broadcast
.
distributions
=
'
distributions
'
;
config
.
events
.
broadcast
.
status_update
=
'
status_update
'
;
config
.
events
.
broadcast
.
status_debomatic
=
'
status_debomatic
'
;
config
.
events
.
broadcast
.
distributions
=
'
b.
distributions
'
;
config
.
events
.
broadcast
.
status_update
=
'
b.
status_update
'
;
config
.
events
.
broadcast
.
status_debomatic
=
'
b.
status_debomatic
'
;
config
.
events
.
client
=
{};
config
.
events
.
client
.
distribution_packages
=
'
distribution_packages
'
;
config
.
events
.
client
.
distribution_packages
.
status
=
'
package
_status
'
;
config
.
events
.
client
.
package_files_list
=
'
package_files_list
'
;
config
.
events
.
client
.
file
=
'
file
'
;
config
.
events
.
client
.
file_newcontent
=
'
file_newcontent
'
;
config
.
events
.
client
.
status
=
'
status
'
;
config
.
events
.
client
.
distribution_packages
=
'
c.
distribution_packages
'
;
config
.
events
.
client
.
distribution_packages
_status
=
'
c.distribution_packages
_status
'
;
config
.
events
.
client
.
package_files_list
=
'
c.
package_files_list
'
;
config
.
events
.
client
.
file
=
'
c.
file
'
;
config
.
events
.
client
.
file_newcontent
=
'
c.
file_newcontent
'
;
config
.
events
.
client
.
status
=
'
c.
status
'
;
// debomatic status according with JSONLogger.py module
config
.
status
=
{};
...
...
debomatic-webui/public/javascripts/page_distribution.js
View file @
aa95892b
...
...
@@ -589,8 +589,8 @@ function Page_Distrubion(socket) {
packages
.
set
(
socket_data
);
});
socket
.
on
(
_e
.
distribution_packages
.
status
,
function
(
socket_data
)
{
debug_socket
(
'
received
'
,
_e
.
distribution_packages
,
socket_data
);
socket
.
on
(
_e
.
distribution_packages
_
status
,
function
(
socket_data
)
{
debug_socket
(
'
received
'
,
_e
.
distribution_packages
_status
,
socket_data
);
packages
.
set_status
(
socket_data
);
sticky
.
set_status
(
socket_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