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
6fd3f978
Commit
6fd3f978
authored
Jun 16, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
if header is hidden show architecture and version in footer
parent
b6264639
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
0 deletions
+8
-0
History.md
History.md
+1
-0
debomatic-webui/public/javascripts/page_generic.js
debomatic-webui/public/javascripts/page_generic.js
+2
-0
debomatic-webui/public/stylesheets/style.css
debomatic-webui/public/stylesheets/style.css
+4
-0
debomatic-webui/views/footer.ejs
debomatic-webui/views/footer.ejs
+1
-0
No files found.
History.md
View file @
6fd3f978
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
*
[new] add page commands which documents the tasks interface of Deb-o-Matic
*
[new] add page commands which documents the tasks interface of Deb-o-Matic
*
[new] better tooltip on action buttons (such as Download, View al file, Get all)
*
[new] better tooltip on action buttons (such as Download, View al file, Get all)
*
[new] focus debomatic architecture in header description
*
[new] focus debomatic architecture in header description
*
[new] if header is hidden show architecture and version in footer
# 0.4.2 (2014-06-15)
# 0.4.2 (2014-06-15)
*
[fix] calculate pidfile for debomatic status check after merging configurations
*
[fix] calculate pidfile for debomatic status check after merging configurations
...
...
debomatic-webui/public/javascripts/page_generic.js
View file @
6fd3f978
...
@@ -134,9 +134,11 @@ function Page_Generic() {
...
@@ -134,9 +134,11 @@ function Page_Generic() {
this
.
preferences
=
function
()
{
this
.
preferences
=
function
()
{
if
(
config
.
preferences
.
header
)
{
if
(
config
.
preferences
.
header
)
{
$
(
'
#pageheader
'
).
show
();
$
(
'
#pageheader
'
).
show
();
$
(
'
footer .info
'
).
hide
();
$
(
'
.navbar .home-link
'
).
hide
();
$
(
'
.navbar .home-link
'
).
hide
();
}
else
{
}
else
{
$
(
'
#pageheader
'
).
hide
();
$
(
'
#pageheader
'
).
hide
();
$
(
'
footer .info
'
).
show
();
$
(
'
.navbar .home-link
'
).
show
();
$
(
'
.navbar .home-link
'
).
show
();
}
}
...
...
debomatic-webui/public/stylesheets/style.css
View file @
6fd3f978
...
@@ -102,6 +102,10 @@ footer {
...
@@ -102,6 +102,10 @@ footer {
border-top
:
1px
solid
#f0f0f0
;
border-top
:
1px
solid
#f0f0f0
;
}
}
footer
.info
{
margin-right
:
5px
;
}
#packages
.search
{
#packages
.search
{
margin-bottom
:
5px
;
margin-bottom
:
5px
;
}
}
...
...
debomatic-webui/views/footer.ejs
View file @
6fd3f978
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
<small class="copyright pull-right text-muted">
<small class="copyright pull-right text-muted">
Fork me on <a href="https://github.com/LeoIannacone/debomatic-webui">github</a>
Fork me on <a href="https://github.com/LeoIannacone/debomatic-webui">github</a>
</small>
</small>
<small class="info pull-right text-muted"><%= web.debomatic.architecture %> (<%= version %>)</small>
<div id="status" class="clearfix">
<div id="status" class="clearfix">
<span class="label label-default">status:</span>
<span class="label label-default">status:</span>
<span class="debomatic idle text-muted">Idle</span>
<span class="debomatic idle text-muted">Idle</span>
...
...
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