wagtail-custom-code-editor 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wagtail_custom_code_editor-0.0.1/LICENSE +17 -0
- wagtail_custom_code_editor-0.0.1/MANIFEST.in +6 -0
- wagtail_custom_code_editor-0.0.1/PKG-INFO +134 -0
- wagtail_custom_code_editor-0.0.1/README.md +80 -0
- wagtail_custom_code_editor-0.0.1/pyproject.toml +57 -0
- wagtail_custom_code_editor-0.0.1/setup.cfg +4 -0
- wagtail_custom_code_editor-0.0.1/setup.py +20 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/__init__.py +0 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/apps.py +6 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/blocks.py +52 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/fields.py +11 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/files.py +3 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/migrations/__init__.py +0 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/panels.py +43 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/settings.py +453 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ace.js +21344 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-beautify.js +330 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-code_lens.js +202 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-command_bar.js +459 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-elastic_tabstops_lite.js +227 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-emmet.js +1293 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-error_marker.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-hardwrap.js +116 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-inline_autocomplete.js +3380 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-keybinding_menu.js +136 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-language_tools.js +2577 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-linking.js +56 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-modelist.js +264 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-options.js +767 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-prompt.js +3065 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-rtl.js +120 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-searchbox.js +344 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-settings_menu.js +789 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-simple_tokenizer.js +45 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-spellcheck.js +67 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-split.js +186 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-static_highlight.js +184 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-statusbar.js +48 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-textarea.js +380 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-themelist.js +74 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/ext-whitespace.js +192 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/keybinding-emacs.js +1067 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/keybinding-sublime.js +409 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/keybinding-vim.js +7056 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/keybinding-vscode.js +255 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-abap.js +200 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-abc.js +243 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-actionscript.js +234 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-ada.js +108 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-alda.js +279 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-apache_conf.js +318 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-apex.js +402 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-applescript.js +232 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-aql.js +92 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-asciidoc.js +311 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-asl.js +357 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-assembly_arm32.js +185 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-assembly_x86.js +170 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-astro.js +2474 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-autohotkey.js +208 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-batchfile.js +199 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-bibtex.js +318 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-c9search.js +250 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-c_cpp.js +417 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-cirru.js +192 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-clojure.js +322 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-cobol.js +82 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-coffee.js +335 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-coldfusion.js +2409 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-crystal.js +586 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-csharp.js +413 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-csound_document.js +4072 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-csound_orchestra.js +2923 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-csound_score.js +409 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-csp.js +59 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-css.js +632 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-curly.js +2381 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-cuttlefish.js +56 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-d.js +450 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-dart.js +618 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-diff.js +129 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-django.js +2416 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-dockerfile.js +427 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-dot.js +348 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-drools.js +557 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-edifact.js +130 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-eiffel.js +120 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-ejs.js +3277 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-elixir.js +443 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-elm.js +274 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-erlang.js +836 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-flix.js +164 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-forth.js +253 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-fortran.js +361 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-fsharp.js +277 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-fsl.js +226 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-ftl.js +1255 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-gcode.js +74 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-gherkin.js +154 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-gitignore.js +49 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-glsl.js +475 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-gobstones.js +1459 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-golang.js +341 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-graphqlschema.js +174 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-groovy.js +1401 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-haml.js +1906 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-handlebars.js +2438 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-haskell.js +324 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-haskell_cabal.js +135 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-haxe.js +313 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-hjson.js +318 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-html.js +2339 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-html_elixir.js +2845 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-html_ruby.js +3294 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-ini.js +138 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-io.js +210 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-ion.js +477 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-jack.js +293 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-jade.js +2017 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-java.js +1556 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-javascript.js +1191 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-jexl.js +270 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-json.js +275 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-json5.js +308 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-jsoniq.js +2577 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-jsp.js +1610 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-jssm.js +293 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-jsx.js +1209 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-julia.js +254 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-kotlin.js +445 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-latex.js +252 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-latte.js +2522 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-less.js +742 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-liquid.js +2741 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-lisp.js +104 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-livescript.js +272 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-logiql.js +272 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-logtalk.js +309 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-lsl.js +287 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-lua.js +393 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-luapage.js +2785 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-lucene.js +145 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-makefile.js +374 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-markdown.js +2935 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-mask.js +1757 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-matlab.js +239 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-maze.js +256 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-mediawiki.js +580 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-mel.js +213 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-mips.js +231 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-mixal.js +110 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-mushcode.js +642 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-mysql.js +150 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-nasal.js +513 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-nginx.js +262 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-nim.js +325 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-nix.js +555 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-nsis.js +279 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-nunjucks.js +2518 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-objectivec.js +626 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-ocaml.js +378 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-odin.js +449 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-partiql.js +750 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-pascal.js +204 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-perl.js +318 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-pgsql.js +1860 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-php.js +14071 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-php_laravel_blade.js +14259 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-pig.js +278 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-plain_text.js +27 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-plsql.js +268 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-powershell.js +567 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-praat.js +412 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-prisma.js +457 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-prolog.js +305 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-properties.js +69 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-protobuf.js +498 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-prql.js +323 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-puppet.js +316 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-python.js +476 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-qml.js +346 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-r.js +387 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-raku.js +516 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-razor.js +2691 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-rdoc.js +286 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-red.js +388 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-redshift.js +321 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-rhtml.js +2750 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-robot.js +168 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-rst.js +245 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-ruby.js +921 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-rust.js +392 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-sac.js +349 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-sass.js +480 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-scad.js +350 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-scala.js +1394 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-scheme.js +210 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-scrypt.js +317 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-scss.js +768 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-sh.js +387 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-sjs.js +1393 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-slim.js +4770 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-smarty.js +2436 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-smithy.js +456 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-snippets.js +183 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-soy_template.js +2611 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-space.js +151 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-sparql.js +288 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-sql.js +221 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-sqlserver.js +391 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-stylus.js +443 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-svg.js +1487 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-swift.js +342 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-tcl.js +338 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-terraform.js +346 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-tex.js +212 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-text.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-textile.js +125 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-toml.js +129 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-tsx.js +1276 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-turtle.js +264 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-twig.js +2502 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-typescript.js +1254 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-vala.js +554 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-vbscript.js +602 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-velocity.js +2580 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-verilog.js +98 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-vhdl.js +94 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-visualforce.js +2454 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-vue.js +3834 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-wollok.js +1328 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-xml.js +477 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-xquery.js +2589 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-yaml.js +395 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-zeek.js +502 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/mode-zig.js +585 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/abap.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/abc.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/actionscript.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/ada.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/alda.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/apache_conf.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/apex.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/applescript.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/aql.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/asciidoc.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/asl.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/assembly_arm32.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/assembly_x86.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/astro.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/autohotkey.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/batchfile.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/bibtex.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/c9search.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/c_cpp.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/cirru.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/clojure.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/cobol.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/coffee.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/coldfusion.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/crystal.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/csharp.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/csound_document.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/csound_orchestra.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/csound_score.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/csp.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/css.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/curly.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/cuttlefish.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/d.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/dart.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/diff.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/django.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/dockerfile.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/dot.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/drools.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/edifact.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/eiffel.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/ejs.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/elixir.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/elm.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/erlang.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/flix.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/forth.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/fortran.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/fsharp.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/fsl.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/ftl.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/gcode.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/gherkin.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/gitignore.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/glsl.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/gobstones.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/golang.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/graphqlschema.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/groovy.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/haml.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/handlebars.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/haskell.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/haskell_cabal.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/haxe.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/hjson.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/html.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/html_elixir.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/html_ruby.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/ini.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/io.js +74 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/ion.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/jack.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/jade.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/java.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/javascript.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/jexl.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/json.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/json5.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/jsoniq.js +78 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/jsp.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/jssm.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/jsx.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/julia.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/kotlin.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/latex.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/latte.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/less.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/liquid.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/lisp.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/livescript.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/logiql.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/logtalk.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/lsl.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/lua.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/luapage.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/lucene.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/makefile.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/markdown.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/mask.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/matlab.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/maze.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/mediawiki.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/mel.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/mips.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/mixal.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/mushcode.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/mysql.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/nasal.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/nginx.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/nim.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/nix.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/nsis.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/nunjucks.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/objectivec.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/ocaml.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/odin.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/partiql.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/pascal.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/perl.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/pgsql.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/php.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/php_laravel_blade.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/pig.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/plain_text.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/plsql.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/powershell.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/praat.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/prisma.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/prolog.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/properties.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/protobuf.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/prql.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/puppet.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/python.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/qml.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/r.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/raku.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/razor.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/rdoc.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/red.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/redshift.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/rhtml.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/robot.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/rst.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/ruby.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/rust.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/sac.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/sass.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/scad.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/scala.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/scheme.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/scrypt.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/scss.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/sh.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/sjs.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/slim.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/smarty.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/smithy.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/snippets.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/soy_template.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/space.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/sparql.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/sql.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/sqlserver.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/stylus.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/svg.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/swift.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/tcl.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/terraform.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/tex.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/text.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/textile.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/toml.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/tsx.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/turtle.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/twig.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/typescript.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/vala.js +199 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/vbscript.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/velocity.js +17 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/verilog.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/vhdl.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/visualforce.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/vue.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/wollok.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/xml.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/xquery.js +78 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/yaml.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/zeek.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/snippets/zig.js +9 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-ambiance.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-chaos.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-chrome.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-cloud9_day.js +19 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-cloud9_night.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-cloud9_night_low_color.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-cloud_editor.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-cloud_editor_dark.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-clouds.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-clouds_midnight.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-cobalt.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-crimson_editor.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-dawn.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-dracula.js +19 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-dreamweaver.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-eclipse.js +19 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-github.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-github_dark.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-github_light_default.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-gob.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-gruvbox.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-gruvbox_dark_hard.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-gruvbox_light_hard.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-idle_fingers.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-iplastic.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-katzenmilch.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-kr_theme.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-kuroir.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-merbivore.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-merbivore_soft.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-mono_industrial.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-monokai.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-nord_dark.js +19 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-one_dark.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-pastel_on_dark.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-solarized_dark.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-solarized_light.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-sqlserver.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-terminal.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-textmate.js +16 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-tomorrow.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-tomorrow_night.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-tomorrow_night_blue.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-tomorrow_night_bright.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-tomorrow_night_eighties.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-twilight.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-vibrant_ink.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/theme-xcode.js +18 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/worker-base.js +1332 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/worker-coffee.js +1381 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/worker-css.js +8913 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/worker-html.js +10843 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/worker-javascript.js +15404 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/worker-json.js +1626 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/worker-lua.js +3519 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/worker-php.js +3788 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/worker-xml.js +3122 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/worker-xquery.js +57579 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/ace/worker-yaml.js +5841 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/clipboard/clipboard.min.js +7 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/css/code.css +552 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/js/custom-code-editor-block-widget.js +34 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/js/custom-code-editor-controller.js +17 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/static/wagtail_custom_code_editor/js/custom-code-editor.js +1183 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/templates/code.html +74 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/templatetags/__init__.py +0 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/templatetags/custom_code_editor_helper.py +121 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/validators.py +21 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/wagtail_hooks.py +12 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor/widgets.py +193 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor.egg-info/PKG-INFO +134 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor.egg-info/SOURCES.txt +500 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor.egg-info/dependency_links.txt +1 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor.egg-info/requires.txt +8 -0
- wagtail_custom_code_editor-0.0.1/wagtail_custom_code_editor.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
Copyright (c) 2024 Amin Shazrin Bin Shaharrudean
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
The above copyright notice and this permission notice shall be included in all
|
|
10
|
+
copies or substantial portions of the Software.
|
|
11
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
12
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
13
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
14
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
15
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
16
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
17
|
+
SOFTWARE.
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: wagtail-custom-code-editor
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: An Ace Editor that works in Wagtail CMS
|
|
5
|
+
Author-email: Amin Shazrin <aminshazrin@yahoo.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
Copyright (c) 2024 Amin Shazrin Bin Shaharrudean
|
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
10
|
+
in the Software without restriction, including without limitation the rights
|
|
11
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
12
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
13
|
+
furnished to do so, subject to the following conditions:
|
|
14
|
+
The above copyright notice and this permission notice shall be included in all
|
|
15
|
+
copies or substantial portions of the Software.
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
|
23
|
+
Project-URL: Homepage, https://github.com/ammein/wagtail-custom-code-editor
|
|
24
|
+
Keywords: wagtail,cms,custom-code-editor,editor,code,acejs,wagtailcms,wagtail-cms,field,field-block
|
|
25
|
+
Classifier: Environment :: Web Environment
|
|
26
|
+
Classifier: Framework :: Django
|
|
27
|
+
Classifier: Framework :: Django :: 5.0
|
|
28
|
+
Classifier: Framework :: Wagtail
|
|
29
|
+
Classifier: Framework :: Wagtail :: 1
|
|
30
|
+
Classifier: Framework :: Wagtail :: 2
|
|
31
|
+
Classifier: Framework :: Wagtail :: 3
|
|
32
|
+
Classifier: Framework :: Wagtail :: 4
|
|
33
|
+
Classifier: Framework :: Wagtail :: 5
|
|
34
|
+
Classifier: Framework :: Wagtail :: 6
|
|
35
|
+
Classifier: Intended Audience :: Developers
|
|
36
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
37
|
+
Classifier: Operating System :: OS Independent
|
|
38
|
+
Classifier: Programming Language :: Python
|
|
39
|
+
Classifier: Programming Language :: Python :: 3
|
|
40
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
41
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
42
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
43
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
44
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
45
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
46
|
+
Description-Content-Type: text/markdown
|
|
47
|
+
License-File: LICENSE
|
|
48
|
+
Requires-Dist: django>=4.2
|
|
49
|
+
Provides-Extra: testing
|
|
50
|
+
Requires-Dist: django>=4.2; extra == "testing"
|
|
51
|
+
Requires-Dist: wagtail>=6.2; extra == "testing"
|
|
52
|
+
Provides-Extra: dynamic
|
|
53
|
+
Requires-Dist: dependencies; extra == "dynamic"
|
|
54
|
+
|
|
55
|
+
# wagtail-custom-code-editor
|
|
56
|
+

|
|
57
|
+
|
|
58
|
+
A **Wagtail Custom Code Editor Field** for your own editor field.
|
|
59
|
+
|
|
60
|
+
This package adds a full-featured code editor that is perfect for coding tutorials, documentation containing code examples, or any other type of page that needs to display code.
|
|
61
|
+
|
|
62
|
+
This field uses the open-source Ace Editor library that you may found here [Ace Editor](https://ace.c9.io/)
|
|
63
|
+
|
|
64
|
+

|
|
65
|
+
|
|
66
|
+
## Features
|
|
67
|
+
- Replace traditional textarea to Ace Editor that you can easily check the linting of the codes.
|
|
68
|
+
- Add snippet for better re-usable small region of source code, or any text format.
|
|
69
|
+
- Configure your own Ace Editor Options to your own editor preferences.
|
|
70
|
+
- Easily change mode available on your own default/custom mode's setup.
|
|
71
|
+
- You can save any code highlights so that it can retain the same highlight's code when you change to different mode.
|
|
72
|
+
|
|
73
|
+
## Documentation
|
|
74
|
+
- [Settings](https://github.com/ammein/wagtail-custom-code-editor/blob/main/docs/settings.md)
|
|
75
|
+
- [Widget Options](https://github.com/ammein/wagtail-custom-code-editor/blob/main/docs/options.md)
|
|
76
|
+
- [Change Modes](https://github.com/ammein/wagtail-custom-code-editor/blob/main/docs/modes.md)
|
|
77
|
+
- [Django Admin](https://github.com/ammein/wagtail-custom-code-editor/blob/main/docs/django-admin.md)
|
|
78
|
+
|
|
79
|
+
## Install
|
|
80
|
+
|
|
81
|
+
In your settings, add the package in `INSTALLED_APPS`:
|
|
82
|
+
```python
|
|
83
|
+
INSTALLED_APPS = [
|
|
84
|
+
...
|
|
85
|
+
"wagtail_custom_code_editor",
|
|
86
|
+
...
|
|
87
|
+
]
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### Usage
|
|
91
|
+
|
|
92
|
+
#### Field
|
|
93
|
+
You can easily add the `CustomCodeEditorField` to your model fields like this:
|
|
94
|
+
```python
|
|
95
|
+
from wagtail_custom_code_editor.fields import CustomCodeEditorField
|
|
96
|
+
|
|
97
|
+
class MyPage(Page):
|
|
98
|
+
code = CustomCodeEditorField()
|
|
99
|
+
...
|
|
100
|
+
```
|
|
101
|
+
> The field is using [Django's JSONField](https://docs.djangoproject.com/en/5.1/ref/models/fields/#django.db.models.JSONField)
|
|
102
|
+
|
|
103
|
+
#### Panel
|
|
104
|
+
Then you add `CustomCodeEditorPanel` like this:
|
|
105
|
+
|
|
106
|
+
```python
|
|
107
|
+
from wagtail_custom_code_editor.panels import CustomCodeEditorPanel
|
|
108
|
+
from wagtail_custom_code_editor.fields import CustomCodeEditorField
|
|
109
|
+
|
|
110
|
+
class MyPage(Page):
|
|
111
|
+
code = CustomCodeEditorField()
|
|
112
|
+
|
|
113
|
+
content_panels = Page.content_panels + [
|
|
114
|
+
CustomCodeEditorPanel('code')
|
|
115
|
+
]
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
#### Frontend
|
|
119
|
+
You can easily grab the JSON value like this:
|
|
120
|
+
```html
|
|
121
|
+
<pre><code>{{ page.code.code }}</code></pre>
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
The JSON returns this two key value:
|
|
125
|
+
```json
|
|
126
|
+
{
|
|
127
|
+
"code": "Any Code here",
|
|
128
|
+
"mode": "html"
|
|
129
|
+
}
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
## License
|
|
133
|
+
|
|
134
|
+
Wagtail-Geo-Widget is released under the [MIT License](http://www.opensource.org/licenses/MIT).
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# wagtail-custom-code-editor
|
|
2
|
+

|
|
3
|
+
|
|
4
|
+
A **Wagtail Custom Code Editor Field** for your own editor field.
|
|
5
|
+
|
|
6
|
+
This package adds a full-featured code editor that is perfect for coding tutorials, documentation containing code examples, or any other type of page that needs to display code.
|
|
7
|
+
|
|
8
|
+
This field uses the open-source Ace Editor library that you may found here [Ace Editor](https://ace.c9.io/)
|
|
9
|
+
|
|
10
|
+

|
|
11
|
+
|
|
12
|
+
## Features
|
|
13
|
+
- Replace traditional textarea to Ace Editor that you can easily check the linting of the codes.
|
|
14
|
+
- Add snippet for better re-usable small region of source code, or any text format.
|
|
15
|
+
- Configure your own Ace Editor Options to your own editor preferences.
|
|
16
|
+
- Easily change mode available on your own default/custom mode's setup.
|
|
17
|
+
- You can save any code highlights so that it can retain the same highlight's code when you change to different mode.
|
|
18
|
+
|
|
19
|
+
## Documentation
|
|
20
|
+
- [Settings](https://github.com/ammein/wagtail-custom-code-editor/blob/main/docs/settings.md)
|
|
21
|
+
- [Widget Options](https://github.com/ammein/wagtail-custom-code-editor/blob/main/docs/options.md)
|
|
22
|
+
- [Change Modes](https://github.com/ammein/wagtail-custom-code-editor/blob/main/docs/modes.md)
|
|
23
|
+
- [Django Admin](https://github.com/ammein/wagtail-custom-code-editor/blob/main/docs/django-admin.md)
|
|
24
|
+
|
|
25
|
+
## Install
|
|
26
|
+
|
|
27
|
+
In your settings, add the package in `INSTALLED_APPS`:
|
|
28
|
+
```python
|
|
29
|
+
INSTALLED_APPS = [
|
|
30
|
+
...
|
|
31
|
+
"wagtail_custom_code_editor",
|
|
32
|
+
...
|
|
33
|
+
]
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Usage
|
|
37
|
+
|
|
38
|
+
#### Field
|
|
39
|
+
You can easily add the `CustomCodeEditorField` to your model fields like this:
|
|
40
|
+
```python
|
|
41
|
+
from wagtail_custom_code_editor.fields import CustomCodeEditorField
|
|
42
|
+
|
|
43
|
+
class MyPage(Page):
|
|
44
|
+
code = CustomCodeEditorField()
|
|
45
|
+
...
|
|
46
|
+
```
|
|
47
|
+
> The field is using [Django's JSONField](https://docs.djangoproject.com/en/5.1/ref/models/fields/#django.db.models.JSONField)
|
|
48
|
+
|
|
49
|
+
#### Panel
|
|
50
|
+
Then you add `CustomCodeEditorPanel` like this:
|
|
51
|
+
|
|
52
|
+
```python
|
|
53
|
+
from wagtail_custom_code_editor.panels import CustomCodeEditorPanel
|
|
54
|
+
from wagtail_custom_code_editor.fields import CustomCodeEditorField
|
|
55
|
+
|
|
56
|
+
class MyPage(Page):
|
|
57
|
+
code = CustomCodeEditorField()
|
|
58
|
+
|
|
59
|
+
content_panels = Page.content_panels + [
|
|
60
|
+
CustomCodeEditorPanel('code')
|
|
61
|
+
]
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
#### Frontend
|
|
65
|
+
You can easily grab the JSON value like this:
|
|
66
|
+
```html
|
|
67
|
+
<pre><code>{{ page.code.code }}</code></pre>
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
The JSON returns this two key value:
|
|
71
|
+
```json
|
|
72
|
+
{
|
|
73
|
+
"code": "Any Code here",
|
|
74
|
+
"mode": "html"
|
|
75
|
+
}
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## License
|
|
79
|
+
|
|
80
|
+
Wagtail-Geo-Widget is released under the [MIT License](http://www.opensource.org/licenses/MIT).
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "wagtail-custom-code-editor"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
dependencies = [
|
|
9
|
+
"django>=4.2", # Replace "X.Y" as appropriate
|
|
10
|
+
]
|
|
11
|
+
description = "An Ace Editor that works in Wagtail CMS"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
authors = [
|
|
14
|
+
{name = "Amin Shazrin", email = "aminshazrin@yahoo.com"},
|
|
15
|
+
]
|
|
16
|
+
keywords = [
|
|
17
|
+
"wagtail",
|
|
18
|
+
"cms",
|
|
19
|
+
"custom-code-editor",
|
|
20
|
+
"editor",
|
|
21
|
+
"code",
|
|
22
|
+
"acejs",
|
|
23
|
+
"wagtailcms",
|
|
24
|
+
"wagtail-cms",
|
|
25
|
+
"field",
|
|
26
|
+
"field-block",
|
|
27
|
+
]
|
|
28
|
+
classifiers = [
|
|
29
|
+
"Environment :: Web Environment",
|
|
30
|
+
"Framework :: Django",
|
|
31
|
+
"Framework :: Django :: 5.0",
|
|
32
|
+
"Framework :: Wagtail",
|
|
33
|
+
"Framework :: Wagtail :: 1",
|
|
34
|
+
"Framework :: Wagtail :: 2",
|
|
35
|
+
"Framework :: Wagtail :: 3",
|
|
36
|
+
"Framework :: Wagtail :: 4",
|
|
37
|
+
"Framework :: Wagtail :: 5",
|
|
38
|
+
"Framework :: Wagtail :: 6",
|
|
39
|
+
"Intended Audience :: Developers",
|
|
40
|
+
"License :: OSI Approved :: MIT License",
|
|
41
|
+
"Operating System :: OS Independent",
|
|
42
|
+
"Programming Language :: Python",
|
|
43
|
+
"Programming Language :: Python :: 3",
|
|
44
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
45
|
+
"Programming Language :: Python :: 3.10",
|
|
46
|
+
"Programming Language :: Python :: 3.11",
|
|
47
|
+
"Programming Language :: Python :: 3.12",
|
|
48
|
+
"Topic :: Internet :: WWW/HTTP",
|
|
49
|
+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
|
|
50
|
+
]
|
|
51
|
+
license = {file = "LICENSE"}
|
|
52
|
+
|
|
53
|
+
[project.optional-dependencies]
|
|
54
|
+
dynamic = ['dependencies']
|
|
55
|
+
|
|
56
|
+
[project.urls]
|
|
57
|
+
Homepage = "https://github.com/ammein/wagtail-custom-code-editor"
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import os
|
|
2
|
+
from setuptools import setup
|
|
3
|
+
|
|
4
|
+
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
|
|
5
|
+
README = readme.read()
|
|
6
|
+
|
|
7
|
+
# allow setup.py to be run from any path
|
|
8
|
+
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
|
9
|
+
|
|
10
|
+
testing_extras = [
|
|
11
|
+
# For test site
|
|
12
|
+
'django>=4.2',
|
|
13
|
+
'wagtail>=6.2',
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
setup(
|
|
17
|
+
extras_require={
|
|
18
|
+
'testing': testing_extras
|
|
19
|
+
},
|
|
20
|
+
)
|
|
File without changes
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from django import forms
|
|
3
|
+
from wagtail.blocks import FieldBlock
|
|
4
|
+
from .validators import CustomCodeEditorDecoder
|
|
5
|
+
from .widgets import CustomCodeEditorWidget
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class CustomCodeEditorBlock(FieldBlock):
|
|
9
|
+
def __init__(
|
|
10
|
+
self,
|
|
11
|
+
mode=None,
|
|
12
|
+
theme=None,
|
|
13
|
+
width="100%",
|
|
14
|
+
height="500px",
|
|
15
|
+
font_size=None,
|
|
16
|
+
keybinding=None,
|
|
17
|
+
useworker=True,
|
|
18
|
+
extensions=None,
|
|
19
|
+
enable_options=True,
|
|
20
|
+
enable_modes=False,
|
|
21
|
+
dropdown_config=None,
|
|
22
|
+
read_only_config=None,
|
|
23
|
+
save_command_config=None,
|
|
24
|
+
options=None,
|
|
25
|
+
modes=None,
|
|
26
|
+
attrs=None,
|
|
27
|
+
**kwargs,
|
|
28
|
+
):
|
|
29
|
+
self._ace_options = {
|
|
30
|
+
"mode": mode,
|
|
31
|
+
"theme": theme,
|
|
32
|
+
"width": width,
|
|
33
|
+
"height": height,
|
|
34
|
+
"font_size": font_size,
|
|
35
|
+
"keybinding": keybinding,
|
|
36
|
+
"useworker": useworker,
|
|
37
|
+
"extensions": extensions,
|
|
38
|
+
"enable_options": enable_options,
|
|
39
|
+
"enable_modes": enable_modes,
|
|
40
|
+
"dropdown_config": dropdown_config,
|
|
41
|
+
"read_only_config": read_only_config,
|
|
42
|
+
"save_command_config": save_command_config,
|
|
43
|
+
"options": options,
|
|
44
|
+
"modes": modes,
|
|
45
|
+
"attrs": attrs,
|
|
46
|
+
"block": True
|
|
47
|
+
}
|
|
48
|
+
self.field = forms.JSONField(widget=CustomCodeEditorWidget(**self._ace_options), decoder=CustomCodeEditorDecoder, **kwargs)
|
|
49
|
+
super().__init__(**kwargs)
|
|
50
|
+
|
|
51
|
+
class Meta:
|
|
52
|
+
icon = 'code'
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from django.db import models
|
|
2
|
+
|
|
3
|
+
from .validators import CustomCodeEditorDecoder
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class CustomCodeEditorField(models.JSONField):
|
|
7
|
+
description = "Custom Code Editor"
|
|
8
|
+
|
|
9
|
+
def __init__(self, *args, **kwargs):
|
|
10
|
+
kwargs['decoder'] = CustomCodeEditorDecoder
|
|
11
|
+
super().__init__(*args, **kwargs)
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
MODES = ['io.js', 'csound_document.js', 'html.js', 'rhtml.js', 'html_ruby.js', 'sh.js', 'cirru.js', 'jack.js', 'haml.js', 'vhdl.js', 'prolog.js', 'jsx.js', 'powershell.js', 'graphqlschema.js', 'c_cpp.js', 'liquid.js', 'perl.js', 'typescript.js', 'scrypt.js', 'verilog.js', 'smarty.js', 'gobstones.js', 'red.js', 'logiql.js', 'slim.js', 'visualforce.js', 'csp.js', 'dart.js', 'odin.js', 'd.js', 'sass.js', 'matlab.js', 'ruby.js', 'pgsql.js', 'fsharp.js', 'curly.js', 'livescript.js', 'xml.js', 'zeek.js', 'raku.js', 'crystal.js', 'apex.js', 'drools.js', 'plain_text.js', 'gherkin.js', 'mask.js', 'sparql.js', 'redshift.js', 'coldfusion.js', 'java.js', 'objectivec.js', 'glsl.js', 'lucene.js', 'applescript.js', 'ada.js', 'lua.js', 'django.js', 'ion.js', 'lisp.js', 'xquery.js', 'properties.js', 'c9search.js', 'soy_template.js', 'tsx.js', 'nasal.js', 'cobol.js', 'tex.js', 'html_elixir.js', 'haskell_cabal.js', 'mediawiki.js', 'r.js', 'smithy.js', 'ejs.js', 'mushcode.js', 'flix.js', 'nix.js', 'jade.js', 'handlebars.js', 'csound_score.js', 'erlang.js', 'mixal.js', 'sqlserver.js', 'ocaml.js', 'terraform.js', 'abap.js', 'fortran.js', 'elm.js', 'jssm.js', 'hjson.js', 'jsp.js', 'haskell.js', 'rdoc.js', 'latex.js', 'julia.js', 'jsoniq.js', 'logtalk.js', 'javascript.js', 'textile.js', 'latte.js', 'nsis.js', 'bibtex.js', 'qml.js', 'protobuf.js', 'fsl.js', 'dot.js', 'space.js', 'jexl.js', 'sjs.js', 'less.js', 'json5.js', 'coffee.js', 'praat.js', 'robot.js', 'asciidoc.js', 'razor.js', 'php.js', 'ini.js', 'sql.js', 'assembly_arm32.js', 'php_laravel_blade.js', 'ftl.js', 'mysql.js', 'toml.js', 'prisma.js', 'scala.js', 'rust.js', 'groovy.js', 'vue.js', 'abc.js', 'apache_conf.js', 'scad.js', 'batchfile.js', 'nunjucks.js', 'gcode.js', 'csound_orchestra.js', 'scheme.js', 'rst.js', 'autohotkey.js', 'haxe.js', 'clojure.js', 'zig.js', 'partiql.js', 'plsql.js', 'velocity.js', 'wollok.js', 'json.js', 'csharp.js', 'tcl.js', 'mips.js', 'prql.js', 'eiffel.js', 'stylus.js', 'maze.js', 'alda.js', 'svg.js', 'elixir.js', 'nginx.js', 'twig.js', 'lsl.js', 'nim.js', 'vbscript.js', 'forth.js', 'css.js', 'luapage.js', 'sac.js', 'yaml.js', 'gitignore.js', 'pascal.js', 'turtle.js', 'vala.js', 'astro.js', 'asl.js', 'kotlin.js', 'golang.js', 'diff.js', 'snippets.js', 'makefile.js', 'python.js', 'assembly_x86.js', 'edifact.js', 'dockerfile.js', 'text.js', 'cuttlefish.js', 'actionscript.js', 'swift.js', 'pig.js', 'puppet.js', 'markdown.js', 'scss.js', 'aql.js', 'mel.js']
|
|
2
|
+
EXTENSIONS = ['ext-command_bar.js', 'ext-inline_autocomplete.js', 'ext-emmet.js', 'ext-textarea.js', 'ext-error_marker.js', 'ext-searchbox.js', 'ext-static_highlight.js', 'ext-code_lens.js', 'ext-spellcheck.js', 'ext-prompt.js', 'ext-hardwrap.js', 'ext-linking.js', 'ext-modelist.js', 'ext-beautify.js', 'ext-themelist.js', 'ext-language_tools.js', 'ext-statusbar.js', 'ext-elastic_tabstops_lite.js', 'ext-split.js', 'ext-options.js', 'ext-simple_tokenizer.js', 'ext-keybinding_menu.js', 'ext-rtl.js', 'ext-whitespace.js', 'ext-settings_menu.js']
|
|
3
|
+
WORKERS = ['worker-css.js', 'worker-coffee.js', 'worker-javascript.js', 'worker-json.js', 'worker-base.js', 'worker-php.js', 'worker-yaml.js', 'worker-lua.js', 'worker-html.js', 'worker-xml.js', 'worker-xquery.js']
|
|
File without changes
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
from wagtail.admin.panels import FieldPanel
|
|
2
|
+
from .widgets import CustomCodeEditorWidget
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class CustomCodeEditorPanel(FieldPanel):
|
|
6
|
+
def __init__(
|
|
7
|
+
self,
|
|
8
|
+
field_name,
|
|
9
|
+
*args,
|
|
10
|
+
**kwargs
|
|
11
|
+
):
|
|
12
|
+
self.ace_options = {
|
|
13
|
+
"mode": kwargs.pop('mode', 'html'),
|
|
14
|
+
"theme": kwargs.pop('theme', 'chrome'),
|
|
15
|
+
"width": kwargs.pop('width', "100%"),
|
|
16
|
+
"height": kwargs.pop('height', '300px'),
|
|
17
|
+
"font_size": kwargs.pop('font_size', None),
|
|
18
|
+
"keybinding": kwargs.pop('keybinding', None),
|
|
19
|
+
"useworker": kwargs.pop('useworker', None),
|
|
20
|
+
"extensions": kwargs.pop('extensions', None),
|
|
21
|
+
"enable_options": kwargs.pop('enable_options', True),
|
|
22
|
+
"enable_modes": kwargs.pop('enable_modes', False),
|
|
23
|
+
"dropdown_config": kwargs.pop('dropdown_config', None),
|
|
24
|
+
"read_only_config": kwargs.pop('read_only_config', None),
|
|
25
|
+
"save_command_config": kwargs.pop('save_command_config', None),
|
|
26
|
+
"options": kwargs.pop('options', None),
|
|
27
|
+
"modes": kwargs.pop('modes', None),
|
|
28
|
+
"attrs": kwargs.pop('attrs', None)
|
|
29
|
+
}
|
|
30
|
+
super().__init__(field_name, *args, **kwargs)
|
|
31
|
+
|
|
32
|
+
# To enable cloning with the same ace options attributes using class instance
|
|
33
|
+
def clone(self):
|
|
34
|
+
instance = super().clone()
|
|
35
|
+
instance.ace_options = self.ace_options
|
|
36
|
+
return instance
|
|
37
|
+
|
|
38
|
+
def get_form_options(self):
|
|
39
|
+
opts = super().get_form_options()
|
|
40
|
+
opts['widgets'] = {
|
|
41
|
+
self.field_name: CustomCodeEditorWidget(**self.ace_options)
|
|
42
|
+
}
|
|
43
|
+
return opts
|