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
81fe9292
Commit
81fe9292
authored
Sep 07, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move table init to JS
parent
0cb46f46
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
29 deletions
+41
-29
debomatic-webui/public/javascripts/main.js
debomatic-webui/public/javascripts/main.js
+6
-6
debomatic-webui/public/javascripts/page_history.js
debomatic-webui/public/javascripts/page_history.js
+22
-0
debomatic-webui/views/footer.ejs
debomatic-webui/views/footer.ejs
+1
-0
debomatic-webui/views/history.ejs
debomatic-webui/views/history.ejs
+12
-23
No files found.
debomatic-webui/public/javascripts/main.js
View file @
81fe9292
...
...
@@ -4,18 +4,16 @@
/* global Preferences: false */
/* global Page_Generic: false */
/* global Page_Distrubion: false */
/* global Page_History: false */
'
use strict
'
;
var
preferences
=
new
Preferences
();
var
page_generic
=
new
Page_Generic
();
var
preferences
=
new
Preferences
(),
page_generic
=
new
Page_Generic
();
if
(
window
.
location
.
pathname
==
config
.
paths
.
preferences
)
{
preferences
.
initPage
();
}
if
(
window
.
location
.
pathname
==
'
/
'
)
{
}
else
if
(
window
.
location
.
pathname
==
'
/
'
)
{
// convert email addresses in the right format
var
emails
=
$
(
'
.email
'
);
$
.
each
(
emails
,
function
()
{
...
...
@@ -30,6 +28,8 @@ if (window.location.pathname == '/') {
real_email
=
'
<a href="mailto:
'
+
real_email
+
subject
+
'
">
'
+
label
+
'
</a>
'
;
$
(
this
).
html
(
real_email
);
});
}
else
if
(
window
.
location
.
pathname
==
config
.
paths
.
history
)
{
new
Page_History
();
}
var
socket
=
io
.
connect
(
'
/
'
);
...
...
debomatic-webui/public/javascripts/page_history.js
0 → 100644
View file @
81fe9292
'
use strict
'
;
/* global Utils: false */
/* global page_generic: false */
/* global debug: false */
/* global debug_socket: false */
/* global dom_history: false */
function
Page_History
()
{
for
(
var
i
=
0
;
i
<
dom_history
.
length
;
i
++
)
{
var
p
=
dom_history
[
i
];
var
row
=
'
<tr>
'
;
row
+=
'
<td>
'
+
p
.
distribution
+
'
</td>
'
;
row
+=
'
<td>
'
+
p
.
package
+
'
</td>
'
;
row
+=
'
<td>
'
+
p
.
uploader
+
'
</td>
'
;
row
+=
'
<td>
'
+
p
.
start
+
'
</td>
'
;
row
+=
'
<td>
'
+
p
.
end
+
'
</td>
'
;
row
+=
'
<td>
'
+
p
.
status
+
'
</td>
'
;
row
+=
'
</tr>
'
;
$
(
'
.table tbody
'
).
append
(
row
);
}
}
debomatic-webui/views/footer.ejs
View file @
81fe9292
...
...
@@ -46,6 +46,7 @@
<script src='/javascripts/preferences.js?<%= version %>'></script>
<script src='/javascripts/page_generic.js?<%= version %>'></script>
<script src='/javascripts/page_distribution.js?<%= version %>'></script>
<script src='/javascripts/page_history.js?<%= version %>'></script>
<script src='/javascripts/main.js?<%= version %>'></script>
</body>
...
...
debomatic-webui/views/history.ejs
View file @
81fe9292
...
...
@@ -5,30 +5,19 @@
<p class="lead text-muted">
The log of packages
</p>
<script> var dom_history = <%- JSON.stringify(history) %> </script>
<table class="table table-bordered table-striped">
<% console.log(history) %>
<thead>
<tr>
<th>Distribution</th>
<th>Package</th>
<th>Uploader</th>
<th>Start</th>
<th>End</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<% for (var i=0; i < history.length; i++) { %>
<tr>
<td><%= history[i].distribution %> </td>
<td><%= history[i].package %></td>
<td><%= history[i].ploader %></td>
<td><%= history[i].start %></td>
<td><%= history[i].end %></td>
<td><%= history[i].success %></td>
</tr>
<% } %>
</tbody>
<thead>
<tr>
<th>Distribution</th>
<th>Package</th>
<th>Uploader</th>
<th>Start</th>
<th>End</th>
<th>Status</th>
</tr>
</thead>
<tbody></tbody>
</table>
</article>
<% include footer.ejs %>
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