gitextract_3aeu67e9/ ├── .gitignore ├── .npmignore ├── Contributing.md ├── History.md ├── LICENSE.md ├── README.md ├── apps/ │ ├── Application.js │ ├── Dynamic.js │ └── Static.js ├── bin/ │ ├── create_site.js │ └── remove_site ├── controllers/ │ ├── ContactController.js │ ├── Controller.js │ ├── DashboardController.js │ ├── EmailController.js │ ├── FileController.js │ ├── FormController.js │ ├── FormDataController.js │ ├── ImageController.js │ ├── LoginController.js │ ├── PageController.js │ ├── StylesController.js │ ├── SystemController.js │ ├── TemplateController.js │ ├── TreeController.js │ └── UserController.js ├── doc/ │ ├── Context.txt │ ├── empty/ │ │ ├── controllers/ │ │ │ └── YourController.js │ │ ├── empty.sql │ │ ├── index.js │ │ ├── locales/ │ │ │ ├── en.json │ │ │ └── zh-CN.json │ │ ├── static/ │ │ │ ├── css/ │ │ │ │ └── front.css │ │ │ └── js/ │ │ │ └── script.js │ │ └── views/ │ │ ├── content.ejs │ │ ├── footer.ejs │ │ ├── header.ejs │ │ ├── index.ejs │ │ ├── intros.ejs │ │ ├── menu-left.ejs │ │ ├── menu-top.ejs │ │ └── page.ejs │ ├── hosting_sqlbased/ │ │ ├── codymaster.sql │ │ └── index.js │ └── todo.txt ├── index.js ├── makeWebApp.js ├── models/ │ ├── Atom.js │ ├── Content.js │ ├── Context.js │ ├── Item.js │ ├── Meta.js │ ├── Model.js │ ├── Page.js │ ├── Path.js │ ├── Template.js │ ├── User.js │ └── Website.js ├── package.json ├── startWebApp.js ├── startserver.js ├── static/ │ ├── css/ │ │ ├── cody.css │ │ └── ui-lightness/ │ │ └── jquery-ui-1.10.1.css │ └── js/ │ ├── atom-tree.js │ ├── lib/ │ │ ├── html5shiv.js │ │ ├── jquery-1.9.1.js │ │ ├── jquery-ui-1.10.1.js │ │ ├── jquery.jstree.js │ │ ├── jquery.validate.js │ │ ├── localization/ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ ├── jquery.ui.datepicker-en.js │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ ├── messages_de.js │ │ │ ├── messages_en.js │ │ │ ├── messages_es.js │ │ │ ├── messages_fr.js │ │ │ └── messages_nl.js │ │ └── themes/ │ │ ├── apple/ │ │ │ └── style.css │ │ ├── classic/ │ │ │ └── style.css │ │ └── default/ │ │ └── style.css │ ├── pages-editor.js │ ├── script.js │ └── tinymce/ │ ├── jquery.tinymce.js │ ├── langs/ │ │ └── en.js │ ├── license.txt │ ├── plugins/ │ │ ├── advhr/ │ │ │ ├── css/ │ │ │ │ └── advhr.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js/ │ │ │ │ └── rule.js │ │ │ ├── langs/ │ │ │ │ └── en_dlg.js │ │ │ └── rule.htm │ │ ├── advimage/ │ │ │ ├── css/ │ │ │ │ └── advimage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── image.htm │ │ │ ├── js/ │ │ │ │ └── image.js │ │ │ └── langs/ │ │ │ └── en_dlg.js │ │ ├── advlink/ │ │ │ ├── css/ │ │ │ │ └── advlink.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js/ │ │ │ │ └── advlink.js │ │ │ ├── langs/ │ │ │ │ └── en_dlg.js │ │ │ └── link.htm │ │ ├── advlist/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autolink/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autoresize/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autosave/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── bbcode/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── contextmenu/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── directionality/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── emotions/ │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── emotions.htm │ │ │ ├── js/ │ │ │ │ └── emotions.js │ │ │ └── langs/ │ │ │ └── en_dlg.js │ │ ├── example/ │ │ │ ├── dialog.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js/ │ │ │ │ └── dialog.js │ │ │ └── langs/ │ │ │ ├── en.js │ │ │ └── en_dlg.js │ │ ├── example_dependency/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── fullpage/ │ │ │ ├── css/ │ │ │ │ └── fullpage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── fullpage.htm │ │ │ ├── js/ │ │ │ │ └── fullpage.js │ │ │ └── langs/ │ │ │ └── en_dlg.js │ │ ├── fullscreen/ │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── fullscreen.htm │ │ ├── iespell/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── inlinepopups/ │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── skins/ │ │ │ │ └── clearlooks2/ │ │ │ │ └── window.css │ │ │ └── template.htm │ │ ├── insertdatetime/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── layer/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── legacyoutput/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── lists/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── media/ │ │ │ ├── css/ │ │ │ │ └── media.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js/ │ │ │ │ ├── embed.js │ │ │ │ └── media.js │ │ │ ├── langs/ │ │ │ │ └── en_dlg.js │ │ │ ├── media.htm │ │ │ └── moxieplayer.swf │ │ ├── nonbreaking/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── noneditable/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── pagebreak/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── paste/ │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js/ │ │ │ │ ├── pastetext.js │ │ │ │ └── pasteword.js │ │ │ ├── langs/ │ │ │ │ └── en_dlg.js │ │ │ ├── pastetext.htm │ │ │ └── pasteword.htm │ │ ├── preview/ │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── example.html │ │ │ ├── jscripts/ │ │ │ │ └── embed.js │ │ │ └── preview.html │ │ ├── print/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── save/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── searchreplace/ │ │ │ ├── css/ │ │ │ │ └── searchreplace.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js/ │ │ │ │ └── searchreplace.js │ │ │ ├── langs/ │ │ │ │ └── en_dlg.js │ │ │ └── searchreplace.htm │ │ ├── spellchecker/ │ │ │ ├── css/ │ │ │ │ └── content.css │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── style/ │ │ │ ├── css/ │ │ │ │ └── props.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js/ │ │ │ │ └── props.js │ │ │ ├── langs/ │ │ │ │ └── en_dlg.js │ │ │ ├── props.htm │ │ │ └── readme.txt │ │ ├── tabfocus/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── table/ │ │ │ ├── cell.htm │ │ │ ├── css/ │ │ │ │ ├── cell.css │ │ │ │ ├── row.css │ │ │ │ └── table.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js/ │ │ │ │ ├── cell.js │ │ │ │ ├── merge_cells.js │ │ │ │ ├── row.js │ │ │ │ └── table.js │ │ │ ├── langs/ │ │ │ │ └── en_dlg.js │ │ │ ├── merge_cells.htm │ │ │ ├── row.htm │ │ │ └── table.htm │ │ ├── template/ │ │ │ ├── blank.htm │ │ │ ├── css/ │ │ │ │ └── template.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js/ │ │ │ │ └── template.js │ │ │ ├── langs/ │ │ │ │ └── en_dlg.js │ │ │ └── template.htm │ │ ├── visualblocks/ │ │ │ ├── css/ │ │ │ │ └── visualblocks.css │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── visualchars/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── wordcount/ │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ └── xhtmlxtras/ │ │ ├── abbr.htm │ │ ├── acronym.htm │ │ ├── attributes.htm │ │ ├── cite.htm │ │ ├── css/ │ │ │ ├── attributes.css │ │ │ └── popup.css │ │ ├── del.htm │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── ins.htm │ │ ├── js/ │ │ │ ├── abbr.js │ │ │ ├── acronym.js │ │ │ ├── attributes.js │ │ │ ├── cite.js │ │ │ ├── del.js │ │ │ ├── element_common.js │ │ │ └── ins.js │ │ └── langs/ │ │ └── en_dlg.js │ ├── themes/ │ │ ├── advanced/ │ │ │ ├── about.htm │ │ │ ├── anchor.htm │ │ │ ├── charmap.htm │ │ │ ├── color_picker.htm │ │ │ ├── editor_template.js │ │ │ ├── editor_template_src.js │ │ │ ├── image.htm │ │ │ ├── js/ │ │ │ │ ├── about.js │ │ │ │ ├── anchor.js │ │ │ │ ├── charmap.js │ │ │ │ ├── color_picker.js │ │ │ │ ├── image.js │ │ │ │ ├── link.js │ │ │ │ └── source_editor.js │ │ │ ├── langs/ │ │ │ │ ├── en.js │ │ │ │ └── en_dlg.js │ │ │ ├── link.htm │ │ │ ├── shortcuts.htm │ │ │ ├── skins/ │ │ │ │ ├── default/ │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── ui.css │ │ │ │ ├── highcontrast/ │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── ui.css │ │ │ │ └── o2k7/ │ │ │ │ ├── content.css │ │ │ │ ├── dialog.css │ │ │ │ ├── ui.css │ │ │ │ ├── ui_black.css │ │ │ │ └── ui_silver.css │ │ │ └── source_editor.htm │ │ └── simple/ │ │ ├── editor_template.js │ │ ├── editor_template_src.js │ │ ├── langs/ │ │ │ └── en.js │ │ └── skins/ │ │ ├── default/ │ │ │ ├── content.css │ │ │ └── ui.css │ │ └── o2k7/ │ │ ├── content.css │ │ └── ui.css │ ├── tiny_mce.js │ ├── tiny_mce_popup.js │ ├── tiny_mce_src.js │ └── utils/ │ ├── editable_selects.js │ ├── form_utils.js │ ├── mctabs.js │ └── validate.js ├── testing/ │ └── testdynamic.js └── views/ ├── cms/ │ ├── comments-ajax.ejs │ ├── comments.ejs │ ├── contacts.ejs │ ├── content-type.ejs │ ├── dashboard.ejs │ ├── files-ajax.ejs │ ├── files.ejs │ ├── footer.ejs │ ├── forms-ajax.ejs │ ├── forms-data.ejs │ ├── forms-list.ejs │ ├── forms.ejs │ ├── header.ejs │ ├── images-ajax.ejs │ ├── images.ejs │ ├── navigation.ejs │ ├── pages-ajax.ejs │ ├── pages.ejs │ ├── styles.ejs │ ├── system.ejs │ ├── templates.ejs │ ├── top.ejs │ └── users.ejs ├── front/ │ └── index.ejs └── login.ejs