Commit 00932aff authored by Leo Iannacone's avatar Leo Iannacone

do not show debomatic static page info in homepage if debomatic route is not defined

parent 3d4f4923
...@@ -45,13 +45,15 @@ if (config.routes.preferences) ...@@ -45,13 +45,15 @@ if (config.routes.preferences)
if (config.routes.commands) if (config.routes.commands)
app.get(config.routes.commands, routes.commands); app.get(config.routes.commands, routes.commands);
// debomatic static page // debomatic static page
app.use(config.routes.debomatic, serve_static(config.debomatic.path)); if (config.routes.debomatic) {
app.use(config.routes.debomatic, serve_index(config.debomatic.path, { app.use(config.routes.debomatic, serve_static(config.debomatic.path));
app.use(config.routes.debomatic, serve_index(config.debomatic.path, {
filter: function (filename) { filter: function (filename) {
// do not show these files and directories // do not show these files and directories
return ['dev', 'sys'].indexOf(filename) < 0; return ['dev', 'sys'].indexOf(filename) < 0;
} }
})); }));
}
// serve stylesheet-javascript // serve stylesheet-javascript
app.use(serve_static(__dirname + '/public')); app.use(serve_static(__dirname + '/public'));
......
...@@ -30,12 +30,13 @@ ...@@ -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> <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>
</div> </div>
<% if (web.paths.debomatic) { %>
<section> <section>
<p class="alert alert-warning"><strong>Remember:</strong> if you do not find here what you are <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 looking for, you are always able to browse debomatic static directory
in <a class="alert-link" href="<%= web.paths.debomatic %>">this page</a>.</p> in <a class="alert-link" href="<%= web.paths.debomatic %>">this page</a>.</p>
</section> </section>
<% } %>
</article> </article>
<article id="configuration" > <article id="configuration" >
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment