├── .gitignore ├── .travis.yml ├── .zuul.yml ├── App.elm ├── Component ├── Editor.elm ├── LeftSidebar.elm ├── LeftSidebar │ ├── CurrentDocView.elm │ └── OpenMenuView.elm ├── Page.elm ├── RightSidebar.elm └── WordGraph.elm ├── Dreamwriter.elm ├── Dreamwriter └── Mailboxes.elm ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── elm-package.json ├── elm_dependencies.json ├── package.json ├── src ├── DocImport.coffee ├── DreamBox.coffee ├── DreamNotes.coffee ├── DreamSync.coffee ├── Editor.coffee ├── FileIO.coffee ├── WordCount.coffee ├── bootstrap-elm.coffee ├── fonts │ ├── flaticon.woff │ └── ubuntu.woff ├── idb-options.json ├── images │ ├── dlogo.png │ └── favicon.ico ├── index.html ├── medium.js ├── stylesheets │ ├── app.styl │ ├── editor.styl │ ├── fonts.styl │ ├── fullscreen.styl │ ├── icons.styl │ ├── left-sidebar.styl │ ├── mixins │ │ ├── flex.styl │ │ └── page-text.styl │ ├── page.styl │ ├── print.styl │ ├── right-sidebar.styl │ └── sidebars.styl └── templates │ ├── BlankChapterBody.mustache │ ├── BlankDocBody.mustache │ ├── Doc.mustache │ └── IntroDocBody.mustache └── test └── first-page-load.spec.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/.travis.yml -------------------------------------------------------------------------------- /.zuul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/.zuul.yml -------------------------------------------------------------------------------- /App.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/App.elm -------------------------------------------------------------------------------- /Component/Editor.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/Component/Editor.elm -------------------------------------------------------------------------------- /Component/LeftSidebar.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/Component/LeftSidebar.elm -------------------------------------------------------------------------------- /Component/LeftSidebar/CurrentDocView.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/Component/LeftSidebar/CurrentDocView.elm -------------------------------------------------------------------------------- /Component/LeftSidebar/OpenMenuView.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/Component/LeftSidebar/OpenMenuView.elm -------------------------------------------------------------------------------- /Component/Page.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/Component/Page.elm -------------------------------------------------------------------------------- /Component/RightSidebar.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/Component/RightSidebar.elm -------------------------------------------------------------------------------- /Component/WordGraph.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/Component/WordGraph.elm -------------------------------------------------------------------------------- /Dreamwriter.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/Dreamwriter.elm -------------------------------------------------------------------------------- /Dreamwriter/Mailboxes.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/Dreamwriter/Mailboxes.elm -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/bower.json -------------------------------------------------------------------------------- /elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/elm-package.json -------------------------------------------------------------------------------- /elm_dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/elm_dependencies.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/package.json -------------------------------------------------------------------------------- /src/DocImport.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/DocImport.coffee -------------------------------------------------------------------------------- /src/DreamBox.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/DreamBox.coffee -------------------------------------------------------------------------------- /src/DreamNotes.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/DreamNotes.coffee -------------------------------------------------------------------------------- /src/DreamSync.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/DreamSync.coffee -------------------------------------------------------------------------------- /src/Editor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/Editor.coffee -------------------------------------------------------------------------------- /src/FileIO.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/FileIO.coffee -------------------------------------------------------------------------------- /src/WordCount.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/WordCount.coffee -------------------------------------------------------------------------------- /src/bootstrap-elm.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/bootstrap-elm.coffee -------------------------------------------------------------------------------- /src/fonts/flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/fonts/flaticon.woff -------------------------------------------------------------------------------- /src/fonts/ubuntu.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/fonts/ubuntu.woff -------------------------------------------------------------------------------- /src/idb-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/idb-options.json -------------------------------------------------------------------------------- /src/images/dlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/images/dlogo.png -------------------------------------------------------------------------------- /src/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/images/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/index.html -------------------------------------------------------------------------------- /src/medium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/medium.js -------------------------------------------------------------------------------- /src/stylesheets/app.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/app.styl -------------------------------------------------------------------------------- /src/stylesheets/editor.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/editor.styl -------------------------------------------------------------------------------- /src/stylesheets/fonts.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/fonts.styl -------------------------------------------------------------------------------- /src/stylesheets/fullscreen.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/fullscreen.styl -------------------------------------------------------------------------------- /src/stylesheets/icons.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/icons.styl -------------------------------------------------------------------------------- /src/stylesheets/left-sidebar.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/left-sidebar.styl -------------------------------------------------------------------------------- /src/stylesheets/mixins/flex.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/mixins/flex.styl -------------------------------------------------------------------------------- /src/stylesheets/mixins/page-text.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/mixins/page-text.styl -------------------------------------------------------------------------------- /src/stylesheets/page.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/page.styl -------------------------------------------------------------------------------- /src/stylesheets/print.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/print.styl -------------------------------------------------------------------------------- /src/stylesheets/right-sidebar.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/right-sidebar.styl -------------------------------------------------------------------------------- /src/stylesheets/sidebars.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/stylesheets/sidebars.styl -------------------------------------------------------------------------------- /src/templates/BlankChapterBody.mustache: -------------------------------------------------------------------------------- 1 |

 

-------------------------------------------------------------------------------- /src/templates/BlankDocBody.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/templates/BlankDocBody.mustache -------------------------------------------------------------------------------- /src/templates/Doc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/templates/Doc.mustache -------------------------------------------------------------------------------- /src/templates/IntroDocBody.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/src/templates/IntroDocBody.mustache -------------------------------------------------------------------------------- /test/first-page-load.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtfeldman/dreamwriter/HEAD/test/first-page-load.spec.js --------------------------------------------------------------------------------