diff options
author | Peter 'Pita' Martischka <petermartischka@googlemail.com> | 2012-11-13 07:29:57 -0800 |
---|---|---|
committer | Peter 'Pita' Martischka <petermartischka@googlemail.com> | 2012-11-13 07:29:57 -0800 |
commit | 4c095202bdee57cb3720333fc2699a8e92fc087f (patch) | |
tree | 4349bbc37ecc6c1e53c7c7cf59671c29672d291d /src | |
parent | b28afe4c4704427f23c3daf8e72cae7a185ed49f (diff) | |
parent | 03d3cd9f2495dbfa6f33e53766f16107de851976 (diff) | |
download | etherpad-lite-4c095202bdee57cb3720333fc2699a8e92fc087f.zip |
Merged branch feature/frontend-tests
Diffstat (limited to 'src')
-rw-r--r-- | src/ep.json | 1 | ||||
-rw-r--r-- | src/node/hooks/express/tests.js | 46 | ||||
-rw-r--r-- | src/package.json | 3 | ||||
-rw-r--r-- | src/static/js/chat.js | 2 | ||||
-rw-r--r-- | src/static/js/pad.js | 4 | ||||
-rw-r--r-- | src/templates/pad.html | 2 |
6 files changed, 55 insertions, 3 deletions
diff --git a/src/ep.json b/src/ep.json index 26e4f603..b96ef037 100644 --- a/src/ep.json +++ b/src/ep.json @@ -13,6 +13,7 @@ { "name": "importexport", "hooks": { "expressCreateServer": "ep_etherpad-lite/node/hooks/express/importexport:expressCreateServer" } }, { "name": "errorhandling", "hooks": { "expressCreateServer": "ep_etherpad-lite/node/hooks/express/errorhandling:expressCreateServer" } }, { "name": "socketio", "hooks": { "expressCreateServer": "ep_etherpad-lite/node/hooks/express/socketio:expressCreateServer" } }, + { "name": "tests", "hooks": { "expressCreateServer": "ep_etherpad-lite/node/hooks/express/tests:expressCreateServer" } }, { "name": "admin", "hooks": { "expressCreateServer": "ep_etherpad-lite/node/hooks/express/admin:expressCreateServer" } }, { "name": "adminplugins", "hooks": { "expressCreateServer": "ep_etherpad-lite/node/hooks/express/adminplugins:expressCreateServer", diff --git a/src/node/hooks/express/tests.js b/src/node/hooks/express/tests.js new file mode 100644 index 00000000..7921da5a --- /dev/null +++ b/src/node/hooks/express/tests.js @@ -0,0 +1,46 @@ +var path = require("path"); +var fs = require("fs"); + +exports.expressCreateServer = function (hook_name, args, cb) { + args.app.get('/tests/frontend/specs_list.js', function(req, res){ + fs.readdir('tests/frontend/specs', function(err, files){ + if(err){ return res.send(500); } + + res.send("var specs_list = " + JSON.stringify(files.sort()) + ";\n"); + }); + }); + + var url2FilePath = function(url){ + var subPath = url.substr("/tests/frontend".length); + if (subPath == ""){ + subPath = "index.html" + } + subPath = subPath.split("?")[0]; + + var filePath = path.normalize(__dirname + "/../../../../tests/frontend/") + filePath += subPath.replace("..", ""); + return filePath; + } + + args.app.get('/tests/frontend/specs/*', function (req, res) { + var specFilePath = url2FilePath(req.url); + var specFileName = path.basename(specFilePath); + + fs.readFile(specFilePath, function(err, content){ + if(err){ return res.send(500); } + + content = "describe(" + JSON.stringify(specFileName) + ", function(){ " + content + " });"; + + res.send(content); + }); + }); + + args.app.get('/tests/frontend/*', function (req, res) { + var filePath = url2FilePath(req.url); + res.sendfile(filePath); + }); + + args.app.get('/tests/frontend', function (req, res) { + res.redirect('/tests/frontend/'); + }); +}
\ No newline at end of file diff --git a/src/package.json b/src/package.json index c3c4968a..cb1f38d9 100644 --- a/src/package.json +++ b/src/package.json @@ -39,7 +39,8 @@ }, "bin": { "etherpad-lite": "./node/server.js" }, "devDependencies": { - "jshint" : "*" + "jshint" : "*", + "wd" : "0.0.26" }, "engines" : { "node" : ">=0.6.0", "npm" : ">=1.0" diff --git a/src/static/js/chat.js b/src/static/js/chat.js index 486c7256..4493ed15 100644 --- a/src/static/js/chat.js +++ b/src/static/js/chat.js @@ -150,7 +150,7 @@ var chat = (function() $("#chatinput").keypress(function(evt) { //if the user typed enter, fire the send - if(evt.which == 13) + if(evt.which == 13 || evt.which == 10) { evt.preventDefault(); self.send(); diff --git a/src/static/js/pad.js b/src/static/js/pad.js index c55f8dfe..52d61648 100644 --- a/src/static/js/pad.js +++ b/src/static/js/pad.js @@ -389,6 +389,10 @@ function handshake() }); // Bind the colorpicker var fb = $('#colorpicker').farbtastic({ callback: '#mycolorpickerpreview', width: 220}); + // Bind the read only button + $('#readonlyinput').on('click',function(){ + padeditbar.setEmbedLinks(); + }); } var pad = { diff --git a/src/templates/pad.html b/src/templates/pad.html index 6136d895..161947ed 100644 --- a/src/templates/pad.html +++ b/src/templates/pad.html @@ -305,7 +305,7 @@ <div id="embed" class="popup"> <% e.begin_block("embedPopup"); %> <div id="embedreadonly" class="right acl-write"> - <input type="checkbox" id="readonlyinput" onClick="padeditbar.setEmbedLinks();"> + <input type="checkbox" id="readonlyinput"> <label for="readonlyinput">Read only</label> </div> <h1>Share this pad</h1> |