Skip to content

Commit

Permalink
fix: jade config
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Berezovskyi <[email protected]>
  • Loading branch information
berezovskyi committed Oct 12, 2024
1 parent ded22ed commit a79f779
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions frontend/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var express = require('express')
var ConfigProvider = require('./configprovider').ConfigProvider;
var MongoDBProvider = require('./mongodbprovider').MongoDBProvider;
var mongoDBProvider = new MongoDBProvider(process.env.DBHOST || 'localhost', 27017);
var configApp = new ConfigProvider('../config.json');
var configApp = new ConfigProvider('./config.json');

var app = express();

Expand All @@ -25,7 +25,7 @@ app.use(app.router);
app.use(express.static(path.join(__dirname, 'public')));
app.use('/dumps',express.static('/usr/local/sparqles/dumps'));

// set default timezon in London
// set the default timezone to London
process.env.TZ = 'Europe/London';

// development only
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion frontend/public/styles/style_ext.css
Original file line number Diff line number Diff line change
Expand Up @@ -1314,7 +1314,6 @@ p a var {
width: 1500px;
margin-left: -750px;
left: 50%;
width: 100%;
line-height: 38px;
}

Expand Down
2 changes: 1 addition & 1 deletion frontend/views/footer.jade
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ footer#footer
b Publications
ul.xoxo.blogroll
li
a(href='https://www.semanticscholar.org/paper/SPARQLES%3A-Monitoring-public-SPARQL-endpoints-Vandenbussche-Umbrich/8e4248fcffed6d28f1b9f4547243a611e3be097b', title='Semantic Web J. (2017)', target='_blank')
a(href='https://www.semanticscholar.org/paper/SPARQLES%3A-Monitoring-public-SPARQL-endpoints-Vandenbussche-Umbrich/8e4248fcffed6d28f1b9f4547243a611e3be097b', target='_blank') Semantic Web J. (2017)
.wrpl
//- a#mt(href='http://www.wu.ac.at/infobiz/en/', target='_blank')
//- div
Expand Down
4 changes: 2 additions & 2 deletions frontend/views/layout.jade
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ doctype html
html(lang='en')
include head
body.home
| <div id="maintenance-info">This is a re-host of the service and is not affiliated with TU Wien.</div>
//- | <div id="maintenance">We are currently rewriting parts of the software and certain services may be unresponsive and/or inaccurate.</div>
| <div id="maintenance" class="info">This is a re-host of the service and is not affiliated with TU Wien.</div>
//- | <div id="maintenance" class="warn">We are currently rewriting parts of the software and certain services may be unresponsive and/or inaccurate.</div>
.container
include header
block content
Expand Down

0 comments on commit a79f779

Please sign in to comment.