From 1792ebd08e2a5b54ff6e73b4c803eb3c9408b02b Mon Sep 17 00:00:00 2001 From: jkaplon Date: Sat, 9 Jul 2016 09:23:51 -0400 Subject: [PATCH] Try leader key work-around in vim config; clean up server code. --- server.js | 17 +---------------- views/index.hbs | 3 +++ 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/server.js b/server.js index 5c4665c..8dd3427 100644 --- a/server.js +++ b/server.js @@ -71,14 +71,12 @@ var isAuthenticated = function (req, res, next) { } } -//app.get('/', require('connect-ensure-login').ensureLoggedIn(), function(req, res){ app.get('/', isAuthenticated, function(req, res){ winston.info("GET /"); // Get curent text from allNotes.txt and pass that data to handlebars template. fileSystem.readFile(notePath, {encoding: 'utf-8'}, function(err,data){ if (!err){ winston.info('successful file read'); - //res.render('index', {notetxt: data}, {user: req.user}, function(err, html) { res.render('index', {notetxt: data}, function(err, html) { if(err !== null) { winston.error(err); @@ -92,7 +90,7 @@ app.get('/', isAuthenticated, function(req, res){ }); }); -app.post('/', function(req, res){ +app.post('/', isAuthenticated, function(req, res){ winston.info('POST received'); var now = Date.now(); // quick/dirty poc is to do a fileSystem.write to create a new file w/contents of req.body! @@ -139,19 +137,6 @@ app.get('/logout', function(req, res){ res.redirect('/'); }); -// This is broken due to permission error from bitbucket. -// Not sure how to auth container git user to bitbucket...comment it all out for now. -//setInterval(function() { - //// Push to bitbucker every 30min. - //var exec = require('child_process').exec; - //var cmd = 'cd note-data && git push'; - //winston.info(cmd); - //exec(cmd, function(error, stdout, stderr) { - //if (error) { winston.error(error); } - //winston.info(stdout); - //}); -//}, 30 * 60 * 1000); - app.listen(3000, function() { winston.info("Started on PORT 3000"); }); diff --git a/views/index.hbs b/views/index.hbs index d049eee..0269390 100644 --- a/views/index.hbs +++ b/views/index.hbs @@ -35,6 +35,9 @@ CodeMirror.Vim.map('jj', '', 'insert') CodeMirror.Vim.map(';', ':') CodeMirror.Vim.map(':', ';') + // This no worky, there's no concept of in CodeMirror, but i was hoping this would work-around it. + //CodeMirror.Vim.map(' c', 'o- [ ] ', 'normal') + //CodeMirror.Vim.map(' x', ';s/\[\s\]/[x]/g;noh', 'normal') //CodeMirror.commands.save = function(){ alert("Saving"); } var commandDisplay = document.getElementById('command-display'); var keys = ''