├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .sasslintrc ├── DEVELOPMENT.md ├── gruntfile.js ├── package.json ├── src ├── LICENSE.txt ├── admin │ ├── account │ │ └── index.php │ ├── clients │ │ ├── add.php │ │ ├── edit.php │ │ ├── index.php │ │ ├── page_forms.php │ │ ├── page_main.php │ │ └── page_settings.php │ ├── forms │ │ ├── add │ │ │ ├── index.php │ │ │ ├── internal.php │ │ │ ├── step1.php │ │ │ ├── step2.php │ │ │ ├── step3.php │ │ │ ├── step4.php │ │ │ ├── step5.php │ │ │ └── step6.php │ │ ├── delete_form.php │ │ ├── edit │ │ │ ├── index.php │ │ │ ├── page_edit_email.php │ │ │ ├── page_edit_view.php │ │ │ ├── page_email_settings.php │ │ │ ├── page_emails.php │ │ │ ├── page_fields.php │ │ │ ├── page_main.php │ │ │ ├── page_public_form_omit_list.php │ │ │ ├── page_public_view_omit_list.php │ │ │ └── page_views.php │ │ ├── edit_submission.php │ │ ├── index.php │ │ ├── option_lists │ │ │ ├── edit.php │ │ │ ├── index.php │ │ │ ├── page_form_fields.php │ │ │ └── page_main.php │ │ └── submissions.php │ ├── index.php │ ├── modules │ │ ├── about.php │ │ └── index.php │ ├── redirect.php │ ├── settings │ │ ├── index.php │ │ ├── page_accounts.php │ │ ├── page_edit_admin_menu.php │ │ ├── page_edit_client_menu.php │ │ ├── page_files.php │ │ ├── page_main.php │ │ └── page_menus.php │ └── themes │ │ ├── about.php │ │ └── index.php ├── cache │ └── index.html ├── clients │ ├── account │ │ ├── index.php │ │ ├── page_main.php │ │ └── page_settings.php │ ├── forms │ │ ├── edit_submission.php │ │ └── index.php │ └── index.php ├── error.php ├── forget_password.php ├── global │ ├── api │ │ ├── index.html │ │ ├── index.php │ │ └── recaptchalib.php │ ├── code │ │ ├── Accounts.class.php │ │ ├── Administrator.class.php │ │ ├── Clients.class.php │ │ ├── Constants.class.php │ │ ├── Core.class.php │ │ ├── CoreFieldTypes.class.php │ │ ├── Database.class.php │ │ ├── DatabaseSessions.class.php │ │ ├── Emails.class.php │ │ ├── Errors.class.php │ │ ├── FieldOptions.class.php │ │ ├── FieldSettings.class.php │ │ ├── FieldSizes.class.php │ │ ├── FieldTypes.class.php │ │ ├── FieldValidation.class.php │ │ ├── Fields.class.php │ │ ├── Files.class.php │ │ ├── Forms.class.php │ │ ├── General.class.php │ │ ├── Hooks.class.php │ │ ├── Installation.class.php │ │ ├── ListGroups.class.php │ │ ├── Menus.class.php │ │ ├── Module.abstract.class.php │ │ ├── ModuleMenu.class.php │ │ ├── Modules.class.php │ │ ├── OmitLists.class.php │ │ ├── OptionLists.class.php │ │ ├── Pages.class.php │ │ ├── Schemas.class.php │ │ ├── SecureSmarty.class.php │ │ ├── Sessions.class.php │ │ ├── Settings.class.php │ │ ├── Submissions.class.php │ │ ├── Templates.class.php │ │ ├── Themes.class.php │ │ ├── Translations.class.php │ │ ├── Upgrade.class.php │ │ ├── User.class.php │ │ ├── ViewColumns.class.php │ │ ├── ViewFields.class.php │ │ ├── ViewFilters.class.php │ │ ├── ViewTabs.class.php │ │ ├── Views.class.php │ │ ├── actions-react.php │ │ ├── actions.php │ │ ├── field_types │ │ │ ├── Checkbox.class.php │ │ │ ├── Code.class.php │ │ │ ├── Date.class.php │ │ │ ├── Dropdown.class.php │ │ │ ├── MultiSelect.class.php │ │ │ ├── Password.class.php │ │ │ ├── Phone.class.php │ │ │ ├── Radio.class.php │ │ │ ├── Textarea.class.php │ │ │ ├── Textbox.class.php │ │ │ └── Time.class.php │ │ ├── index.php │ │ ├── polyfills.php │ │ └── validation.php │ ├── codemirror │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── addon │ │ │ ├── comment │ │ │ │ ├── comment.js │ │ │ │ └── continuecomment.js │ │ │ ├── dialog │ │ │ │ ├── dialog.css │ │ │ │ └── dialog.js │ │ │ ├── display │ │ │ │ ├── autorefresh.js │ │ │ │ ├── fullscreen.css │ │ │ │ ├── fullscreen.js │ │ │ │ ├── panel.js │ │ │ │ ├── placeholder.js │ │ │ │ └── rulers.js │ │ │ ├── edit │ │ │ │ ├── closebrackets.js │ │ │ │ ├── closetag.js │ │ │ │ ├── continuelist.js │ │ │ │ ├── matchbrackets.js │ │ │ │ ├── matchtags.js │ │ │ │ └── trailingspace.js │ │ │ ├── fold │ │ │ │ ├── brace-fold.js │ │ │ │ ├── comment-fold.js │ │ │ │ ├── foldcode.js │ │ │ │ ├── foldgutter.css │ │ │ │ ├── foldgutter.js │ │ │ │ ├── indent-fold.js │ │ │ │ ├── markdown-fold.js │ │ │ │ └── xml-fold.js │ │ │ ├── hint │ │ │ │ ├── anyword-hint.js │ │ │ │ ├── css-hint.js │ │ │ │ ├── html-hint.js │ │ │ │ ├── javascript-hint.js │ │ │ │ ├── show-hint.css │ │ │ │ ├── show-hint.js │ │ │ │ ├── sql-hint.js │ │ │ │ └── xml-hint.js │ │ │ ├── lint │ │ │ │ ├── coffeescript-lint.js │ │ │ │ ├── css-lint.js │ │ │ │ ├── html-lint.js │ │ │ │ ├── javascript-lint.js │ │ │ │ ├── json-lint.js │ │ │ │ ├── lint.css │ │ │ │ ├── lint.js │ │ │ │ └── yaml-lint.js │ │ │ ├── merge │ │ │ │ ├── merge.css │ │ │ │ └── merge.js │ │ │ ├── mode │ │ │ │ ├── loadmode.js │ │ │ │ ├── multiplex.js │ │ │ │ ├── multiplex_test.js │ │ │ │ ├── overlay.js │ │ │ │ └── simple.js │ │ │ ├── runmode │ │ │ │ ├── colorize.js │ │ │ │ ├── runmode-standalone.js │ │ │ │ ├── runmode.js │ │ │ │ └── runmode.node.js │ │ │ ├── scroll │ │ │ │ ├── annotatescrollbar.js │ │ │ │ ├── scrollpastend.js │ │ │ │ ├── simplescrollbars.css │ │ │ │ └── simplescrollbars.js │ │ │ ├── search │ │ │ │ ├── jump-to-line.js │ │ │ │ ├── match-highlighter.js │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ ├── search.js │ │ │ │ └── searchcursor.js │ │ │ ├── selection │ │ │ │ ├── active-line.js │ │ │ │ ├── mark-selection.js │ │ │ │ └── selection-pointer.js │ │ │ ├── tern │ │ │ │ ├── tern.css │ │ │ │ ├── tern.js │ │ │ │ └── worker.js │ │ │ └── wrap │ │ │ │ └── hardwrap.js │ │ ├── bin │ │ │ ├── authors.sh │ │ │ ├── compress │ │ │ ├── lint │ │ │ ├── release │ │ │ ├── source-highlight │ │ │ └── upload-release.js │ │ ├── demo │ │ │ ├── activeline.html │ │ │ ├── anywordhint.html │ │ │ ├── bidi.html │ │ │ ├── btree.html │ │ │ ├── buffers.html │ │ │ ├── changemode.html │ │ │ ├── closebrackets.html │ │ │ ├── closetag.html │ │ │ ├── complete.html │ │ │ ├── emacs.html │ │ │ ├── folding.html │ │ │ ├── fullscreen.html │ │ │ ├── hardwrap.html │ │ │ ├── html5complete.html │ │ │ ├── indentwrap.html │ │ │ ├── lint.html │ │ │ ├── loadmode.html │ │ │ ├── marker.html │ │ │ ├── markselection.html │ │ │ ├── matchhighlighter.html │ │ │ ├── matchtags.html │ │ │ ├── merge.html │ │ │ ├── multiplex.html │ │ │ ├── mustache.html │ │ │ ├── panel.html │ │ │ ├── placeholder.html │ │ │ ├── preview.html │ │ │ ├── requirejs.html │ │ │ ├── resize.html │ │ │ ├── rulers.html │ │ │ ├── runmode.html │ │ │ ├── search.html │ │ │ ├── simplemode.html │ │ │ ├── simplescrollbars.html │ │ │ ├── spanaffectswrapping_shim.html │ │ │ ├── sublime.html │ │ │ ├── tern.html │ │ │ ├── theme.html │ │ │ ├── trailingspace.html │ │ │ ├── variableheight.html │ │ │ ├── vim.html │ │ │ ├── visibletabs.html │ │ │ ├── widget.html │ │ │ └── xmlcomplete.html │ │ ├── doc │ │ │ ├── activebookmark.js │ │ │ ├── docs.css │ │ │ ├── internals.html │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ ├── manual.html │ │ │ ├── realworld.html │ │ │ ├── releases.html │ │ │ ├── reporting.html │ │ │ ├── upgrade_v2.2.html │ │ │ ├── upgrade_v3.html │ │ │ ├── upgrade_v4.html │ │ │ └── yinyang.png │ │ ├── index.html │ │ ├── keymap │ │ │ ├── emacs.js │ │ │ ├── sublime.js │ │ │ └── vim.js │ │ ├── lib │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── mode │ │ │ ├── apl │ │ │ │ ├── apl.js │ │ │ │ └── index.html │ │ │ ├── asciiarmor │ │ │ │ ├── asciiarmor.js │ │ │ │ └── index.html │ │ │ ├── asn.1 │ │ │ │ ├── asn.1.js │ │ │ │ └── index.html │ │ │ ├── asterisk │ │ │ │ ├── asterisk.js │ │ │ │ └── index.html │ │ │ ├── brainfuck │ │ │ │ ├── brainfuck.js │ │ │ │ └── index.html │ │ │ ├── clike │ │ │ │ ├── clike.js │ │ │ │ ├── index.html │ │ │ │ ├── scala.html │ │ │ │ └── test.js │ │ │ ├── clojure │ │ │ │ ├── clojure.js │ │ │ │ └── index.html │ │ │ ├── cmake │ │ │ │ ├── cmake.js │ │ │ │ └── index.html │ │ │ ├── cobol │ │ │ │ ├── cobol.js │ │ │ │ └── index.html │ │ │ ├── coffeescript │ │ │ │ ├── coffeescript.js │ │ │ │ └── index.html │ │ │ ├── commonlisp │ │ │ │ ├── commonlisp.js │ │ │ │ └── index.html │ │ │ ├── crystal │ │ │ │ ├── crystal.js │ │ │ │ └── index.html │ │ │ ├── css │ │ │ │ ├── css.js │ │ │ │ ├── gss.html │ │ │ │ ├── gss_test.js │ │ │ │ ├── index.html │ │ │ │ ├── less.html │ │ │ │ ├── less_test.js │ │ │ │ ├── scss.html │ │ │ │ ├── scss_test.js │ │ │ │ └── test.js │ │ │ ├── cypher │ │ │ │ ├── cypher.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── d │ │ │ │ ├── d.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── dart │ │ │ │ ├── dart.js │ │ │ │ └── index.html │ │ │ ├── diff │ │ │ │ ├── diff.js │ │ │ │ └── index.html │ │ │ ├── django │ │ │ │ ├── django.js │ │ │ │ └── index.html │ │ │ ├── dockerfile │ │ │ │ ├── dockerfile.js │ │ │ │ └── index.html │ │ │ ├── dtd │ │ │ │ ├── dtd.js │ │ │ │ └── index.html │ │ │ ├── dylan │ │ │ │ ├── dylan.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── ebnf │ │ │ │ ├── ebnf.js │ │ │ │ └── index.html │ │ │ ├── ecl │ │ │ │ ├── ecl.js │ │ │ │ └── index.html │ │ │ ├── eiffel │ │ │ │ ├── eiffel.js │ │ │ │ └── index.html │ │ │ ├── elm │ │ │ │ ├── elm.js │ │ │ │ └── index.html │ │ │ ├── erlang │ │ │ │ ├── erlang.js │ │ │ │ └── index.html │ │ │ ├── factor │ │ │ │ ├── factor.js │ │ │ │ └── index.html │ │ │ ├── fcl │ │ │ │ ├── fcl.js │ │ │ │ └── index.html │ │ │ ├── forth │ │ │ │ ├── forth.js │ │ │ │ └── index.html │ │ │ ├── fortran │ │ │ │ ├── fortran.js │ │ │ │ └── index.html │ │ │ ├── gas │ │ │ │ ├── gas.js │ │ │ │ └── index.html │ │ │ ├── gfm │ │ │ │ ├── gfm.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── gherkin │ │ │ │ ├── gherkin.js │ │ │ │ └── index.html │ │ │ ├── go │ │ │ │ ├── go.js │ │ │ │ └── index.html │ │ │ ├── groovy │ │ │ │ ├── groovy.js │ │ │ │ └── index.html │ │ │ ├── haml │ │ │ │ ├── haml.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── handlebars │ │ │ │ ├── handlebars.js │ │ │ │ └── index.html │ │ │ ├── haskell-literate │ │ │ │ ├── haskell-literate.js │ │ │ │ └── index.html │ │ │ ├── haskell │ │ │ │ ├── haskell.js │ │ │ │ └── index.html │ │ │ ├── haxe │ │ │ │ ├── haxe.js │ │ │ │ └── index.html │ │ │ ├── htmlembedded │ │ │ │ ├── htmlembedded.js │ │ │ │ └── index.html │ │ │ ├── htmlmixed │ │ │ │ ├── htmlmixed.js │ │ │ │ └── index.html │ │ │ ├── http │ │ │ │ ├── http.js │ │ │ │ └── index.html │ │ │ ├── idl │ │ │ │ ├── idl.js │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── javascript │ │ │ │ ├── index.html │ │ │ │ ├── javascript.js │ │ │ │ ├── json-ld.html │ │ │ │ ├── test.js │ │ │ │ └── typescript.html │ │ │ ├── jinja2 │ │ │ │ ├── index.html │ │ │ │ └── jinja2.js │ │ │ ├── jsx │ │ │ │ ├── index.html │ │ │ │ ├── jsx.js │ │ │ │ └── test.js │ │ │ ├── julia │ │ │ │ ├── index.html │ │ │ │ └── julia.js │ │ │ ├── livescript │ │ │ │ ├── index.html │ │ │ │ └── livescript.js │ │ │ ├── lua │ │ │ │ ├── index.html │ │ │ │ └── lua.js │ │ │ ├── markdown │ │ │ │ ├── index.html │ │ │ │ ├── markdown.js │ │ │ │ └── test.js │ │ │ ├── mathematica │ │ │ │ ├── index.html │ │ │ │ └── mathematica.js │ │ │ ├── mbox │ │ │ │ ├── index.html │ │ │ │ └── mbox.js │ │ │ ├── meta.js │ │ │ ├── mirc │ │ │ │ ├── index.html │ │ │ │ └── mirc.js │ │ │ ├── mllike │ │ │ │ ├── index.html │ │ │ │ └── mllike.js │ │ │ ├── modelica │ │ │ │ ├── index.html │ │ │ │ └── modelica.js │ │ │ ├── mscgen │ │ │ │ ├── index.html │ │ │ │ ├── mscgen.js │ │ │ │ ├── mscgen_test.js │ │ │ │ ├── msgenny_test.js │ │ │ │ └── xu_test.js │ │ │ ├── mumps │ │ │ │ ├── index.html │ │ │ │ └── mumps.js │ │ │ ├── nginx │ │ │ │ ├── index.html │ │ │ │ └── nginx.js │ │ │ ├── nsis │ │ │ │ ├── index.html │ │ │ │ └── nsis.js │ │ │ ├── ntriples │ │ │ │ ├── index.html │ │ │ │ └── ntriples.js │ │ │ ├── octave │ │ │ │ ├── index.html │ │ │ │ └── octave.js │ │ │ ├── oz │ │ │ │ ├── index.html │ │ │ │ └── oz.js │ │ │ ├── pascal │ │ │ │ ├── index.html │ │ │ │ └── pascal.js │ │ │ ├── pegjs │ │ │ │ ├── index.html │ │ │ │ └── pegjs.js │ │ │ ├── perl │ │ │ │ ├── index.html │ │ │ │ └── perl.js │ │ │ ├── php │ │ │ │ ├── index.html │ │ │ │ ├── php.js │ │ │ │ └── test.js │ │ │ ├── pig │ │ │ │ ├── index.html │ │ │ │ └── pig.js │ │ │ ├── powershell │ │ │ │ ├── index.html │ │ │ │ ├── powershell.js │ │ │ │ └── test.js │ │ │ ├── properties │ │ │ │ ├── index.html │ │ │ │ └── properties.js │ │ │ ├── protobuf │ │ │ │ ├── index.html │ │ │ │ └── protobuf.js │ │ │ ├── pug │ │ │ │ ├── index.html │ │ │ │ └── pug.js │ │ │ ├── puppet │ │ │ │ ├── index.html │ │ │ │ └── puppet.js │ │ │ ├── python │ │ │ │ ├── index.html │ │ │ │ ├── python.js │ │ │ │ └── test.js │ │ │ ├── q │ │ │ │ ├── index.html │ │ │ │ └── q.js │ │ │ ├── r │ │ │ │ ├── index.html │ │ │ │ └── r.js │ │ │ ├── rpm │ │ │ │ ├── changes │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── rpm.js │ │ │ ├── rst │ │ │ │ ├── index.html │ │ │ │ └── rst.js │ │ │ ├── ruby │ │ │ │ ├── index.html │ │ │ │ ├── ruby.js │ │ │ │ └── test.js │ │ │ ├── rust │ │ │ │ ├── index.html │ │ │ │ ├── rust.js │ │ │ │ └── test.js │ │ │ ├── sas │ │ │ │ ├── index.html │ │ │ │ └── sas.js │ │ │ ├── sass │ │ │ │ ├── index.html │ │ │ │ ├── sass.js │ │ │ │ └── test.js │ │ │ ├── scheme │ │ │ │ ├── index.html │ │ │ │ └── scheme.js │ │ │ ├── shell │ │ │ │ ├── index.html │ │ │ │ ├── shell.js │ │ │ │ └── test.js │ │ │ ├── sieve │ │ │ │ ├── index.html │ │ │ │ └── sieve.js │ │ │ ├── slim │ │ │ │ ├── index.html │ │ │ │ ├── slim.js │ │ │ │ └── test.js │ │ │ ├── smalltalk │ │ │ │ ├── index.html │ │ │ │ └── smalltalk.js │ │ │ ├── smarty │ │ │ │ ├── index.html │ │ │ │ └── smarty.js │ │ │ ├── solr │ │ │ │ ├── index.html │ │ │ │ └── solr.js │ │ │ ├── soy │ │ │ │ ├── index.html │ │ │ │ ├── soy.js │ │ │ │ └── test.js │ │ │ ├── sparql │ │ │ │ ├── index.html │ │ │ │ └── sparql.js │ │ │ ├── spreadsheet │ │ │ │ ├── index.html │ │ │ │ └── spreadsheet.js │ │ │ ├── sql │ │ │ │ ├── index.html │ │ │ │ └── sql.js │ │ │ ├── stex │ │ │ │ ├── index.html │ │ │ │ ├── stex.js │ │ │ │ └── test.js │ │ │ ├── stylus │ │ │ │ ├── index.html │ │ │ │ └── stylus.js │ │ │ ├── swift │ │ │ │ ├── index.html │ │ │ │ ├── swift.js │ │ │ │ └── test.js │ │ │ ├── tcl │ │ │ │ ├── index.html │ │ │ │ └── tcl.js │ │ │ ├── textile │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── textile.js │ │ │ ├── tiddlywiki │ │ │ │ ├── index.html │ │ │ │ ├── tiddlywiki.css │ │ │ │ └── tiddlywiki.js │ │ │ ├── tiki │ │ │ │ ├── index.html │ │ │ │ ├── tiki.css │ │ │ │ └── tiki.js │ │ │ ├── toml │ │ │ │ ├── index.html │ │ │ │ └── toml.js │ │ │ ├── tornado │ │ │ │ ├── index.html │ │ │ │ └── tornado.js │ │ │ ├── troff │ │ │ │ ├── index.html │ │ │ │ └── troff.js │ │ │ ├── ttcn-cfg │ │ │ │ ├── index.html │ │ │ │ └── ttcn-cfg.js │ │ │ ├── ttcn │ │ │ │ ├── index.html │ │ │ │ └── ttcn.js │ │ │ ├── turtle │ │ │ │ ├── index.html │ │ │ │ └── turtle.js │ │ │ ├── twig │ │ │ │ ├── index.html │ │ │ │ └── twig.js │ │ │ ├── vb │ │ │ │ ├── index.html │ │ │ │ └── vb.js │ │ │ ├── vbscript │ │ │ │ ├── index.html │ │ │ │ └── vbscript.js │ │ │ ├── velocity │ │ │ │ ├── index.html │ │ │ │ └── velocity.js │ │ │ ├── verilog │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── verilog.js │ │ │ ├── vhdl │ │ │ │ ├── index.html │ │ │ │ └── vhdl.js │ │ │ ├── vue │ │ │ │ ├── index.html │ │ │ │ └── vue.js │ │ │ ├── webidl │ │ │ │ ├── index.html │ │ │ │ └── webidl.js │ │ │ ├── xml │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── xml.js │ │ │ ├── xquery │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── xquery.js │ │ │ ├── yacas │ │ │ │ ├── index.html │ │ │ │ └── yacas.js │ │ │ ├── yaml-frontmatter │ │ │ │ ├── index.html │ │ │ │ └── yaml-frontmatter.js │ │ │ ├── yaml │ │ │ │ ├── index.html │ │ │ │ └── yaml.js │ │ │ └── z80 │ │ │ │ ├── index.html │ │ │ │ └── z80.js │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── codemirror.js │ │ │ ├── display │ │ │ │ ├── Display.js │ │ │ │ ├── focus.js │ │ │ │ ├── gutters.js │ │ │ │ ├── highlight_worker.js │ │ │ │ ├── line_numbers.js │ │ │ │ ├── mode_state.js │ │ │ │ ├── operations.js │ │ │ │ ├── scroll_events.js │ │ │ │ ├── scrollbars.js │ │ │ │ ├── scrolling.js │ │ │ │ ├── selection.js │ │ │ │ ├── update_display.js │ │ │ │ ├── update_line.js │ │ │ │ ├── update_lines.js │ │ │ │ └── view_tracking.js │ │ │ ├── edit │ │ │ │ ├── CodeMirror.js │ │ │ │ ├── commands.js │ │ │ │ ├── deleteNearSelection.js │ │ │ │ ├── drop_events.js │ │ │ │ ├── fromTextArea.js │ │ │ │ ├── global_events.js │ │ │ │ ├── key_events.js │ │ │ │ ├── legacy.js │ │ │ │ ├── main.js │ │ │ │ ├── methods.js │ │ │ │ ├── mouse_events.js │ │ │ │ ├── options.js │ │ │ │ └── utils.js │ │ │ ├── input │ │ │ │ ├── ContentEditableInput.js │ │ │ │ ├── TextareaInput.js │ │ │ │ ├── indent.js │ │ │ │ ├── input.js │ │ │ │ ├── keymap.js │ │ │ │ ├── keynames.js │ │ │ │ └── movement.js │ │ │ ├── line │ │ │ │ ├── highlight.js │ │ │ │ ├── line_data.js │ │ │ │ ├── pos.js │ │ │ │ ├── saw_special_spans.js │ │ │ │ ├── spans.js │ │ │ │ └── utils_line.js │ │ │ ├── measurement │ │ │ │ ├── position_measurement.js │ │ │ │ └── widgets.js │ │ │ ├── model │ │ │ │ ├── Doc.js │ │ │ │ ├── change_measurement.js │ │ │ │ ├── changes.js │ │ │ │ ├── chunk.js │ │ │ │ ├── document_data.js │ │ │ │ ├── history.js │ │ │ │ ├── line_widget.js │ │ │ │ ├── mark_text.js │ │ │ │ ├── selection.js │ │ │ │ └── selection_updates.js │ │ │ ├── modes.js │ │ │ └── util │ │ │ │ ├── StringStream.js │ │ │ │ ├── bidi.js │ │ │ │ ├── browser.js │ │ │ │ ├── dom.js │ │ │ │ ├── event.js │ │ │ │ ├── feature_detection.js │ │ │ │ ├── misc.js │ │ │ │ └── operation_group.js │ │ ├── test │ │ │ ├── comment_test.js │ │ │ ├── contenteditable_test.js │ │ │ ├── doc_test.js │ │ │ ├── driver.js │ │ │ ├── emacs_test.js │ │ │ ├── index.html │ │ │ ├── lint.js │ │ │ ├── mode_test.css │ │ │ ├── mode_test.js │ │ │ ├── multi_test.js │ │ │ ├── phantom_driver.js │ │ │ ├── run.js │ │ │ ├── scroll_test.js │ │ │ ├── search_test.js │ │ │ ├── sql-hint-test.js │ │ │ ├── sublime_test.js │ │ │ ├── test.js │ │ │ └── vim_test.js │ │ └── theme │ │ │ ├── 3024-day.css │ │ │ ├── 3024-night.css │ │ │ ├── abcdef.css │ │ │ ├── ambiance-mobile.css │ │ │ ├── ambiance.css │ │ │ ├── base16-dark.css │ │ │ ├── base16-light.css │ │ │ ├── bespin.css │ │ │ ├── blackboard.css │ │ │ ├── cobalt.css │ │ │ ├── colorforth.css │ │ │ ├── dracula.css │ │ │ ├── duotone-dark.css │ │ │ ├── duotone-light.css │ │ │ ├── eclipse.css │ │ │ ├── elegant.css │ │ │ ├── erlang-dark.css │ │ │ ├── hopscotch.css │ │ │ ├── icecoder.css │ │ │ ├── isotope.css │ │ │ ├── lesser-dark.css │ │ │ ├── liquibyte.css │ │ │ ├── material.css │ │ │ ├── mbo.css │ │ │ ├── mdn-like.css │ │ │ ├── midnight.css │ │ │ ├── monokai.css │ │ │ ├── neat.css │ │ │ ├── neo.css │ │ │ ├── night.css │ │ │ ├── panda-syntax.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── pastel-on-dark.css │ │ │ ├── railscasts.css │ │ │ ├── rubyblue.css │ │ │ ├── seti.css │ │ │ ├── solarized.css │ │ │ ├── the-matrix.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── ttcn.css │ │ │ ├── twilight.css │ │ │ ├── vibrant-ink.css │ │ │ ├── xq-dark.css │ │ │ ├── xq-light.css │ │ │ ├── yeti.css │ │ │ └── zenburn.css │ ├── css │ │ ├── field_types.php │ │ ├── main.css │ │ └── ui.daterangepicker.css │ ├── emails │ │ ├── forget_password.tpl │ │ ├── forget_password_subject.tpl │ │ ├── installed.tpl │ │ ├── installed_subject.tpl │ │ └── patterns │ │ │ ├── html_admin.tpl │ │ │ ├── html_admin_loop.tpl │ │ │ ├── html_admin_loop_omit_empty.tpl │ │ │ ├── html_admin_notification.tpl │ │ │ ├── html_admin_omit_empty.tpl │ │ │ ├── html_programming_example.tpl │ │ │ ├── html_user.tpl │ │ │ ├── html_user_loop.tpl │ │ │ ├── html_user_loop_omit_empty.tpl │ │ │ ├── html_user_notification.tpl │ │ │ ├── html_user_omit_empty.tpl │ │ │ ├── index.php │ │ │ ├── patterns.ini │ │ │ ├── text_admin.tpl │ │ │ ├── text_admin_loop.tpl │ │ │ ├── text_admin_loop_omit_empty.tpl │ │ │ ├── text_admin_notification.tpl │ │ │ ├── text_admin_omit_empty.tpl │ │ │ ├── text_programming_example.tpl │ │ │ ├── text_user.tpl │ │ │ ├── text_user_loop.tpl │ │ │ ├── text_user_loop_omit_empty.tpl │ │ │ ├── text_user_notification.tpl │ │ │ └── text_user_omit_empty.tpl │ ├── fancybox │ │ ├── blank.gif │ │ ├── fancy_close.png │ │ ├── fancy_loading.png │ │ ├── fancy_nav_left.png │ │ ├── fancy_nav_right.png │ │ ├── fancy_shadow_e.png │ │ ├── fancy_shadow_n.png │ │ ├── fancy_shadow_ne.png │ │ ├── fancy_shadow_nw.png │ │ ├── fancy_shadow_s.png │ │ ├── fancy_shadow_se.png │ │ ├── fancy_shadow_sw.png │ │ ├── fancy_shadow_w.png │ │ ├── fancy_title_left.png │ │ ├── fancy_title_main.png │ │ ├── fancy_title_over.png │ │ ├── fancy_title_right.png │ │ ├── fancybox-x.png │ │ ├── fancybox-y.png │ │ ├── fancybox.png │ │ ├── jquery.easing-1.3.pack.js │ │ ├── jquery.fancybox-1.3.4.css │ │ ├── jquery.fancybox-1.3.4.pack.js │ │ └── jquery.mousewheel-3.0.4.pack.js │ ├── images │ │ ├── alert.png │ │ ├── calendar.png │ │ ├── clock.png │ │ ├── error.png │ │ ├── group_block.png │ │ ├── group_block_connect.png │ │ ├── group_block_disconnect.png │ │ ├── index.php │ │ ├── info.png │ │ ├── info_small.png │ │ ├── lang_placeholder_field_icon.gif │ │ ├── lang_placeholder_field_icon.png │ │ ├── loading.gif │ │ ├── loading_small.gif │ │ └── open_new_window.png │ ├── index.php │ ├── lang │ │ ├── af.php │ │ ├── ar.php │ │ ├── az.php │ │ ├── be.php │ │ ├── bg.php │ │ ├── ca.php │ │ ├── cs.php │ │ ├── cy.php │ │ ├── da.php │ │ ├── de.php │ │ ├── el.php │ │ ├── en_us.php │ │ ├── es.php │ │ ├── et.php │ │ ├── fa.php │ │ ├── fi.php │ │ ├── fr.php │ │ ├── ga.php │ │ ├── gl.php │ │ ├── hi.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── id.php │ │ ├── index.html │ │ ├── is.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ko.php │ │ ├── la.php │ │ ├── lt.php │ │ ├── manifest.json │ │ ├── mk.php │ │ ├── ms.php │ │ ├── mt.php │ │ ├── nl.php │ │ ├── no.php │ │ ├── pl.php │ │ ├── pt.php │ │ ├── pt_br.php │ │ ├── pt_eu.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sk.php │ │ ├── sl.php │ │ ├── sr.php │ │ ├── sv.php │ │ ├── sw.php │ │ ├── th.php │ │ ├── tl.php │ │ ├── tr.php │ │ ├── uk.php │ │ ├── vi.php │ │ ├── yi.php │ │ ├── zh_cn.php │ │ └── zh_tw.php │ ├── library.php │ ├── misc │ │ ├── config_core.php │ │ └── index.php │ ├── scripts │ │ ├── daterangepicker.jquery.js │ │ ├── external_form_smart_fill.js │ │ ├── field_types.php │ │ ├── general.js │ │ ├── index.html │ │ ├── jquery-ui-timepicker-addon.js │ │ ├── jquery.js │ │ ├── manage_client_forms.js │ │ ├── manage_email_templates.js │ │ ├── manage_fields.js │ │ ├── manage_fields.min.js │ │ ├── manage_forms.js │ │ ├── manage_menus.js │ │ ├── manage_modules.js │ │ ├── manage_option_lists.js │ │ ├── manage_submissions.js │ │ ├── manage_views.js │ │ ├── rsv.js │ │ └── sortable.js │ ├── smarty_plugins │ │ ├── eval.tpl │ │ ├── function.clients_dropdown.php │ │ ├── function.css_files.php │ │ ├── function.display_account_name.php │ │ ├── function.display_custom_field.php │ │ ├── function.display_edit_submission_view_dropdown.php │ │ ├── function.display_email_template_dropdown.php │ │ ├── function.display_field_type_name.php │ │ ├── function.display_field_type_settings_dropdown.php │ │ ├── function.display_field_types_dropdown.php │ │ ├── function.display_file_field.php │ │ ├── function.display_files.php │ │ ├── function.display_form_name.php │ │ ├── function.display_multi_select_field_values.php │ │ ├── function.display_num_form_submissions.php │ │ ├── function.display_option_list.php │ │ ├── function.display_view_name.php │ │ ├── function.dropdown.php │ │ ├── function.edit_custom_field.php │ │ ├── function.edit_phone_field.php │ │ ├── function.email_patterns_dropdown.php │ │ ├── function.eval_smarty_string.php │ │ ├── function.field_sizes_dropdown.php │ │ ├── function.form_fields_dropdown.php │ │ ├── function.form_view_fields_dropdown.php │ │ ├── function.forms_dropdown.php │ │ ├── function.ft_include.php │ │ ├── function.js_files.php │ │ ├── function.languages_dropdown.php │ │ ├── function.menus_dropdown.php │ │ ├── function.module_function.php │ │ ├── function.option_list_dropdown.php │ │ ├── function.pages_dropdown.php │ │ ├── function.show_page_load_time.php │ │ ├── function.submission_dropdown.php │ │ ├── function.submission_dropdown_multiple.php │ │ ├── function.submission_listing_quicklinks.php │ │ ├── function.template_hook.php │ │ ├── function.themes_dropdown.php │ │ ├── function.timezone_offset_dropdown.php │ │ ├── function.view_fields.php │ │ ├── function.view_phone_field.php │ │ ├── function.views_dropdown.php │ │ ├── modifier.custom_format_date.php │ │ └── modifier.hook_call_defined.php │ └── svg │ │ └── github.svg ├── index.php ├── install │ ├── actions-installation.php │ └── index.php ├── modules │ └── index.html ├── process.php ├── react │ ├── components │ │ ├── Buttons │ │ │ └── index.js │ │ ├── Dialogs │ │ │ └── SessionsExpiredDialog.js │ │ ├── Dropdown.js │ │ ├── Header │ │ │ ├── Header.js │ │ │ └── Header.scss │ │ ├── Icons.js │ │ ├── LoadingOverlay │ │ │ ├── LoadingOverlay.js │ │ │ └── LoadingOverlay.scss │ │ ├── NotificationPanel │ │ │ ├── NotificationPanel.js │ │ │ └── NotificationPanel.scss │ │ ├── Tooltips │ │ │ └── OverflowTip.js │ │ └── index.js │ ├── constants.js │ ├── installation-bundle.js │ ├── installation │ │ ├── Footer │ │ │ ├── Footer.js │ │ │ └── Footer.scss │ │ ├── Layout │ │ │ ├── Layout.component.js │ │ │ ├── Layout.container.js │ │ │ └── Layout.scss │ │ ├── Navigation │ │ │ ├── Navigation.js │ │ │ └── Navigation.scss │ │ ├── index.js │ │ ├── pages │ │ │ ├── Step1.component.js │ │ │ ├── Step1.container.js │ │ │ ├── Step2.component.js │ │ │ ├── Step2.container.js │ │ │ ├── Step3.component.js │ │ │ ├── Step3.container.js │ │ │ ├── Step4.component.js │ │ │ ├── Step4.container.js │ │ │ ├── Step5.component.js │ │ │ ├── Step5.container.js │ │ │ ├── Step6.component.js │ │ │ └── Step6.container.js │ │ └── store │ │ │ ├── index.js │ │ │ ├── installation.actions.js │ │ │ ├── installation.reducer.js │ │ │ └── installation.selectors.js │ ├── store │ │ ├── components │ │ │ ├── actions.js │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ ├── reducers.js │ │ │ └── selectors.js │ │ ├── constants │ │ │ ├── constants.reducer.js │ │ │ ├── constants.selectors.js │ │ │ └── index.js │ │ ├── i18n │ │ │ ├── i18n.reducer.js │ │ │ ├── i18n.selectors.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── init │ │ │ ├── index.js │ │ │ ├── init.actions.js │ │ │ ├── init.reducer.js │ │ │ └── init.selectors.js │ │ ├── reducerRegistry.js │ │ └── userInfo │ │ │ └── index.js │ └── utils │ │ ├── arrayUtils.js │ │ ├── dateUtils.js │ │ ├── generalUtils.js │ │ ├── index.js │ │ ├── navUtils.js │ │ └── validationUtils.js ├── themes │ ├── default │ │ ├── about │ │ │ ├── screenshot.gif │ │ │ ├── theme.php │ │ │ └── thumbnail.gif │ │ ├── admin │ │ │ ├── account │ │ │ │ └── index.tpl │ │ │ ├── clients │ │ │ │ ├── add.tpl │ │ │ │ ├── edit.tpl │ │ │ │ ├── index.tpl │ │ │ │ ├── tab_forms.tpl │ │ │ │ ├── tab_main.tpl │ │ │ │ └── tab_settings.tpl │ │ │ ├── forms │ │ │ │ ├── add │ │ │ │ │ ├── index.tpl │ │ │ │ │ ├── internal.tpl │ │ │ │ │ ├── step1.tpl │ │ │ │ │ ├── step2.tpl │ │ │ │ │ ├── step3.tpl │ │ │ │ │ ├── step4.tpl │ │ │ │ │ ├── step5.tpl │ │ │ │ │ └── step6.tpl │ │ │ │ ├── delete_form.tpl │ │ │ │ ├── edit │ │ │ │ │ ├── index.tpl │ │ │ │ │ ├── tab_edit_email.tpl │ │ │ │ │ ├── tab_edit_email_tab1.tpl │ │ │ │ │ ├── tab_edit_email_tab2.tpl │ │ │ │ │ ├── tab_edit_email_tab3.tpl │ │ │ │ │ ├── tab_edit_email_tab4.tpl │ │ │ │ │ ├── tab_edit_view.tpl │ │ │ │ │ ├── tab_edit_view__fields.tpl │ │ │ │ │ ├── tab_edit_view__filters.tpl │ │ │ │ │ ├── tab_edit_view__list_page.tpl │ │ │ │ │ ├── tab_edit_view__main.tpl │ │ │ │ │ ├── tab_edit_view__tabs.tpl │ │ │ │ │ ├── tab_email_settings.tpl │ │ │ │ │ ├── tab_emails.tpl │ │ │ │ │ ├── tab_fields.tpl │ │ │ │ │ ├── tab_main.tpl │ │ │ │ │ ├── tab_public_form_omit_list.tpl │ │ │ │ │ ├── tab_public_view_omit_list.tpl │ │ │ │ │ └── tab_views.tpl │ │ │ │ ├── edit_submission.tpl │ │ │ │ ├── form_placeholders.tpl │ │ │ │ ├── index.tpl │ │ │ │ ├── option_lists │ │ │ │ │ ├── edit.tpl │ │ │ │ │ ├── index.tpl │ │ │ │ │ ├── tab_form_fields.tpl │ │ │ │ │ └── tab_main.tpl │ │ │ │ └── submissions.tpl │ │ │ ├── index.html │ │ │ ├── modules │ │ │ │ ├── about.tpl │ │ │ │ └── index.tpl │ │ │ ├── settings │ │ │ │ ├── index.tpl │ │ │ │ ├── tab_accounts.tpl │ │ │ │ ├── tab_edit_admin_menu.tpl │ │ │ │ ├── tab_edit_client_menu.tpl │ │ │ │ ├── tab_files.tpl │ │ │ │ ├── tab_main.tpl │ │ │ │ └── tab_menus.tpl │ │ │ └── themes │ │ │ │ ├── about.tpl │ │ │ │ └── index.tpl │ │ ├── clients │ │ │ ├── account │ │ │ │ ├── index.tpl │ │ │ │ ├── tab_main.tpl │ │ │ │ └── tab_settings.tpl │ │ │ ├── forms │ │ │ │ ├── edit_submission.tpl │ │ │ │ └── index.tpl │ │ │ └── index.tpl │ │ ├── css │ │ │ ├── index.html │ │ │ └── smoothness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_000000_40x100.png │ │ │ │ ├── ui-bg_flat_0_444444_40x100.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui-1.8.6.custom.css │ │ │ │ └── jquery-ui.css │ │ ├── error.tpl │ │ ├── footer.tpl │ │ ├── forget_password.tpl │ │ ├── header.tpl │ │ ├── images │ │ │ ├── account_section_left_aquamarine2x.png │ │ │ ├── account_section_left_blue2x.png │ │ │ ├── account_section_left_dark_blue2x.png │ │ │ ├── account_section_left_green2x.png │ │ │ ├── account_section_left_grey2x.png │ │ │ ├── account_section_left_light_brown2x.png │ │ │ ├── account_section_left_orange2x.png │ │ │ ├── account_section_left_purple2x.png │ │ │ ├── account_section_left_red2x.png │ │ │ ├── account_section_left_yellow2x.png │ │ │ ├── account_section_right_aquamarine2x.png │ │ │ ├── account_section_right_blue2x.png │ │ │ ├── account_section_right_dark_blue2x.png │ │ │ ├── account_section_right_green2x.png │ │ │ ├── account_section_right_grey2x.png │ │ │ ├── account_section_right_light_brown2x.png │ │ │ ├── account_section_right_orange2x.png │ │ │ ├── account_section_right_purple2x.png │ │ │ ├── account_section_right_red2x.png │ │ │ ├── account_section_right_yellow2x.png │ │ │ ├── admin_edit.png │ │ │ ├── admin_view.png │ │ │ ├── ajax_activity.gif │ │ │ ├── ajax_activity_grey.gif │ │ │ ├── ajax_activity_light_grey.gif │ │ │ ├── ajax_activity_yellow.gif │ │ │ ├── ajax_no_activity.gif │ │ │ ├── ajax_no_activity_grey.gif │ │ │ ├── ajax_no_activity_light_grey.gif │ │ │ ├── ajax_no_activity_yellow.gif │ │ │ ├── columns.png │ │ │ ├── delete.png │ │ │ ├── delete_bg.jpg │ │ │ ├── delete_group.png │ │ │ ├── edit.png │ │ │ ├── edit_form.png │ │ │ ├── edit_small.gif │ │ │ ├── favicon.ico │ │ │ ├── fields.png │ │ │ ├── fields_table_bg.png │ │ │ ├── filter.png │ │ │ ├── icon_accounts.gif │ │ │ ├── icon_forms.gif │ │ │ ├── icon_login.gif │ │ │ ├── icon_modules.gif │ │ │ ├── icon_option_lists.gif │ │ │ ├── icon_settings.gif │ │ │ ├── icon_themes.gif │ │ │ ├── index.php │ │ │ ├── left_bg.jpg │ │ │ ├── left_nav_bg.jpg │ │ │ ├── list_table_heading.jpg │ │ │ ├── list_table_heading_over.jpg │ │ │ ├── login.png │ │ │ ├── logo_aquamarine2x.png │ │ │ ├── logo_blue2x.png │ │ │ ├── logo_dark_blue2x.png │ │ │ ├── logo_green2x.png │ │ │ ├── logo_grey2x.png │ │ │ ├── logo_light_brown2x.png │ │ │ ├── logo_orange2x.png │ │ │ ├── logo_purple2x.png │ │ │ ├── logo_red2x.png │ │ │ ├── logo_yellow2x.png │ │ │ ├── main_bg.jpg │ │ │ ├── nav_down.jpg │ │ │ ├── nav_row_bg.jpg │ │ │ ├── page_content_bg.jpg │ │ │ ├── placeholders.png │ │ │ ├── popup_bg.jpg │ │ │ ├── popup_header_bg_green.png │ │ │ ├── popup_header_bg_grey.png │ │ │ ├── sort.png │ │ │ ├── sort_down.gif │ │ │ ├── sort_up.gif │ │ │ ├── submenu_item.gif │ │ │ ├── tab_not_selected_bg.gif │ │ │ ├── tabs.png │ │ │ ├── top_banner_bg.jpg │ │ │ ├── top_row_aquamarine2x.png │ │ │ ├── top_row_blue2x.png │ │ │ ├── top_row_dark_blue2x.png │ │ │ ├── top_row_green2x.png │ │ │ ├── top_row_grey2x.png │ │ │ ├── top_row_light_brown2x.png │ │ │ ├── top_row_orange2x.png │ │ │ ├── top_row_purple2x.png │ │ │ ├── top_row_red2x.png │ │ │ ├── top_row_yellow2x.png │ │ │ ├── up.jpg │ │ │ ├── up_down.png │ │ │ ├── utilities.png │ │ │ ├── utilities_small.png │ │ │ └── view.png │ │ ├── index.tpl │ │ ├── js_pagination.tpl │ │ ├── menu.tpl │ │ ├── messages.tpl │ │ ├── module_menu.tpl │ │ ├── modules_footer.tpl │ │ ├── modules_header.tpl │ │ ├── pagination.tpl │ │ ├── sass │ │ │ ├── _emails.scss │ │ │ ├── _fields.scss │ │ │ ├── _forms.scss │ │ │ ├── _general.scss │ │ │ ├── _menus.scss │ │ │ ├── _navigation.scss │ │ │ ├── _option_lists.scss │ │ │ ├── _public.scss │ │ │ ├── _sortable.scss │ │ │ ├── _submissions.scss │ │ │ ├── _tabs.scss │ │ │ ├── _views.scss │ │ │ ├── _widgets.scss │ │ │ ├── index.scss │ │ │ ├── swatch_aquamarine.scss │ │ │ ├── swatch_blue.scss │ │ │ ├── swatch_dark_blue.scss │ │ │ ├── swatch_green.scss │ │ │ ├── swatch_grey.scss │ │ │ ├── swatch_light_brown.scss │ │ │ ├── swatch_orange.scss │ │ │ ├── swatch_purple.scss │ │ │ ├── swatch_red.scss │ │ │ └── swatch_yellow.scss │ │ ├── scripts │ │ │ ├── jquery-ui-1.8.6.custom.min.js │ │ │ └── jquery-ui.js │ │ ├── tabset_close.tpl │ │ └── tabset_open.tpl │ └── index.html ├── upload │ └── index.html └── vendor │ ├── autoload.php │ ├── bin │ └── validate-json │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ ├── justinrainbow │ └── json-schema │ │ ├── .gitattributes │ │ ├── .php_cs.dist │ │ ├── LICENSE │ │ ├── bin │ │ └── validate-json │ │ ├── demo │ │ ├── data.json │ │ ├── demo.php │ │ └── schema.json │ │ ├── dist │ │ └── schema │ │ │ ├── json-schema-draft-03.json │ │ │ └── json-schema-draft-04.json │ │ ├── phpunit.xml.dist │ │ └── src │ │ └── JsonSchema │ │ ├── Constraints │ │ ├── BaseConstraint.php │ │ ├── CollectionConstraint.php │ │ ├── Constraint.php │ │ ├── ConstraintInterface.php │ │ ├── EnumConstraint.php │ │ ├── Factory.php │ │ ├── FormatConstraint.php │ │ ├── NumberConstraint.php │ │ ├── ObjectConstraint.php │ │ ├── SchemaConstraint.php │ │ ├── StringConstraint.php │ │ ├── TypeCheck │ │ │ ├── LooseTypeCheck.php │ │ │ ├── StrictTypeCheck.php │ │ │ └── TypeCheckInterface.php │ │ ├── TypeConstraint.php │ │ └── UndefinedConstraint.php │ │ ├── Entity │ │ └── JsonPointer.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidConfigException.php │ │ ├── InvalidSchemaException.php │ │ ├── InvalidSchemaMediaTypeException.php │ │ ├── InvalidSourceUriException.php │ │ ├── JsonDecodingException.php │ │ ├── ResourceNotFoundException.php │ │ ├── RuntimeException.php │ │ ├── UnresolvableJsonPointerException.php │ │ ├── UriResolverException.php │ │ └── ValidationException.php │ │ ├── Iterator │ │ └── ObjectIterator.php │ │ ├── Rfc3339.php │ │ ├── SchemaStorage.php │ │ ├── SchemaStorageInterface.php │ │ ├── Uri │ │ ├── Retrievers │ │ │ ├── AbstractRetriever.php │ │ │ ├── Curl.php │ │ │ ├── FileGetContents.php │ │ │ ├── PredefinedArray.php │ │ │ └── UriRetrieverInterface.php │ │ ├── UriResolver.php │ │ └── UriRetriever.php │ │ ├── UriResolverInterface.php │ │ ├── UriRetrieverInterface.php │ │ └── Validator.php │ ├── ramsey │ └── array_column │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── phpunit.xml.dist │ │ └── src │ │ └── array_column.php │ └── smarty │ └── smarty │ ├── COMPOSER_RELEASE_NOTES.txt │ ├── INHERITANCE_RELEASE_NOTES.txt │ ├── LICENSE │ ├── NEW_FEATURES.txt │ ├── README │ ├── SMARTY_2_BC_NOTES.txt │ ├── SMARTY_3.0_BC_NOTES.txt │ ├── SMARTY_3.1_NOTES.txt │ ├── change_log.txt │ ├── demo │ ├── configs │ │ └── test.conf │ ├── index.php │ ├── plugins │ │ ├── cacheresource.apc.php │ │ ├── cacheresource.memcache.php │ │ ├── cacheresource.mysql.php │ │ ├── cacheresource.pdo.php │ │ ├── cacheresource.pdo_gzip.php │ │ ├── resource.extendsall.php │ │ ├── resource.mysql.php │ │ └── resource.mysqls.php │ └── templates │ │ ├── footer.tpl │ │ ├── header.tpl │ │ └── index.tpl │ └── libs │ ├── Autoloader.php │ ├── Smarty.class.php │ ├── SmartyBC.class.php │ ├── bootstrap.php │ ├── debug.tpl │ ├── plugins │ ├── block.textformat.php │ ├── function.counter.php │ ├── function.cycle.php │ ├── function.fetch.php │ ├── function.html_checkboxes.php │ ├── function.html_image.php │ ├── function.html_options.php │ ├── function.html_radios.php │ ├── function.html_select_date.php │ ├── function.html_select_time.php │ ├── function.html_table.php │ ├── function.mailto.php │ ├── function.math.php │ ├── modifier.capitalize.php │ ├── modifier.date_format.php │ ├── modifier.debug_print_var.php │ ├── modifier.escape.php │ ├── modifier.regex_replace.php │ ├── modifier.replace.php │ ├── modifier.spacify.php │ ├── modifier.truncate.php │ ├── modifiercompiler.cat.php │ ├── modifiercompiler.count_characters.php │ ├── modifiercompiler.count_paragraphs.php │ ├── modifiercompiler.count_sentences.php │ ├── modifiercompiler.count_words.php │ ├── modifiercompiler.default.php │ ├── modifiercompiler.escape.php │ ├── modifiercompiler.from_charset.php │ ├── modifiercompiler.indent.php │ ├── modifiercompiler.lower.php │ ├── modifiercompiler.noprint.php │ ├── modifiercompiler.string_format.php │ ├── modifiercompiler.strip.php │ ├── modifiercompiler.strip_tags.php │ ├── modifiercompiler.to_charset.php │ ├── modifiercompiler.unescape.php │ ├── modifiercompiler.upper.php │ ├── modifiercompiler.wordwrap.php │ ├── outputfilter.trimwhitespace.php │ ├── shared.escape_special_chars.php │ ├── shared.literal_compiler_param.php │ ├── shared.make_timestamp.php │ ├── shared.mb_str_replace.php │ ├── shared.mb_unicode.php │ ├── shared.mb_wordwrap.php │ └── variablefilter.htmlspecialchars.php │ └── sysplugins │ ├── smarty_cacheresource.php │ ├── smarty_cacheresource_custom.php │ ├── smarty_cacheresource_keyvaluestore.php │ ├── smarty_data.php │ ├── smarty_internal_block.php │ ├── smarty_internal_cacheresource_file.php │ ├── smarty_internal_compile_append.php │ ├── smarty_internal_compile_assign.php │ ├── smarty_internal_compile_block.php │ ├── smarty_internal_compile_block_child.php │ ├── smarty_internal_compile_block_parent.php │ ├── smarty_internal_compile_break.php │ ├── smarty_internal_compile_call.php │ ├── smarty_internal_compile_capture.php │ ├── smarty_internal_compile_config_load.php │ ├── smarty_internal_compile_continue.php │ ├── smarty_internal_compile_debug.php │ ├── smarty_internal_compile_eval.php │ ├── smarty_internal_compile_extends.php │ ├── smarty_internal_compile_for.php │ ├── smarty_internal_compile_foreach.php │ ├── smarty_internal_compile_function.php │ ├── smarty_internal_compile_if.php │ ├── smarty_internal_compile_include.php │ ├── smarty_internal_compile_include_php.php │ ├── smarty_internal_compile_insert.php │ ├── smarty_internal_compile_ldelim.php │ ├── smarty_internal_compile_make_nocache.php │ ├── smarty_internal_compile_nocache.php │ ├── smarty_internal_compile_private_block_plugin.php │ ├── smarty_internal_compile_private_foreachsection.php │ ├── smarty_internal_compile_private_function_plugin.php │ ├── smarty_internal_compile_private_modifier.php │ ├── smarty_internal_compile_private_object_block_function.php │ ├── smarty_internal_compile_private_object_function.php │ ├── smarty_internal_compile_private_php.php │ ├── smarty_internal_compile_private_print_expression.php │ ├── smarty_internal_compile_private_registered_block.php │ ├── smarty_internal_compile_private_registered_function.php │ ├── smarty_internal_compile_private_special_variable.php │ ├── smarty_internal_compile_rdelim.php │ ├── smarty_internal_compile_section.php │ ├── smarty_internal_compile_setfilter.php │ ├── smarty_internal_compile_shared_inheritance.php │ ├── smarty_internal_compile_while.php │ ├── smarty_internal_compilebase.php │ ├── smarty_internal_config_file_compiler.php │ ├── smarty_internal_configfilelexer.php │ ├── smarty_internal_configfileparser.php │ ├── smarty_internal_data.php │ ├── smarty_internal_debug.php │ ├── smarty_internal_extension_handler.php │ ├── smarty_internal_method_addautoloadfilters.php │ ├── smarty_internal_method_adddefaultmodifiers.php │ ├── smarty_internal_method_append.php │ ├── smarty_internal_method_appendbyref.php │ ├── smarty_internal_method_assignbyref.php │ ├── smarty_internal_method_assignglobal.php │ ├── smarty_internal_method_clearallassign.php │ ├── smarty_internal_method_clearallcache.php │ ├── smarty_internal_method_clearassign.php │ ├── smarty_internal_method_clearcache.php │ ├── smarty_internal_method_clearcompiledtemplate.php │ ├── smarty_internal_method_clearconfig.php │ ├── smarty_internal_method_compileallconfig.php │ ├── smarty_internal_method_compilealltemplates.php │ ├── smarty_internal_method_configload.php │ ├── smarty_internal_method_createdata.php │ ├── smarty_internal_method_getautoloadfilters.php │ ├── smarty_internal_method_getconfigvariable.php │ ├── smarty_internal_method_getconfigvars.php │ ├── smarty_internal_method_getdebugtemplate.php │ ├── smarty_internal_method_getdefaultmodifiers.php │ ├── smarty_internal_method_getglobal.php │ ├── smarty_internal_method_getregisteredobject.php │ ├── smarty_internal_method_getstreamvariable.php │ ├── smarty_internal_method_gettags.php │ ├── smarty_internal_method_gettemplatevars.php │ ├── smarty_internal_method_loadfilter.php │ ├── smarty_internal_method_loadplugin.php │ ├── smarty_internal_method_mustcompile.php │ ├── smarty_internal_method_registercacheresource.php │ ├── smarty_internal_method_registerclass.php │ ├── smarty_internal_method_registerdefaultconfighandler.php │ ├── smarty_internal_method_registerdefaultpluginhandler.php │ ├── smarty_internal_method_registerdefaulttemplatehandler.php │ ├── smarty_internal_method_registerfilter.php │ ├── smarty_internal_method_registerobject.php │ ├── smarty_internal_method_registerplugin.php │ ├── smarty_internal_method_registerresource.php │ ├── smarty_internal_method_setautoloadfilters.php │ ├── smarty_internal_method_setdebugtemplate.php │ ├── smarty_internal_method_setdefaultmodifiers.php │ ├── smarty_internal_method_unloadfilter.php │ ├── smarty_internal_method_unregistercacheresource.php │ ├── smarty_internal_method_unregisterfilter.php │ ├── smarty_internal_method_unregisterobject.php │ ├── smarty_internal_method_unregisterplugin.php │ ├── smarty_internal_method_unregisterresource.php │ ├── smarty_internal_nocache_insert.php │ ├── smarty_internal_parsetree.php │ ├── smarty_internal_parsetree_code.php │ ├── smarty_internal_parsetree_dq.php │ ├── smarty_internal_parsetree_dqcontent.php │ ├── smarty_internal_parsetree_tag.php │ ├── smarty_internal_parsetree_template.php │ ├── smarty_internal_parsetree_text.php │ ├── smarty_internal_resource_eval.php │ ├── smarty_internal_resource_extends.php │ ├── smarty_internal_resource_file.php │ ├── smarty_internal_resource_php.php │ ├── smarty_internal_resource_registered.php │ ├── smarty_internal_resource_stream.php │ ├── smarty_internal_resource_string.php │ ├── smarty_internal_runtime_cachemodify.php │ ├── smarty_internal_runtime_cacheresourcefile.php │ ├── smarty_internal_runtime_capture.php │ ├── smarty_internal_runtime_codeframe.php │ ├── smarty_internal_runtime_filterhandler.php │ ├── smarty_internal_runtime_foreach.php │ ├── smarty_internal_runtime_getincludepath.php │ ├── smarty_internal_runtime_inheritance.php │ ├── smarty_internal_runtime_make_nocache.php │ ├── smarty_internal_runtime_tplfunction.php │ ├── smarty_internal_runtime_updatecache.php │ ├── smarty_internal_runtime_updatescope.php │ ├── smarty_internal_runtime_writefile.php │ ├── smarty_internal_smartytemplatecompiler.php │ ├── smarty_internal_template.php │ ├── smarty_internal_templatebase.php │ ├── smarty_internal_templatecompilerbase.php │ ├── smarty_internal_templatelexer.php │ ├── smarty_internal_templateparser.php │ ├── smarty_internal_testinstall.php │ ├── smarty_internal_undefined.php │ ├── smarty_resource.php │ ├── smarty_resource_custom.php │ ├── smarty_resource_recompiled.php │ ├── smarty_resource_uncompiled.php │ ├── smarty_security.php │ ├── smarty_template_cached.php │ ├── smarty_template_compiled.php │ ├── smarty_template_config.php │ ├── smarty_template_resource_base.php │ ├── smarty_template_source.php │ ├── smarty_undefined_variable.php │ ├── smarty_variable.php │ ├── smartycompilerexception.php │ └── smartyexception.php ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.test.js -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.19.1 2 | -------------------------------------------------------------------------------- /.sasslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/.sasslintrc -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/gruntfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/package.json -------------------------------------------------------------------------------- /src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/LICENSE.txt -------------------------------------------------------------------------------- /src/admin/account/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/account/index.php -------------------------------------------------------------------------------- /src/admin/clients/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/clients/add.php -------------------------------------------------------------------------------- /src/admin/clients/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/clients/edit.php -------------------------------------------------------------------------------- /src/admin/clients/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/clients/index.php -------------------------------------------------------------------------------- /src/admin/clients/page_forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/clients/page_forms.php -------------------------------------------------------------------------------- /src/admin/clients/page_main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/clients/page_main.php -------------------------------------------------------------------------------- /src/admin/clients/page_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/clients/page_settings.php -------------------------------------------------------------------------------- /src/admin/forms/add/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/add/index.php -------------------------------------------------------------------------------- /src/admin/forms/add/internal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/add/internal.php -------------------------------------------------------------------------------- /src/admin/forms/add/step1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/add/step1.php -------------------------------------------------------------------------------- /src/admin/forms/add/step2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/add/step2.php -------------------------------------------------------------------------------- /src/admin/forms/add/step3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/add/step3.php -------------------------------------------------------------------------------- /src/admin/forms/add/step4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/add/step4.php -------------------------------------------------------------------------------- /src/admin/forms/add/step5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/add/step5.php -------------------------------------------------------------------------------- /src/admin/forms/add/step6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/add/step6.php -------------------------------------------------------------------------------- /src/admin/forms/delete_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/delete_form.php -------------------------------------------------------------------------------- /src/admin/forms/edit/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/edit/index.php -------------------------------------------------------------------------------- /src/admin/forms/edit/page_edit_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/edit/page_edit_email.php -------------------------------------------------------------------------------- /src/admin/forms/edit/page_edit_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/edit/page_edit_view.php -------------------------------------------------------------------------------- /src/admin/forms/edit/page_email_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/edit/page_email_settings.php -------------------------------------------------------------------------------- /src/admin/forms/edit/page_emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/edit/page_emails.php -------------------------------------------------------------------------------- /src/admin/forms/edit/page_fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/edit/page_fields.php -------------------------------------------------------------------------------- /src/admin/forms/edit/page_main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/edit/page_main.php -------------------------------------------------------------------------------- /src/admin/forms/edit/page_views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/edit/page_views.php -------------------------------------------------------------------------------- /src/admin/forms/edit_submission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/edit_submission.php -------------------------------------------------------------------------------- /src/admin/forms/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/index.php -------------------------------------------------------------------------------- /src/admin/forms/option_lists/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/option_lists/edit.php -------------------------------------------------------------------------------- /src/admin/forms/option_lists/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/option_lists/index.php -------------------------------------------------------------------------------- /src/admin/forms/option_lists/page_main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/option_lists/page_main.php -------------------------------------------------------------------------------- /src/admin/forms/submissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/forms/submissions.php -------------------------------------------------------------------------------- /src/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/index.php -------------------------------------------------------------------------------- /src/admin/modules/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/modules/about.php -------------------------------------------------------------------------------- /src/admin/modules/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/modules/index.php -------------------------------------------------------------------------------- /src/admin/redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/redirect.php -------------------------------------------------------------------------------- /src/admin/settings/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/settings/index.php -------------------------------------------------------------------------------- /src/admin/settings/page_accounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/settings/page_accounts.php -------------------------------------------------------------------------------- /src/admin/settings/page_edit_admin_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/settings/page_edit_admin_menu.php -------------------------------------------------------------------------------- /src/admin/settings/page_edit_client_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/settings/page_edit_client_menu.php -------------------------------------------------------------------------------- /src/admin/settings/page_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/settings/page_files.php -------------------------------------------------------------------------------- /src/admin/settings/page_main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/settings/page_main.php -------------------------------------------------------------------------------- /src/admin/settings/page_menus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/settings/page_menus.php -------------------------------------------------------------------------------- /src/admin/themes/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/themes/about.php -------------------------------------------------------------------------------- /src/admin/themes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/admin/themes/index.php -------------------------------------------------------------------------------- /src/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/cache/index.html -------------------------------------------------------------------------------- /src/clients/account/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/clients/account/index.php -------------------------------------------------------------------------------- /src/clients/account/page_main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/clients/account/page_main.php -------------------------------------------------------------------------------- /src/clients/account/page_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/clients/account/page_settings.php -------------------------------------------------------------------------------- /src/clients/forms/edit_submission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/clients/forms/edit_submission.php -------------------------------------------------------------------------------- /src/clients/forms/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/clients/forms/index.php -------------------------------------------------------------------------------- /src/clients/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/clients/index.php -------------------------------------------------------------------------------- /src/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/error.php -------------------------------------------------------------------------------- /src/forget_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/forget_password.php -------------------------------------------------------------------------------- /src/global/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/global/api/index.html -------------------------------------------------------------------------------- /src/global/api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/global/api/index.php -------------------------------------------------------------------------------- /src/global/api/recaptchalib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/global/api/recaptchalib.php -------------------------------------------------------------------------------- /src/global/code/Accounts.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/global/code/Accounts.class.php -------------------------------------------------------------------------------- /src/global/code/Administrator.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/global/code/Administrator.class.php -------------------------------------------------------------------------------- /src/global/code/Clients.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/global/code/Clients.class.php -------------------------------------------------------------------------------- /src/global/code/Constants.class.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/themes/default/tabset_open.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/themes/default/tabset_open.tpl -------------------------------------------------------------------------------- /src/themes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/themes/index.html -------------------------------------------------------------------------------- /src/upload/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/autoload.php -------------------------------------------------------------------------------- /src/vendor/bin/validate-json: -------------------------------------------------------------------------------- 1 | ../justinrainbow/json-schema/bin/validate-json -------------------------------------------------------------------------------- /src/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /src/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/composer/LICENSE -------------------------------------------------------------------------------- /src/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /src/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /src/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /src/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /src/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /src/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /src/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/composer/installed.json -------------------------------------------------------------------------------- /src/vendor/justinrainbow/json-schema/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/justinrainbow/json-schema/LICENSE -------------------------------------------------------------------------------- /src/vendor/justinrainbow/json-schema/demo/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo":"bar" 3 | } 4 | -------------------------------------------------------------------------------- /src/vendor/justinrainbow/json-schema/demo/schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "object" 3 | } 4 | -------------------------------------------------------------------------------- /src/vendor/ramsey/array_column/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | phpunit.xml 3 | composer.lock 4 | build 5 | vendor 6 | *.phar 7 | -------------------------------------------------------------------------------- /src/vendor/ramsey/array_column/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/ramsey/array_column/CHANGELOG.md -------------------------------------------------------------------------------- /src/vendor/ramsey/array_column/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/ramsey/array_column/LICENSE -------------------------------------------------------------------------------- /src/vendor/smarty/smarty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/smarty/smarty/LICENSE -------------------------------------------------------------------------------- /src/vendor/smarty/smarty/NEW_FEATURES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/smarty/smarty/NEW_FEATURES.txt -------------------------------------------------------------------------------- /src/vendor/smarty/smarty/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/smarty/smarty/README -------------------------------------------------------------------------------- /src/vendor/smarty/smarty/change_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/smarty/smarty/change_log.txt -------------------------------------------------------------------------------- /src/vendor/smarty/smarty/demo/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/smarty/smarty/demo/index.php -------------------------------------------------------------------------------- /src/vendor/smarty/smarty/demo/templates/footer.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/vendor/smarty/smarty/libs/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/smarty/smarty/libs/Autoloader.php -------------------------------------------------------------------------------- /src/vendor/smarty/smarty/libs/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/smarty/smarty/libs/bootstrap.php -------------------------------------------------------------------------------- /src/vendor/smarty/smarty/libs/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/src/vendor/smarty/smarty/libs/debug.tpl -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formtools/core/HEAD/yarn.lock --------------------------------------------------------------------------------