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
83be6895
Commit
83be6895
authored
Sep 15, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'github/master' into portable
parents
3554fea0
056a2751
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
debomatic-webui/public/javascripts/page_history.js
debomatic-webui/public/javascripts/page_history.js
+6
-6
debomatic-webui/public/stylesheets/style.css
debomatic-webui/public/stylesheets/style.css
+4
-0
No files found.
debomatic-webui/public/javascripts/page_history.js
View file @
83be6895
...
...
@@ -39,12 +39,12 @@ function Page_History() {
});
var
row
=
'
<tr class="package" id="
'
+
_get_id
(
package_status
)
+
'
">
'
;
var
package_url
=
Utils
.
get_url_to_package
(
p
);
row
+=
'
<td><a href="
'
+
distribution_url
+
'
">
'
+
p
.
distribution
+
'
</a></td>
'
;
row
+=
'
<td><a href="
'
+
package_url
+
'
">
'
+
p
.
package
+
'
</td>
'
;
row
+=
'
<td>
'
+
Utils
.
format_time
(
p
.
start
,
false
,
true
)
+
'
</td>
'
;
row
+=
'
<td>
'
+
Utils
.
format_time
(
p
.
end
,
false
,
true
)
+
'
</td>
'
;
row
+=
'
<td>
'
+
p
.
uploader
+
'
</td>
'
;
row
+=
'
<td class="
'
+
info
.
className
+
'
text-
'
+
info
.
className
+
'
">
'
+
label
+
'
</td>
'
;
row
+=
'
<td
class="distribution"
><a href="
'
+
distribution_url
+
'
">
'
+
p
.
distribution
+
'
</a></td>
'
;
row
+=
'
<td
class="package"
><a href="
'
+
package_url
+
'
">
'
+
p
.
package
+
'
</td>
'
;
row
+=
'
<td
class="start"
>
'
+
Utils
.
format_time
(
p
.
start
,
false
,
true
)
+
'
</td>
'
;
row
+=
'
<td
class="end"
>
'
+
Utils
.
format_time
(
p
.
end
,
false
,
true
)
+
'
</td>
'
;
row
+=
'
<td
class="uploader"
>
'
+
p
.
uploader
+
'
</td>
'
;
row
+=
'
<td class="
status
'
+
info
.
className
+
'
text-
'
+
info
.
className
+
'
">
'
+
label
+
'
</td>
'
;
row
+=
'
</tr>
'
;
$
(
'
table tbody
'
).
append
(
row
);
}
...
...
debomatic-webui/public/stylesheets/style.css
View file @
83be6895
...
...
@@ -285,6 +285,10 @@ footer .info {
background
:
#F9F9F9
;
}
#history
.package
{
white-space
:
nowrap
;
}
/* add more colors to graphs */
.ct-series-e
.ct-bar
,
.ct-chart
.ct-series.ct-series-e
.ct-line
,
...
...
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