Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-02 | fix imported ol that were turned into ul | Chia-liang Kao | |
2012-10-23 | Do not assume window object exists | Chia-liang Kao | |
2012-09-14 | Merge pull request #992 from gedion/develop | John McLear | |
Added hooks and made some ace functions available to editorInfo Object | |||
2012-09-11 | fixed comments | Gedion | |
2012-09-11 | fixed plugins | Gedion | |
2012-09-09 | Use packaged version of UNorm. | Chad Weider | |
2012-09-08 | added hooks and made some functions available to editor info object in ace | Gedion | |
2012-09-08 | added hooks to contentcollector.js | Gedion | |
2012-09-08 | added hooks to contentcollector.js | Gedion | |
2012-08-13 | Normalize inserted text using UNorm | Daniel Perez Alvarez | |
For some reason, the client was sending the server a Unicode-normalized version of inserted strings. So if for example we inserted the string 'ä' (i.e. \x61\xCC\x88) into the document, what would be sent to the server would be 'ä' (i.e. \xC3\xA4). This wouldn't be a problem on its own. BUT JavaScript reports that the length of the first string is 2, while the length of the second one is 1. So the command that was being sent to the server was 'Z:1>2*0+1$ä', when it should really be 'Z:1>1*0+1$ä'. When the `checkRep` method checks the length of the inserted string, it finds an inconsistency, and disconnects the client. We now normalize the inserted string before the command is generated, so the length is always correct. | |||
2012-08-01 | fix #890 test if console is available before writing to console.log | Wikinaut | |
2012-07-25 | Fix #769 - wonky bug with pasted lists | odony | |
After 6507614e459dac868d3c76355ca013d13132bc79 the contentcollector does not properly "exit" lists back to the `none` listType anymore. The repro steps on #769 seem to pass correctly after this change. | |||
2012-04-07 | made domline and content collector lineAttributes compatible | Matthias Bartelmeß | |
2012-04-07 | removed unused variable | Matthias Bartelmeß | |
2012-03-10 | Merge branch 'require-paths' into plugin | Chad Weider | |
Conflicts: node/server.js src/static/js/Changeset.js src/static/js/ace.js src/static/js/ace2_common.js src/static/js/ace2_inner.js src/static/js/broadcast.js src/static/js/changesettracker.js src/static/js/chat.js src/static/js/collab_client.js src/static/js/contentcollector.js src/static/js/domline.js src/static/js/linestylefilter.js src/static/js/pad.js src/static/js/pad_connectionstatus.js src/static/js/pad_docbar.js src/static/js/pad_editbar.js src/static/js/pad_editor.js src/static/js/pad_impexp.js src/static/js/pad_modals.js src/static/js/pad_savedrevs.js src/static/js/pad_userlist.js src/static/js/pad_utils.js src/static/js/timeslider.js src/static/js/undomodule.js src/static/pad.html src/static/timeslider.html | |||
2012-03-01 | Made ace actually use the new hooks system, and removed remnants of old system | Egil Moeller | |
2012-02-26 | First stab at getting client side require(plugin/..) to work from within ↵ | Egil Moeller | |
etherpad | |||
2012-02-26 | The Big Renaming - etherpad is now an NPM module | Egil Moeller | |