Commit Graph

7153 Commits (384200860b0fbe3a0d9db6ff72ff5ad31eaa81c5)

Author SHA1 Message Date
ansuz ec172b6d21 rendered html should be scrollable
ansuz a484b920e3 disallow resizing of textarea
ansuz d9d4abb9a5 don't let the textarea overflow the body
ansuz dcbbeea734 solarized dark color scheme in /text/
ansuz c2eb29b75e fix typo
ansuz fd1e5d5735 better styling on render page
now solarized dark
ansuz a718f89e08 make a new pad that doesn't allow input.
It simply renders markdown that's being written in the same channel
but in another editor that allows input.
ansuz 2e3b424a1a sanitize markdown before rendering to prevent XSS
draw rainbox borders on element redraws in vdom method.
This lets us see what being redrawn, as the vdom.diff method
is breaking a few things.
ansuz 13f5371199 remove duplicated files
ansuz aa6bbabc62 prototype a vdom-based markdown editor
avoid unnecessary redraws.

discover a bug, apparently vdom replaces all child elements after an
element which was modified.

As such, changing b in [a, b, c, d] causes b, c, and d to be redrawn.
This is undesirable.
ansuz d14e42fedd start on a vdom-based wysiwyg realtime
There are still a few conditions that cause it to 'explode'
when different browsers disagree on element semantics.

Overall it's a much cleaner approach, but it will require
extensive tuning to improve performance, as there are still
many complete dom traversals which will not scale for large documents
ansuz 1f7f90165f Slap marked.js onto a textarea
Multiple people can now edit markdown and see the results in realtime.
ansuz d5a1629a93 A really basic shared text area with encryption.
...and not much else. If you want to hack on something
this is a great place to start.
ansuz 50121c8ab6 a really basic collaborative input
type="text" is typically slower than the same code
when used to sync a textarea.

WATCH OUT!
ansuz b18dfef656 sharejs textarea is used by realtime-input.js
ansuz 997ce1147f realtime input wraps up basic realtime stuff
so we don't have to rewrite the realtime api for every application.
starting to move towards a portable api :D
ansuz 40b8c0efe8 drop in chjj's marked.js for a cool demo
ansuz 2d8ffdf31c Merge branch 'master' of github.com:ansuz/cryptpad
ansuz 0c2e057f9d export component APIs from convert
ansuz b958caebdd dom, vdom, hyperjson, and an api which provides a matrix of conversions
ansuz 4cf2a8a0bd rtwiki.js : catch some typeErrors
Lars-Magnus Skog 84c0ea6d26 refactor: pass in ifrw.CodeMirror into andThen()
ansuz 663e987345 fix race condition in codemirror initialization
over slow connections, iframes don't load fast enough to be ready for code
which depends on certain features existing.

wait until they're ready, then initialize.
ansuz 2ed9f0867a Merge branch 'master' of github.com:xwiki-labs/cryptpad into codepad
ansuz c71b060dc2 main.js : wait until your editor is defined before trying to reference it. addresses a race condition that caused ckeditor to fail half the time.
ansuz ff52f050e5 chainpad.js : pull in upstream changes to chainpad.js. new APIs
ansuz 9fc44cdf0c add notes to clientside js files
mouhb af80bed07b XWR-190: Make CryptPad version with rtwiki/CodeMirror
mouhb 9626dfc365 XWR-190: Make CryptPad version with rtwiki/CodeMirror
Yann Flory 9a932a3f56 Patch Realtime into CodeMirror in CryptPad
Yann Flory 32f44161a7 Patch Realtime into CodeMirror in CryptPad
Caleb James DeLisle 88fb6772e8 Cleaned up the front page and added a little piece of code to show recent pads
Caleb James DeLisle 51544db9a2 Completed adding of customization system and bottom infobar
Caleb James DeLisle 84164123b6 not quite finished
Caleb James DeLisle 0e44b10aeb Seperated common crypto operations to common file and made common toolbar used for both pad and spreadsheet
Caleb James DeLisle e039e90a24 upgrade to most recent chainpad
Caleb James DeLisle c13bfe978a Switched cryptpad to use common/toolbar.js which is shared with cryptsheet
Caleb James DeLisle 50c10f818e Added cryptsheet to cryptpad suite!
Caleb James DeLisle 4a63ba7df3 Give cryptpad a proper main page
Caleb James DeLisle 652a1da7a4 oops changed some work in the js file
Revert "change logo"

This reverts commit 9325100a02.
Caleb James DeLisle 9325100a02 change logo
Caleb James DeLisle 3330fae47e typo
Caleb James DeLisle 8fc732d879 remove the 'magic line' because it causes problems with the realtime
Caleb James DeLisle 0d3ded68a0 use a websocket which automatically reconnects if the connection is lost
Caleb James DeLisle e3a54c11ee remove some code which may be over-engineering
Caleb James DeLisle 2a1f3f9027 show a little spinner which spins when loading and when people type
Caleb James DeLisle 87aa1aaf91 don't start measuring lag until after syncing and update readme
Caleb James DeLisle 6d68bb0bde error when opening error message window D:
Caleb James DeLisle 6cbdcdec65 Show users editing and lag, properly send message to indicate that all users have left channel and show basic error box if disconnected.
Caleb James DeLisle 5ae599fa07 support different ports for websocket and http
Caleb James DeLisle a6b88e276c use the slower version of applyHTMLOp
Caleb James DeLisle b6523adb1f rand fixed
Caleb James DeLisle 1508c7ba71 and so it begins