Clean up comments.

This commit is contained in:
jkaplon 2016-02-18 17:38:31 -05:00
parent 29d73bfc8d
commit de40a4e042

View File

@ -15,26 +15,16 @@ app.engine('hbs', hbs.express4({
})); }));
app.set('view engine', 'hbs'); app.set('view engine', 'hbs');
app.set('views', __dirname + '/views'); app.set('views', __dirname + '/views');
//app.use('/lib', express.static('lib')); // these 3 seem hacky, but doing it here instead of view.
//app.use('/keymap', express.static('keymap'));
//app.use('/mode', express.static('mode'));
app.use(express.static('codemirror')); app.use(express.static('codemirror'));
var notePath = __dirname + '/note-data/allNotes.txt'; var notePath = __dirname + '/note-data/allNotes.txt';
app.get('/', function(req, res){ app.get('/', function(req, res){
winston.info("GET /"); winston.info("GET /");
// Get curent text from allNotes.txt. // Get curent text from allNotes.txt and pass that data to handlebars template.
// How to pass that text into index.html editor control??? Still need Handlebars???
// i may be grokking it...need to keep handlebars, though.
// read contents of allNotes.txt into a variable.
// pass that variable as data to handlebars template, {{notetxt}}.
fileSystem.readFile(notePath, {encoding: 'utf-8'}, function(err,data){ fileSystem.readFile(notePath, {encoding: 'utf-8'}, function(err,data){
if (!err){ if (!err){
winston.info('successful file read'); winston.info('successful file read');
//response.writeHead(200, {'Content-Type': 'text/html'});
//response.write(data);
//response.end();
res.render('index', {notetxt: data}, function(err, html) { res.render('index', {notetxt: data}, function(err, html) {
if(err !== null) { if(err !== null) {
winston.error(err); winston.error(err);