├── .babelrc ├── .bowerrc ├── .gitignore ├── README.md ├── app.js ├── assets ├── css │ ├── axboot-01.css │ ├── axboot-02.css │ ├── axboot-03.css │ └── axboot.css ├── favicon.ico ├── images │ ├── devtools-logo.png │ ├── header-logo.png │ ├── login-bg.jpg │ ├── login-logo.png │ ├── logo.png │ └── ztree │ │ ├── line_conn.gif │ │ ├── line_conn.png │ │ ├── loading.gif │ │ ├── metro.gif │ │ └── metro.png ├── js │ ├── axboot │ │ ├── dist │ │ │ ├── axboot.js │ │ │ ├── axboot.min.js │ │ │ ├── axboot.min.js.map │ │ │ └── good-words.js │ │ ├── src │ │ │ ├── _axboot.js │ │ │ └── modules │ │ │ │ ├── ajax.js │ │ │ │ ├── bootstrap-dropdown.js │ │ │ │ ├── bootstrap-modal.js │ │ │ │ ├── bootstrap-tooltip.js │ │ │ │ ├── buttonClick.js │ │ │ │ ├── call.js │ │ │ │ ├── convertCode.js │ │ │ │ ├── gridBuilder.js │ │ │ │ ├── lang.js │ │ │ │ ├── modal.js │ │ │ │ ├── modelFormatter.js │ │ │ │ ├── preparePlugin.js │ │ │ │ ├── requireSession.js │ │ │ │ ├── treeBuilder.js │ │ │ │ ├── util.js │ │ │ │ └── view-action.js │ │ └── system │ │ │ ├── system-auth-user.js │ │ │ ├── system-config-common-code-modal.js │ │ │ ├── system-config-common-code.js │ │ │ ├── system-config-menu.js │ │ │ ├── system-config-program.js │ │ │ ├── system-dev-tools.js │ │ │ ├── system-help-manual-view.js │ │ │ ├── system-help-manual.js │ │ │ └── system-operation-log.js │ ├── common │ │ ├── brokebot.min.js │ │ ├── brokebot │ │ │ ├── TweenMax.js │ │ │ ├── brokebot.js │ │ │ └── snap.svg.js │ │ └── fileBrowser.js │ ├── plugins.js │ ├── plugins.min.js │ ├── plugins.min.js.map │ └── view │ │ ├── _apis │ │ └── axboot-js.js │ │ ├── _samples │ │ ├── ax5ui-sample.js │ │ ├── basic.js │ │ ├── grid-form.js │ │ ├── grid-modal.js │ │ ├── grid-tabform.js │ │ ├── horizontal-layout.js │ │ ├── modal.js │ │ ├── page-structure.js │ │ ├── tab-layout.js │ │ └── vertical-layout.js │ │ ├── frame.js │ │ ├── login.js │ │ ├── main.js │ │ └── view-기본템플릿.js ├── plugins-fix │ ├── light-bootstrap-dashboard │ │ ├── css │ │ │ └── light-bootstrap-dashboard.css │ │ ├── js │ │ │ ├── bootstrap-checkbox-radio-switch.js │ │ │ ├── bootstrap-notify.js │ │ │ ├── chartist.min.js │ │ │ ├── demo.js │ │ │ └── light-bootstrap-dashboard.js │ │ └── scss │ │ │ ├── lbd │ │ │ ├── _alerts.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _chartist.scss │ │ │ ├── _checkbox-radio-switch.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _footers.scss │ │ │ ├── _inputs.scss │ │ │ ├── _misc.scss │ │ │ ├── _mixins.scss │ │ │ ├── _navbars.scss │ │ │ ├── _responsive.scss │ │ │ ├── _sidebar-and-main-panel.scss │ │ │ ├── _tables.scss │ │ │ ├── _typography.scss │ │ │ ├── _variables.scss │ │ │ └── mixins │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _chartist.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _inputs.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _morphing-buttons.scss │ │ │ │ ├── _navbars.scss │ │ │ │ ├── _social-buttons.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── _transparency.scss │ │ │ │ └── _vendor-prefixes.scss │ │ │ └── light-bootstrap-dashboard.scss │ └── prettify │ │ ├── lang-Splus.js │ │ ├── lang-aea.js │ │ ├── lang-agc.js │ │ ├── lang-apollo.js │ │ ├── lang-basic.js │ │ ├── lang-cbm.js │ │ ├── lang-cl.js │ │ ├── lang-clj.js │ │ ├── lang-css.js │ │ ├── lang-dart.js │ │ ├── lang-el.js │ │ ├── lang-erl.js │ │ ├── lang-erlang.js │ │ ├── lang-fs.js │ │ ├── lang-go.js │ │ ├── lang-hs.js │ │ ├── lang-lasso.js │ │ ├── lang-lassoscript.js │ │ ├── lang-latex.js │ │ ├── lang-lgt.js │ │ ├── lang-lisp.js │ │ ├── lang-ll.js │ │ ├── lang-llvm.js │ │ ├── lang-logtalk.js │ │ ├── lang-ls.js │ │ ├── lang-lsp.js │ │ ├── lang-lua.js │ │ ├── lang-matlab.js │ │ ├── lang-ml.js │ │ ├── lang-mumps.js │ │ ├── lang-n.js │ │ ├── lang-nemerle.js │ │ ├── lang-pascal.js │ │ ├── lang-proto.js │ │ ├── lang-r.js │ │ ├── lang-rd.js │ │ ├── lang-rkt.js │ │ ├── lang-rust.js │ │ ├── lang-s.js │ │ ├── lang-scala.js │ │ ├── lang-scm.js │ │ ├── lang-sql.js │ │ ├── lang-ss.js │ │ ├── lang-swift.js │ │ ├── lang-tcl.js │ │ ├── lang-tex.js │ │ ├── lang-vb.js │ │ ├── lang-vbs.js │ │ ├── lang-vhd.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-xq.js │ │ ├── lang-xquery.js │ │ ├── lang-yaml.js │ │ ├── lang-yml.js │ │ ├── prettify.css │ │ ├── prettify.js │ │ ├── run_prettify.js │ │ └── skins │ │ ├── desert.css │ │ ├── doxy.css │ │ ├── github.css │ │ ├── sons-of-obsidian.css │ │ └── sunburst.css ├── plugins │ ├── ax5core │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5core.js │ │ │ ├── ax5core.min.js │ │ │ └── ax5core.min.js.map │ │ ├── package.json │ │ └── src │ │ │ ├── _ax5-ui-mixin.scss │ │ │ ├── ax5-core.js │ │ │ ├── ax5-def.js │ │ │ ├── ax5-error-msg.js │ │ │ ├── ax5-polyfill.js │ │ │ ├── ax5-ui.js │ │ │ └── mustache.js │ ├── ax5ui-autocomplete │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5autocomplete.css │ │ │ ├── ax5autocomplete.js │ │ │ ├── ax5autocomplete.min.js │ │ │ └── ax5autocomplete.min.js.map │ │ ├── package.json │ │ └── src │ │ │ ├── ax5autocomplete.js │ │ │ ├── ax5autocomplete.scss │ │ │ ├── modules │ │ │ ├── ax5autocomplete-tmpl.js │ │ │ └── ax5autocomplete-util.js │ │ │ └── scss │ │ │ ├── _ax5autocomplete.scss │ │ │ └── _ax5autocomplete_variables.scss │ ├── ax5ui-binder │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5binder.js │ │ │ └── ax5binder.min.js │ │ ├── package.json │ │ └── src │ │ │ └── ax5binder.js │ ├── ax5ui-calendar │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5calendar.css │ │ │ ├── ax5calendar.js │ │ │ └── ax5calendar.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── ax5calendar.js │ │ │ ├── ax5calendar.scss │ │ │ ├── modules │ │ │ └── ax5calendar-tmpl.js │ │ │ └── scss │ │ │ ├── _ax5calendar.scss │ │ │ └── _ax5calendar_variables.scss │ ├── ax5ui-combobox │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5combobox.css │ │ │ ├── ax5combobox.js │ │ │ ├── ax5combobox.min.js │ │ │ └── ax5combobox.min.js.map │ │ ├── package.json │ │ └── src │ │ │ ├── ax5combobox.js │ │ │ ├── ax5combobox.scss │ │ │ ├── modules │ │ │ ├── ax5combobox-tmpl.js │ │ │ └── ax5combobox-util.js │ │ │ └── scss │ │ │ ├── _ax5combobox.scss │ │ │ └── _ax5combobox_variables.scss │ ├── ax5ui-dialog │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5dialog.css │ │ │ ├── ax5dialog.js │ │ │ └── ax5dialog.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── ax5dialog.js │ │ │ ├── ax5dialog.scss │ │ │ ├── modules │ │ │ └── ax5dialog-tmpl.js │ │ │ └── scss │ │ │ ├── _ax5dialog.scss │ │ │ └── _ax5dialog_variables.scss │ ├── ax5ui-formatter │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5formatter.css │ │ │ ├── ax5formatter.js │ │ │ └── ax5formatter.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── ax5formatter.js │ │ │ ├── ax5formatter.scss │ │ │ ├── modules │ │ │ └── ax5formatter-formatter.js │ │ │ └── scss │ │ │ ├── _ax5formatter.scss │ │ │ └── _ax5formatter_variables.scss │ ├── ax5ui-grid │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5grid.css │ │ │ ├── ax5grid.js │ │ │ ├── ax5grid.min.js │ │ │ └── ax5grid.min.js.map │ │ ├── package.json │ │ └── src │ │ │ ├── ax5grid.js │ │ │ ├── ax5grid.scss │ │ │ ├── modules │ │ │ ├── ax5grid-body.js │ │ │ ├── ax5grid-collector.js │ │ │ ├── ax5grid-data.js │ │ │ ├── ax5grid-excel.js │ │ │ ├── ax5grid-formatter.js │ │ │ ├── ax5grid-header.js │ │ │ ├── ax5grid-inline-editor.js │ │ │ ├── ax5grid-page.js │ │ │ ├── ax5grid-scroller.js │ │ │ ├── ax5grid-tmpl.js │ │ │ └── ax5grid-util.js │ │ │ └── scss │ │ │ ├── _ax5grid.scss │ │ │ └── _ax5grid_variables.scss │ ├── ax5ui-layout │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5layout.css │ │ │ ├── ax5layout.js │ │ │ └── ax5layout.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── ax5layout.js │ │ │ ├── ax5layout.scss │ │ │ └── scss │ │ │ ├── _ax5layout.scss │ │ │ └── _ax5layout_variables.scss │ ├── ax5ui-mask │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5mask.css │ │ │ ├── ax5mask.js │ │ │ └── ax5mask.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── ax5mask.js │ │ │ ├── ax5mask.scss │ │ │ ├── modules │ │ │ └── ax5mask-tmpl.js │ │ │ └── scss │ │ │ ├── _ax5mask.scss │ │ │ └── _ax5mask_variables.scss │ ├── ax5ui-media-viewer │ │ ├── .bower.json │ │ ├── API.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── deploy.sh │ │ ├── dist │ │ │ ├── ax5media-viewer.css │ │ │ ├── ax5media-viewer.js │ │ │ └── ax5media-viewer.min.js │ │ ├── package.json │ │ ├── src │ │ │ ├── ax5media-viewer.js │ │ │ ├── ax5media-viewer.scss │ │ │ ├── modules │ │ │ │ └── ax5media-viewer-tmpl.js │ │ │ └── scss │ │ │ │ ├── _ax5media-viewer.scss │ │ │ │ └── _ax5media-viewer_variables.scss │ │ └── test │ │ │ ├── bower.json │ │ │ └── index.html │ ├── ax5ui-menu │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5menu.css │ │ │ ├── ax5menu.js │ │ │ └── ax5menu.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── ax5menu.js │ │ │ ├── ax5menu.scss │ │ │ ├── modules │ │ │ └── ax5menu-tmpl.js │ │ │ └── scss │ │ │ ├── _ax5menu.scss │ │ │ └── _ax5menu_variables.scss │ ├── ax5ui-modal │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5modal.css │ │ │ ├── ax5modal.js │ │ │ └── ax5modal.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── ax5modal.js │ │ │ ├── ax5modal.scss │ │ │ ├── modules │ │ │ └── ax5modal-tmpl.js │ │ │ └── scss │ │ │ ├── _ax5modal.scss │ │ │ └── _ax5modal_variables.scss │ ├── ax5ui-picker │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5picker.css │ │ │ ├── ax5picker.js │ │ │ └── ax5picker.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── ax5picker.js │ │ │ ├── ax5picker.scss │ │ │ ├── modules │ │ │ └── ax5ui-picker-tmpl.js │ │ │ └── scss │ │ │ ├── _ax5picker.scss │ │ │ └── _ax5picker_variables.scss │ ├── ax5ui-select │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ax5select.css │ │ │ ├── ax5select.js │ │ │ └── ax5select.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── ax5select.js │ │ │ ├── ax5select.scss │ │ │ ├── modules │ │ │ └── ax5select-tmpl.js │ │ │ └── scss │ │ │ ├── _ax5select.scss │ │ │ └── _ax5select_variables.scss │ ├── ax5ui-toast │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── ax5core │ │ │ │ ├── bower.json │ │ │ │ ├── dist │ │ │ │ │ ├── ax5core.js │ │ │ │ │ └── ax5core.min.js │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── _ax5-ui-mixin.scss │ │ │ │ │ ├── ax5-core.js │ │ │ │ │ ├── ax5-def.js │ │ │ │ │ ├── ax5-error-msg.js │ │ │ │ │ ├── ax5-polyfill.js │ │ │ │ │ ├── ax5-ui.js │ │ │ │ │ └── mustache.js │ │ │ ├── bootstrap │ │ │ │ ├── bower.json │ │ │ │ ├── dist │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── npm.js │ │ │ │ ├── grunt │ │ │ │ │ ├── configBridge.json │ │ │ │ │ └── npm-shrinkwrap.json │ │ │ │ └── package.json │ │ │ └── jquery │ │ │ │ ├── bower.json │ │ │ │ ├── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ │ ├── external │ │ │ │ └── sizzle │ │ │ │ │ └── dist │ │ │ │ │ ├── sizzle.js │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ └── sizzle.min.map │ │ │ │ └── src │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── load.js │ │ │ │ ├── parseJSON.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── script.js │ │ │ │ ├── var │ │ │ │ │ ├── location.js │ │ │ │ │ ├── nonce.js │ │ │ │ │ └── rquery.js │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── attributes │ │ │ │ ├── attr.js │ │ │ │ ├── classes.js │ │ │ │ ├── prop.js │ │ │ │ ├── support.js │ │ │ │ └── val.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── core │ │ │ │ ├── access.js │ │ │ │ ├── init.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── ready.js │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── css.js │ │ │ │ ├── css │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── adjustCSS.js │ │ │ │ ├── curCSS.js │ │ │ │ ├── defaultDisplay.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── showHide.js │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── isHidden.js │ │ │ │ │ ├── rmargin.js │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ └── swap.js │ │ │ │ ├── data.js │ │ │ │ ├── data │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ └── acceptData.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── effects │ │ │ │ ├── Tween.js │ │ │ │ ├── animatedSelector.js │ │ │ │ └── support.js │ │ │ │ ├── event.js │ │ │ │ ├── event │ │ │ │ ├── ajax.js │ │ │ │ ├── alias.js │ │ │ │ └── support.js │ │ │ │ ├── exports │ │ │ │ ├── amd.js │ │ │ │ └── global.js │ │ │ │ ├── intro.js │ │ │ │ ├── jquery.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── manipulation │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── buildFragment.js │ │ │ │ ├── createSafeFragment.js │ │ │ │ ├── getAll.js │ │ │ │ ├── setGlobalEval.js │ │ │ │ ├── support.js │ │ │ │ ├── var │ │ │ │ │ ├── nodeNames.js │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ ├── rleadingWhitespace.js │ │ │ │ │ ├── rscriptType.js │ │ │ │ │ └── rtagName.js │ │ │ │ └── wrapMap.js │ │ │ │ ├── offset.js │ │ │ │ ├── outro.js │ │ │ │ ├── queue.js │ │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ │ ├── selector-sizzle.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── support.js │ │ │ │ ├── traversing.js │ │ │ │ ├── traversing │ │ │ │ ├── findFilter.js │ │ │ │ └── var │ │ │ │ │ ├── dir.js │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ └── siblings.js │ │ │ │ ├── var │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── deletedIds.js │ │ │ │ ├── document.js │ │ │ │ ├── documentElement.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── rcssNum.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── slice.js │ │ │ │ ├── support.js │ │ │ │ └── toString.js │ │ │ │ └── wrap.js │ │ ├── dist │ │ │ ├── ax5toast.css │ │ │ ├── ax5toast.js │ │ │ └── ax5toast.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── ax5toast.js │ │ │ ├── ax5toast.scss │ │ │ ├── modules │ │ │ └── ax5toast-tmpl.js │ │ │ └── scss │ │ │ ├── _ax5toast.scss │ │ │ └── _ax5toast_variables.scss │ ├── bootstrap-sass │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ ├── fonts │ │ │ │ └── bootstrap │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── javascripts │ │ │ │ ├── bootstrap-sprockets.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap │ │ │ │ │ ├── affix.js │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── transition.js │ │ │ └── stylesheets │ │ │ │ ├── _bootstrap-compass.scss │ │ │ │ ├── _bootstrap-mincer.scss │ │ │ │ ├── _bootstrap-sprockets.scss │ │ │ │ ├── _bootstrap.scss │ │ │ │ └── bootstrap │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _badges.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _button-groups.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _component-animations.scss │ │ │ │ ├── _dropdowns.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _glyphicons.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _input-groups.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _navs.scss │ │ │ │ ├── _normalize.scss │ │ │ │ ├── _pager.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _popovers.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress-bars.scss │ │ │ │ ├── _responsive-embed.scss │ │ │ │ ├── _responsive-utilities.scss │ │ │ │ ├── _scaffolding.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _theme.scss │ │ │ │ ├── _thumbnails.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── _wells.scss │ │ │ │ └── mixins │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _center-block.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hide-text.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _nav-vertical-align.scss │ │ │ │ ├── _opacity.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _progress-bar.scss │ │ │ │ ├── _reset-filter.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _responsive-visibility.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _tab-focus.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-overflow.scss │ │ │ │ └── _vendor-prefixes.scss │ │ ├── bower.json │ │ ├── composer.json │ │ ├── eyeglass-exports.js │ │ ├── package.json │ │ └── sache.json │ ├── bootstrap │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── Gruntfile.js │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── change-version.js │ │ │ ├── configBridge.json │ │ │ ├── npm-shrinkwrap.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.less.nuspec │ │ │ └── bootstrap.nuspec │ │ ├── package.js │ │ └── package.json │ ├── bourbon │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── app │ │ │ └── assets │ │ │ │ └── stylesheets │ │ │ │ ├── _bourbon-deprecated-upcoming.scss │ │ │ │ ├── _bourbon.scss │ │ │ │ ├── addons │ │ │ │ ├── _border-color.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _border-style.scss │ │ │ │ ├── _border-width.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _ellipsis.scss │ │ │ │ ├── _font-stacks.scss │ │ │ │ ├── _hide-text.scss │ │ │ │ ├── _margin.scss │ │ │ │ ├── _padding.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _prefixer.scss │ │ │ │ ├── _retina-image.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _text-inputs.scss │ │ │ │ ├── _timing-functions.scss │ │ │ │ ├── _triangle.scss │ │ │ │ └── _word-wrap.scss │ │ │ │ ├── css3 │ │ │ │ ├── _animation.scss │ │ │ │ ├── _appearance.scss │ │ │ │ ├── _backface-visibility.scss │ │ │ │ ├── _background-image.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _border-image.scss │ │ │ │ ├── _calc.scss │ │ │ │ ├── _columns.scss │ │ │ │ ├── _filter.scss │ │ │ │ ├── _flex-box.scss │ │ │ │ ├── _font-face.scss │ │ │ │ ├── _font-feature-settings.scss │ │ │ │ ├── _hidpi-media-query.scss │ │ │ │ ├── _hyphens.scss │ │ │ │ ├── _image-rendering.scss │ │ │ │ ├── _keyframes.scss │ │ │ │ ├── _linear-gradient.scss │ │ │ │ ├── _perspective.scss │ │ │ │ ├── _placeholder.scss │ │ │ │ ├── _radial-gradient.scss │ │ │ │ ├── _selection.scss │ │ │ │ ├── _text-decoration.scss │ │ │ │ ├── _transform.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _user-select.scss │ │ │ │ ├── functions │ │ │ │ ├── _assign-inputs.scss │ │ │ │ ├── _contains-falsy.scss │ │ │ │ ├── _contains.scss │ │ │ │ ├── _is-length.scss │ │ │ │ ├── _is-light.scss │ │ │ │ ├── _is-number.scss │ │ │ │ ├── _is-size.scss │ │ │ │ ├── _modular-scale.scss │ │ │ │ ├── _px-to-em.scss │ │ │ │ ├── _px-to-rem.scss │ │ │ │ ├── _shade.scss │ │ │ │ ├── _strip-units.scss │ │ │ │ ├── _tint.scss │ │ │ │ ├── _transition-property-name.scss │ │ │ │ └── _unpack.scss │ │ │ │ ├── helpers │ │ │ │ ├── _convert-units.scss │ │ │ │ ├── _directional-values.scss │ │ │ │ ├── _font-source-declaration.scss │ │ │ │ ├── _gradient-positions-parser.scss │ │ │ │ ├── _linear-angle-parser.scss │ │ │ │ ├── _linear-gradient-parser.scss │ │ │ │ ├── _linear-positions-parser.scss │ │ │ │ ├── _linear-side-corner-parser.scss │ │ │ │ ├── _radial-arg-parser.scss │ │ │ │ ├── _radial-gradient-parser.scss │ │ │ │ ├── _radial-positions-parser.scss │ │ │ │ ├── _render-gradients.scss │ │ │ │ ├── _shape-size-stripper.scss │ │ │ │ └── _str-to-num.scss │ │ │ │ └── settings │ │ │ │ ├── _asset-pipeline.scss │ │ │ │ ├── _prefixer.scss │ │ │ │ └── _px-to-em.scss │ │ ├── bower.json │ │ ├── eyeglass-exports.js │ │ └── index.js │ ├── cheqcon │ │ ├── .bower.json │ │ ├── Read Me.txt │ │ ├── _cheqcon-util.scss │ │ ├── bower.json │ │ ├── demo-files │ │ │ ├── demo.css │ │ │ └── demo.js │ │ ├── demo.html │ │ ├── fonts │ │ │ ├── cheqcon.eot │ │ │ ├── cheqcon.svg │ │ │ ├── cheqcon.ttf │ │ │ ├── cheqcon.woff │ │ │ └── cheqcon.woff2 │ │ ├── package.json │ │ ├── selection.json │ │ ├── style.css │ │ ├── style.scss │ │ └── variables.scss │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── ckeditortablecellsselection │ │ │ │ ├── js │ │ │ │ │ └── tablecellsselection.js │ │ │ │ └── styles │ │ │ │ │ └── tablecellsselection.css │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── filemanager │ │ │ │ ├── icon.png │ │ │ │ └── plugin.js │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── notification │ │ │ │ ├── lang │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── syntaxhighlight │ │ │ │ └── dialogs │ │ │ │ │ └── syntaxhighlight.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── widget │ │ │ │ └── images │ │ │ │ │ └── handle.png │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ ├── bootstrapck │ │ │ │ ├── .temp │ │ │ │ │ └── css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ │ └── editor_iequirks.css │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── readme.md │ │ │ │ ├── sample │ │ │ │ │ ├── bootstrapck-sample.html │ │ │ │ │ ├── css │ │ │ │ │ │ └── bootstrapck-sample.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── analytics.js │ │ │ │ │ │ └── jquery-1.11.0.min.js │ │ │ │ └── scss │ │ │ │ │ ├── browser-specific │ │ │ │ │ ├── gecko │ │ │ │ │ │ └── editor_gecko.scss │ │ │ │ │ ├── ie │ │ │ │ │ │ ├── dialog_ie.scss │ │ │ │ │ │ └── editor_ie.scss │ │ │ │ │ ├── ie7 │ │ │ │ │ │ ├── dialog_ie7.scss │ │ │ │ │ │ └── editor_ie7.scss │ │ │ │ │ ├── ie8 │ │ │ │ │ │ ├── dialog_ie8.scss │ │ │ │ │ │ └── editor_ie8.scss │ │ │ │ │ ├── iequirks │ │ │ │ │ │ ├── dialog_iequirks.scss │ │ │ │ │ │ └── editor_iequirks.scss │ │ │ │ │ └── opera │ │ │ │ │ │ └── dialog_opera.scss │ │ │ │ │ ├── components │ │ │ │ │ ├── _colorpanel.scss │ │ │ │ │ ├── _elementspath.scss │ │ │ │ │ ├── _mainui.scss │ │ │ │ │ ├── _menu.scss │ │ │ │ │ ├── _panel.scss │ │ │ │ │ ├── _presets.scss │ │ │ │ │ ├── _reset.scss │ │ │ │ │ ├── _richcombo.scss │ │ │ │ │ ├── _toolbar.scss │ │ │ │ │ └── editor.scss │ │ │ │ │ ├── config │ │ │ │ │ ├── _colors.scss │ │ │ │ │ ├── _config.scss │ │ │ │ │ └── _defaults.scss │ │ │ │ │ └── dialog │ │ │ │ │ └── dialog.scss │ │ │ ├── moono-dark │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── readme.md │ │ │ │ └── skin.js │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ ├── jquery.easy-pie-chart │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── changelog.md │ │ ├── dist │ │ │ ├── angular.easypiechart.js │ │ │ ├── angular.easypiechart.min.js │ │ │ ├── easypiechart.js │ │ │ ├── easypiechart.min.js │ │ │ ├── jquery.easypiechart.js │ │ │ └── jquery.easypiechart.min.js │ │ ├── docs │ │ │ ├── README.tmpl.md │ │ │ ├── bagdes.md │ │ │ ├── browser-support.md │ │ │ ├── callbacks.md │ │ │ ├── credits.md │ │ │ ├── features.md │ │ │ ├── get-started.md │ │ │ ├── options.md │ │ │ ├── plugin-api.md │ │ │ └── test.md │ │ ├── karma.conf.coffee │ │ ├── package.json │ │ ├── src │ │ │ ├── angular.directive.js │ │ │ ├── easypiechart.js │ │ │ ├── jquery.plugin.js │ │ │ └── renderer │ │ │ │ └── canvas.js │ │ └── test │ │ │ ├── polyfills │ │ │ └── bind.js │ │ │ └── unit │ │ │ ├── angular.directive.js │ │ │ └── jquery.js │ ├── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ ├── external │ │ │ └── sizzle │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ └── src │ │ │ ├── .jshintrc │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── isHidden.js │ │ │ │ ├── rmargin.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── acceptData.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ ├── animatedSelector.js │ │ │ └── support.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ └── support.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── intro.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── createSafeFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── nodeNames.js │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rleadingWhitespace.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── support.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── deletedIds.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ ├── light-bootstrap-dashboard │ │ ├── css │ │ │ └── light-bootstrap-dashboard.css │ │ ├── js │ │ │ ├── bootstrap-checkbox-radio-switch.js │ │ │ ├── bootstrap-notify.js │ │ │ ├── chartist.min.js │ │ │ ├── demo.js │ │ │ └── light-bootstrap-dashboard.js │ │ └── scss │ │ │ ├── lbd │ │ │ ├── _alerts.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _chartist.scss │ │ │ ├── _checkbox-radio-switch.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _footers.scss │ │ │ ├── _inputs.scss │ │ │ ├── _misc.scss │ │ │ ├── _mixins.scss │ │ │ ├── _navbars.scss │ │ │ ├── _responsive.scss │ │ │ ├── _sidebar-and-main-panel.scss │ │ │ ├── _tables.scss │ │ │ ├── _typography.scss │ │ │ ├── _variables.scss │ │ │ └── mixins │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _chartist.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _inputs.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _morphing-buttons.scss │ │ │ │ ├── _navbars.scss │ │ │ │ ├── _social-buttons.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── _transparency.scss │ │ │ │ └── _vendor-prefixes.scss │ │ │ └── light-bootstrap-dashboard.scss │ ├── mustache │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── gulpfile.js │ │ ├── mustache.js │ │ ├── mustache.min.js │ │ └── package.json │ ├── prettify │ │ ├── lang-Splus.js │ │ ├── lang-aea.js │ │ ├── lang-agc.js │ │ ├── lang-apollo.js │ │ ├── lang-basic.js │ │ ├── lang-cbm.js │ │ ├── lang-cl.js │ │ ├── lang-clj.js │ │ ├── lang-css.js │ │ ├── lang-dart.js │ │ ├── lang-el.js │ │ ├── lang-erl.js │ │ ├── lang-erlang.js │ │ ├── lang-fs.js │ │ ├── lang-go.js │ │ ├── lang-hs.js │ │ ├── lang-lasso.js │ │ ├── lang-lassoscript.js │ │ ├── lang-latex.js │ │ ├── lang-lgt.js │ │ ├── lang-lisp.js │ │ ├── lang-ll.js │ │ ├── lang-llvm.js │ │ ├── lang-logtalk.js │ │ ├── lang-ls.js │ │ ├── lang-lsp.js │ │ ├── lang-lua.js │ │ ├── lang-matlab.js │ │ ├── lang-ml.js │ │ ├── lang-mumps.js │ │ ├── lang-n.js │ │ ├── lang-nemerle.js │ │ ├── lang-pascal.js │ │ ├── lang-proto.js │ │ ├── lang-r.js │ │ ├── lang-rd.js │ │ ├── lang-rkt.js │ │ ├── lang-rust.js │ │ ├── lang-s.js │ │ ├── lang-scala.js │ │ ├── lang-scm.js │ │ ├── lang-sql.js │ │ ├── lang-ss.js │ │ ├── lang-swift.js │ │ ├── lang-tcl.js │ │ ├── lang-tex.js │ │ ├── lang-vb.js │ │ ├── lang-vbs.js │ │ ├── lang-vhd.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-xq.js │ │ ├── lang-xquery.js │ │ ├── lang-yaml.js │ │ ├── lang-yml.js │ │ ├── prettify.css │ │ ├── prettify.js │ │ ├── run_prettify.js │ │ └── skins │ │ │ ├── desert.css │ │ │ ├── doxy.css │ │ │ ├── github.css │ │ │ ├── sons-of-obsidian.css │ │ │ └── sunburst.css │ ├── requirejs │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ └── require.js │ └── ztree_v3 │ │ ├── .bower.json │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── api │ │ ├── API_cn.html │ │ ├── API_en.html │ │ ├── apiCss │ │ │ ├── api.js │ │ │ ├── common.css │ │ │ ├── common_ie6.css │ │ │ ├── img │ │ │ │ ├── apiMenu.gif │ │ │ │ ├── apiMenu.png │ │ │ │ ├── background.jpg │ │ │ │ ├── chinese.png │ │ │ │ ├── close.png │ │ │ │ ├── contact-bg.png │ │ │ │ ├── english.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── overlay_arrow.gif │ │ │ │ ├── overlay_arrow.png │ │ │ │ ├── overlay_bg.png │ │ │ │ ├── overlay_close_IE6.gif │ │ │ │ ├── zTreeStandard.gif │ │ │ │ └── zTreeStandard.png │ │ │ ├── jquery-1.6.2.min.js │ │ │ ├── jquery.ztree.core.js │ │ │ └── zTreeStyleForApi.css │ │ ├── cn │ │ │ ├── fn.zTree._z.html │ │ │ ├── fn.zTree.destroy.html │ │ │ ├── fn.zTree.getZTreeObj.html │ │ │ ├── fn.zTree.init.html │ │ │ ├── setting.async.autoParam.html │ │ │ ├── setting.async.contentType.html │ │ │ ├── setting.async.dataFilter.html │ │ │ ├── setting.async.dataType.html │ │ │ ├── setting.async.enable.html │ │ │ ├── setting.async.otherParam.html │ │ │ ├── setting.async.type.html │ │ │ ├── setting.async.url.html │ │ │ ├── setting.callback.beforeAsync.html │ │ │ ├── setting.callback.beforeCheck.html │ │ │ ├── setting.callback.beforeClick.html │ │ │ ├── setting.callback.beforeCollapse.html │ │ │ ├── setting.callback.beforeDblClick.html │ │ │ ├── setting.callback.beforeDrag.html │ │ │ ├── setting.callback.beforeDragOpen.html │ │ │ ├── setting.callback.beforeDrop.html │ │ │ ├── setting.callback.beforeEditName.html │ │ │ ├── setting.callback.beforeExpand.html │ │ │ ├── setting.callback.beforeMouseDown.html │ │ │ ├── setting.callback.beforeMouseUp.html │ │ │ ├── setting.callback.beforeRemove.html │ │ │ ├── setting.callback.beforeRename.html │ │ │ ├── setting.callback.beforeRightClick.html │ │ │ ├── setting.callback.onAsyncError.html │ │ │ ├── setting.callback.onAsyncSuccess.html │ │ │ ├── setting.callback.onCheck.html │ │ │ ├── setting.callback.onClick.html │ │ │ ├── setting.callback.onCollapse.html │ │ │ ├── setting.callback.onDblClick.html │ │ │ ├── setting.callback.onDrag.html │ │ │ ├── setting.callback.onDragMove.html │ │ │ ├── setting.callback.onDrop.html │ │ │ ├── setting.callback.onExpand.html │ │ │ ├── setting.callback.onMouseDown.html │ │ │ ├── setting.callback.onMouseUp.html │ │ │ ├── setting.callback.onNodeCreated.html │ │ │ ├── setting.callback.onRemove.html │ │ │ ├── setting.callback.onRename.html │ │ │ ├── setting.callback.onRightClick.html │ │ │ ├── setting.check.autoCheckTrigger.html │ │ │ ├── setting.check.chkDisabledInherit.html │ │ │ ├── setting.check.chkStyle.html │ │ │ ├── setting.check.chkboxType.html │ │ │ ├── setting.check.enable.html │ │ │ ├── setting.check.nocheckInherit.html │ │ │ ├── setting.check.radioType.html │ │ │ ├── setting.data.keep.leaf.html │ │ │ ├── setting.data.keep.parent.html │ │ │ ├── setting.data.key.checked.html │ │ │ ├── setting.data.key.children.html │ │ │ ├── setting.data.key.name.html │ │ │ ├── setting.data.key.title.html │ │ │ ├── setting.data.key.url.html │ │ │ ├── setting.data.simpleData.enable.html │ │ │ ├── setting.data.simpleData.idKey.html │ │ │ ├── setting.data.simpleData.pIdKey.html │ │ │ ├── setting.data.simpleData.rootPId.html │ │ │ ├── setting.edit.drag.autoExpandTrigger.html │ │ │ ├── setting.edit.drag.autoOpenTime.html │ │ │ ├── setting.edit.drag.borderMax.html │ │ │ ├── setting.edit.drag.borderMin.html │ │ │ ├── setting.edit.drag.inner.html │ │ │ ├── setting.edit.drag.isCopy.html │ │ │ ├── setting.edit.drag.isMove.html │ │ │ ├── setting.edit.drag.maxShowNodeNum.html │ │ │ ├── setting.edit.drag.minMoveSize.html │ │ │ ├── setting.edit.drag.next.html │ │ │ ├── setting.edit.drag.prev.html │ │ │ ├── setting.edit.editNameSelectAll.html │ │ │ ├── setting.edit.enable.html │ │ │ ├── setting.edit.removeTitle.html │ │ │ ├── setting.edit.renameTitle.html │ │ │ ├── setting.edit.showRemoveBtn.html │ │ │ ├── setting.edit.showRenameBtn.html │ │ │ ├── setting.treeId.html │ │ │ ├── setting.treeObj.html │ │ │ ├── setting.view.addDiyDom.html │ │ │ ├── setting.view.addHoverDom.html │ │ │ ├── setting.view.autoCancelSelected.html │ │ │ ├── setting.view.dblClickExpand.html │ │ │ ├── setting.view.expandSpeed.html │ │ │ ├── setting.view.fontCss.html │ │ │ ├── setting.view.nameIsHTML.html │ │ │ ├── setting.view.removeHoverDom.html │ │ │ ├── setting.view.selectedMulti.html │ │ │ ├── setting.view.showIcon.html │ │ │ ├── setting.view.showLine.html │ │ │ ├── setting.view.showTitle.html │ │ │ ├── setting.view.txtSelectedEnable.html │ │ │ ├── treeNode.check_Child_State.html │ │ │ ├── treeNode.check_Focus.html │ │ │ ├── treeNode.checked.html │ │ │ ├── treeNode.checkedOld.html │ │ │ ├── treeNode.children.html │ │ │ ├── treeNode.chkDisabled.html │ │ │ ├── treeNode.click.html │ │ │ ├── treeNode.diy.html │ │ │ ├── treeNode.editNameFlag.html │ │ │ ├── treeNode.getCheckStatus.html │ │ │ ├── treeNode.getIndex.html │ │ │ ├── treeNode.getNextNode.html │ │ │ ├── treeNode.getParentNode.html │ │ │ ├── treeNode.getPath.html │ │ │ ├── treeNode.getPreNode.html │ │ │ ├── treeNode.halfCheck.html │ │ │ ├── treeNode.icon.html │ │ │ ├── treeNode.iconClose.html │ │ │ ├── treeNode.iconOpen.html │ │ │ ├── treeNode.iconSkin.html │ │ │ ├── treeNode.isAjaxing.html │ │ │ ├── treeNode.isFirstNode.html │ │ │ ├── treeNode.isHidden.html │ │ │ ├── treeNode.isHover.html │ │ │ ├── treeNode.isLastNode.html │ │ │ ├── treeNode.isParent.html │ │ │ ├── treeNode.level.html │ │ │ ├── treeNode.name.html │ │ │ ├── treeNode.nocheck.html │ │ │ ├── treeNode.open.html │ │ │ ├── treeNode.parentTId.html │ │ │ ├── treeNode.tId.html │ │ │ ├── treeNode.target.html │ │ │ ├── treeNode.url.html │ │ │ ├── treeNode.zAsync.html │ │ │ ├── zTreeObj.addNodes.html │ │ │ ├── zTreeObj.cancelEditName.html │ │ │ ├── zTreeObj.cancelSelectedNode.html │ │ │ ├── zTreeObj.checkAllNodes.html │ │ │ ├── zTreeObj.checkNode.html │ │ │ ├── zTreeObj.copyNode.html │ │ │ ├── zTreeObj.destroy.html │ │ │ ├── zTreeObj.editName.html │ │ │ ├── zTreeObj.expandAll.html │ │ │ ├── zTreeObj.expandNode.html │ │ │ ├── zTreeObj.getChangeCheckedNodes.html │ │ │ ├── zTreeObj.getCheckedNodes.html │ │ │ ├── zTreeObj.getNodeByParam.html │ │ │ ├── zTreeObj.getNodeByTId.html │ │ │ ├── zTreeObj.getNodeIndex.html │ │ │ ├── zTreeObj.getNodes.html │ │ │ ├── zTreeObj.getNodesByFilter.html │ │ │ ├── zTreeObj.getNodesByParam.html │ │ │ ├── zTreeObj.getNodesByParamFuzzy.html │ │ │ ├── zTreeObj.getSelectedNodes.html │ │ │ ├── zTreeObj.hideNode.html │ │ │ ├── zTreeObj.hideNodes.html │ │ │ ├── zTreeObj.moveNode.html │ │ │ ├── zTreeObj.reAsyncChildNodes.html │ │ │ ├── zTreeObj.refresh.html │ │ │ ├── zTreeObj.removeChildNodes.html │ │ │ ├── zTreeObj.removeNode.html │ │ │ ├── zTreeObj.selectNode.html │ │ │ ├── zTreeObj.setChkDisabled.html │ │ │ ├── zTreeObj.setEditable.html │ │ │ ├── zTreeObj.setting.html │ │ │ ├── zTreeObj.showNode.html │ │ │ ├── zTreeObj.showNodes.html │ │ │ ├── zTreeObj.transformToArray.html │ │ │ ├── zTreeObj.transformTozTreeNodes.html │ │ │ └── zTreeObj.updateNode.html │ │ └── en │ │ │ ├── fn.zTree._z.html │ │ │ ├── fn.zTree.destroy.html │ │ │ ├── fn.zTree.getZTreeObj.html │ │ │ ├── fn.zTree.init.html │ │ │ ├── setting.async.autoParam.html │ │ │ ├── setting.async.contentType.html │ │ │ ├── setting.async.dataFilter.html │ │ │ ├── setting.async.dataType.html │ │ │ ├── setting.async.enable.html │ │ │ ├── setting.async.otherParam.html │ │ │ ├── setting.async.type.html │ │ │ ├── setting.async.url.html │ │ │ ├── setting.callback.beforeAsync.html │ │ │ ├── setting.callback.beforeCheck.html │ │ │ ├── setting.callback.beforeClick.html │ │ │ ├── setting.callback.beforeCollapse.html │ │ │ ├── setting.callback.beforeDblClick.html │ │ │ ├── setting.callback.beforeDrag.html │ │ │ ├── setting.callback.beforeDragOpen.html │ │ │ ├── setting.callback.beforeDrop.html │ │ │ ├── setting.callback.beforeEditName.html │ │ │ ├── setting.callback.beforeExpand.html │ │ │ ├── setting.callback.beforeMouseDown.html │ │ │ ├── setting.callback.beforeMouseUp.html │ │ │ ├── setting.callback.beforeRemove.html │ │ │ ├── setting.callback.beforeRename.html │ │ │ ├── setting.callback.beforeRightClick.html │ │ │ ├── setting.callback.onAsyncError.html │ │ │ ├── setting.callback.onAsyncSuccess.html │ │ │ ├── setting.callback.onCheck.html │ │ │ ├── setting.callback.onClick.html │ │ │ ├── setting.callback.onCollapse.html │ │ │ ├── setting.callback.onDblClick.html │ │ │ ├── setting.callback.onDrag.html │ │ │ ├── setting.callback.onDragMove.html │ │ │ ├── setting.callback.onDrop.html │ │ │ ├── setting.callback.onExpand.html │ │ │ ├── setting.callback.onMouseDown.html │ │ │ ├── setting.callback.onMouseUp.html │ │ │ ├── setting.callback.onNodeCreated.html │ │ │ ├── setting.callback.onRemove.html │ │ │ ├── setting.callback.onRename.html │ │ │ ├── setting.callback.onRightClick.html │ │ │ ├── setting.check.autoCheckTrigger.html │ │ │ ├── setting.check.chkDisabledInherit.html │ │ │ ├── setting.check.chkStyle.html │ │ │ ├── setting.check.chkboxType.html │ │ │ ├── setting.check.enable.html │ │ │ ├── setting.check.nocheckInherit.html │ │ │ ├── setting.check.radioType.html │ │ │ ├── setting.data.keep.leaf.html │ │ │ ├── setting.data.keep.parent.html │ │ │ ├── setting.data.key.checked.html │ │ │ ├── setting.data.key.children.html │ │ │ ├── setting.data.key.name.html │ │ │ ├── setting.data.key.title.html │ │ │ ├── setting.data.key.url.html │ │ │ ├── setting.data.simpleData.enable.html │ │ │ ├── setting.data.simpleData.idKey.html │ │ │ ├── setting.data.simpleData.pIdKey.html │ │ │ ├── setting.data.simpleData.rootPId.html │ │ │ ├── setting.edit.drag.autoExpandTrigger.html │ │ │ ├── setting.edit.drag.autoOpenTime.html │ │ │ ├── setting.edit.drag.borderMax.html │ │ │ ├── setting.edit.drag.borderMin.html │ │ │ ├── setting.edit.drag.inner.html │ │ │ ├── setting.edit.drag.isCopy.html │ │ │ ├── setting.edit.drag.isMove.html │ │ │ ├── setting.edit.drag.maxShowNodeNum.html │ │ │ ├── setting.edit.drag.minMoveSize.html │ │ │ ├── setting.edit.drag.next.html │ │ │ ├── setting.edit.drag.prev.html │ │ │ ├── setting.edit.editNameSelectAll.html │ │ │ ├── setting.edit.enable.html │ │ │ ├── setting.edit.removeTitle.html │ │ │ ├── setting.edit.renameTitle.html │ │ │ ├── setting.edit.showRemoveBtn.html │ │ │ ├── setting.edit.showRenameBtn.html │ │ │ ├── setting.treeId.html │ │ │ ├── setting.treeObj.html │ │ │ ├── setting.view.addDiyDom.html │ │ │ ├── setting.view.addHoverDom.html │ │ │ ├── setting.view.autoCancelSelected.html │ │ │ ├── setting.view.dblClickExpand.html │ │ │ ├── setting.view.expandSpeed.html │ │ │ ├── setting.view.fontCss.html │ │ │ ├── setting.view.nameIsHTML.html │ │ │ ├── setting.view.removeHoverDom.html │ │ │ ├── setting.view.selectedMulti.html │ │ │ ├── setting.view.showIcon.html │ │ │ ├── setting.view.showLine.html │ │ │ ├── setting.view.showTitle.html │ │ │ ├── setting.view.txtSelectedEnable.html │ │ │ ├── treeNode.check_Child_State.html │ │ │ ├── treeNode.check_Focus.html │ │ │ ├── treeNode.checked.html │ │ │ ├── treeNode.checkedOld.html │ │ │ ├── treeNode.children.html │ │ │ ├── treeNode.chkDisabled.html │ │ │ ├── treeNode.click.html │ │ │ ├── treeNode.diy.html │ │ │ ├── treeNode.editNameFlag.html │ │ │ ├── treeNode.getCheckStatus.html │ │ │ ├── treeNode.getIndex.html │ │ │ ├── treeNode.getNextNode.html │ │ │ ├── treeNode.getParentNode.html │ │ │ ├── treeNode.getPath.html │ │ │ ├── treeNode.getPreNode.html │ │ │ ├── treeNode.halfCheck.html │ │ │ ├── treeNode.icon.html │ │ │ ├── treeNode.iconClose.html │ │ │ ├── treeNode.iconOpen.html │ │ │ ├── treeNode.iconSkin.html │ │ │ ├── treeNode.isAjaxing.html │ │ │ ├── treeNode.isFirstNode.html │ │ │ ├── treeNode.isHidden.html │ │ │ ├── treeNode.isHover.html │ │ │ ├── treeNode.isLastNode.html │ │ │ ├── treeNode.isParent.html │ │ │ ├── treeNode.level.html │ │ │ ├── treeNode.name.html │ │ │ ├── treeNode.nocheck.html │ │ │ ├── treeNode.open.html │ │ │ ├── treeNode.parentTId.html │ │ │ ├── treeNode.tId.html │ │ │ ├── treeNode.target.html │ │ │ ├── treeNode.url.html │ │ │ ├── treeNode.zAsync.html │ │ │ ├── zTreeObj.addNodes.html │ │ │ ├── zTreeObj.cancelEditName.html │ │ │ ├── zTreeObj.cancelSelectedNode.html │ │ │ ├── zTreeObj.checkAllNodes.html │ │ │ ├── zTreeObj.checkNode.html │ │ │ ├── zTreeObj.copyNode.html │ │ │ ├── zTreeObj.destroy.html │ │ │ ├── zTreeObj.editName.html │ │ │ ├── zTreeObj.expandAll.html │ │ │ ├── zTreeObj.expandNode.html │ │ │ ├── zTreeObj.getChangeCheckedNodes.html │ │ │ ├── zTreeObj.getCheckedNodes.html │ │ │ ├── zTreeObj.getNodeByParam.html │ │ │ ├── zTreeObj.getNodeByTId.html │ │ │ ├── zTreeObj.getNodeIndex.html │ │ │ ├── zTreeObj.getNodes.html │ │ │ ├── zTreeObj.getNodesByFilter.html │ │ │ ├── zTreeObj.getNodesByParam.html │ │ │ ├── zTreeObj.getNodesByParamFuzzy.html │ │ │ ├── zTreeObj.getSelectedNodes.html │ │ │ ├── zTreeObj.hideNode.html │ │ │ ├── zTreeObj.hideNodes.html │ │ │ ├── zTreeObj.moveNode.html │ │ │ ├── zTreeObj.reAsyncChildNodes.html │ │ │ ├── zTreeObj.refresh.html │ │ │ ├── zTreeObj.removeChildNodes.html │ │ │ ├── zTreeObj.removeNode.html │ │ │ ├── zTreeObj.selectNode.html │ │ │ ├── zTreeObj.setChkDisabled.html │ │ │ ├── zTreeObj.setEditable.html │ │ │ ├── zTreeObj.setting.html │ │ │ ├── zTreeObj.showNode.html │ │ │ ├── zTreeObj.showNodes.html │ │ │ ├── zTreeObj.transformToArray.html │ │ │ ├── zTreeObj.transformTozTreeNodes.html │ │ │ └── zTreeObj.updateNode.html │ │ ├── css │ │ ├── awesomeStyle │ │ │ ├── awesome.css │ │ │ ├── awesome.less │ │ │ ├── fa.less │ │ │ └── img │ │ │ │ └── loading.gif │ │ ├── demo.css │ │ ├── metroStyle │ │ │ ├── img │ │ │ │ ├── line_conn.png │ │ │ │ ├── loading.gif │ │ │ │ ├── metro.gif │ │ │ │ └── metro.png │ │ │ └── metroStyle.css │ │ └── zTreeStyle │ │ │ ├── img │ │ │ ├── diy │ │ │ │ ├── 1_close.png │ │ │ │ ├── 1_open.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── line_conn.gif │ │ │ ├── loading.gif │ │ │ ├── zTreeStandard.gif │ │ │ └── zTreeStandard.png │ │ │ └── zTreeStyle.css │ │ ├── demo │ │ ├── cn │ │ │ ├── asyncData │ │ │ │ ├── getNodes.php │ │ │ │ └── getNodesForBigData.php │ │ │ ├── bigdata │ │ │ │ ├── common.html │ │ │ │ ├── diy_async.html │ │ │ │ └── page.html │ │ │ ├── core │ │ │ │ ├── async.html │ │ │ │ ├── async_fun.html │ │ │ │ ├── click.html │ │ │ │ ├── custom_font.html │ │ │ │ ├── custom_icon.html │ │ │ │ ├── custom_iconSkin.html │ │ │ │ ├── expand.html │ │ │ │ ├── noicon.html │ │ │ │ ├── noline.html │ │ │ │ ├── otherMouse.html │ │ │ │ ├── searchNodes.html │ │ │ │ ├── simpleData.html │ │ │ │ ├── standardData.html │ │ │ │ ├── update_fun.html │ │ │ │ └── url.html │ │ │ ├── excheck │ │ │ │ ├── checkbox.html │ │ │ │ ├── checkbox_chkDisabled.html │ │ │ │ ├── checkbox_count.html │ │ │ │ ├── checkbox_fun.html │ │ │ │ ├── checkbox_halfCheck.html │ │ │ │ ├── checkbox_nocheck.html │ │ │ │ ├── radio.html │ │ │ │ ├── radio_chkDisabled.html │ │ │ │ ├── radio_fun.html │ │ │ │ ├── radio_halfCheck.html │ │ │ │ └── radio_nocheck.html │ │ │ ├── exedit │ │ │ │ ├── async_edit.html │ │ │ │ ├── drag.html │ │ │ │ ├── drag_fun.html │ │ │ │ ├── drag_super.html │ │ │ │ ├── edit.html │ │ │ │ ├── edit_fun.html │ │ │ │ ├── edit_super.html │ │ │ │ └── multiTree.html │ │ │ ├── exhide │ │ │ │ ├── checkbox.html │ │ │ │ ├── common.html │ │ │ │ └── radio.html │ │ │ ├── index.html │ │ │ └── super │ │ │ │ ├── asyncForAll.html │ │ │ │ ├── awesome.html │ │ │ │ ├── checkbox_radio.html │ │ │ │ ├── diydom.html │ │ │ │ ├── dragWithOther.html │ │ │ │ ├── left_menu.html │ │ │ │ ├── left_menuForOutLook.gif │ │ │ │ ├── left_menuForOutLook.html │ │ │ │ ├── left_menuForOutLook.png │ │ │ │ ├── metro.html │ │ │ │ ├── oneclick.html │ │ │ │ ├── oneroot.html │ │ │ │ ├── rightClickMenu.html │ │ │ │ ├── select_menu.html │ │ │ │ ├── select_menu_checkbox.html │ │ │ │ ├── select_menu_radio.html │ │ │ │ └── singlepath.html │ │ └── en │ │ │ ├── asyncData │ │ │ ├── getNodes.php │ │ │ └── getNodesForBigData.php │ │ │ ├── bigdata │ │ │ ├── common.html │ │ │ ├── diy_async.html │ │ │ └── page.html │ │ │ ├── core │ │ │ ├── async.html │ │ │ ├── async_fun.html │ │ │ ├── click.html │ │ │ ├── custom_font.html │ │ │ ├── custom_icon.html │ │ │ ├── custom_iconSkin.html │ │ │ ├── expand.html │ │ │ ├── noicon.html │ │ │ ├── noline.html │ │ │ ├── otherMouse.html │ │ │ ├── searchNodes.html │ │ │ ├── simpleData.html │ │ │ ├── standardData.html │ │ │ ├── update_fun.html │ │ │ └── url.html │ │ │ ├── excheck │ │ │ ├── checkbox.html │ │ │ ├── checkbox_chkDisabled.html │ │ │ ├── checkbox_count.html │ │ │ ├── checkbox_fun.html │ │ │ ├── checkbox_halfCheck.html │ │ │ ├── checkbox_nocheck.html │ │ │ ├── radio.html │ │ │ ├── radio_chkDisabled.html │ │ │ ├── radio_fun.html │ │ │ ├── radio_halfCheck.html │ │ │ └── radio_nocheck.html │ │ │ ├── exedit │ │ │ ├── async_edit.html │ │ │ ├── drag.html │ │ │ ├── drag_fun.html │ │ │ ├── drag_super.html │ │ │ ├── edit.html │ │ │ ├── edit_fun.html │ │ │ ├── edit_super.html │ │ │ └── multiTree.html │ │ │ ├── exhide │ │ │ ├── checkbox.html │ │ │ ├── common.html │ │ │ └── radio.html │ │ │ ├── index.html │ │ │ └── super │ │ │ ├── asyncForAll.html │ │ │ ├── awesome.html │ │ │ ├── checkbox_radio.html │ │ │ ├── diydom.html │ │ │ ├── dragWithOther.html │ │ │ ├── left_menu.html │ │ │ ├── left_menuForOutLook.gif │ │ │ ├── left_menuForOutLook.html │ │ │ ├── left_menuForOutLook.png │ │ │ ├── metro.html │ │ │ ├── oneclick.html │ │ │ ├── oneroot.html │ │ │ ├── rightClickMenu.html │ │ │ ├── select_menu.html │ │ │ ├── select_menu_checkbox.html │ │ │ ├── select_menu_radio.html │ │ │ ├── singlepath.html │ │ │ └── ztree.html │ │ ├── js │ │ ├── jquery-1.4.4.min.js │ │ ├── jquery.ztree.all.js │ │ ├── jquery.ztree.all.min.js │ │ ├── jquery.ztree.core.js │ │ ├── jquery.ztree.core.min.js │ │ ├── jquery.ztree.excheck.js │ │ ├── jquery.ztree.excheck.min.js │ │ ├── jquery.ztree.exedit.js │ │ ├── jquery.ztree.exedit.min.js │ │ ├── jquery.ztree.exhide.js │ │ └── jquery.ztree.exhide.min.js │ │ ├── log v3.x.txt │ │ └── zTree.v3.jquery.json └── scss │ ├── _axboot-inc.scss │ ├── axboot-01.scss │ ├── axboot-02.scss │ ├── axboot-03.scss │ ├── axboot.scss │ ├── modules │ ├── _ax-body.scss │ ├── _ax-btns.scss │ ├── _ax-form.scss │ ├── _ax-layout.scss │ ├── _ax-markdown.scss │ ├── _ax-tabs.scss │ ├── _ax5ui.scss │ ├── _bootstrap-custom.scss │ ├── _font-icon.scss │ ├── _fonts.scss │ ├── _keyframe.scss │ ├── _mixin.scss │ └── _var.scss │ ├── pages │ ├── base.scss │ ├── dashboard.scss │ ├── dev-tools.scss │ ├── error-page.scss │ ├── frame-set.scss │ ├── login.scss │ └── modal-base.scss │ └── plugins │ └── _ztree.scss ├── axboot.config.js ├── bower.json ├── gulpfile.js ├── html ├── _samples │ ├── assets │ │ └── ax-table.png │ ├── ax5ui-sample.html │ ├── basic.html │ ├── grid-form.html │ ├── grid-modal.html │ ├── grid-tabform.html │ ├── horizontal-layout.html │ ├── modal.html │ ├── page-structure.html │ ├── tab-layout.html │ └── vertical-layout.html ├── common │ ├── _fileBrowser.jsp │ ├── not-authorized.html │ └── zipcode.html ├── dashboard.html ├── js │ ├── topMenu.js │ └── window_instance.js ├── json │ ├── SCRIPT_SESSION.json │ ├── api_getAllByMap.json │ ├── api_programs.json │ ├── commonCodeMgmt.json │ ├── commonCodes_menu.json │ ├── commonCodes_users.json │ ├── errorLogMgmt.json │ ├── gridNoRecord.json │ ├── menuMgmt.json │ ├── programMgmt.json │ └── userMgmt.json ├── login.html ├── main.html └── system │ ├── system-auth-user.html │ ├── system-config-common-code.html │ ├── system-config-menu.html │ ├── system-config-program.html │ └── system-operation-log.html ├── index.html └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "assets/plugins" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .idea 3 | node_modules/ 4 | rebel.xml 5 | .rebel.* 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ax-boot-html 2 | 3 | 본 저장소는 https://github.com/axboot/ax-boot-framework의 프론트앤드 부분만을 별도로 정리해둔 저장소입니다. 4 | 5 | ## 실행방법 6 | 터미널 창에 다음의 커멘드를 순서대로 입력하세요. npm 명령어가 실행되지 않는다면 nodejs를 설치하셔야 합니다. 7 | ``` sh 8 | npm install 9 | npm start 10 | ``` 11 | 12 | npm start(node app.js) 명령어 실행 후 브라우저에서 확인 13 | 14 | # AXBoot Framework 15 | > Full Stack Web Development Framework 16 | 17 | ![preview axboot](https://github.com/axboot/ax-boot-themes/raw/master/assets/arongi-1.png) 18 | 19 | ![preview axboot](https://github.com/axboot/ax-boot-themes/raw/master/assets/cocker-2.png) 20 | 21 | ![preview axboot](https://github.com/axboot/ax-boot-themes/raw/master/assets/doberman-3.png) -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | var express = require('express'); 2 | var app = express(); 3 | var path = require('path'); 4 | 5 | app.use('/', express.static(__dirname + "/")); 6 | app.use('/html', express.static(__dirname + "/html")); 7 | app.use('/assets', express.static(__dirname + "/assets")); 8 | 9 | app.get('/', function (req, res) { 10 | res.sendFile(path.join(__dirname, '/index.html')); 11 | }); 12 | 13 | app.listen(4000, function () { 14 | console.log("Listening on port 4000"); 15 | }); -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/favicon.ico -------------------------------------------------------------------------------- /assets/images/devtools-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/images/devtools-logo.png -------------------------------------------------------------------------------- /assets/images/header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/images/header-logo.png -------------------------------------------------------------------------------- /assets/images/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/images/login-bg.jpg -------------------------------------------------------------------------------- /assets/images/login-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/images/login-logo.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/ztree/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/images/ztree/line_conn.gif -------------------------------------------------------------------------------- /assets/images/ztree/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/images/ztree/line_conn.png -------------------------------------------------------------------------------- /assets/images/ztree/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/images/ztree/loading.gif -------------------------------------------------------------------------------- /assets/images/ztree/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/images/ztree/metro.gif -------------------------------------------------------------------------------- /assets/images/ztree/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/images/ztree/metro.png -------------------------------------------------------------------------------- /assets/js/axboot/src/modules/requireSession.js: -------------------------------------------------------------------------------- 1 | axboot.requireSession = function (_cookieName) { 2 | if (!ax5.util.getCookie(_cookieName)) { 3 | if (window.opener) { 4 | window.close(); 5 | window.opener.top.location.href = "/"; 6 | } else if (top != window) { 7 | top.location.href = "/"; 8 | } 9 | } 10 | }; -------------------------------------------------------------------------------- /assets/js/view/_samples/page-structure.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by tom on 2016. 9. 27.. 3 | */ 4 | 5 | $(document.body).ready(function () { 6 | $(document.body).find("pre").addClass("prettyprint linenums lang-jsp"); 7 | if (window["prettyPrint"]) window["prettyPrint"](); 8 | }); -------------------------------------------------------------------------------- /assets/plugins-fix/light-bootstrap-dashboard/scss/lbd/_mixins.scss: -------------------------------------------------------------------------------- 1 | //Utilities 2 | 3 | @import "mixins/transparency"; 4 | @import "mixins/vendor-prefixes"; 5 | 6 | 7 | //Components 8 | 9 | @import "mixins/buttons"; 10 | @import "mixins/inputs"; 11 | @import "mixins/labels"; 12 | @import "mixins/tabs"; 13 | 14 | @import "mixins/navbars"; 15 | @import "mixins/icons"; 16 | @import "mixins/social-buttons"; 17 | 18 | @import "mixins/morphing-buttons"; 19 | 20 | @import "mixins/cards"; 21 | 22 | @import "mixins/chartist"; -------------------------------------------------------------------------------- /assets/plugins-fix/light-bootstrap-dashboard/scss/lbd/mixins/_cards.scss: -------------------------------------------------------------------------------- 1 | @mixin filter($color){ 2 | @if $color == #FFFFFF{ 3 | background-color: rgba($color,.91); 4 | } @else { 5 | background-color: rgba($color,.69); 6 | } 7 | } 8 | 9 | -------------------------------------------------------------------------------- /assets/plugins-fix/light-bootstrap-dashboard/scss/lbd/mixins/_icons.scss: -------------------------------------------------------------------------------- 1 | @mixin icon-background ($icon-url){ 2 | background-image : url($icon-url); 3 | 4 | } 5 | 6 | @mixin icon-shape ($size, $padding, $border-radius) { 7 | height: $size; 8 | width: $size; 9 | padding: $padding; 10 | border-radius: $border-radius; 11 | display: inline-table; 12 | 13 | } -------------------------------------------------------------------------------- /assets/plugins-fix/light-bootstrap-dashboard/scss/lbd/mixins/_inputs.scss: -------------------------------------------------------------------------------- 1 | @mixin input-size($padding-vertical, $padding-horizontal, $height){ 2 | padding: $padding-vertical $padding-horizontal; 3 | height: $height; 4 | } 5 | 6 | @mixin placeholder($color, $opacity){ 7 | color: $color; 8 | @include opacity(1); 9 | } 10 | 11 | @mixin light-form(){ 12 | border-radius: 0; 13 | border:0; 14 | padding: 0; 15 | background-color: transparent; 16 | 17 | } -------------------------------------------------------------------------------- /assets/plugins-fix/light-bootstrap-dashboard/scss/lbd/mixins/_labels.scss: -------------------------------------------------------------------------------- 1 | @mixin label-style(){ 2 | padding: $padding-label-vertical $padding-label-horizontal; 3 | border: 1px solid $default-color; 4 | border-radius: $border-radius-small; 5 | color: $default-color; 6 | font-weight: $font-weight-semi; 7 | font-size: $font-size-small; 8 | text-transform: uppercase; 9 | display: inline-block; 10 | vertical-align: middle; 11 | } 12 | 13 | @mixin label-color($color){ 14 | border-color: $color; 15 | color: $color; 16 | } 17 | @mixin label-color-fill($color){ 18 | border-color: $color; 19 | color: $white-color; 20 | background-color: $color; 21 | } -------------------------------------------------------------------------------- /assets/plugins-fix/light-bootstrap-dashboard/scss/lbd/mixins/_navbars.scss: -------------------------------------------------------------------------------- 1 | @mixin navbar-color($color){ 2 | background-color: $color; 3 | } 4 | 5 | @mixin center-item(){ 6 | left: 0; 7 | right: 0; 8 | margin-right: auto; 9 | margin-left: auto; 10 | position: absolute; 11 | } -------------------------------------------------------------------------------- /assets/plugins-fix/light-bootstrap-dashboard/scss/lbd/mixins/_tabs.scss: -------------------------------------------------------------------------------- 1 | @mixin pill-style($color){ 2 | border: 1px solid $color; 3 | color: $color; 4 | } -------------------------------------------------------------------------------- /assets/plugins-fix/light-bootstrap-dashboard/scss/lbd/mixins/_transparency.scss: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | @mixin opacity($opacity) { 4 | opacity: $opacity; 5 | // IE8 filter 6 | $opacity-ie: ($opacity * 100); 7 | filter: #{alpha(opacity=$opacity-ie)}; 8 | } 9 | 10 | @mixin black-filter($opacity){ 11 | top: 0; 12 | left: 0; 13 | height: 100%; 14 | width: 100%; 15 | position: absolute; 16 | background-color: rgba(17,17,17,$opacity); 17 | display: block; 18 | content: ""; 19 | z-index: 1; 20 | } -------------------------------------------------------------------------------- /assets/plugins-fix/light-bootstrap-dashboard/scss/light-bootstrap-dashboard.scss: -------------------------------------------------------------------------------- 1 | $sidebar-width: 100%; 2 | 3 | @import "lbd/variables"; 4 | @import "lbd/mixins"; 5 | 6 | @import "lbd/typography"; 7 | 8 | // Core CSS 9 | @import "lbd/misc"; 10 | @import "lbd/sidebar-and-main-panel"; 11 | @import "lbd/buttons"; 12 | @import "lbd/inputs"; 13 | 14 | @import "lbd/alerts"; 15 | @import "lbd/tables"; 16 | 17 | @import "lbd/checkbox-radio-switch"; 18 | @import "lbd/navbars"; 19 | @import "lbd/footers"; 20 | 21 | // Fancy Stuff 22 | @import "lbd/dropdown"; 23 | @import "lbd/cards"; 24 | @import "lbd/chartist"; 25 | @import "lbd/responsive"; 26 | -------------------------------------------------------------------------------- /assets/plugins-fix/prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /assets/plugins-fix/prettify/skins/sons-of-obsidian.css: -------------------------------------------------------------------------------- 1 | .str{color:#ec7600}.kwd{color:#93c763}.com{color:#66747b}.typ{color:#678cb1}.lit{color:#facd22}.pun{color:#f1f2f3}.pln{color:#f1f2f3}.tag{color:#8ac763}.atn{color:#e0e2e4}.atv{color:#ec7600}.dec{color:purple}pre.prettyprint{border:0 solid #888}ol.linenums{margin-top:0;margin-bottom:0}.prettyprint{background:#000}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{color:#555;list-style-type:decimal}li.L1,li.L3,li.L5,li.L7,li.L9{background:#111}@media print{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun{color:#440}.pln{color:#000}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}} -------------------------------------------------------------------------------- /assets/plugins/ax5core/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5core", 3 | "version": "1.3.44", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "`ax5core` is a collection of utility functions that have been designed for use in ax5ui", 8 | "main": "dist/ax5core.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "ax5core", 16 | "javascript ui" 17 | ], 18 | "dependencies": { 19 | "jquery": "^1.11.0" 20 | }, 21 | "license": "MIT", 22 | "homepage": "ax5.io" 23 | } -------------------------------------------------------------------------------- /assets/plugins/ax5core/src/ax5-def.js: -------------------------------------------------------------------------------- 1 | ax5.def = {}; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-autocomplete/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-autocomplete", 3 | "version": "1.3.44", 4 | "description": "A autocomplete plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5autocomplete.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "autocomplete", 16 | "ax5ui-autocomplete", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "bootstrap": "^3.3.6" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-autocomplete/src/ax5autocomplete.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright (c) 2016. tom@axisj.com 3 | * - github.com/thomasjang 4 | * - www.axisj.com 5 | */ 6 | 7 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 8 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 9 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 10 | 11 | @import "scss/ax5autocomplete_variables"; 12 | @import "scss/ax5autocomplete"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-binder/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-binder", 3 | "version": "1.3.44", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "Simple 2way binder plugin that works with Bootstrap & jQuery", 8 | "main": "dist/ax5binder.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "binder", 16 | "ax5ui-binder", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "bootstrap": "^3.3.6" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-calendar/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-calendar", 3 | "version": "1.3.44", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "", 8 | "main": "dist/ax5calendar.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "calendar", 16 | "ax5ui-calendar", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "bootstrap": "^3.3.6" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-calendar/src/ax5calendar.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5calendar_variables"; 6 | @import "scss/ax5calendar"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-combobox/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-combobox", 3 | "version": "1.3.44", 4 | "description": "A combobox plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5combobox.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "combobox", 16 | "ax5ui-combobox", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "bootstrap": "^3.3.6" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-combobox/src/ax5combobox.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5combobox_variables"; 6 | @import "scss/ax5combobox"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-dialog/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-dialog", 3 | "version": "1.3.44", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "", 8 | "main": "dist/ax5dialog.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "dialog", 16 | "ax5ui-dialog", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "bootstrap": "^3.3.6" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-dialog/src/ax5dialog.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5dialog_variables"; 6 | @import "scss/ax5dialog"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-formatter/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-formatter", 3 | "version": "1.3.44", 4 | "description": "A formatter plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5formatter.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "formatter", 16 | "ax5ui-formatter", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "bootstrap": "^3.3.6" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-formatter/dist/ax5formatter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ax5ui-formatter/dist/ax5formatter.css -------------------------------------------------------------------------------- /assets/plugins/ax5ui-formatter/src/ax5formatter.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5formatter_variables"; 6 | @import "scss/ax5formatter"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-formatter/src/scss/_ax5formatter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ax5ui-formatter/src/scss/_ax5formatter.scss -------------------------------------------------------------------------------- /assets/plugins/ax5ui-formatter/src/scss/_ax5formatter_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ax5ui-formatter/src/scss/_ax5formatter_variables.scss -------------------------------------------------------------------------------- /assets/plugins/ax5ui-grid/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-grid", 3 | "version": "1.3.44", 4 | "description": "A grid plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5grid.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "grid", 16 | "ax5ui-grid", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "bootstrap": "^3.3.6", 23 | "ax5ui-formatter": ">=0.5.3", 24 | "ax5ui-calendar": ">=0.8.8", 25 | "ax5ui-picker": ">=0.7.11" 26 | }, 27 | "license": "MIT", 28 | "homepage": "ax5.io" 29 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-grid/src/ax5grid.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5grid_variables"; 6 | @import "scss/ax5grid"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-grid/src/modules/ax5grid-formatter.js: -------------------------------------------------------------------------------- 1 | // ax5.ui.grid.formatter 2 | (function () { 3 | 4 | var GRID = ax5.ui.grid; 5 | var U = ax5.util; 6 | var money = function () { 7 | return U.number(this.value, {"money":true}); 8 | }; 9 | 10 | GRID.formatter = { 11 | money: money 12 | }; 13 | 14 | })(); -------------------------------------------------------------------------------- /assets/plugins/ax5ui-layout/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-layout", 3 | "version": "1.3.44", 4 | "description": "A mediaViewer plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5layout.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "ax5ui-layout", 16 | "javascript ui" 17 | ], 18 | "dependencies": { 19 | "jquery": "^1.11.0", 20 | "ax5core": ">=1.3.0", 21 | "bootstrap": "^3.3.6" 22 | }, 23 | "license": "MIT", 24 | "homepage": "ax5.io" 25 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-layout/src/ax5layout.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Copyright (c) 2016. tom@axisj.com 3 | * - github.com/thomasjang 4 | * - www.axisj.com 5 | */ 6 | 7 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 8 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 9 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 10 | 11 | @import "scss/ax5layout_variables"; 12 | @import "scss/ax5layout"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-mask/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-mask", 3 | "version": "1.3.44", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "A mask jQuery plugin that works with Bootstrap", 8 | "main": "dist/ax5mask.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "mask", 16 | "ax5ui-mask" 17 | ], 18 | "dependencies": { 19 | "jquery": "^1.11.0", 20 | "ax5core": ">=1.3.0" 21 | }, 22 | "license": "MIT", 23 | "homepage": "ax5.io" 24 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-mask/src/ax5mask.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5mask_variables"; 6 | @import "scss/ax5mask"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-mask/src/scss/_ax5mask_variables.scss: -------------------------------------------------------------------------------- 1 | $ax5mask-z-index: 1000 !default; 2 | $ax5mask-bg-opacity: 0.6 !default; 3 | 4 | $ax5mask-bg: #000 !default; 5 | $ax5mask-text-color: #fff !default; 6 | $ax5mask-text-shadow:0px 1px 0px #000 !default; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-media-viewer/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-media-viewer", 3 | "version": "1.3.44", 4 | "description": "A mediaViewer plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5media-viewer.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "slider", 16 | "gallery", 17 | "ax5ui-media-viewer", 18 | "javascript ui" 19 | ], 20 | "dependencies": { 21 | "jquery": "^1.11.0", 22 | "ax5core": ">=1.3.0", 23 | "bootstrap": "^3.3.6" 24 | }, 25 | "license": "MIT", 26 | "homepage": "ax5.io" 27 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-media-viewer/deploy.sh: -------------------------------------------------------------------------------- 1 | VERSION=`jq '.version' package.json | sed -e 's/^"//' -e 's/"$//'` 2 | 3 | git tag -a $VERSION -m $VERSION || true 4 | 5 | git push origin HEAD:master --follow-tags --force || true 6 | 7 | npm publish || true 8 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-media-viewer/src/ax5media-viewer.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5media-viewer_variables"; 6 | @import "scss/ax5media-viewer"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-media-viewer/test/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-tester", 3 | "dependencies": { 4 | "jquery": "^1.11.0", 5 | "ax5core": ">=1.3.0", 6 | "bootstrap": "^3.3.6", 7 | "font-awesome": "" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-menu/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-menu", 3 | "version": "1.3.44", 4 | "description": "A menu plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5menu.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "formatter", 16 | "ax5ui-menu", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "bootstrap": "^3.3.6" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-menu/src/ax5menu.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5menu_variables"; 6 | @import "scss/ax5menu"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-modal/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-modal", 3 | "version": "1.3.44", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "", 8 | "main": "dist/ax5modal.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "modal", 16 | "ax5ui-modal", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "bootstrap": "^3.3.6" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-modal/src/ax5modal.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5modal_variables"; 6 | @import "scss/ax5modal"; 7 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-picker/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-picker", 3 | "version": "1.3.44", 4 | "description": "A picker plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5picker.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "picker", 16 | "ax5ui-picker", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "ax5ui-calendar": ">=1.3.0", 23 | "ax5ui-formatter": ">=1.3.0", 24 | "bootstrap": "^3.3.6" 25 | }, 26 | "license": "MIT", 27 | "homepage": "ax5.io" 28 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-picker/src/ax5picker.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5picker_variables"; 6 | @import "scss/ax5picker"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-select/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-select", 3 | "version": "1.3.44", 4 | "description": "A select plugin that works with Bootstrap & jQuery", 5 | "authors": [ 6 | "ThomasJ " 7 | ], 8 | "main": "dist/ax5select.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "select", 16 | "ax5ui-select", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "bootstrap": "^3.3.6" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-select/src/ax5select.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5select_variables"; 6 | @import "scss/ax5select"; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5ui-toast", 3 | "version": "1.3.44", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "", 8 | "main": "dist/ax5toast.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "toast", 16 | "ax5ui-toast", 17 | "javascript ui" 18 | ], 19 | "dependencies": { 20 | "jquery": "^1.11.0", 21 | "ax5core": ">=1.3.0", 22 | "bootstrap": "^3.3.6" 23 | }, 24 | "license": "MIT", 25 | "homepage": "ax5.io" 26 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/ax5core/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ax5core", 3 | "version": "1.2.4", 4 | "authors": [ 5 | "ThomasJ " 6 | ], 7 | "description": "`ax5core` is a collection of utility functions that have been designed for use in ax5ui", 8 | "main": "dist/ax5core.js", 9 | "keywords": [ 10 | "bootstrap", 11 | "jquery", 12 | "ax5ui", 13 | "plugin", 14 | "bootstrap jQuery plugins", 15 | "ax5core", 16 | "javascript ui" 17 | ], 18 | "dependencies": { 19 | "jquery": "^1.11.0" 20 | }, 21 | "license": "MIT", 22 | "homepage": "ax5.io" 23 | } 24 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/ax5core/src/ax5-def.js: -------------------------------------------------------------------------------- 1 | ax5.def = {}; -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ax5ui-toast/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery", 3 | "main": "dist/jquery.js", 4 | "license": "MIT", 5 | "ignore": [ 6 | "package.json" 7 | ], 8 | "keywords": [ 9 | "jquery", 10 | "javascript", 11 | "browser", 12 | "library" 13 | ] 14 | } -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\?/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./attributes/val", 4 | "./attributes/attr", 5 | "./attributes/prop", 6 | "./attributes/classes" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | } ); 12 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // Match a standalone tag 4 | return ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ ); 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | function addGetHookIf( conditionFn, hookFn ) { 4 | 5 | // Define the hook, we'll check on the first run if it's really needed. 6 | return { 7 | get: function() { 8 | if ( conditionFn() ) { 9 | 10 | // Hook not needed (or it's not possible to use it due 11 | // to missing dependency), remove it. 12 | delete this.get; 13 | return; 14 | } 15 | 16 | // Hook needed; redefine it so that the support test is not executed again. 17 | return ( this.get = hookFn ).apply( this, arguments ); 18 | } 19 | }; 20 | } 21 | 22 | return addGetHookIf; 23 | 24 | } ); 25 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | 5 | // css is assumed 6 | ], function( jQuery ) { 7 | 8 | return function( elem, el ) { 9 | 10 | // isHidden might be called from jQuery#filter function; 11 | // in that case, element will be second argument 12 | elem = el || elem; 13 | return jQuery.css( elem, "display" ) === "none" || 14 | !jQuery.contains( elem.ownerDocument, elem ); 15 | }; 16 | } ); 17 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^margin/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // A method for quickly swapping in/out CSS properties to get correct calculations. 4 | return function( elem, options, callback, args ) { 5 | var ret, name, 6 | old = {}; 7 | 8 | // Remember the old values, and insert the new ones 9 | for ( name in options ) { 10 | old[ name ] = elem.style[ name ]; 11 | elem.style[ name ] = options[ name ]; 12 | } 13 | 14 | ret = callback.apply( elem, args || [] ); 15 | 16 | // Revert the old values 17 | for ( name in options ) { 18 | elem.style[ name ] = old[ name ]; 19 | } 20 | 21 | return ret; 22 | }; 23 | 24 | } ); 25 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/data/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/document", 3 | "../var/support" 4 | ], function( document, support ) { 5 | 6 | ( function() { 7 | var div = document.createElement( "div" ); 8 | 9 | // Support: IE<9 10 | support.deleteExpando = true; 11 | try { 12 | delete div.test; 13 | } catch ( e ) { 14 | support.deleteExpando = false; 15 | } 16 | 17 | // Null elements to avoid leaks in IE. 18 | div = null; 19 | } )(); 20 | 21 | return support; 22 | 23 | } ); 24 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | 5 | /** 6 | * Determines whether an object can have data 7 | */ 8 | return function( elem ) { 9 | var noData = jQuery.noData[ ( elem.nodeName + " " ).toLowerCase() ], 10 | nodeType = +elem.nodeType || 1; 11 | 12 | // Do not set data on non-element DOM nodes because it will not be cleared (#8335). 13 | return nodeType !== 1 && nodeType !== 9 ? 14 | false : 15 | 16 | // Nodes accept data unless otherwise specified; rejection can be conditional 17 | !noData || noData !== true && elem.getAttribute( "classid" ) === noData; 18 | }; 19 | 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | jQuery.expr.filters.animated = function( elem ) { 8 | return jQuery.grep( jQuery.timers, function( fn ) { 9 | return elem === fn.elem; 10 | } ).length; 11 | }; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../event" 4 | ], function( jQuery ) { 5 | 6 | // Attach a bunch of functions for handling common AJAX events 7 | jQuery.each( [ 8 | "ajaxStart", 9 | "ajaxStop", 10 | "ajaxComplete", 11 | "ajaxError", 12 | "ajaxSuccess", 13 | "ajaxSend" 14 | ], function( i, type ) { 15 | jQuery.fn[ type ] = function( fn ) { 16 | return this.on( type, fn ); 17 | }; 18 | } ); 19 | 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/exports/global.js: -------------------------------------------------------------------------------- 1 | var 2 | 3 | // Map over jQuery in case of overwrite 4 | _jQuery = window.jQuery, 5 | 6 | // Map over the $ in case of overwrite 7 | _$ = window.$; 8 | 9 | jQuery.noConflict = function( deep ) { 10 | if ( window.$ === jQuery ) { 11 | window.$ = _$; 12 | } 13 | 14 | if ( deep && window.jQuery === jQuery ) { 15 | window.jQuery = _jQuery; 16 | } 17 | 18 | return jQuery; 19 | }; 20 | 21 | // Expose jQuery and $ identifiers, even in 22 | // AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557) 23 | // and CommonJS for browser emulators (#13566) 24 | if ( !noGlobal ) { 25 | window.jQuery = window.$ = jQuery; 26 | } 27 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../ajax" 3 | ], function( jQuery ) { 4 | 5 | jQuery._evalUrl = function( url ) { 6 | return jQuery.ajax( { 7 | url: url, 8 | 9 | // Make this explicit, since user can override this through ajaxSetup (#11264) 10 | type: "GET", 11 | dataType: "script", 12 | cache: true, 13 | async: false, 14 | global: false, 15 | "throws": true 16 | } ); 17 | }; 18 | 19 | return jQuery._evalUrl; 20 | 21 | } ); 22 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/manipulation/createSafeFragment.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./var/nodeNames" 3 | ], function( nodeNames ) { 4 | 5 | function createSafeFragment( document ) { 6 | var list = nodeNames.split( "|" ), 7 | safeFrag = document.createDocumentFragment(); 8 | 9 | if ( safeFrag.createElement ) { 10 | while ( list.length ) { 11 | safeFrag.createElement( 12 | list.pop() 13 | ); 14 | } 15 | } 16 | return safeFrag; 17 | } 18 | 19 | return createSafeFragment; 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // Mark scripts as having already been evaluated 6 | function setGlobalEval( elems, refElements ) { 7 | var elem, 8 | i = 0; 9 | for ( ; ( elem = elems[ i ] ) != null; i++ ) { 10 | jQuery._data( 11 | elem, 12 | "globalEval", 13 | !refElements || jQuery._data( refElements[ i ], "globalEval" ) 14 | ); 15 | } 16 | } 17 | 18 | return setGlobalEval; 19 | } ); 20 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/manipulation/var/nodeNames.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return "abbr|article|aside|audio|bdi|canvas|data|datalist|" + 3 | "details|dialog|figcaption|figure|footer|header|hgroup|main|" + 4 | "mark|meter|nav|output|picture|progress|section|summary|template|time|video"; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^(?:checkbox|radio)$/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/manipulation/var/rleadingWhitespace.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^\s+/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^$|\/(?:java|ecma)script/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /<([\w:-]+)/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "../external/sizzle/dist/sizzle" 4 | ], function( jQuery, Sizzle ) { 5 | 6 | jQuery.find = Sizzle; 7 | jQuery.expr = Sizzle.selectors; 8 | jQuery.expr[ ":" ] = jQuery.expr.pseudos; 9 | jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; 10 | jQuery.text = Sizzle.getText; 11 | jQuery.isXMLDoc = Sizzle.isXML; 12 | jQuery.contains = Sizzle.contains; 13 | 14 | } ); 15 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | 5 | return function( elem, dir, until ) { 6 | var matched = [], 7 | truncate = until !== undefined; 8 | 9 | while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { 10 | if ( elem.nodeType === 1 ) { 11 | if ( truncate && jQuery( elem ).is( until ) ) { 12 | break; 13 | } 14 | matched.push( elem ); 15 | } 16 | } 17 | return matched; 18 | }; 19 | 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | } ); 7 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | return function( n, elem ) { 4 | var matched = []; 5 | 6 | for ( ; n; n = n.nextSibling ) { 7 | if ( n.nodeType === 1 && n !== elem ) { 8 | matched.push( n ); 9 | } 10 | } 11 | 12 | return matched; 13 | }; 14 | 15 | } ); 16 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.concat; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./document" 3 | ], function( document ) { 4 | return document.documentElement; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.indexOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.push; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/pnum" 3 | ], function( pnum ) { 4 | 5 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\S+/g ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.slice; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // All support tests are defined in their respective modules. 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/ax5ui-toast/src/ax5toast.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss"; 2 | @import "node_modules/bourbon/app/assets/stylesheets/_bourbon.scss"; 3 | @import "node_modules/ax5core/src/_ax5-ui-mixin.scss"; 4 | 5 | @import "scss/ax5toast_variables"; 6 | @import "scss/ax5toast"; -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/javascripts/bootstrap-sprockets.js: -------------------------------------------------------------------------------- 1 | //= require ./bootstrap/transition 2 | //= require ./bootstrap/alert 3 | //= require ./bootstrap/button 4 | //= require ./bootstrap/carousel 5 | //= require ./bootstrap/collapse 6 | //= require ./bootstrap/dropdown 7 | //= require ./bootstrap/modal 8 | //= require ./bootstrap/tab 9 | //= require ./bootstrap/affix 10 | //= require ./bootstrap/scrollspy 11 | //= require ./bootstrap/tooltip 12 | //= require ./bootstrap/popover 13 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/_bootstrap-compass.scss: -------------------------------------------------------------------------------- 1 | @function twbs-font-path($path) { 2 | @return font-url($path, true); 3 | } 4 | 5 | @function twbs-image-path($path) { 6 | @return image-url($path, true); 7 | } 8 | 9 | $bootstrap-sass-asset-helper: true; 10 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/_bootstrap-sprockets.scss: -------------------------------------------------------------------------------- 1 | @function twbs-font-path($path) { 2 | @return font-path($path); 3 | } 4 | 5 | @function twbs-image-path($path) { 6 | @return image-path($path); 7 | } 8 | 9 | $bootstrap-sass-asset-helper: true; 10 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/_wells.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: $well-bg; 12 | border: 1px solid $well-border; 13 | border-radius: $border-radius-base; 14 | @include box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: $border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: $border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_alerts.scss: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | @mixin alert-variant($background, $border, $text-color) { 4 | background-color: $background; 5 | border-color: $border; 6 | color: $text-color; 7 | 8 | hr { 9 | border-top-color: darken($border, 5%); 10 | } 11 | .alert-link { 12 | color: darken($text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | // [converter] $parent hack 4 | @mixin bg-variant($parent, $color) { 5 | #{$parent} { 6 | background-color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | background-color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | @mixin border-top-radius($radius) { 4 | border-top-right-radius: $radius; 5 | border-top-left-radius: $radius; 6 | } 7 | @mixin border-right-radius($radius) { 8 | border-bottom-right-radius: $radius; 9 | border-top-right-radius: $radius; 10 | } 11 | @mixin border-bottom-radius($radius) { 12 | border-bottom-right-radius: $radius; 13 | border-bottom-left-radius: $radius; 14 | } 15 | @mixin border-left-radius($radius) { 16 | border-bottom-left-radius: $radius; 17 | border-top-left-radius: $radius; 18 | } 19 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_center-block.scss: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | @mixin center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_hide-text.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (has been removed in v4) 10 | @mixin hide-text() { 11 | font: 0/0 a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | @mixin text-hide() { 20 | @include hide-text; 21 | } 22 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_labels.scss: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | @mixin label-variant($color) { 4 | background-color: $color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken($color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: #e5e5e5) { 6 | height: 1px; 7 | margin: (($line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: $color; 10 | } 11 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | @mixin navbar-vertical-align($element-height) { 7 | margin-top: (($navbar-height - $element-height) / 2); 8 | margin-bottom: (($navbar-height - $element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_opacity.scss: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | @mixin opacity($opacity) { 4 | opacity: $opacity; 5 | // IE8 filter 6 | $opacity-ie: ($opacity * 100); 7 | filter: alpha(opacity=$opacity-ie); 8 | } 9 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | @mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: $padding-vertical $padding-horizontal; 8 | font-size: $font-size; 9 | line-height: $line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | @include border-left-radius($border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | @include border-right-radius($border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_panels.scss: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | @mixin panel-variant($border, $heading-text-color, $heading-bg-color, $heading-border) { 4 | border-color: $border; 5 | 6 | & > .panel-heading { 7 | color: $heading-text-color; 8 | background-color: $heading-bg-color; 9 | border-color: $heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: $border; 13 | } 14 | .badge { 15 | color: $heading-bg-color; 16 | background-color: $heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: $border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_progress-bar.scss: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | @mixin progress-bar-variant($color) { 4 | background-color: $color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | @include gradient-striped; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | @mixin reset-filter() { 7 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 8 | } 9 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text() { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: $line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | resize: $direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | // [converter] $parent hack 6 | @mixin responsive-visibility($parent) { 7 | #{$parent} { 8 | display: block !important; 9 | } 10 | table#{$parent} { display: table !important; } 11 | tr#{$parent} { display: table-row !important; } 12 | th#{$parent}, 13 | td#{$parent} { display: table-cell !important; } 14 | } 15 | 16 | // [converter] $parent hack 17 | @mixin responsive-invisibility($parent) { 18 | #{$parent} { 19 | display: none !important; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height) { 4 | width: $width; 5 | height: $height; 6 | } 7 | 8 | @mixin square($size) { 9 | @include size($size, $size); 10 | } 11 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | @mixin tab-focus() { 4 | // WebKit-specific. Other browsers will keep their default outline style. 5 | // (Initially tried to also force default via `outline: initial`, 6 | // but that seems to erroneously remove the outline in Firefox altogether.) 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | // [converter] $parent hack 4 | @mixin text-emphasis-variant($parent, $color) { 5 | #{$parent} { 6 | color: $color; 7 | } 8 | a#{$parent}:hover, 9 | a#{$parent}:focus { 10 | color: darken($color, 10%); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-overflow.scss: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/eyeglass-exports.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | module.exports = function(eyeglass, sass) { 4 | return { 5 | sassDir: path.join(__dirname, 'assets/stylesheets') 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap-sass/sache.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-sass", 3 | "description": "bootstrap-sass is a Sass-powered version of Bootstrap 3, ready to drop right into your Sass powered applications.", 4 | "tags": ["bootstrap", "grid", "typography", "buttons", "ui", "responsive-web-design"] 5 | } 6 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs. 2 | 3 | See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. 4 | 5 | Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release. 6 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | group :development, :test do 4 | gem 'jekyll', '~> 3.1.2' 5 | gem 'jekyll-sitemap', '~> 0.11.0' 6 | end 7 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/plugins/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/plugins/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/plugins/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/plugins/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/plugins/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends" : "../js/.jshintrc", 3 | "asi" : false, 4 | "browser" : false, 5 | "es3" : false, 6 | "node" : true 7 | } 8 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi" : true, 3 | "browser" : true, 4 | "eqeqeq" : false, 5 | "eqnull" : true, 6 | "es3" : true, 7 | "expr" : true, 8 | "jquery" : true, 9 | "latedef" : true, 10 | "laxbreak" : true, 11 | "nonbsp" : true, 12 | "strict" : true, 13 | "undef" : true, 14 | "unused" : true 15 | } 16 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-sizing": false, 4 | "box-model": false, 5 | "compatible-vendor-prefixes": false, 6 | "floats": false, 7 | "font-sizes": false, 8 | "gradients": false, 9 | "important": false, 10 | "known-properties": false, 11 | "outline-none": false, 12 | "qualified-headings": false, 13 | "regex-selectors": false, 14 | "shorthand": false, 15 | "text-indent": false, 16 | "unique-headings": false, 17 | "universal-selector": false, 18 | "unqualified-attributes": false 19 | } 20 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: @breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (has been removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a&, 9 | button& { 10 | color: @color; 11 | 12 | .list-group-item-heading { 13 | color: inherit; 14 | } 15 | 16 | &:hover, 17 | &:focus { 18 | color: @color; 19 | background-color: darken(@background, 5%); 20 | } 21 | &.active, 22 | &.active:hover, 23 | &.active:focus { 24 | color: #fff; 25 | background-color: @color; 26 | border-color: @color; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | line-height: @line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | .border-left-radius(@border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | .border-right-radius(@border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/reset-text.less: -------------------------------------------------------------------------------- 1 | .reset-text() { 2 | font-family: @font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: @line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table !important; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // WebKit-specific. Other browsers will keep their default outline style. 5 | // (Initially tried to also force default via `outline: initial`, 6 | // but that seems to erroneously remove the outline in Firefox altogether.) 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- 1 | // Embeds responsive 2 | // 3 | // Credit: Nicolas Gallagher and SUIT CSS. 4 | 5 | .embed-responsive { 6 | position: relative; 7 | display: block; 8 | height: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | 12 | .embed-responsive-item, 13 | iframe, 14 | embed, 15 | object, 16 | video { 17 | position: absolute; 18 | top: 0; 19 | left: 0; 20 | bottom: 0; 21 | height: 100%; 22 | width: 100%; 23 | border: 0; 24 | } 25 | } 26 | 27 | // Modifier class for 16:9 aspect ratio 28 | .embed-responsive-16by9 { 29 | padding-bottom: 56.25%; 30 | } 31 | 32 | // Modifier class for 4:3 aspect ratio 33 | .embed-responsive-4by3 { 34 | padding-bottom: 75%; 35 | } 36 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /assets/plugins/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- 1 | $nuget = $env:NuGet 2 | 3 | # parse the version number out of package.json 4 | $bsversion = ((Get-Content $env:SourcesPath\package.json) -join "`n" | ConvertFrom-Json).version 5 | 6 | # create packages 7 | & $nuget pack "nuget\bootstrap.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion 8 | & $nuget pack "nuget\bootstrap.less.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion 9 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/addons/_border-width.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Provides a quick method for targeting `border-width` on specific sides of a box. Use a `null` value to “skip” a side. 4 | /// 5 | /// @param {Arglist} $vals 6 | /// List of arguments 7 | /// 8 | /// @example scss - Usage 9 | /// .element { 10 | /// @include border-width(1em null 20px); 11 | /// } 12 | /// 13 | /// @example css - CSS Output 14 | /// .element { 15 | /// border-bottom-width: 20px; 16 | /// border-top-width: 1em; 17 | /// } 18 | /// 19 | /// @require {mixin} directional-property 20 | /// 21 | /// @output `border-width` 22 | 23 | @mixin border-width($vals...) { 24 | @include directional-property(border, width, $vals...); 25 | } 26 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/addons/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Provides an easy way to include a clearfix for containing floats. 4 | /// 5 | /// @link http://cssmojo.com/latest_new_clearfix_so_far/ 6 | /// 7 | /// @example scss - Usage 8 | /// .element { 9 | /// @include clearfix; 10 | /// } 11 | /// 12 | /// @example css - CSS Output 13 | /// .element::after { 14 | /// clear: both; 15 | /// content: ""; 16 | /// display: table; 17 | /// } 18 | 19 | @mixin clearfix { 20 | &::after { 21 | clear: both; 22 | content: ""; 23 | display: table; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/addons/_margin.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Provides a quick method for targeting `margin` on specific sides of a box. Use a `null` value to “skip” a side. 4 | /// 5 | /// @param {Arglist} $vals 6 | /// List of arguments 7 | /// 8 | /// @example scss - Usage 9 | /// .element { 10 | /// @include margin(null 10px 3em 20vh); 11 | /// } 12 | /// 13 | /// @example css - CSS Output 14 | /// .element { 15 | /// margin-bottom: 3em; 16 | /// margin-left: 20vh; 17 | /// margin-right: 10px; 18 | /// } 19 | /// 20 | /// @require {mixin} directional-property 21 | /// 22 | /// @output `margin` 23 | 24 | @mixin margin($vals...) { 25 | @include directional-property(margin, false, $vals...); 26 | } 27 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/css3/_appearance.scss: -------------------------------------------------------------------------------- 1 | @mixin appearance($value) { 2 | @include prefixer(appearance, $value, webkit moz ms o spec); 3 | } 4 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/css3/_backface-visibility.scss: -------------------------------------------------------------------------------- 1 | @mixin backface-visibility($visibility) { 2 | @include prefixer(backface-visibility, $visibility, webkit spec); 3 | } 4 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/css3/_calc.scss: -------------------------------------------------------------------------------- 1 | @mixin calc($property, $value) { 2 | #{$property}: -webkit-calc(#{$value}); 3 | #{$property}: calc(#{$value}); 4 | } 5 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/css3/_filter.scss: -------------------------------------------------------------------------------- 1 | @mixin filter($function: none) { 2 | // [ 3 | @include prefixer(perspective, $depth, webkit moz spec); 4 | } 5 | 6 | @mixin perspective-origin($value: 50% 50%) { 7 | @include prefixer(perspective-origin, $value, webkit moz spec); 8 | } 9 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/css3/_placeholder.scss: -------------------------------------------------------------------------------- 1 | @mixin placeholder { 2 | $placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input"; 3 | @each $placeholder in $placeholders { 4 | &:#{$placeholder}-placeholder { 5 | @content; 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/css3/_text-decoration.scss: -------------------------------------------------------------------------------- 1 | @mixin text-decoration($value) { 2 | // || || 3 | @include prefixer(text-decoration, $value, moz); 4 | } 5 | 6 | @mixin text-decoration-line($line: none) { 7 | // none || underline || overline || line-through 8 | @include prefixer(text-decoration-line, $line, moz); 9 | } 10 | 11 | @mixin text-decoration-style($style: solid) { 12 | // solid || double || dotted || dashed || wavy 13 | @include prefixer(text-decoration-style, $style, moz webkit); 14 | } 15 | 16 | @mixin text-decoration-color($color: currentColor) { 17 | // currentColor || 18 | @include prefixer(text-decoration-color, $color, moz); 19 | } 20 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/css3/_transform.scss: -------------------------------------------------------------------------------- 1 | @mixin transform($property: none) { 2 | // none | 3 | @include prefixer(transform, $property, webkit moz ms o spec); 4 | } 5 | 6 | @mixin transform-origin($axes: 50%) { 7 | // x-axis - left | center | right | length | % 8 | // y-axis - top | center | bottom | length | % 9 | // z-axis - length 10 | @include prefixer(transform-origin, $axes, webkit moz ms o spec); 11 | } 12 | 13 | @mixin transform-style($style: flat) { 14 | @include prefixer(transform-style, $style, webkit moz ms o spec); 15 | } 16 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/css3/_user-select.scss: -------------------------------------------------------------------------------- 1 | @mixin user-select($value: none) { 2 | @include prefixer(user-select, $value, webkit moz ms spec); 3 | } 4 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_assign-inputs.scss: -------------------------------------------------------------------------------- 1 | @function assign-inputs($inputs, $pseudo: null) { 2 | $list: (); 3 | 4 | @each $input in $inputs { 5 | $input: unquote($input); 6 | $input: if($pseudo, $input + ":" + $pseudo, $input); 7 | $list: append($list, $input, comma); 8 | } 9 | 10 | @return $list; 11 | } 12 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_contains-falsy.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Checks if a list does not contains a value. 4 | /// 5 | /// @access private 6 | /// 7 | /// @param {List} $list 8 | /// The list to check against. 9 | /// 10 | /// @return {Bool} 11 | 12 | @function contains-falsy($list) { 13 | @each $item in $list { 14 | @if not $item { 15 | @return true; 16 | } 17 | } 18 | 19 | @return false; 20 | } 21 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_contains.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Checks if a list contains a value(s). 4 | /// 5 | /// @access private 6 | /// 7 | /// @param {List} $list 8 | /// The list to check against. 9 | /// 10 | /// @param {List} $values 11 | /// A single value or list of values to check for. 12 | /// 13 | /// @example scss - Usage 14 | /// contains($list, $value) 15 | /// 16 | /// @return {Bool} 17 | 18 | @function contains($list, $values...) { 19 | @each $value in $values { 20 | @if type-of(index($list, $value)) != "number" { 21 | @return false; 22 | } 23 | } 24 | 25 | @return true; 26 | } 27 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_is-length.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Checks for a valid CSS length. 4 | /// 5 | /// @param {String} $value 6 | 7 | @function is-length($value) { 8 | @return type-of($value) != "null" and (str-slice($value + "", 1, 4) == "calc" 9 | or index(auto inherit initial 0, $value) 10 | or (type-of($value) == "number" and not(unitless($value)))); 11 | } 12 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_is-light.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Programatically determines whether a color is light or dark. 4 | /// 5 | /// @link http://robots.thoughtbot.com/closer-look-color-lightness 6 | /// 7 | /// @param {Color (Hex)} $color 8 | /// 9 | /// @example scss - Usage 10 | /// is-light($color) 11 | /// 12 | /// @return {Bool} 13 | 14 | @function is-light($hex-color) { 15 | $-local-red: red(rgba($hex-color, 1)); 16 | $-local-green: green(rgba($hex-color, 1)); 17 | $-local-blue: blue(rgba($hex-color, 1)); 18 | $-local-lightness: ($-local-red * 0.2126 + $-local-green * 0.7152 + $-local-blue * 0.0722) / 255; 19 | 20 | @return $-local-lightness > 0.6; 21 | } 22 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_is-number.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Checks for a valid number. 4 | /// 5 | /// @param {Number} $value 6 | /// 7 | /// @require {function} contains 8 | 9 | @function is-number($value) { 10 | @return contains("0" "1" "2" "3" "4" "5" "6" "7" "8" "9" 0 1 2 3 4 5 6 7 8 9, $value); 11 | } 12 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_is-size.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Checks for a valid CSS size. 4 | /// 5 | /// @param {String} $value 6 | /// 7 | /// @require {function} contains 8 | /// @require {function} is-length 9 | 10 | @function is-size($value) { 11 | @return is-length($value) 12 | or contains("fill" "fit-content" "min-content" "max-content", $value); 13 | } 14 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_px-to-em.scss: -------------------------------------------------------------------------------- 1 | // Convert pixels to ems 2 | // eg. for a relational value of 12px write em(12) when the parent is 16px 3 | // if the parent is another value say 24px write em(12, 24) 4 | 5 | @function em($pxval, $base: $em-base) { 6 | @if not unitless($pxval) { 7 | $pxval: strip-units($pxval); 8 | } 9 | @if not unitless($base) { 10 | $base: strip-units($base); 11 | } 12 | @return ($pxval / $base) * 1em; 13 | } 14 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_px-to-rem.scss: -------------------------------------------------------------------------------- 1 | // Convert pixels to rems 2 | // eg. for a relational value of 12px write rem(12) 3 | // Assumes $em-base is the font-size of 4 | 5 | @function rem($pxval) { 6 | @if not unitless($pxval) { 7 | $pxval: strip-units($pxval); 8 | } 9 | 10 | $base: $em-base; 11 | @if not unitless($base) { 12 | $base: strip-units($base); 13 | } 14 | @return ($pxval / $base) * 1rem; 15 | } 16 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_shade.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Mixes a color with black. 4 | /// 5 | /// @param {Color} $color 6 | /// 7 | /// @param {Number (Percentage)} $percent 8 | /// The amount of black to be mixed in. 9 | /// 10 | /// @example scss - Usage 11 | /// .element { 12 | /// background-color: shade(#ffbb52, 60%); 13 | /// } 14 | /// 15 | /// @example css - CSS Output 16 | /// .element { 17 | /// background-color: #664a20; 18 | /// } 19 | /// 20 | /// @return {Color} 21 | 22 | @function shade($color, $percent) { 23 | @return mix(#000, $color, $percent); 24 | } 25 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_strip-units.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Strips the unit from a number. 4 | /// 5 | /// @param {Number (With Unit)} $value 6 | /// 7 | /// @example scss - Usage 8 | /// $dimension: strip-units(10em); 9 | /// 10 | /// @example css - CSS Output 11 | /// $dimension: 10; 12 | /// 13 | /// @return {Number (Unitless)} 14 | 15 | @function strip-units($value) { 16 | @return ($value / ($value * 0 + 1)); 17 | } 18 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/functions/_tint.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Mixes a color with white. 4 | /// 5 | /// @param {Color} $color 6 | /// 7 | /// @param {Number (Percentage)} $percent 8 | /// The amount of white to be mixed in. 9 | /// 10 | /// @example scss - Usage 11 | /// .element { 12 | /// background-color: tint(#6ecaa6, 40%); 13 | /// } 14 | /// 15 | /// @example css - CSS Output 16 | /// .element { 17 | /// background-color: #a8dfc9; 18 | /// } 19 | /// 20 | /// @return {Color} 21 | 22 | @function tint($color, $percent) { 23 | @return mix(#fff, $color, $percent); 24 | } 25 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/helpers/_gradient-positions-parser.scss: -------------------------------------------------------------------------------- 1 | @function _gradient-positions-parser($gradient-type, $gradient-positions) { 2 | @if $gradient-positions 3 | and ($gradient-type == linear) 4 | and (type-of($gradient-positions) != color) { 5 | $gradient-positions: _linear-positions-parser($gradient-positions); 6 | } 7 | @else if $gradient-positions 8 | and ($gradient-type == radial) 9 | and (type-of($gradient-positions) != color) { 10 | $gradient-positions: _radial-positions-parser($gradient-positions); 11 | } 12 | @return $gradient-positions; 13 | } 14 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/helpers/_radial-positions-parser.scss: -------------------------------------------------------------------------------- 1 | @function _radial-positions-parser($gradient-pos) { 2 | $shape-size: nth($gradient-pos, 1); 3 | $pos: nth($gradient-pos, 2); 4 | $shape-size-spec: _shape-size-stripper($shape-size); 5 | 6 | $pre-spec: unquote(if($pos, "#{$pos}, ", null)) 7 | unquote(if($shape-size, "#{$shape-size},", null)); 8 | $pos-spec: if($pos, "at #{$pos}", null); 9 | 10 | $spec: "#{$shape-size-spec} #{$pos-spec}"; 11 | 12 | // Add comma 13 | @if ($spec != " ") { 14 | $spec: "#{$spec},"; 15 | } 16 | 17 | @return $pre-spec $spec; 18 | } 19 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/helpers/_shape-size-stripper.scss: -------------------------------------------------------------------------------- 1 | @function _shape-size-stripper($shape-size) { 2 | $shape-size-spec: null; 3 | @each $value in $shape-size { 4 | @if ($value == "cover") or ($value == "contain") { 5 | $value: null; 6 | } 7 | $shape-size-spec: "#{$shape-size-spec} #{$value}"; 8 | } 9 | @return $shape-size-spec; 10 | } 11 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/settings/_asset-pipeline.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// A global setting to enable or disable the `$asset-pipeline` variable for all functions that accept it. 4 | /// 5 | /// @type Bool 6 | 7 | $asset-pipeline: false !default; 8 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/settings/_prefixer.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /// Global variables to enable or disable vendor prefixes 4 | 5 | $prefix-for-webkit: true !default; 6 | $prefix-for-mozilla: true !default; 7 | $prefix-for-microsoft: true !default; 8 | $prefix-for-opera: true !default; 9 | $prefix-for-spec: true !default; 10 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/app/assets/stylesheets/settings/_px-to-em.scss: -------------------------------------------------------------------------------- 1 | $em-base: 16px !default; 2 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/eyeglass-exports.js: -------------------------------------------------------------------------------- 1 | var bourbon = require("./index"); 2 | 3 | module.exports = function(eyeglass, sass) { 4 | return { 5 | sassDir: bourbon.includePaths[0] 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /assets/plugins/bourbon/index.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | module.exports = { 4 | includePaths: [ 5 | path.join(__dirname, 'app/assets/stylesheets') 6 | ] 7 | }; 8 | -------------------------------------------------------------------------------- /assets/plugins/cheqcon/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cheqcon", 3 | "description": "CHEQUER Font Icon", 4 | "main": "style.css", 5 | "authors": [ 6 | "Thomas Jang" 7 | ], 8 | "license": "MIT", 9 | "keywords": [ 10 | "CHEQUER" 11 | ], 12 | "homepage": "", 13 | "ignore": [ 14 | "**/.*", 15 | "node_modules", 16 | "bower_components", 17 | "test", 18 | "tests" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /assets/plugins/cheqcon/fonts/cheqcon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/cheqcon/fonts/cheqcon.eot -------------------------------------------------------------------------------- /assets/plugins/cheqcon/fonts/cheqcon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/cheqcon/fonts/cheqcon.ttf -------------------------------------------------------------------------------- /assets/plugins/cheqcon/fonts/cheqcon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/cheqcon/fonts/cheqcon.woff -------------------------------------------------------------------------------- /assets/plugins/cheqcon/fonts/cheqcon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/cheqcon/fonts/cheqcon.woff2 -------------------------------------------------------------------------------- /assets/plugins/cheqcon/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cheqcon", 3 | "version": "1.5.0", 4 | "description": "CHEQUER Font Icon", 5 | "main": "style.css", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/chequer-io/cheqcon.git" 12 | }, 13 | "keywords": [ 14 | "CHEQUER" 15 | ], 16 | "author": "Thomas Jang", 17 | "license": "MIT", 18 | "bugs": { 19 | "url": "https://github.com/chequer-io/cheqcon/issues" 20 | }, 21 | "homepage": "https://github.com/chequer-io/cheqcon#readme" 22 | } 23 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/filemanager/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/filemanager/icon.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/filemanager/plugin.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.add('filemanager', { 2 | init: function (editor) { 3 | editor.ui.addButton('FileManager', 4 | { 5 | label: 'My New Plugin', 6 | command: 'OpenFileManager', 7 | icon: CKEDITOR.plugins.getPath('filemanager') + 'icon.png' 8 | }); 9 | editor.addCommand('OpenFileManager', {exec: openFileManager}); 10 | } 11 | }); 12 | function openFileManager(e) { 13 | window.open(CONTEXT_PATH + '/ckeditor/fileBrowser?targetType=CKEDITOR&targetId=' + menuId, 'MyWindow', 'width=800,height=700,scrollbars=no,scrolling=no,location=no,toolbar=no'); 14 | } -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'cs', { 6 | closed: 'Oznámení zavřeno.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'da', { 6 | closed: 'Notefikation lukket.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'de-ch', { 6 | closed: 'Benachrichtigung geschlossen.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'de', { 6 | closed: 'Benachrichtigung geschlossen.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'en', { 6 | closed: 'Notification closed.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'eo', { 6 | closed: 'Sciigo fermita' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'es', { 6 | closed: 'Notificación cerrada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'eu', { 6 | closed: 'Jakinarazpena itxita.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'fr', { 6 | closed: 'Notification fermée.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'gl', { 6 | closed: 'Notificación pechada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'id', { 6 | closed: 'Pemberitahuan ditutup' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'it', { 6 | closed: 'Notifica chiusa.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'km', { 6 | closed: 'បាន​បិទ​ការ​ផ្ដល់​ដំណឹង។' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ko', { 6 | closed: '알림이 닫힘.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ku', { 6 | closed: 'ئاگادارکەرەوەکە داخرا.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'nb', { 6 | closed: 'Varsling lukket.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'nl', { 6 | closed: 'Melding gesloten.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'pl', { 6 | closed: 'Powiadomienie zostało zamknięte.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'pt-br', { 6 | closed: 'Notificação fechada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'pt', { 6 | closed: 'Notificação encerrada.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ru', { 6 | closed: 'Уведомление закрыто' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'sv', { 6 | closed: 'Notifiering stängd.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'tr', { 6 | closed: 'Uyarılar kapatıldı.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'ug', { 6 | closed: 'ئوقتۇرۇش تاقالدى.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'uk', { 6 | closed: 'Сповіщення закрито.' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'zh-cn', { 6 | closed: '通知已关闭。' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/notification/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'notification', 'zh', { 6 | closed: '通知已關閉。' 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/toolbarconfigurator/font/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "css_prefix_text": "icon-", 4 | "css_use_suffix": false, 5 | "hinting": true, 6 | "units_per_em": 1000, 7 | "ascent": 850, 8 | "glyphs": [ 9 | { 10 | "uid": "f48ae54adfb27d8ada53d0fd9e34ee10", 11 | "css": "trash-empty", 12 | "code": 59392, 13 | "src": "fontawesome" 14 | }, 15 | { 16 | "uid": "1c4068ed75209e21af36017df8871802", 17 | "css": "down-big", 18 | "code": 59393, 19 | "src": "fontawesome" 20 | }, 21 | { 22 | "uid": "95376bf082bfec6ce06ea1cda7bd7ead", 23 | "css": "up-big", 24 | "code": 59394, 25 | "src": "fontawesome" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/bootstrapck/icons.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/bootstrapck/icons_hidpi.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/bootstrapck/images/arrow.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/bootstrapck/images/close.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/bootstrapck/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/bootstrapck/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/bootstrapck/images/hidpi/lock.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/bootstrapck/images/hidpi/refresh.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/bootstrapck/images/lock-open.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/bootstrapck/images/lock.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/bootstrapck/images/refresh.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/scss/browser-specific/gecko/editor_gecko.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | editor_gecko.css 8 | ================== 9 | 10 | This file contains styles to used by all Gecko based browsers (Firefox) only. 11 | */ 12 | 13 | /* Base it on editor.css, overriding it with styles defined in this file. */ 14 | @import "../../components/editor"; 15 | 16 | .cke_bottom 17 | { 18 | padding-bottom: 3px; 19 | } 20 | 21 | .cke_combo_text 22 | { 23 | margin-bottom: -1px; 24 | margin-top: 1px; 25 | } 26 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/editor_ie8.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | editor_ie8.css 8 | =============== 9 | 10 | This file contains styles to used by Internet Explorer 8 only. 11 | */ 12 | 13 | /* Base it on editor_ie.css, overriding it with styles defined in this file. */ 14 | @import "../../components/editor"; 15 | 16 | .cke_toolbox_collapser .cke_arrow 17 | { 18 | border-width:4px; 19 | } 20 | .cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow 21 | { 22 | border-width:3px; 23 | } 24 | .cke_toolbox_collapser .cke_arrow 25 | { 26 | margin-top: 0; 27 | } 28 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/dialog_iequirks.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | /* 7 | dialog_ie7.css 8 | =============== 9 | 10 | This file contains styles to used by Internet Explorer in 11 | Quirks mode only. 12 | */ 13 | 14 | /* Base it on dialog_ie.css, overriding it with styles defined in this file. */ 15 | @import "../../dialog/dialog"; 16 | 17 | /* [IE7-8] Filter on footer causes background artifacts when opening dialog. */ 18 | .cke_dialog_footer 19 | { 20 | filter: ""; 21 | } 22 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/bootstrapck/scss/config/_config.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Config 3 | 4 | This file is exclusively intended for setting up imports 5 | Never add styles directly to this file 6 | ========================================================================== */ 7 | 8 | @import "colors"; 9 | @import "defaults"; 10 | -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono-dark/icons.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono-dark/icons_hidpi.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono-dark/images/arrow.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono-dark/images/close.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono-dark/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono-dark/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono-dark/images/hidpi/lock.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono-dark/images/hidpi/refresh.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono-dark/images/lock-open.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono-dark/images/lock.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono-dark/images/refresh.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono-dark/skin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.skin.name="moono-dark";CKEDITOR.skin.ua_editor="ie,iequirks,ie7,ie8,gecko";CKEDITOR.skin.ua_dialog="ie,iequirks,ie7,ie8"; -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /assets/plugins/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /assets/plugins/jquery.easy-pie-chart/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | .grunt 4 | _SpecRunner.html 5 | -------------------------------------------------------------------------------- /assets/plugins/jquery.easy-pie-chart/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | before_install: 5 | - npm install -g karma bower grunt-cli 6 | - bower install 7 | - npm install 8 | -------------------------------------------------------------------------------- /assets/plugins/jquery.easy-pie-chart/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery.easy-pie-chart", 3 | "version": "2.1.6", 4 | "main": [ 5 | "dist/jquery.easypiechart.js" 6 | ], 7 | "ignore": [ 8 | "demo", 9 | ".editorconfig" 10 | ], 11 | "dependencies": { 12 | "jquery": ">=1.9.0", 13 | "requirejs": "~2.1.10" 14 | }, 15 | "devDependencies": { 16 | "angular": "~1.2.9", 17 | "angular-mocks": "~1.2.9" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /assets/plugins/jquery.easy-pie-chart/docs/README.tmpl.md: -------------------------------------------------------------------------------- 1 | # {%= name %} 2 | 3 | > {%= description %} 4 | 5 | {%= _.doc('bagdes.md') %} 6 | 7 | ## Features 8 | {%= _.doc("features.md") %} 9 | 10 | ## Get started 11 | {%= _.doc("get-started.md") %} 12 | 13 | ## Options 14 | {%= _.doc("options.md") %} 15 | 16 | ## Callbacks 17 | {%= _.doc("callbacks.md") %} 18 | 19 | ## Plugin api 20 | {%= _.doc("plugin-api.md") %} 21 | 22 | ## Browser Support 23 | {%= _.doc("browser-support.md") %} 24 | 25 | ## Test 26 | {%= _.doc("test.md") %} 27 | 28 | ## Credits 29 | {%= _.doc("credits.md") %} 30 | 31 | ## Copyright 32 | {%= copyright %} {%= license %} 33 | -------------------------------------------------------------------------------- /assets/plugins/jquery.easy-pie-chart/docs/bagdes.md: -------------------------------------------------------------------------------- 1 | ![Version](http://img.shields.io/version/{%= version %}.png?color=green) 2 | [![Build Status](https://travis-ci.org/rendro/easy-pie-chart.png)](https://travis-ci.org/rendro/easy-pie-chart) 3 | [![Dependencies Status](https://david-dm.org/rendro/easy-pie-chart/dev-status.png)](https://david-dm.org/rendro/easy-pie-chart) 4 | [![Analytics](https://ga-beacon.appspot.com/UA-46840672-1/easy-pie-chart/readme)](https://github.com/igrigorik/ga-beacon) 5 | -------------------------------------------------------------------------------- /assets/plugins/jquery.easy-pie-chart/docs/browser-support.md: -------------------------------------------------------------------------------- 1 | Native support 2 | 3 | * Chrome 4 | * Safari 5 | * FireFox 6 | * Opera 7 | * Internet Explorer 9+ 8 | 9 | Support for Internet Explorer 7 and 8 with [excanvas](https://code.google.com/p/explorercanvas/wiki/Instructions) polyfill. 10 | -------------------------------------------------------------------------------- /assets/plugins/jquery.easy-pie-chart/docs/credits.md: -------------------------------------------------------------------------------- 1 | Thanks to [Rafal Bromirski](http://www.paranoida.com/) for designing [this dribble shot](http://drbl.in/ezuc) which inspired me building this plugin. 2 | -------------------------------------------------------------------------------- /assets/plugins/jquery.easy-pie-chart/docs/features.md: -------------------------------------------------------------------------------- 1 | [![](https://github.com/rendro/easy-pie-chart/raw/master/demo/img/easy-pie-chart.png)](http://drbl.in/ezuc) 2 | 3 | * highly customizable 4 | * very easy to implement 5 | * resolution independent (retina optimized) 6 | * uses `requestAnimationFrame` for smooth animations on modern devices and 7 | * works in all modern browsers, even in IE7+ with [excanvas](https://code.google.com/p/explorercanvas/wiki/Instructions) 8 | 9 | ### framework support 10 | 11 | * Vanilla JS *(no dependencies)* (~872 bytes) 12 | * jQuery plugin (~921 bytes) 13 | * Angular Module (~983 bytes) 14 | -------------------------------------------------------------------------------- /assets/plugins/jquery.easy-pie-chart/docs/test.md: -------------------------------------------------------------------------------- 1 | To run the test just use the karma adapter of grunt: `grunt test` 2 | -------------------------------------------------------------------------------- /assets/plugins/jquery.easy-pie-chart/src/jquery.plugin.js: -------------------------------------------------------------------------------- 1 | $.fn.easyPieChart = function(options) { 2 | return this.each(function() { 3 | var instanceOptions; 4 | 5 | if (!$.data(this, 'easyPieChart')) { 6 | instanceOptions = $.extend({}, options, $(this).data()); 7 | $.data(this, 'easyPieChart', new EasyPieChart(this, instanceOptions)); 8 | } 9 | }); 10 | }; 11 | -------------------------------------------------------------------------------- /assets/plugins/jquery/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery", 3 | "main": "dist/jquery.js", 4 | "license": "MIT", 5 | "ignore": [ 6 | "package.json" 7 | ], 8 | "keywords": [ 9 | "jquery", 10 | "javascript", 11 | "browser", 12 | "library" 13 | ], 14 | "homepage": "https://github.com/jquery/jquery-dist", 15 | "version": "1.12.4", 16 | "_release": "1.12.4", 17 | "_resolution": { 18 | "type": "version", 19 | "tag": "1.12.4", 20 | "commit": "5e89585e0121e72ff47de177c5ef604f3089a53d" 21 | }, 22 | "_source": "https://github.com/jquery/jquery-dist.git", 23 | "_target": "^1.12.4", 24 | "_originalSource": "jquery" 25 | } -------------------------------------------------------------------------------- /assets/plugins/jquery/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery", 3 | "main": "dist/jquery.js", 4 | "license": "MIT", 5 | "ignore": [ 6 | "package.json" 7 | ], 8 | "keywords": [ 9 | "jquery", 10 | "javascript", 11 | "browser", 12 | "library" 13 | ] 14 | } -------------------------------------------------------------------------------- /assets/plugins/jquery/src/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "boss": true, 3 | "curly": true, 4 | "eqeqeq": true, 5 | "eqnull": true, 6 | "expr": true, 7 | "immed": true, 8 | "noarg": true, 9 | "quotmark": "double", 10 | "undef": true, 11 | "unused": true, 12 | 13 | "evil": true, 14 | "sub": true, 15 | 16 | // Support: IE < 10, Android < 4.1 17 | // The above browsers are failing a lot of tests in the ES5 18 | // test suite at http://test262.ecmascript.org. 19 | "es3": true, 20 | 21 | "globals": { 22 | "window": true, 23 | "JSON": false, 24 | 25 | "jQuery": true, 26 | "define": false, 27 | "module": false, 28 | "noGlobal": true 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\?/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./attributes/val", 4 | "./attributes/attr", 5 | "./attributes/prop", 6 | "./attributes/classes" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | } ); 12 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // Match a standalone tag 4 | return ( /^<([\w-]+)\s*\/?>(?:<\/\1>|)$/ ); 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | function addGetHookIf( conditionFn, hookFn ) { 4 | 5 | // Define the hook, we'll check on the first run if it's really needed. 6 | return { 7 | get: function() { 8 | if ( conditionFn() ) { 9 | 10 | // Hook not needed (or it's not possible to use it due 11 | // to missing dependency), remove it. 12 | delete this.get; 13 | return; 14 | } 15 | 16 | // Hook needed; redefine it so that the support test is not executed again. 17 | return ( this.get = hookFn ).apply( this, arguments ); 18 | } 19 | }; 20 | } 21 | 22 | return addGetHookIf; 23 | 24 | } ); 25 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | 5 | // css is assumed 6 | ], function( jQuery ) { 7 | 8 | return function( elem, el ) { 9 | 10 | // isHidden might be called from jQuery#filter function; 11 | // in that case, element will be second argument 12 | elem = el || elem; 13 | return jQuery.css( elem, "display" ) === "none" || 14 | !jQuery.contains( elem.ownerDocument, elem ); 15 | }; 16 | } ); 17 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^margin/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // A method for quickly swapping in/out CSS properties to get correct calculations. 4 | return function( elem, options, callback, args ) { 5 | var ret, name, 6 | old = {}; 7 | 8 | // Remember the old values, and insert the new ones 9 | for ( name in options ) { 10 | old[ name ] = elem.style[ name ]; 11 | elem.style[ name ] = options[ name ]; 12 | } 13 | 14 | ret = callback.apply( elem, args || [] ); 15 | 16 | // Revert the old values 17 | for ( name in options ) { 18 | elem.style[ name ] = old[ name ]; 19 | } 20 | 21 | return ret; 22 | }; 23 | 24 | } ); 25 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/data/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/document", 3 | "../var/support" 4 | ], function( document, support ) { 5 | 6 | ( function() { 7 | var div = document.createElement( "div" ); 8 | 9 | // Support: IE<9 10 | support.deleteExpando = true; 11 | try { 12 | delete div.test; 13 | } catch ( e ) { 14 | support.deleteExpando = false; 15 | } 16 | 17 | // Null elements to avoid leaks in IE. 18 | div = null; 19 | } )(); 20 | 21 | return support; 22 | 23 | } ); 24 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | 5 | /** 6 | * Determines whether an object can have data 7 | */ 8 | return function( elem ) { 9 | var noData = jQuery.noData[ ( elem.nodeName + " " ).toLowerCase() ], 10 | nodeType = +elem.nodeType || 1; 11 | 12 | // Do not set data on non-element DOM nodes because it will not be cleared (#8335). 13 | return nodeType !== 1 && nodeType !== 9 ? 14 | false : 15 | 16 | // Nodes accept data unless otherwise specified; rejection can be conditional 17 | !noData || noData !== true && elem.getAttribute( "classid" ) === noData; 18 | }; 19 | 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | jQuery.expr.filters.animated = function( elem ) { 8 | return jQuery.grep( jQuery.timers, function( fn ) { 9 | return elem === fn.elem; 10 | } ).length; 11 | }; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../event" 4 | ], function( jQuery ) { 5 | 6 | // Attach a bunch of functions for handling common AJAX events 7 | jQuery.each( [ 8 | "ajaxStart", 9 | "ajaxStop", 10 | "ajaxComplete", 11 | "ajaxError", 12 | "ajaxSuccess", 13 | "ajaxSend" 14 | ], function( i, type ) { 15 | jQuery.fn[ type ] = function( fn ) { 16 | return this.on( type, fn ); 17 | }; 18 | } ); 19 | 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/exports/global.js: -------------------------------------------------------------------------------- 1 | var 2 | 3 | // Map over jQuery in case of overwrite 4 | _jQuery = window.jQuery, 5 | 6 | // Map over the $ in case of overwrite 7 | _$ = window.$; 8 | 9 | jQuery.noConflict = function( deep ) { 10 | if ( window.$ === jQuery ) { 11 | window.$ = _$; 12 | } 13 | 14 | if ( deep && window.jQuery === jQuery ) { 15 | window.jQuery = _jQuery; 16 | } 17 | 18 | return jQuery; 19 | }; 20 | 21 | // Expose jQuery and $ identifiers, even in 22 | // AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557) 23 | // and CommonJS for browser emulators (#13566) 24 | if ( !noGlobal ) { 25 | window.jQuery = window.$ = jQuery; 26 | } 27 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../ajax" 3 | ], function( jQuery ) { 4 | 5 | jQuery._evalUrl = function( url ) { 6 | return jQuery.ajax( { 7 | url: url, 8 | 9 | // Make this explicit, since user can override this through ajaxSetup (#11264) 10 | type: "GET", 11 | dataType: "script", 12 | cache: true, 13 | async: false, 14 | global: false, 15 | "throws": true 16 | } ); 17 | }; 18 | 19 | return jQuery._evalUrl; 20 | 21 | } ); 22 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/manipulation/createSafeFragment.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./var/nodeNames" 3 | ], function( nodeNames ) { 4 | 5 | function createSafeFragment( document ) { 6 | var list = nodeNames.split( "|" ), 7 | safeFrag = document.createDocumentFragment(); 8 | 9 | if ( safeFrag.createElement ) { 10 | while ( list.length ) { 11 | safeFrag.createElement( 12 | list.pop() 13 | ); 14 | } 15 | } 16 | return safeFrag; 17 | } 18 | 19 | return createSafeFragment; 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // Mark scripts as having already been evaluated 6 | function setGlobalEval( elems, refElements ) { 7 | var elem, 8 | i = 0; 9 | for ( ; ( elem = elems[ i ] ) != null; i++ ) { 10 | jQuery._data( 11 | elem, 12 | "globalEval", 13 | !refElements || jQuery._data( refElements[ i ], "globalEval" ) 14 | ); 15 | } 16 | } 17 | 18 | return setGlobalEval; 19 | } ); 20 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/manipulation/var/nodeNames.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return "abbr|article|aside|audio|bdi|canvas|data|datalist|" + 3 | "details|dialog|figcaption|figure|footer|header|hgroup|main|" + 4 | "mark|meter|nav|output|picture|progress|section|summary|template|time|video"; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^(?:checkbox|radio)$/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/manipulation/var/rleadingWhitespace.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^\s+/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^$|\/(?:java|ecma)script/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /<([\w:-]+)/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../queue", 4 | "../effects" // Delay is optional because of this dependency 5 | ], function( jQuery ) { 6 | 7 | // Based off of the plugin by Clint Helfers, with permission. 8 | // http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ 9 | jQuery.fn.delay = function( time, type ) { 10 | time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; 11 | type = type || "fx"; 12 | 13 | return this.queue( type, function( next, hooks ) { 14 | var timeout = window.setTimeout( next, time ); 15 | hooks.stop = function() { 16 | window.clearTimeout( timeout ); 17 | }; 18 | } ); 19 | }; 20 | 21 | return jQuery.fn.delay; 22 | } ); 23 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "../external/sizzle/dist/sizzle" 4 | ], function( jQuery, Sizzle ) { 5 | 6 | jQuery.find = Sizzle; 7 | jQuery.expr = Sizzle.selectors; 8 | jQuery.expr[ ":" ] = jQuery.expr.pseudos; 9 | jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; 10 | jQuery.text = Sizzle.getText; 11 | jQuery.isXMLDoc = Sizzle.isXML; 12 | jQuery.contains = Sizzle.contains; 13 | 14 | } ); 15 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | 5 | return function( elem, dir, until ) { 6 | var matched = [], 7 | truncate = until !== undefined; 8 | 9 | while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { 10 | if ( elem.nodeType === 1 ) { 11 | if ( truncate && jQuery( elem ).is( until ) ) { 12 | break; 13 | } 14 | matched.push( elem ); 15 | } 16 | } 17 | return matched; 18 | }; 19 | 20 | } ); 21 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | } ); 7 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | return function( n, elem ) { 4 | var matched = []; 5 | 6 | for ( ; n; n = n.nextSibling ) { 7 | if ( n.nodeType === 1 && n !== elem ) { 8 | matched.push( n ); 9 | } 10 | } 11 | 12 | return matched; 13 | }; 14 | 15 | } ); 16 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.concat; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./document" 3 | ], function( document ) { 4 | return document.documentElement; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.indexOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.push; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/pnum" 3 | ], function( pnum ) { 4 | 5 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /\S+/g ); 3 | } ); 4 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.slice; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // All support tests are defined in their respective modules. 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | } ); 6 | -------------------------------------------------------------------------------- /assets/plugins/light-bootstrap-dashboard/scss/lbd/_mixins.scss: -------------------------------------------------------------------------------- 1 | //Utilities 2 | 3 | @import "mixins/transparency"; 4 | @import "mixins/vendor-prefixes"; 5 | 6 | 7 | //Components 8 | 9 | @import "mixins/buttons"; 10 | @import "mixins/inputs"; 11 | @import "mixins/labels"; 12 | @import "mixins/tabs"; 13 | 14 | @import "mixins/navbars"; 15 | @import "mixins/icons"; 16 | @import "mixins/social-buttons"; 17 | 18 | @import "mixins/morphing-buttons"; 19 | 20 | @import "mixins/cards"; 21 | 22 | @import "mixins/chartist"; -------------------------------------------------------------------------------- /assets/plugins/light-bootstrap-dashboard/scss/lbd/mixins/_cards.scss: -------------------------------------------------------------------------------- 1 | @mixin filter($color){ 2 | @if $color == #FFFFFF{ 3 | background-color: rgba($color,.91); 4 | } @else { 5 | background-color: rgba($color,.69); 6 | } 7 | } 8 | 9 | -------------------------------------------------------------------------------- /assets/plugins/light-bootstrap-dashboard/scss/lbd/mixins/_icons.scss: -------------------------------------------------------------------------------- 1 | @mixin icon-background ($icon-url){ 2 | background-image : url($icon-url); 3 | 4 | } 5 | 6 | @mixin icon-shape ($size, $padding, $border-radius) { 7 | height: $size; 8 | width: $size; 9 | padding: $padding; 10 | border-radius: $border-radius; 11 | display: inline-table; 12 | 13 | } -------------------------------------------------------------------------------- /assets/plugins/light-bootstrap-dashboard/scss/lbd/mixins/_inputs.scss: -------------------------------------------------------------------------------- 1 | @mixin input-size($padding-vertical, $padding-horizontal, $height){ 2 | padding: $padding-vertical $padding-horizontal; 3 | height: $height; 4 | } 5 | 6 | @mixin placeholder($color, $opacity){ 7 | color: $color; 8 | @include opacity(1); 9 | } 10 | 11 | @mixin light-form(){ 12 | border-radius: 0; 13 | border:0; 14 | padding: 0; 15 | background-color: transparent; 16 | 17 | } -------------------------------------------------------------------------------- /assets/plugins/light-bootstrap-dashboard/scss/lbd/mixins/_labels.scss: -------------------------------------------------------------------------------- 1 | @mixin label-style(){ 2 | padding: $padding-label-vertical $padding-label-horizontal; 3 | border: 1px solid $default-color; 4 | border-radius: $border-radius-small; 5 | color: $default-color; 6 | font-weight: $font-weight-semi; 7 | font-size: $font-size-small; 8 | text-transform: uppercase; 9 | display: inline-block; 10 | vertical-align: middle; 11 | } 12 | 13 | @mixin label-color($color){ 14 | border-color: $color; 15 | color: $color; 16 | } 17 | @mixin label-color-fill($color){ 18 | border-color: $color; 19 | color: $white-color; 20 | background-color: $color; 21 | } -------------------------------------------------------------------------------- /assets/plugins/light-bootstrap-dashboard/scss/lbd/mixins/_navbars.scss: -------------------------------------------------------------------------------- 1 | @mixin navbar-color($color){ 2 | background-color: $color; 3 | } 4 | 5 | @mixin center-item(){ 6 | left: 0; 7 | right: 0; 8 | margin-right: auto; 9 | margin-left: auto; 10 | position: absolute; 11 | } -------------------------------------------------------------------------------- /assets/plugins/light-bootstrap-dashboard/scss/lbd/mixins/_tabs.scss: -------------------------------------------------------------------------------- 1 | @mixin pill-style($color){ 2 | border: 1px solid $color; 3 | color: $color; 4 | } -------------------------------------------------------------------------------- /assets/plugins/light-bootstrap-dashboard/scss/lbd/mixins/_transparency.scss: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | @mixin opacity($opacity) { 4 | opacity: $opacity; 5 | // IE8 filter 6 | $opacity-ie: ($opacity * 100); 7 | filter: #{alpha(opacity=$opacity-ie)}; 8 | } 9 | 10 | @mixin black-filter($opacity){ 11 | top: 0; 12 | left: 0; 13 | height: 100%; 14 | width: 100%; 15 | position: absolute; 16 | background-color: rgba(17,17,17,$opacity); 17 | display: block; 18 | content: ""; 19 | z-index: 1; 20 | } -------------------------------------------------------------------------------- /assets/plugins/light-bootstrap-dashboard/scss/light-bootstrap-dashboard.scss: -------------------------------------------------------------------------------- 1 | $sidebar-width: 100%; 2 | 3 | @import "lbd/variables"; 4 | @import "lbd/mixins"; 5 | 6 | @import "lbd/typography"; 7 | 8 | // Core CSS 9 | @import "lbd/misc"; 10 | @import "lbd/sidebar-and-main-panel"; 11 | @import "lbd/buttons"; 12 | @import "lbd/inputs"; 13 | 14 | @import "lbd/alerts"; 15 | @import "lbd/tables"; 16 | 17 | @import "lbd/checkbox-radio-switch"; 18 | @import "lbd/navbars"; 19 | @import "lbd/footers"; 20 | 21 | // Fancy Stuff 22 | @import "lbd/dropdown"; 23 | @import "lbd/cards"; 24 | @import "lbd/chartist"; 25 | @import "lbd/responsive"; 26 | -------------------------------------------------------------------------------- /assets/plugins/mustache/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mustache.js", 3 | "main": "mustache.js", 4 | "homepage": "https://github.com/janl/mustache.js", 5 | "authors": [ 6 | "mustache.js Authors " 7 | ], 8 | "description": "Logic-less {{mustache}} templates with JavaScript", 9 | "keywords": [ 10 | "mustache", 11 | "template", 12 | "templates", 13 | "ejs" 14 | ], 15 | "moduleType": [ 16 | "amd", 17 | "globals", 18 | "node" 19 | ], 20 | "license": "MIT", 21 | "ignore": [ 22 | "**/.*", 23 | "test" 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /assets/plugins/mustache/gulpfile.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var gulp = require('gulp'); 4 | var sass = require('gulp-sass'); 5 | var concat = require('gulp-concat'); 6 | var uglify = require('gulp-uglify'); 7 | var changed = require('gulp-changed'); 8 | var plumber = require('gulp-plumber'); 9 | var notify = require("gulp-notify"); 10 | 11 | gulp.task('min', function () { 12 | gulp.src('mustache.js') 13 | .pipe(concat('./mustache.min.js')) 14 | .pipe(uglify()) 15 | .pipe(gulp.dest('')); 16 | }); 17 | 18 | gulp.task('default', function () { 19 | 20 | }); -------------------------------------------------------------------------------- /assets/plugins/mustache/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mustache", 3 | "devDependencies": { 4 | "gulp": "^3.9.0", 5 | "gulp-concat": "^2.2.0", 6 | "gulp-changed": "^1.3.0", 7 | "gulp-sass": "^2.1.1", 8 | "gulp-uglify": "^1.5.1", 9 | "js-beautify": "^1.5.10", 10 | "gulp-plumber": "", 11 | "gulp-notify": "" 12 | } 13 | } -------------------------------------------------------------------------------- /assets/plugins/prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /assets/plugins/prettify/skins/sons-of-obsidian.css: -------------------------------------------------------------------------------- 1 | .str{color:#ec7600}.kwd{color:#93c763}.com{color:#66747b}.typ{color:#678cb1}.lit{color:#facd22}.pun{color:#f1f2f3}.pln{color:#f1f2f3}.tag{color:#8ac763}.atn{color:#e0e2e4}.atv{color:#ec7600}.dec{color:purple}pre.prettyprint{border:0 solid #888}ol.linenums{margin-top:0;margin-bottom:0}.prettyprint{background:#000}li.L0,li.L1,li.L2,li.L3,li.L4,li.L5,li.L6,li.L7,li.L8,li.L9{color:#555;list-style-type:decimal}li.L1,li.L3,li.L5,li.L7,li.L9{background:#111}@media print{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun{color:#440}.pln{color:#000}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}} -------------------------------------------------------------------------------- /assets/plugins/requirejs/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "requirejs", 3 | "version": "2.1.22", 4 | "ignore": [], 5 | "homepage": "http://requirejs.org", 6 | "authors": [ 7 | "jrburke.com" 8 | ], 9 | "description": "A file and module loader for JavaScript", 10 | "main": "require.js", 11 | "keywords": [ 12 | "AMD" 13 | ], 14 | "license": [ 15 | "BSD-3-Clause", 16 | "MIT" 17 | ], 18 | "_release": "2.1.22", 19 | "_resolution": { 20 | "type": "version", 21 | "tag": "2.1.22", 22 | "commit": "9cd0b99417eac61e890d11c5119f2e45e752c999" 23 | }, 24 | "_source": "https://github.com/jrburke/requirejs-bower.git", 25 | "_target": "~2.1.10", 26 | "_originalSource": "requirejs" 27 | } -------------------------------------------------------------------------------- /assets/plugins/requirejs/README.md: -------------------------------------------------------------------------------- 1 | # requirejs-bower 2 | 3 | Bower packaging for [RequireJS](http://requirejs.org). 4 | 5 | -------------------------------------------------------------------------------- /assets/plugins/requirejs/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "requirejs", 3 | "version": "2.1.22", 4 | "ignore": [], 5 | "homepage": "http://requirejs.org", 6 | "authors": [ 7 | "jrburke.com" 8 | ], 9 | "description": "A file and module loader for JavaScript", 10 | "main": "require.js", 11 | "keywords": [ 12 | "AMD" 13 | ], 14 | "license": [ 15 | "BSD-3-Clause", 16 | "MIT" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ztree_v3", 3 | "homepage": "https://github.com/zTree/zTree_v3", 4 | "version": "3.5.24", 5 | "_release": "3.5.24", 6 | "_resolution": { 7 | "type": "version", 8 | "tag": "v3.5.24", 9 | "commit": "972053051162bafb7b6cc0cef653ad953094fd38" 10 | }, 11 | "_source": "https://github.com/zTree/zTree_v3.git", 12 | "_target": "^3.5.24", 13 | "_originalSource": "ztree_v3", 14 | "_direct": true 15 | } -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/apiMenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/apiMenu.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/apiMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/apiMenu.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/background.jpg -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/chinese.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/close.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/contact-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/contact-bg.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/english.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/header-bg.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/lightbulb.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/overlay_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/overlay_arrow.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/overlay_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/overlay_arrow.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/overlay_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/overlay_bg.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/overlay_close_IE6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/overlay_close_IE6.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/zTreeStandard.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/apiCss/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/api/apiCss/img/zTreeStandard.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/fn.zTree._z.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

JSON$.fn.zTree._z

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree v3.x 内部的全部方法都可以通过 $.fn.zTree._z 进行调用,开放出来是为了更便于大家开发制作自己的 zTree 插件。

9 |

如无特殊需求请勿使用此对象,以及修改此对象内部的各个函数。

10 |
11 |
12 |
13 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/setting.check.enable.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.check.enable

4 |

概述[ 依赖 jquery.ztree.excheck 扩展 js ]

5 |
6 |

7 |
8 |

设置 zTree 的节点上是否显示 checkbox / radio

9 |

默认值: false

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true / false 分别表示 显示 / 不显示 复选框或单选框

15 |
16 |

setting 举例

17 |

1. 需要显示 checkbox

18 |
var setting = {
19 | 	check: {
20 | 		enable: true
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/setting.data.key.children.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.children

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 节点数据中保存子节点数据的属性名称。

9 |

默认值:"children"

10 |
11 |
12 |

setting 举例

13 |

1. 设置 zTree 显示节点时,将 treeNode 的 nodes 属性当做节点名称

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			children: "nodes"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/setting.data.key.name.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.name

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 节点数据保存节点名称的属性名称。

9 |

默认值:"name"

10 |
11 |
12 |

setting 举例

13 |

1. 设置 zTree 显示节点时,将 treeNode 的 ename 属性当做节点名称

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			name: "ename"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/setting.treeId.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.treeId

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 的唯一标识,初始化后,等于 用户定义的 zTree 容器的 id 属性值。

9 |

请勿进行初始化 或 修改,属于内部参数。

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/setting.treeObj.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Objectsetting.treeObj

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 容器的 jQuery 对象,主要功能:便于操作。

9 |

请勿进行初始化 或 修改,属于内部参数。

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/setting.view.showLine.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Booleansetting.view.showLine

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

设置 zTree 是否显示节点之间的连线。

9 |

默认值:true

10 |
11 |
12 |

Boolean 格式说明

13 |
14 |

true / false 分别表示 显示 / 不显示 连线

15 |
16 |

setting 举例

17 |

1. 设置 zTree 不显示节点之间的连线

18 |
var setting = {
19 | 	view: {
20 | 		showLine: false
21 | 	}
22 | };
23 | ......
24 |
25 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/treeNode.check_Focus.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.check_Focus

4 |

概述[ 依赖 jquery.ztree.excheck 扩展 js ]

5 |
6 |

7 |
8 |

用于设置节点的 checkBox / radio 的 focus 状态。[setting.check.enable = true 时有效]

9 |

zTree 内部使用,请勿进行初始化 或 随意修改

10 |

默认值:false

11 |
12 |
13 |

Boolean 格式说明

14 |
15 |

true 表示当前鼠标移动到输入框内

16 |

false 表示当前鼠标移动到输入框外

17 |
18 |
19 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/treeNode.diy.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

?treeNode.* DIY *

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

用于保存节点的其他自定义数据信息,不要与 zTree 使用的属性相同即可,用户可随意设定。

9 |
10 |
11 |

treeNode 举例

12 |

1. 设置节点的备用英文名称

13 |
var node = { "id":1, "name":"test1", "ename":"test eName"};
14 |
15 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/treeNode.editNameFlag.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.editNameFlag

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

用于记录节点是否处于编辑名称状态。[setting.edit.enable = true 时有效]

9 |

zTree 内部使用,请勿进行初始化 或 随意修改

10 |

默认值:false

11 |
12 |
13 |

Boolean 格式说明

14 |
15 |

true 表示节点处于编辑名称状态

16 |

false 表示节点未处于编辑名称状态

17 |
18 |
19 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/treeNode.isHover.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

BooleantreeNode.isHover

4 |

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

5 |
6 |

7 |
8 |

记录节点 的 hover 状态,主要用于 setting.view.addHoverDom / removeHoverDom 。

9 |

zTree 内部使用,请勿进行初始化 或 随意修改

10 |

默认值:false

11 |
12 |
13 |

Boolean 格式说明

14 |
15 |

true 表示节点处于 hover 状态

16 |

false 表示节点未处于 hover 状态

17 |
18 |
19 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/cn/zTreeObj.setting.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

JSONzTreeObj.setting

4 |

概述[ 依赖 jquery.ztree.core 核心 js ]

5 |
6 |

7 |
8 |

zTree 对象使用的 setting 配置数据,详细请参考 “setting 配置详解”中的各个属性详细说明

9 |

v3.x 取消了原先操作 setting 的方法,让用户可以较自由的修改参数,但请注意,对于 zTree 初始化有影响的参数后期修改是不会起作用的,请对各个属性有较深入的了解以后再考虑进行修改。

10 |
11 |
12 |
13 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/en/fn.zTree._z.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

JSON$.fn.zTree._z

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

All of the internal methods in zTree v3.x are available through '$. fn.zTree._z', 9 | use this if you want to develop your own zTree plug-ins.

10 |

Unless you are writing a plugin, 11 | you should not use this object.

12 |
13 |
14 |
15 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/en/setting.data.key.children.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.children

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

The node data's attribute to save the child nodes.

9 |

Default: "children"

10 |
11 |
12 |

Examples of setting

13 |

1. Set the 'nodes' attribute to save the child nodes.

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			children: "nodes"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/en/setting.data.key.name.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.data.key.name

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

The node data's attribute to save the node name.

9 |

Default: "name"

10 |
11 |
12 |

Examples of setting

13 |

1. Set the 'ename' attribute to save the node name.

14 |
var setting = {
15 | 	data: {
16 | 		key: {
17 | 			name: "ename"
18 | 		}
19 | 	}
20 | };
21 | ......
22 |
23 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/en/setting.treeId.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Stringsetting.treeId

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

zTree unique identifier. After the initialization, it equals to the id attribute value of the user-defined zTree container.

9 |

Do not initialize or modify it, it is an internal argument.

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/en/setting.treeObj.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Objectsetting.treeObj

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

zTree DOM's jQuery object, the main function: easy to internal operations.

9 |

Do not initialize or modify it, it is an internal argument.

10 |
11 |
12 | 13 |
14 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/api/en/treeNode.diy.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

?treeNode.* DIY *

4 |

Overview[ depends on jquery.ztree.core js ]

5 |
6 |

7 |
8 |

Used to save other custom data of node, do not use the same attribute name with ztree used, the user can freely set.

9 |
10 |
11 |

Examples of treeNode

12 |

1. Use 'ename' attribute to save more info

13 |
var node = { "id":1, "name":"test1", "ename":"test eName"};
14 |
15 |
-------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/awesomeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/awesomeStyle/img/loading.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/metroStyle/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/metroStyle/img/line_conn.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/metroStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/metroStyle/img/loading.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/metroStyle/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/metroStyle/img/metro.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/metroStyle/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/metroStyle/img/metro.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/demo/cn/asyncData/getNodesForBigData.php: -------------------------------------------------------------------------------- 1 | 2 | [] 27 | -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/demo/cn/super/left_menuForOutLook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/demo/cn/super/left_menuForOutLook.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/demo/cn/super/left_menuForOutLook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/demo/cn/super/left_menuForOutLook.png -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/demo/en/asyncData/getNodesForBigData.php: -------------------------------------------------------------------------------- 1 | 2 | [] 27 | -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/demo/en/super/left_menuForOutLook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/demo/en/super/left_menuForOutLook.gif -------------------------------------------------------------------------------- /assets/plugins/ztree_v3/demo/en/super/left_menuForOutLook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/plugins/ztree_v3/demo/en/super/left_menuForOutLook.png -------------------------------------------------------------------------------- /assets/scss/_axboot-inc.scss: -------------------------------------------------------------------------------- 1 | //======= var 2 | @import "modules/var"; 3 | 4 | //~~~~~~~~~~~~~~~~~~~~~~~~ load plugins 5 | @import "../plugins/bourbon/app/assets/stylesheets/bourbon"; 6 | @import "../plugins/bootstrap-sass/assets/stylesheets/bootstrap/variables"; 7 | @import "../plugins/bootstrap-sass/assets/stylesheets/bootstrap/mixins"; 8 | @import "../plugins/ax5core/src/ax5-ui-mixin"; 9 | 10 | @import "modules/keyframe"; 11 | @import "modules/mixin"; 12 | -------------------------------------------------------------------------------- /assets/scss/axboot-01.scss: -------------------------------------------------------------------------------- 1 | @import "axboot-inc"; 2 | 3 | @import "modules/bootstrap-custom"; 4 | @import "modules/ax5ui"; 5 | @import "modules/fonts"; 6 | @import "modules/font-icon"; -------------------------------------------------------------------------------- /assets/scss/axboot-02.scss: -------------------------------------------------------------------------------- 1 | @import "axboot-inc"; 2 | 3 | //== component 4 | @import "modules/ax-body"; 5 | @import "modules/ax-layout"; 6 | @import "modules/ax-form"; 7 | @import "modules/ax-btns"; 8 | @import "modules/ax-tabs"; 9 | @import "modules/ax-markdown"; 10 | 11 | @import "plugins/ztree"; 12 | -------------------------------------------------------------------------------- /assets/scss/axboot-03.scss: -------------------------------------------------------------------------------- 1 | @import "axboot-inc"; 2 | 3 | //== pages 4 | .ax-body { 5 | @import "pages/login"; 6 | @import "pages/frame-set"; 7 | @import "pages/dev-tools"; 8 | @import "pages/base"; 9 | @import "pages/modal-base"; 10 | @import "pages/error-page"; 11 | @import "pages/dashboard"; 12 | } 13 | -------------------------------------------------------------------------------- /assets/scss/axboot.scss: -------------------------------------------------------------------------------- 1 | @import "axboot-01"; 2 | @import "axboot-02"; 3 | @import "axboot-03"; -------------------------------------------------------------------------------- /assets/scss/modules/_ax-tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/assets/scss/modules/_ax-tabs.scss -------------------------------------------------------------------------------- /assets/scss/modules/_fonts.scss: -------------------------------------------------------------------------------- 1 | //@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css); 2 | @import url(//cdn.rawgit.com/theeluwin/NotoSansKR-Hestia/master/stylesheets/NotoSansKR-Hestia.css); -------------------------------------------------------------------------------- /assets/scss/modules/_mixin.scss: -------------------------------------------------------------------------------- 1 | @mixin W($s:1, $e:100){ 2 | @for $i from $s through $e { 3 | &.W#{$i} { 4 | width: #{$i}px; 5 | } 6 | } 7 | @for $i from $s through $e { 8 | &.W#{$i*10} { 9 | width: #{$i*10}px; 10 | } 11 | } 12 | } 13 | @mixin H($s:1, $e:100){ 14 | @for $i from $s through $e { 15 | &.H#{$i} { 16 | height: #{$i}px; 17 | } 18 | } 19 | @for $i from $s through $e { 20 | &.H#{$i*10} { 21 | height: #{$i*10}px; 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /assets/scss/pages/dashboard.scss: -------------------------------------------------------------------------------- 1 | &.dashboard { 2 | margin: 0; 3 | padding: 0; 4 | #ax-base-root{ 5 | padding: 0; 6 | .ax-base-title{ 7 | margin: 0 15px; 8 | } 9 | } 10 | 11 | .row{ 12 | margin:0 -10px; 13 | .card{ 14 | margin-bottom: 15px; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /html/_samples/assets/ax-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axboot/ax-boot-html/0fdeae9b87326e9510ba47095556d642ae85c6fe/html/_samples/assets/ax-table.png -------------------------------------------------------------------------------- /html/json/SCRIPT_SESSION.json: -------------------------------------------------------------------------------- 1 | { 2 | "userCd": "system", 3 | "userNm": "시스템 관리자", 4 | "locale": "ko_KR", 5 | "timeZone": "Asia/Seoul", 6 | "dateFormat": "YYYY-MM-DD", 7 | "login": true, 8 | "details": { 9 | "language": "en" 10 | }, 11 | "dateTimeFormat": "YYYY-MM-DD HH:mm:ss", 12 | "timeFormat": "HH:mm:ss" 13 | } 14 | 15 | 16 | -------------------------------------------------------------------------------- /html/json/errorLogMgmt.json: -------------------------------------------------------------------------------- 1 | { 2 | "page": { 3 | "totalPages": 0, 4 | "totalElements": 0, 5 | "currentPage": 0, 6 | "pageSize": 20 7 | }, 8 | "list": [] 9 | } 10 | -------------------------------------------------------------------------------- /html/json/gridNoRecord.json: -------------------------------------------------------------------------------- 1 | { 2 | "page": { 3 | "totalPages": 0, 4 | "totalElements": 0, 5 | "currentPage": 0, 6 | "pageSize": 10 7 | }, 8 | "list": [] 9 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------