Add language tags definition, caret and bubbles in editor.
authorRadek Czajka <rczajka@rczajka.pl>
Mon, 23 Aug 2021 12:39:57 +0000 (14:39 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Mon, 23 Aug 2021 12:39:57 +0000 (14:39 +0200)
commitb9166b62220208f49bfd3521e547d60d377ab7c1
treec0f0a289e8d0b822a223dd721993e5e764946ca3
parent57a3ad0520284210f945b0e2f91f67233e49d07e
Add language tags definition, caret and bubbles in editor.
27 files changed:
src/redakcja/settings/__init__.py
src/redakcja/static/css/html.scss
src/redakcja/static/css/master.css
src/redakcja/static/js/wiki/caret.js [new file with mode: 0644]
src/redakcja/static/js/wiki/view_editor_wysiwyg.js
src/redakcja/static/js/wiki/view_properties.js
src/redakcja/static/js/wiki/wikiapi.js
src/redakcja/static/js/wiki/xslt.js
src/redakcja/urls.py
src/wiki/templates/wiki/document_details_base.html
src/wiki/templates/wiki/tabs/wysiwyg_editor.html
src/wlxml/__init__.py [new file with mode: 0644]
src/wlxml/admin.py [new file with mode: 0644]
src/wlxml/apps.py [new file with mode: 0644]
src/wlxml/migrations/0001_initial.py [new file with mode: 0644]
src/wlxml/migrations/0002_initial_data.py [new file with mode: 0644]
src/wlxml/migrations/0003_auto_20210813_2321.py [new file with mode: 0644]
src/wlxml/migrations/0004_auto_20210814_1052.py [new file with mode: 0644]
src/wlxml/migrations/0005_tag_example_txt.py [new file with mode: 0644]
src/wlxml/migrations/__init__.py [new file with mode: 0644]
src/wlxml/models.py [new file with mode: 0644]
src/wlxml/templates/wlxml/editor.css [new file with mode: 0644]
src/wlxml/templates/wlxml/tag_detail.html [new file with mode: 0644]
src/wlxml/templates/wlxml/tag_list.html [new file with mode: 0644]
src/wlxml/templates/wlxml/wl2html.xsl [new file with mode: 0644]
src/wlxml/urls.py [new file with mode: 0644]
src/wlxml/views.py [new file with mode: 0644]