diff --git a/README.md b/README.md index ed29854..406986a 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ Environment variables (will overwrite other server configs) | HMD_PROTOCOL_USESSL | `true` or `false` | set to use ssl protocol for resources path (only applied when domain is set) | | HMD_URL_ADDPORT | `true` or `false` | set to add port on callback url (port 80 or 443 won't applied) (only applied when domain is set) | | HMD_USECDN | `true` or `false` | set to use CDN resources or not (default is `true`) | -| HMD_ALLOW_ANONMYOUS | `true` or `false` | set to allow anonmyous usage (default is `true`) | +| HMD_ALLOW_ANONYMOUS | `true` or `false` | set to allow anonymous usage (default is `true`) | | HMD_ALLOW_FREEURL | `true` or `false` | set to allow new note by accessing not exist note url | | HMD_FACEBOOK_CLIENTID | no example | Facebook API client id | | HMD_FACEBOOK_CLIENTSECRET | no example | Facebook API client secret | @@ -155,7 +155,7 @@ Server settings `config.json` | protocolusessl | `true` or `false` | set to use ssl protocol for resources path (only applied when domain is set) | | urladdport | `true` or `false` | set to add port on callback url (port 80 or 443 won't applied) (only applied when domain is set) | | usecdn | `true` or `false` | set to use CDN resources or not (default is `true`) | -| allowanonmyous | `true` or `false` | set to allow anonmyous usage (default is `true`) | +| allowanonymous | `true` or `false` | set to allow anonymous usage (default is `true`) | | allowfreeurl | `true` or `false` | set to allow new note by accessing not exist note url | | db | `{ "dialect": "sqlite", "storage": "./db.hackmd.sqlite" }` | set the db configs, [see more here](http://sequelize.readthedocs.org/en/latest/api/sequelize/) | | sslkeypath | `./cert/client.key` | ssl key path (only need when you set usessl) | diff --git a/lib/config.js b/lib/config.js index 2d977f5..9e8aa33 100644 --- a/lib/config.js +++ b/lib/config.js @@ -19,7 +19,7 @@ var urladdport = process.env.HMD_URL_ADDPORT ? (process.env.HMD_URL_ADDPORT === var usecdn = process.env.HMD_USECDN ? (process.env.HMD_USECDN === 'true') : ((typeof config.usecdn === 'boolean') ? config.usecdn : true); -var allowanonmyous = process.env.HMD_ALLOW_ANONMYOUS ? (process.env.HMD_ALLOW_ANONMYOUS === 'true') : ((typeof config.allowanonmyous === 'boolean') ? config.allowanonmyous : true); +var allowanonymous = process.env.HMD_ALLOW_ANONYMOUS ? (process.env.HMD_ALLOW_ANONYMOUS === 'true') : ((typeof config.allowanonymous === 'boolean') ? config.allowanonymous : true); var allowfreeurl = process.env.HMD_ALLOW_FREEURL ? (process.env.HMD_ALLOW_FREEURL === 'true') : !!config.allowfreeurl; @@ -129,7 +129,7 @@ module.exports = { usessl: usessl, serverurl: getserverurl(), usecdn: usecdn, - allowanonmyous: allowanonmyous, + allowanonymous: allowanonymous, allowfreeurl: allowfreeurl, db: db, sslkeypath: path.join(cwd, sslkeypath), diff --git a/lib/realtime.js b/lib/realtime.js index 64b0044..c243ffc 100644 --- a/lib/realtime.js +++ b/lib/realtime.js @@ -767,7 +767,7 @@ function connection(socket) { var note = notes[noteId]; //Only owner can change permission if (note.owner && note.owner == socket.request.user.id) { - if (permission == 'freely' && !config.allowanonmyous) return; + if (permission == 'freely' && !config.allowanonymous) return; note.permission = permission; models.Note.update({ permission: permission @@ -915,4 +915,4 @@ function connection(socket) { }); } -module.exports = realtime; \ No newline at end of file +module.exports = realtime; diff --git a/lib/response.js b/lib/response.js index 3374eaf..2b38cf2 100755 --- a/lib/response.js +++ b/lib/response.js @@ -60,7 +60,7 @@ function showIndex(req, res, next) { res.render(config.indexpath, { url: config.serverurl, useCDN: config.usecdn, - allowAnonmyous: config.allowanonmyous, + allowAnonymous: config.allowanonymous, facebook: config.facebook, twitter: config.twitter, github: config.github, @@ -93,7 +93,7 @@ function responseHackMD(res, note) { url: config.serverurl, title: title, useCDN: config.usecdn, - allowAnonmyous: config.allowanonmyous, + allowAnonymous: config.allowanonymous, facebook: config.facebook, twitter: config.twitter, github: config.github, @@ -108,7 +108,7 @@ function newNote(req, res, next) { var owner = null; if (req.isAuthenticated()) { owner = req.user.id; - } else if (!config.allowanonmyous) { + } else if (!config.allowanonymous) { return response.errorForbidden(res); } models.Note.create({ diff --git a/public/views/body.ejs b/public/views/body.ejs index 5de51f3..83a82fa 100644 --- a/public/views/body.ejs +++ b/public/views/body.ejs @@ -15,7 +15,7 @@