├── .gitignore ├── LICENSE ├── README.md ├── assets └── screenshots │ ├── edit_sandbox.png │ ├── home.png │ ├── home_neon.png │ ├── index.png │ └── sandbox_plus_sidebar.png ├── bin └── notebook.tcl ├── docs ├── index.quilldoc └── man1 │ └── notebook.manpage ├── lib ├── app_notebook │ ├── dbmanager.tcl │ ├── default.nbk │ ├── help.nbk │ ├── helpbrowser.tcl │ ├── main.tcl │ ├── messagelog.tcl │ ├── missing.gif │ ├── nb2html.tcl │ ├── nb2mediawiki.tcl │ ├── nbactionmanager.tcl │ ├── nbobjects.tcl │ ├── notebook.tcl │ ├── notebookbrowser.tcl │ ├── pageeditor.tcl │ ├── pageviewer.tcl │ ├── pkgIndex.tcl │ ├── pkgModules.tcl │ ├── prefs_dialog.tcl │ ├── renderpane.tcl │ ├── splash.gif │ ├── userprefs.tcl │ └── welcomer.tcl ├── combobox │ ├── ANNOUNCE.txt │ ├── CHANGES.txt │ ├── README.txt │ ├── combobox.n │ ├── combobox.tcl │ ├── combobox.tmml │ ├── example.tcl │ └── pkgIndex.tcl ├── gui │ ├── actionmanager.tcl │ ├── bullet1.gif │ ├── bullet2.gif │ ├── bullet3.gif │ ├── gui.tcl │ ├── icon.tcl │ ├── misc.tcl │ ├── pkgIndex.tcl │ ├── rotext.tcl │ ├── searchentry.tcl │ ├── statusentry.tcl │ ├── tooltip.tcl │ └── windowmanager.tcl ├── markupparser │ ├── README.txt │ ├── markupparser.tcl │ ├── pkgIndex.tcl │ └── pkgModules.tcl ├── notebookdb │ ├── Makefile │ ├── notebookdb.tcl │ ├── notebookdb.test │ ├── pkgIndex.tcl │ └── pkgModules.tcl └── quillinfo │ ├── pkgIndex.tcl │ ├── pkgModules.tcl │ └── quillinfo.tcl ├── project.quill └── test ├── app_notebook ├── all_tests.test └── app_notebook.test ├── markupparser ├── all_tests.test └── markupparser.test └── notebookdb ├── all_tests.test └── notebookdb.test /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshots/edit_sandbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/assets/screenshots/edit_sandbox.png -------------------------------------------------------------------------------- /assets/screenshots/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/assets/screenshots/home.png -------------------------------------------------------------------------------- /assets/screenshots/home_neon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/assets/screenshots/home_neon.png -------------------------------------------------------------------------------- /assets/screenshots/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/assets/screenshots/index.png -------------------------------------------------------------------------------- /assets/screenshots/sandbox_plus_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/assets/screenshots/sandbox_plus_sidebar.png -------------------------------------------------------------------------------- /bin/notebook.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/bin/notebook.tcl -------------------------------------------------------------------------------- /docs/index.quilldoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/docs/index.quilldoc -------------------------------------------------------------------------------- /docs/man1/notebook.manpage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/docs/man1/notebook.manpage -------------------------------------------------------------------------------- /lib/app_notebook/dbmanager.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/dbmanager.tcl -------------------------------------------------------------------------------- /lib/app_notebook/default.nbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/default.nbk -------------------------------------------------------------------------------- /lib/app_notebook/help.nbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/help.nbk -------------------------------------------------------------------------------- /lib/app_notebook/helpbrowser.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/helpbrowser.tcl -------------------------------------------------------------------------------- /lib/app_notebook/main.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/main.tcl -------------------------------------------------------------------------------- /lib/app_notebook/messagelog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/messagelog.tcl -------------------------------------------------------------------------------- /lib/app_notebook/missing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/missing.gif -------------------------------------------------------------------------------- /lib/app_notebook/nb2html.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/nb2html.tcl -------------------------------------------------------------------------------- /lib/app_notebook/nb2mediawiki.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/nb2mediawiki.tcl -------------------------------------------------------------------------------- /lib/app_notebook/nbactionmanager.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/nbactionmanager.tcl -------------------------------------------------------------------------------- /lib/app_notebook/nbobjects.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/nbobjects.tcl -------------------------------------------------------------------------------- /lib/app_notebook/notebook.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/notebook.tcl -------------------------------------------------------------------------------- /lib/app_notebook/notebookbrowser.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/notebookbrowser.tcl -------------------------------------------------------------------------------- /lib/app_notebook/pageeditor.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/pageeditor.tcl -------------------------------------------------------------------------------- /lib/app_notebook/pageviewer.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/pageviewer.tcl -------------------------------------------------------------------------------- /lib/app_notebook/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/app_notebook/pkgModules.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/pkgModules.tcl -------------------------------------------------------------------------------- /lib/app_notebook/prefs_dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/prefs_dialog.tcl -------------------------------------------------------------------------------- /lib/app_notebook/renderpane.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/renderpane.tcl -------------------------------------------------------------------------------- /lib/app_notebook/splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/splash.gif -------------------------------------------------------------------------------- /lib/app_notebook/userprefs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/userprefs.tcl -------------------------------------------------------------------------------- /lib/app_notebook/welcomer.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/app_notebook/welcomer.tcl -------------------------------------------------------------------------------- /lib/combobox/ANNOUNCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/combobox/ANNOUNCE.txt -------------------------------------------------------------------------------- /lib/combobox/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/combobox/CHANGES.txt -------------------------------------------------------------------------------- /lib/combobox/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/combobox/README.txt -------------------------------------------------------------------------------- /lib/combobox/combobox.n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/combobox/combobox.n -------------------------------------------------------------------------------- /lib/combobox/combobox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/combobox/combobox.tcl -------------------------------------------------------------------------------- /lib/combobox/combobox.tmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/combobox/combobox.tmml -------------------------------------------------------------------------------- /lib/combobox/example.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/combobox/example.tcl -------------------------------------------------------------------------------- /lib/combobox/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/combobox/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/gui/actionmanager.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/actionmanager.tcl -------------------------------------------------------------------------------- /lib/gui/bullet1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/bullet1.gif -------------------------------------------------------------------------------- /lib/gui/bullet2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/bullet2.gif -------------------------------------------------------------------------------- /lib/gui/bullet3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/bullet3.gif -------------------------------------------------------------------------------- /lib/gui/gui.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/gui.tcl -------------------------------------------------------------------------------- /lib/gui/icon.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/icon.tcl -------------------------------------------------------------------------------- /lib/gui/misc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/misc.tcl -------------------------------------------------------------------------------- /lib/gui/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/gui/rotext.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/rotext.tcl -------------------------------------------------------------------------------- /lib/gui/searchentry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/searchentry.tcl -------------------------------------------------------------------------------- /lib/gui/statusentry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/statusentry.tcl -------------------------------------------------------------------------------- /lib/gui/tooltip.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/tooltip.tcl -------------------------------------------------------------------------------- /lib/gui/windowmanager.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/gui/windowmanager.tcl -------------------------------------------------------------------------------- /lib/markupparser/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/markupparser/README.txt -------------------------------------------------------------------------------- /lib/markupparser/markupparser.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/markupparser/markupparser.tcl -------------------------------------------------------------------------------- /lib/markupparser/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/markupparser/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/markupparser/pkgModules.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/markupparser/pkgModules.tcl -------------------------------------------------------------------------------- /lib/notebookdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/notebookdb/Makefile -------------------------------------------------------------------------------- /lib/notebookdb/notebookdb.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/notebookdb/notebookdb.tcl -------------------------------------------------------------------------------- /lib/notebookdb/notebookdb.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/notebookdb/notebookdb.test -------------------------------------------------------------------------------- /lib/notebookdb/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/notebookdb/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/notebookdb/pkgModules.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/notebookdb/pkgModules.tcl -------------------------------------------------------------------------------- /lib/quillinfo/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/quillinfo/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/quillinfo/pkgModules.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/quillinfo/pkgModules.tcl -------------------------------------------------------------------------------- /lib/quillinfo/quillinfo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/lib/quillinfo/quillinfo.tcl -------------------------------------------------------------------------------- /project.quill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/project.quill -------------------------------------------------------------------------------- /test/app_notebook/all_tests.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/test/app_notebook/all_tests.test -------------------------------------------------------------------------------- /test/app_notebook/app_notebook.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/test/app_notebook/app_notebook.test -------------------------------------------------------------------------------- /test/markupparser/all_tests.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/test/markupparser/all_tests.test -------------------------------------------------------------------------------- /test/markupparser/markupparser.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/test/markupparser/markupparser.test -------------------------------------------------------------------------------- /test/notebookdb/all_tests.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/test/notebookdb/all_tests.test -------------------------------------------------------------------------------- /test/notebookdb/notebookdb.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wduquette/notebook/HEAD/test/notebookdb/notebookdb.test --------------------------------------------------------------------------------