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
00932aff
Commit
00932aff
authored
Jul 05, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do not show debomatic static page info in homepage if debomatic route is not defined
parent
3d4f4923
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
19 deletions
+22
-19
debomatic-webui/debomatic-webui
debomatic-webui/debomatic-webui
+9
-7
debomatic-webui/views/index.ejs
debomatic-webui/views/index.ejs
+13
-12
No files found.
debomatic-webui/debomatic-webui
View file @
00932aff
...
...
@@ -45,13 +45,15 @@ if (config.routes.preferences)
if (config.routes.commands)
app.get(config.routes.commands, routes.commands);
// debomatic static page
app.use(config.routes.debomatic, serve_static(config.debomatic.path));
app.use(config.routes.debomatic, serve_index(config.debomatic.path, {
filter: function (filename) {
// do not show these files and directories
return ['dev', 'sys'].indexOf(filename) < 0;
}
}));
if (config.routes.debomatic) {
app.use(config.routes.debomatic, serve_static(config.debomatic.path));
app.use(config.routes.debomatic, serve_index(config.debomatic.path, {
filter: function (filename) {
// do not show these files and directories
return ['dev', 'sys'].indexOf(filename) < 0;
}
}));
}
// serve stylesheet-javascript
app.use(serve_static(__dirname + '/public'));
...
...
debomatic-webui/views/index.ejs
View file @
00932aff
...
...
@@ -11,11 +11,11 @@
<section>
<p>Welcome to debomatic web interface. Here you can monitor debomatic service,
browse the packages already built and real-time check the building process of a new incoming
package.
<p>Most of these actions can be taken in
package.
<p>Most of these actions can be taken in
<a href="<%= web.paths.distribution %>">distribution</a> page. </p>
<p>If you want a bit customization
<p>If you want a bit customization
check the <a href="<%= web.paths.preferences %>">preferences</a> page out.</p>
</section>
...
...
@@ -30,12 +30,13 @@
<p>For build account requests please mail <span subject="Build account request for <%= web.debomatic.dput.host %>" address="<%= web.debomatic.admin.email %>" class="email"></span>.</p>
</div>
</div>
<% if (web.paths.debomatic) { %>
<section>
<p class="alert alert-warning"><strong>Remember:</strong> if you do not find here what you are
looking for, you are always able to browse debomatic static directory
<p class="alert alert-warning"><strong>Remember:</strong> if you do not find here what you are
looking for, you are always able to browse debomatic static directory
in <a class="alert-link" href="<%= web.paths.debomatic %>">this page</a>.</p>
</section>
<% } %>
</article>
<article id="configuration" >
...
...
@@ -94,15 +95,15 @@ scp_compress = 1
<header><h3>About debomatic</h3></header>
<section>
<p><strong>Deb-o-Matic</strong> is an easy to use utility to build Debian source packages, meant
to help developers to automate building of their packages with limited user interaction
to help developers to automate building of their packages with limited user interaction
and a simple startup configuration.</p>
<p>It provides some useful features such as automatic chroot update, rebuilds of
source packages, post-build checks, and much more.</p>
<p>It is also extendable using modules that are loaded and executed
<p>It is also extendable using modules that are loaded and executed
during the build phases.</p>
<p><a class="btn btn-primary" href="http://launchpad.net/debomatic">Get more!</a></p>
</section>
</article>
...
...
@@ -112,7 +113,7 @@ scp_compress = 1
<section>
<p><strong>debomatic-webui</strong> is a web interface for Deb-o-Matic aims to give to users a simple
way to browse logs and to know what's going on debomatic build service providing a real-time packages status.</p>
<p>This interface is built up on <a href="//nodejs.org">node</a> platform
and uses intensely <a href="//socket.io">socket.io</a> and <a href="//jquery.com/">jquery</a> technologies.</p>
...
...
@@ -125,4 +126,4 @@ scp_compress = 1
</section>
</article>
<% include footer.ejs %>
\ No newline at end of file
<% 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