├── .dockerignore ├── .env ├── .gitignore ├── .pep8 ├── .python-version ├── .repo-maint.yaml ├── .travis.yml ├── Changelog.md ├── Dockerfile ├── LICENSE ├── README.md ├── celery.sh ├── conf ├── build │ └── localsettings.yaml └── nginx │ ├── nginx.sh │ ├── shared_config │ ├── sites-available │ └── localhost.conf │ └── uwsgi_server ├── doc ├── Makefile ├── clients.rst ├── conf.py ├── content.rst ├── conversejs.rst ├── development.rst ├── index.rst ├── js_css.rst ├── make.bat ├── settings.rst ├── sharing.rst ├── templatetags.rst └── validators.rst ├── docker-compose.yaml ├── fabfile.py ├── files ├── apache │ └── vhost.conf ├── logrotate │ └── hp-celery ├── systemd │ ├── hp-celery.conf │ ├── hp-celery.service │ └── hp-celery.tmpfiles └── uwsgi │ └── uwsgi.ini ├── hp ├── account │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── formfields.py │ ├── forms.py │ ├── locale │ │ └── de │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── import_xmpp_users.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20160906_1812.py │ │ ├── 0003_remove_user_gpg_fingerprint.py │ │ ├── 0004_user_blocked.py │ │ ├── 0005_user_last_activity.py │ │ ├── 0006_notifications.py │ │ ├── 0007_auto_20161014_1408.py │ │ ├── 0008_auto_20161014_1804.py │ │ ├── 0009_userlogentry_payload.py │ │ ├── 0010_auto_20161224_1053.py │ │ ├── 0011_auto_20161226_1719.py │ │ ├── 0012_auto_20161226_1722.py │ │ ├── 0013_auto_20161226_1751.py │ │ ├── 0014_user_default_language.py │ │ ├── 0015_user_normalized_email.py │ │ ├── 0016_auto_20171011_1958.py │ │ ├── 0017_auto_20171011_2015.py │ │ ├── 0018_auto_20180527_1400.py │ │ └── __init__.py │ ├── models.py │ ├── querysets.py │ ├── static │ │ └── account │ │ │ ├── admin │ │ │ └── username_widget.css │ │ │ ├── css │ │ │ ├── base.css │ │ │ ├── email_verified_domain_widget.css │ │ │ ├── gpgmixin.css │ │ │ ├── keyupload_widget.css │ │ │ ├── notifications.css │ │ │ └── username_widget.css │ │ │ └── js │ │ │ ├── base.js │ │ │ ├── gpgmixin.js │ │ │ ├── notifications.js │ │ │ └── username_widget.js │ ├── tasks.py │ ├── templates │ │ └── account │ │ │ ├── add_gpg.html │ │ │ ├── base.html │ │ │ ├── blocked.html │ │ │ ├── confirm │ │ │ ├── delete.html │ │ │ ├── delete.txt │ │ │ ├── register.html │ │ │ ├── register.txt │ │ │ ├── reset_password.html │ │ │ ├── reset_password.txt │ │ │ ├── set_email.html │ │ │ └── set_email.txt │ │ │ ├── delete.html │ │ │ ├── delete_confirm.html │ │ │ ├── email │ │ │ ├── user_expires.html │ │ │ └── user_expires.txt │ │ │ ├── form-base.html │ │ │ ├── include │ │ │ ├── gpg_form.html │ │ │ └── user_detail_help.html │ │ │ ├── no_registration.html │ │ │ ├── notifications.html │ │ │ ├── requires_confirmation.html │ │ │ ├── requires_email.html │ │ │ ├── sessions.html │ │ │ ├── set_password.html │ │ │ ├── user_detail.html │ │ │ ├── user_gpg.html │ │ │ ├── user_login.html │ │ │ ├── user_password_reset.html │ │ │ ├── user_password_reset_confirm.html │ │ │ ├── user_password_reset_confirm_not_found.html │ │ │ ├── user_recent_activity.html │ │ │ ├── user_register.html │ │ │ ├── user_register_confirm.html │ │ │ ├── user_register_confirm_not_found.html │ │ │ ├── user_set_email.html │ │ │ ├── widgets │ │ │ └── username.html │ │ │ └── xep0363.html │ ├── tests │ │ ├── __init__.py │ │ ├── testdata │ │ │ └── non_armored.gpg │ │ ├── tests_login.py │ │ ├── tests_notifications.py │ │ ├── tests_password_reset.py │ │ └── tests_registration.py │ ├── urls.py │ ├── views.py │ └── widgets.py ├── antispam │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── exceptions.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20171011_1949.py │ │ └── __init__.py │ ├── models.py │ ├── querysets.py │ ├── tests.py │ ├── utils.py │ └── views.py ├── blog │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── context_processors.py │ ├── forms.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_image.py │ │ ├── 0003_auto_20161223_1649.py │ │ ├── 0004_blogpost_publication_date.py │ │ ├── 0005_auto_20161224_1017.py │ │ ├── 0006_auto_20161224_1021.py │ │ └── __init__.py │ ├── models.py │ ├── querysets.py │ ├── sitemaps.py │ ├── static │ │ └── blog │ │ │ ├── admin │ │ │ ├── css │ │ │ │ └── basepage.css │ │ │ └── js │ │ │ │ └── basepage.js │ │ │ └── blog.css │ ├── tasks.py │ ├── templates │ │ └── blog │ │ │ ├── blogpost_detail.html │ │ │ ├── blogpost_list.html │ │ │ ├── include │ │ │ └── blogpost.html │ │ │ └── page_detail.html │ ├── templatetags │ │ ├── __init__.py │ │ └── blog.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── bootstrap │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── formfields.py │ ├── forms.py │ ├── locale │ │ └── de │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── find_bs3.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── bootstrap │ │ │ ├── css │ │ │ └── bootstrap.css │ │ │ └── js │ │ │ └── bootstrap.js │ ├── templates │ │ └── bootstrap │ │ │ └── forms │ │ │ ├── buttons.html │ │ │ ├── feedback.html │ │ │ ├── formgroup.html │ │ │ ├── includes │ │ │ ├── attrs.html │ │ │ └── help_text.html │ │ │ └── widgets │ │ │ ├── file_input.html │ │ │ ├── multiwidget.html │ │ │ ├── password.html │ │ │ └── text.html │ ├── tests.py │ ├── utils.py │ ├── views.py │ └── widgets.py ├── certs │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── locale │ │ └── de │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180101_1211.py │ │ ├── 0003_auto_20180101_1752.py │ │ ├── 0004_certificate_enabled.py │ │ └── __init__.py │ ├── models.py │ ├── querysets.py │ ├── serializers.py │ ├── static │ │ └── certs │ │ │ ├── certificate.css │ │ │ └── certificate.js │ ├── templates │ │ └── certs │ │ │ ├── certificate_detail.html │ │ │ └── certificate_list.html │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── conversejs │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── locale │ │ └── de │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── conversejs │ │ │ └── init.css │ │ └── lib │ │ │ └── converse.js │ │ │ ├── .eslintrc.json │ │ │ ├── .github │ │ │ ├── CONTRIBUTING.rst │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── 3rdparty │ │ │ ├── bigint.js │ │ │ ├── bytebuffer.js │ │ │ ├── lodash.fp.js │ │ │ ├── long.js │ │ │ └── protobuf.js │ │ │ ├── CHANGES.md │ │ │ ├── COPYRIGHT │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile.win │ │ │ ├── README.md │ │ │ ├── RELEASE.md │ │ │ ├── buildout.cfg │ │ │ ├── composer.json │ │ │ ├── converse-logs │ │ │ ├── README.md │ │ │ └── converse-logs.js │ │ │ ├── css │ │ │ ├── converse.css │ │ │ ├── font-awesome.min.css │ │ │ ├── fonts.css │ │ │ ├── fullpage.css │ │ │ ├── images │ │ │ │ ├── arrow.svg │ │ │ │ ├── bgbl.svg │ │ │ │ ├── bgtr.svg │ │ │ │ ├── bitcoin_qr_code.png │ │ │ │ ├── dark-arrow.svg │ │ │ │ ├── favicon.ico │ │ │ │ ├── header.jpg │ │ │ │ ├── overlay.png │ │ │ │ └── user.png │ │ │ ├── jasmine.css │ │ │ ├── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ └── website.css │ │ │ ├── demo │ │ │ ├── anonymous.html │ │ │ ├── config.js │ │ │ ├── embedded.html │ │ │ ├── index.html │ │ │ └── without_bundled_dependencies.html │ │ │ ├── dev.html │ │ │ ├── dist │ │ │ ├── converse-no-dependencies.js │ │ │ └── converse.js │ │ │ ├── docs │ │ │ ├── .gitattributes │ │ │ ├── DEVELOPER.rst │ │ │ └── source │ │ │ │ ├── _static │ │ │ │ ├── conversejs_small.png │ │ │ │ ├── favicon.ico │ │ │ │ └── style.css │ │ │ │ ├── _templates │ │ │ │ ├── layout.html │ │ │ │ └── localtoc.html │ │ │ │ ├── api │ │ │ │ └── index.rst │ │ │ │ ├── builds.rst │ │ │ │ ├── conf.json │ │ │ │ ├── conf.py │ │ │ │ ├── configuration.rst │ │ │ │ ├── dependencies.rst │ │ │ │ ├── developer_api.rst │ │ │ │ ├── development.rst │ │ │ │ ├── documentation.rst │ │ │ │ ├── events.rst │ │ │ │ ├── features.rst │ │ │ │ ├── images │ │ │ │ ├── add-contact.png │ │ │ │ ├── diagram.png │ │ │ │ ├── diagram.xml │ │ │ │ ├── homepage.jpg │ │ │ │ ├── pending-contact.jpg │ │ │ │ ├── register-form.jpg │ │ │ │ ├── register-panel.jpg │ │ │ │ ├── remove-contact.png │ │ │ │ ├── remove_contact.png │ │ │ │ └── ungrouped-contact.png │ │ │ │ ├── index.rst │ │ │ │ ├── jsdoc_intro.md │ │ │ │ ├── manual.rst │ │ │ │ ├── other_frameworks.rst │ │ │ │ ├── plugin_development.rst │ │ │ │ ├── quickstart.rst │ │ │ │ ├── security.rst │ │ │ │ ├── setup.rst │ │ │ │ ├── style_guide.rst │ │ │ │ ├── testing.rst │ │ │ │ ├── theming.rst │ │ │ │ ├── translations.rst │ │ │ │ └── troubleshooting.rst │ │ │ ├── fonticons │ │ │ ├── fonts │ │ │ │ ├── icomoon.eot │ │ │ │ ├── icomoon.svg │ │ │ │ ├── icomoon.ttf │ │ │ │ └── icomoon.woff │ │ │ ├── selection.json │ │ │ └── style.css │ │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── fullscreen.html │ │ │ ├── index.html │ │ │ ├── jshintrc │ │ │ ├── jslicenses.html │ │ │ ├── locale │ │ │ ├── af │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── ca │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── converse.pot │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── eu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── id │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── lt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── nb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── nl_BE │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── uk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ ├── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── converse.json │ │ │ │ │ └── converse.po │ │ │ └── zh_TW │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── converse.json │ │ │ │ └── converse.po │ │ │ ├── logo │ │ │ ├── conversejs-filled.svg │ │ │ ├── conversejs-transparent.svg │ │ │ ├── diasporing.svg │ │ │ ├── hostpresto.png │ │ │ ├── keycdn.png │ │ │ ├── keycdn.svg │ │ │ ├── mastodon.svg │ │ │ ├── wikisuite-white.png │ │ │ └── wikisuite.png │ │ │ ├── mobile.html │ │ │ ├── mockup │ │ │ ├── chatbox.html │ │ │ ├── chatbox.js │ │ │ ├── chatroom.html │ │ │ ├── chatroom.js │ │ │ ├── fullscreen-login.html │ │ │ ├── images │ │ │ │ └── romeo.jpg │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ ├── mockup.js │ │ │ ├── modals.html │ │ │ ├── modals.js │ │ │ ├── overlayed-login.html │ │ │ ├── overlayed.html │ │ │ ├── sidebar.html │ │ │ ├── sidebar.js │ │ │ ├── user-panel.html │ │ │ ├── user-panel.js │ │ │ └── utils.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── redirect.html │ │ │ ├── requirements.txt │ │ │ ├── sass │ │ │ ├── _awesomplete.scss │ │ │ ├── _bookmarks.scss │ │ │ ├── _chatbox.scss │ │ │ ├── _chatrooms.scss │ │ │ ├── _controlbox.scss │ │ │ ├── _core.scss │ │ │ ├── _embedded.scss │ │ │ ├── _forms.scss │ │ │ ├── _headline.scss │ │ │ ├── _lists.scss │ │ │ ├── _messages.scss │ │ │ ├── _minimized_chats.scss │ │ │ ├── _modal.scss │ │ │ ├── _roster.scss │ │ │ ├── _variables.scss │ │ │ ├── _website.scss │ │ │ ├── converse.scss │ │ │ └── font-awesome.scss │ │ │ ├── sounds │ │ │ ├── README │ │ │ ├── msg_received.mp3 │ │ │ └── msg_received.ogg │ │ │ ├── spec │ │ │ ├── autocomplete.js │ │ │ ├── bookmarks.js │ │ │ ├── chatbox.js │ │ │ ├── chatroom.js │ │ │ ├── controlbox.js │ │ │ ├── converse.js │ │ │ ├── disco.js │ │ │ ├── eventemitter.js │ │ │ ├── headline.js │ │ │ ├── http-file-upload.js │ │ │ ├── login.js │ │ │ ├── mam.js │ │ │ ├── messages.js │ │ │ ├── minchats.js │ │ │ ├── notification.js │ │ │ ├── omemo.js │ │ │ ├── ping.js │ │ │ ├── presence.js │ │ │ ├── profiling.js │ │ │ ├── protocol.js │ │ │ ├── push.js │ │ │ ├── register.js │ │ │ ├── room_registration.js │ │ │ ├── roomslist.js │ │ │ ├── roster.js │ │ │ ├── spoilers.js │ │ │ ├── transcripts.js │ │ │ ├── user-details-modal.js │ │ │ ├── utils.js │ │ │ └── xmppstatus.js │ │ │ ├── src │ │ │ ├── backbone.noconflict.js │ │ │ ├── converse-autocomplete.js │ │ │ ├── converse-bookmarks.js │ │ │ ├── converse-caps.js │ │ │ ├── converse-chatboxes.js │ │ │ ├── converse-chatboxviews.js │ │ │ ├── converse-chatview.js │ │ │ ├── converse-controlbox.js │ │ │ ├── converse-core.js │ │ │ ├── converse-disco.js │ │ │ ├── converse-dragresize.js │ │ │ ├── converse-embedded.js │ │ │ ├── converse-fullscreen.js │ │ │ ├── converse-headline.js │ │ │ ├── converse-mam.js │ │ │ ├── converse-message-view.js │ │ │ ├── converse-minimize.js │ │ │ ├── converse-modal.js │ │ │ ├── converse-muc-views.js │ │ │ ├── converse-muc.js │ │ │ ├── converse-notification.js │ │ │ ├── converse-oauth.js │ │ │ ├── converse-omemo.js │ │ │ ├── converse-ping.js │ │ │ ├── converse-profile.js │ │ │ ├── converse-push.js │ │ │ ├── converse-register.js │ │ │ ├── converse-roomslist.js │ │ │ ├── converse-roster.js │ │ │ ├── converse-rosterview.js │ │ │ ├── converse-singleton.js │ │ │ ├── converse-vcard.js │ │ │ ├── converse.js │ │ │ ├── end-no-dependencies.frag │ │ │ ├── end-no-jquery.frag │ │ │ ├── headless.js │ │ │ ├── i18n.js │ │ │ ├── jquery-stub.js │ │ │ ├── jquery.noconflict.js │ │ │ ├── lodash.fp.js │ │ │ ├── lodash.noconflict.js │ │ │ ├── polyfill.js │ │ │ ├── templates │ │ │ │ ├── add_chatroom_modal.html │ │ │ │ ├── add_contact_modal.html │ │ │ │ ├── alert.html │ │ │ │ ├── alert_modal.html │ │ │ │ ├── audio.html │ │ │ │ ├── bookmark.html │ │ │ │ ├── bookmarks_list.html │ │ │ │ ├── chat_status_modal.html │ │ │ │ ├── chatarea.html │ │ │ │ ├── chatbox.html │ │ │ │ ├── chatbox_head.html │ │ │ │ ├── chatbox_message_form.html │ │ │ │ ├── chatbox_minimize.html │ │ │ │ ├── chatboxes.html │ │ │ │ ├── chatroom.html │ │ │ │ ├── chatroom_bookmark_form.html │ │ │ │ ├── chatroom_bookmark_toggle.html │ │ │ │ ├── chatroom_details_modal.html │ │ │ │ ├── chatroom_disconnect.html │ │ │ │ ├── chatroom_dragresize.html │ │ │ │ ├── chatroom_features.html │ │ │ │ ├── chatroom_form.html │ │ │ │ ├── chatroom_head.html │ │ │ │ ├── chatroom_invite.html │ │ │ │ ├── chatroom_nickname_form.html │ │ │ │ ├── chatroom_password_form.html │ │ │ │ ├── chatroom_registration_modal.html │ │ │ │ ├── chatroom_sidebar.html │ │ │ │ ├── chats_panel.html │ │ │ │ ├── controlbox.html │ │ │ │ ├── controlbox_toggle.html │ │ │ │ ├── converse_brand_heading.html │ │ │ │ ├── csn.html │ │ │ │ ├── dragresize.html │ │ │ │ ├── emojis.html │ │ │ │ ├── error_message.html │ │ │ │ ├── field.html │ │ │ │ ├── file.html │ │ │ │ ├── file_progress.html │ │ │ │ ├── form_captcha.html │ │ │ │ ├── form_checkbox.html │ │ │ │ ├── form_input.html │ │ │ │ ├── form_select.html │ │ │ │ ├── form_textarea.html │ │ │ │ ├── form_url.html │ │ │ │ ├── form_username.html │ │ │ │ ├── group_header.html │ │ │ │ ├── help_message.html │ │ │ │ ├── image.html │ │ │ │ ├── info.html │ │ │ │ ├── inverse_brand_heading.html │ │ │ │ ├── list_chatrooms_modal.html │ │ │ │ ├── login_panel.html │ │ │ │ ├── message.html │ │ │ │ ├── message_versions_modal.html │ │ │ │ ├── new_day.html │ │ │ │ ├── oauth_providers.html │ │ │ │ ├── occupant.html │ │ │ │ ├── pending_contact.html │ │ │ │ ├── profile_modal.html │ │ │ │ ├── profile_view.html │ │ │ │ ├── register_link.html │ │ │ │ ├── register_panel.html │ │ │ │ ├── registration_form.html │ │ │ │ ├── registration_request.html │ │ │ │ ├── requesting_contact.html │ │ │ │ ├── room_description.html │ │ │ │ ├── room_item.html │ │ │ │ ├── room_panel.html │ │ │ │ ├── rooms_list.html │ │ │ │ ├── rooms_list_item.html │ │ │ │ ├── rooms_results.html │ │ │ │ ├── roster.html │ │ │ │ ├── roster_filter.html │ │ │ │ ├── roster_item.html │ │ │ │ ├── search_contact.html │ │ │ │ ├── select_option.html │ │ │ │ ├── spinner.html │ │ │ │ ├── spoiler_button.html │ │ │ │ ├── status_message.html │ │ │ │ ├── status_option.html │ │ │ │ ├── toggle_chats.html │ │ │ │ ├── toolbar.html │ │ │ │ ├── toolbar_fileupload.html │ │ │ │ ├── toolbar_omemo.html │ │ │ │ ├── trimmed_chat.html │ │ │ │ ├── user_details_modal.html │ │ │ │ ├── vcard.html │ │ │ │ └── video.html │ │ │ ├── underscore-shim.js │ │ │ ├── utils │ │ │ │ ├── core.js │ │ │ │ ├── emoji.js │ │ │ │ ├── form.js │ │ │ │ └── muc.js │ │ │ └── website.js │ │ │ ├── tests │ │ │ ├── console-reporter.js │ │ │ ├── fullpage.html │ │ │ ├── index.html │ │ │ ├── mock.js │ │ │ ├── runner.js │ │ │ ├── transpiled.html │ │ │ └── utils.js │ │ │ └── webpack.config.js │ ├── templates │ │ └── conversejs │ │ │ ├── init.js │ │ │ └── main.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── core │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── context_processors.py │ ├── converters.py │ ├── exceptions.py │ ├── formfields.py │ ├── forms.py │ ├── locale │ │ └── de │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── genkey.py │ │ │ ├── import_drupal_data.py │ │ │ └── import_user_data.py │ ├── managers.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20160903_1232.py │ │ ├── 0003_auto_20160903_1235.py │ │ ├── 0004_auto_20160903_1321.py │ │ ├── 0005_auto_20160924_1148.py │ │ ├── 0006_auto_20161002_1140.py │ │ ├── 0007_addressactivity_headers.py │ │ ├── 0008_auto_20161125_1312.py │ │ ├── 0009_auto_20161125_1407.py │ │ ├── 0010_auto_20161125_1410.py │ │ ├── 0011_cachedmessage_payload.py │ │ ├── 0012_auto_20170128_1059.py │ │ ├── 0013_auto_20170311_1712.py │ │ ├── 0014_auto_20171009_1753.py │ │ ├── 0015_auto_20190120_1411.py │ │ ├── 0016_auto_20200322_1609.py │ │ └── __init__.py │ ├── modelfields.py │ ├── models.py │ ├── querysets.py │ ├── sitemaps.py │ ├── static │ │ ├── core │ │ │ ├── css │ │ │ │ ├── base.css │ │ │ │ ├── bootstrap-hp.css │ │ │ │ ├── captcha.css │ │ │ │ ├── clients.css │ │ │ │ ├── linktargetwidget.css │ │ │ │ └── tinymce-preview.css │ │ │ ├── img │ │ │ │ ├── 629hwmjt.png │ │ │ │ ├── 629hwmjt.svg │ │ │ │ ├── android_orig.png │ │ │ │ ├── de.svg │ │ │ │ ├── en.svg │ │ │ │ ├── fb.png │ │ │ │ ├── itemprop.png │ │ │ │ ├── rss.svg │ │ │ │ ├── smtw.svg │ │ │ │ ├── toggler.svg │ │ │ │ └── twitter.png │ │ │ └── js │ │ │ │ ├── base.js │ │ │ │ ├── basepage-add.js │ │ │ │ ├── captcha.js │ │ │ │ └── linktargetwidget.js │ │ ├── css │ │ │ └── blog.css │ │ ├── favicon │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-144x144.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-57x57.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── code.txt │ │ │ ├── favicon-128.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-196x196.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ └── mstile-70x70.png │ │ ├── google359e555f66a8412e.html │ │ ├── google65bb49afe5a62fe1.html │ │ ├── hp.css │ │ ├── hp.js │ │ ├── lib │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── fontawesome │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ ├── all.min.css │ │ │ │ │ ├── brands.css │ │ │ │ │ ├── brands.min.css │ │ │ │ │ ├── fontawesome.css │ │ │ │ │ ├── fontawesome.min.css │ │ │ │ │ ├── regular.css │ │ │ │ │ ├── regular.min.css │ │ │ │ │ ├── solid.css │ │ │ │ │ ├── solid.min.css │ │ │ │ │ ├── svg-with-js.css │ │ │ │ │ ├── svg-with-js.min.css │ │ │ │ │ ├── v4-shims.css │ │ │ │ │ └── v4-shims.min.css │ │ │ │ ├── js │ │ │ │ │ ├── all.js │ │ │ │ │ ├── all.min.js │ │ │ │ │ ├── brands.js │ │ │ │ │ ├── brands.min.js │ │ │ │ │ ├── fontawesome.js │ │ │ │ │ ├── fontawesome.min.js │ │ │ │ │ ├── regular.js │ │ │ │ │ ├── regular.min.js │ │ │ │ │ ├── solid.js │ │ │ │ │ ├── solid.min.js │ │ │ │ │ ├── v4-shims.js │ │ │ │ │ └── v4-shims.min.js │ │ │ │ ├── less │ │ │ │ │ ├── _animated.less │ │ │ │ │ ├── _bordered-pulled.less │ │ │ │ │ ├── _core.less │ │ │ │ │ ├── _fixed-width.less │ │ │ │ │ ├── _icons.less │ │ │ │ │ ├── _larger.less │ │ │ │ │ ├── _list.less │ │ │ │ │ ├── _mixins.less │ │ │ │ │ ├── _rotated-flipped.less │ │ │ │ │ ├── _screen-reader.less │ │ │ │ │ ├── _shims.less │ │ │ │ │ ├── _stacked.less │ │ │ │ │ ├── _variables.less │ │ │ │ │ ├── brands.less │ │ │ │ │ ├── fontawesome.less │ │ │ │ │ ├── regular.less │ │ │ │ │ ├── solid.less │ │ │ │ │ └── v4-shims.less │ │ │ │ ├── metadata │ │ │ │ │ ├── categories.yml │ │ │ │ │ ├── icons.json │ │ │ │ │ ├── icons.yml │ │ │ │ │ ├── shims.json │ │ │ │ │ ├── shims.yml │ │ │ │ │ └── sponsors.yml │ │ │ │ ├── scss │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _shims.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── brands.scss │ │ │ │ │ ├── fontawesome.scss │ │ │ │ │ ├── regular.scss │ │ │ │ │ ├── solid.scss │ │ │ │ │ └── v4-shims.scss │ │ │ │ ├── sprites │ │ │ │ │ ├── brands.svg │ │ │ │ │ ├── regular.svg │ │ │ │ │ └── solid.svg │ │ │ │ ├── svgs │ │ │ │ │ ├── brands │ │ │ │ │ │ ├── 500px.svg │ │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ │ ├── adn.svg │ │ │ │ │ │ ├── adversal.svg │ │ │ │ │ │ ├── affiliatetheme.svg │ │ │ │ │ │ ├── algolia.svg │ │ │ │ │ │ ├── alipay.svg │ │ │ │ │ │ ├── amazon-pay.svg │ │ │ │ │ │ ├── amazon.svg │ │ │ │ │ │ ├── amilia.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ ├── angellist.svg │ │ │ │ │ │ ├── angrycreative.svg │ │ │ │ │ │ ├── angular.svg │ │ │ │ │ │ ├── app-store-ios.svg │ │ │ │ │ │ ├── app-store.svg │ │ │ │ │ │ ├── apper.svg │ │ │ │ │ │ ├── apple-pay.svg │ │ │ │ │ │ ├── apple.svg │ │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ │ ├── audible.svg │ │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ │ ├── avianex.svg │ │ │ │ │ │ ├── aviato.svg │ │ │ │ │ │ ├── aws.svg │ │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ │ ├── behance-square.svg │ │ │ │ │ │ ├── behance.svg │ │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ │ ├── bity.svg │ │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ │ ├── blogger.svg │ │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ │ ├── btc.svg │ │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ │ ├── buysellads.svg │ │ │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ │ │ ├── cc-amex.svg │ │ │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ │ │ ├── cc-diners-club.svg │ │ │ │ │ │ ├── cc-discover.svg │ │ │ │ │ │ ├── cc-jcb.svg │ │ │ │ │ │ ├── cc-mastercard.svg │ │ │ │ │ │ ├── cc-paypal.svg │ │ │ │ │ │ ├── cc-stripe.svg │ │ │ │ │ │ ├── cc-visa.svg │ │ │ │ │ │ ├── centercode.svg │ │ │ │ │ │ ├── chrome.svg │ │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ │ ├── codepen.svg │ │ │ │ │ │ ├── codiepie.svg │ │ │ │ │ │ ├── connectdevelop.svg │ │ │ │ │ │ ├── contao.svg │ │ │ │ │ │ ├── cpanel.svg │ │ │ │ │ │ ├── creative-commons-by.svg │ │ │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ │ │ ├── creative-commons-share.svg │ │ │ │ │ │ ├── creative-commons.svg │ │ │ │ │ │ ├── css3-alt.svg │ │ │ │ │ │ ├── css3.svg │ │ │ │ │ │ ├── cuttlefish.svg │ │ │ │ │ │ ├── d-and-d.svg │ │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ │ ├── delicious.svg │ │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ │ ├── digg.svg │ │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ │ ├── discord.svg │ │ │ │ │ │ ├── discourse.svg │ │ │ │ │ │ ├── dochub.svg │ │ │ │ │ │ ├── docker.svg │ │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ │ ├── dribbble-square.svg │ │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ │ ├── drupal.svg │ │ │ │ │ │ ├── dyalog.svg │ │ │ │ │ │ ├── earlybirds.svg │ │ │ │ │ │ ├── ebay.svg │ │ │ │ │ │ ├── edge.svg │ │ │ │ │ │ ├── elementor.svg │ │ │ │ │ │ ├── ello.svg │ │ │ │ │ │ ├── ember.svg │ │ │ │ │ │ ├── empire.svg │ │ │ │ │ │ ├── envira.svg │ │ │ │ │ │ ├── erlang.svg │ │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ │ ├── etsy.svg │ │ │ │ │ │ ├── expeditedssl.svg │ │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ │ ├── facebook-square.svg │ │ │ │ │ │ ├── facebook.svg │ │ │ │ │ │ ├── firefox.svg │ │ │ │ │ │ ├── first-order-alt.svg │ │ │ │ │ │ ├── first-order.svg │ │ │ │ │ │ ├── firstdraft.svg │ │ │ │ │ │ ├── flickr.svg │ │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ │ ├── fly.svg │ │ │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ │ ├── fonticons-fi.svg │ │ │ │ │ │ ├── fonticons.svg │ │ │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ │ │ ├── fort-awesome.svg │ │ │ │ │ │ ├── forumbee.svg │ │ │ │ │ │ ├── foursquare.svg │ │ │ │ │ │ ├── free-code-camp.svg │ │ │ │ │ │ ├── freebsd.svg │ │ │ │ │ │ ├── fulcrum.svg │ │ │ │ │ │ ├── galactic-republic.svg │ │ │ │ │ │ ├── galactic-senate.svg │ │ │ │ │ │ ├── get-pocket.svg │ │ │ │ │ │ ├── gg-circle.svg │ │ │ │ │ │ ├── gg.svg │ │ │ │ │ │ ├── git-square.svg │ │ │ │ │ │ ├── git.svg │ │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ │ ├── github-square.svg │ │ │ │ │ │ ├── github.svg │ │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ │ ├── gitter.svg │ │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ │ ├── glide.svg │ │ │ │ │ │ ├── gofore.svg │ │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ │ ├── google-play.svg │ │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ │ ├── google-plus-square.svg │ │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ │ ├── google.svg │ │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ │ ├── grav.svg │ │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ │ ├── grunt.svg │ │ │ │ │ │ ├── gulp.svg │ │ │ │ │ │ ├── hacker-news-square.svg │ │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ │ ├── hips.svg │ │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ │ ├── hooli.svg │ │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ │ ├── houzz.svg │ │ │ │ │ │ ├── html5.svg │ │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ │ ├── imdb.svg │ │ │ │ │ │ ├── instagram.svg │ │ │ │ │ │ ├── internet-explorer.svg │ │ │ │ │ │ ├── ioxhost.svg │ │ │ │ │ │ ├── itunes-note.svg │ │ │ │ │ │ ├── itunes.svg │ │ │ │ │ │ ├── java.svg │ │ │ │ │ │ ├── jedi-order.svg │ │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ │ ├── joget.svg │ │ │ │ │ │ ├── joomla.svg │ │ │ │ │ │ ├── js-square.svg │ │ │ │ │ │ ├── js.svg │ │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ │ ├── keybase.svg │ │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ │ ├── korvue.svg │ │ │ │ │ │ ├── laravel.svg │ │ │ │ │ │ ├── lastfm-square.svg │ │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ │ ├── less.svg │ │ │ │ │ │ ├── line.svg │ │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ │ ├── linode.svg │ │ │ │ │ │ ├── linux.svg │ │ │ │ │ │ ├── lyft.svg │ │ │ │ │ │ ├── magento.svg │ │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ │ ├── markdown.svg │ │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ │ ├── medapps.svg │ │ │ │ │ │ ├── medium-m.svg │ │ │ │ │ │ ├── medium.svg │ │ │ │ │ │ ├── medrt.svg │ │ │ │ │ │ ├── meetup.svg │ │ │ │ │ │ ├── megaport.svg │ │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ │ ├── mix.svg │ │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ │ ├── modx.svg │ │ │ │ │ │ ├── monero.svg │ │ │ │ │ │ ├── napster.svg │ │ │ │ │ │ ├── neos.svg │ │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ │ ├── nintendo-switch.svg │ │ │ │ │ │ ├── node-js.svg │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ ├── npm.svg │ │ │ │ │ │ ├── ns8.svg │ │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ │ ├── opencart.svg │ │ │ │ │ │ ├── openid.svg │ │ │ │ │ │ ├── opera.svg │ │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ │ ├── osi.svg │ │ │ │ │ │ ├── page4.svg │ │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ │ ├── palfed.svg │ │ │ │ │ │ ├── patreon.svg │ │ │ │ │ │ ├── paypal.svg │ │ │ │ │ │ ├── periscope.svg │ │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ │ ├── php.svg │ │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ │ ├── pinterest-square.svg │ │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ │ ├── playstation.svg │ │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ │ ├── pushed.svg │ │ │ │ │ │ ├── python.svg │ │ │ │ │ │ ├── qq.svg │ │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ │ ├── quora.svg │ │ │ │ │ │ ├── r-project.svg │ │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ │ ├── react.svg │ │ │ │ │ │ ├── readme.svg │ │ │ │ │ │ ├── rebel.svg │ │ │ │ │ │ ├── red-river.svg │ │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ │ ├── reddit-square.svg │ │ │ │ │ │ ├── reddit.svg │ │ │ │ │ │ ├── rendact.svg │ │ │ │ │ │ ├── renren.svg │ │ │ │ │ │ ├── replyd.svg │ │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ │ ├── resolving.svg │ │ │ │ │ │ ├── rev.svg │ │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ │ ├── safari.svg │ │ │ │ │ │ ├── sass.svg │ │ │ │ │ │ ├── schlix.svg │ │ │ │ │ │ ├── scribd.svg │ │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ │ ├── shopware.svg │ │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ │ ├── sith.svg │ │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ │ ├── skype.svg │ │ │ │ │ │ ├── slack-hash.svg │ │ │ │ │ │ ├── slack.svg │ │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ │ ├── speakap.svg │ │ │ │ │ │ ├── spotify.svg │ │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ │ ├── steam-square.svg │ │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ │ ├── steam.svg │ │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ │ ├── strava.svg │ │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ │ ├── stripe.svg │ │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ │ ├── supple.svg │ │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ │ ├── telegram-plane.svg │ │ │ │ │ │ ├── telegram.svg │ │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ │ ├── themeco.svg │ │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ │ ├── trello.svg │ │ │ │ │ │ ├── tripadvisor.svg │ │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ │ ├── twitch.svg │ │ │ │ │ │ ├── twitter-square.svg │ │ │ │ │ │ ├── twitter.svg │ │ │ │ │ │ ├── typo3.svg │ │ │ │ │ │ ├── uber.svg │ │ │ │ │ │ ├── uikit.svg │ │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ │ ├── untappd.svg │ │ │ │ │ │ ├── usb.svg │ │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ │ ├── viadeo-square.svg │ │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ │ ├── viber.svg │ │ │ │ │ │ ├── vimeo-square.svg │ │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ │ ├── vine.svg │ │ │ │ │ │ ├── vk.svg │ │ │ │ │ │ ├── vnv.svg │ │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ │ ├── weebly.svg │ │ │ │ │ │ ├── weibo.svg │ │ │ │ │ │ ├── weixin.svg │ │ │ │ │ │ ├── whatsapp-square.svg │ │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ │ ├── windows.svg │ │ │ │ │ │ ├── wix.svg │ │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ │ ├── xbox.svg │ │ │ │ │ │ ├── xing-square.svg │ │ │ │ │ │ ├── xing.svg │ │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ │ ├── yandex.svg │ │ │ │ │ │ ├── yelp.svg │ │ │ │ │ │ ├── yoast.svg │ │ │ │ │ │ ├── youtube-square.svg │ │ │ │ │ │ ├── youtube.svg │ │ │ │ │ │ └── zhihu.svg │ │ │ │ │ ├── regular │ │ │ │ │ │ ├── address-book.svg │ │ │ │ │ │ ├── address-card.svg │ │ │ │ │ │ ├── angry.svg │ │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ │ ├── bell.svg │ │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ │ ├── building.svg │ │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ │ ├── calendar.svg │ │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ │ ├── check-square.svg │ │ │ │ │ │ ├── circle.svg │ │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ ├── clone.svg │ │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ │ ├── comment.svg │ │ │ │ │ │ ├── comments.svg │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ ├── copy.svg │ │ │ │ │ │ ├── copyright.svg │ │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ │ ├── envelope.svg │ │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ │ ├── eye.svg │ │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ │ ├── file-code.svg │ │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ │ ├── file-image.svg │ │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ │ ├── file-video.svg │ │ │ │ │ │ ├── file-word.svg │ │ │ │ │ │ ├── file.svg │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ ├── flushed.svg │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ ├── folder.svg │ │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ │ ├── frown.svg │ │ │ │ │ │ ├── futbol.svg │ │ │ │ │ │ ├── gem.svg │ │ │ │ │ │ ├── grimace.svg │ │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ │ ├── grin.svg │ │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ │ ├── handshake.svg │ │ │ │ │ │ ├── hdd.svg │ │ │ │ │ │ ├── heart.svg │ │ │ │ │ │ ├── hospital.svg │ │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ │ ├── id-card.svg │ │ │ │ │ │ ├── image.svg │ │ │ │ │ │ ├── images.svg │ │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ │ ├── kiss.svg │ │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ │ ├── laugh.svg │ │ │ │ │ │ ├── lemon.svg │ │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ │ ├── map.svg │ │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ │ ├── meh.svg │ │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ │ ├── moon.svg │ │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ │ ├── registered.svg │ │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ │ ├── save.svg │ │ │ │ │ │ ├── share-square.svg │ │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ │ ├── smile.svg │ │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ │ ├── square.svg │ │ │ │ │ │ ├── star-half.svg │ │ │ │ │ │ ├── star.svg │ │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ │ ├── sun.svg │ │ │ │ │ │ ├── surprise.svg │ │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ │ ├── tired.svg │ │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ └── window-restore.svg │ │ │ │ │ └── solid │ │ │ │ │ │ ├── ad.svg │ │ │ │ │ │ ├── address-book.svg │ │ │ │ │ │ ├── address-card.svg │ │ │ │ │ │ ├── adjust.svg │ │ │ │ │ │ ├── air-freshener.svg │ │ │ │ │ │ ├── align-center.svg │ │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ │ ├── align-left.svg │ │ │ │ │ │ ├── align-right.svg │ │ │ │ │ │ ├── allergies.svg │ │ │ │ │ │ ├── ambulance.svg │ │ │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ ├── angle-double-down.svg │ │ │ │ │ │ ├── angle-double-left.svg │ │ │ │ │ │ ├── angle-double-right.svg │ │ │ │ │ │ ├── angle-double-up.svg │ │ │ │ │ │ ├── angle-down.svg │ │ │ │ │ │ ├── angle-left.svg │ │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ │ ├── angry.svg │ │ │ │ │ │ ├── ankh.svg │ │ │ │ │ │ ├── apple-alt.svg │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ ├── archway.svg │ │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ │ │ ├── arrows-alt.svg │ │ │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ │ ├── at.svg │ │ │ │ │ │ ├── atlas.svg │ │ │ │ │ │ ├── atom.svg │ │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ │ ├── award.svg │ │ │ │ │ │ ├── backspace.svg │ │ │ │ │ │ ├── backward.svg │ │ │ │ │ │ ├── balance-scale.svg │ │ │ │ │ │ ├── ban.svg │ │ │ │ │ │ ├── band-aid.svg │ │ │ │ │ │ ├── barcode.svg │ │ │ │ │ │ ├── bars.svg │ │ │ │ │ │ ├── baseball-ball.svg │ │ │ │ │ │ ├── basketball-ball.svg │ │ │ │ │ │ ├── bath.svg │ │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ │ ├── bed.svg │ │ │ │ │ │ ├── beer.svg │ │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ │ ├── bell.svg │ │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ │ ├── bible.svg │ │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ │ ├── birthday-cake.svg │ │ │ │ │ │ ├── blender.svg │ │ │ │ │ │ ├── blind.svg │ │ │ │ │ │ ├── bold.svg │ │ │ │ │ │ ├── bolt.svg │ │ │ │ │ │ ├── bomb.svg │ │ │ │ │ │ ├── bone.svg │ │ │ │ │ │ ├── bong.svg │ │ │ │ │ │ ├── book-open.svg │ │ │ │ │ │ ├── book-reader.svg │ │ │ │ │ │ ├── book.svg │ │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ │ ├── box-open.svg │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ ├── boxes.svg │ │ │ │ │ │ ├── braille.svg │ │ │ │ │ │ ├── brain.svg │ │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ │ ├── broadcast-tower.svg │ │ │ │ │ │ ├── broom.svg │ │ │ │ │ │ ├── brush.svg │ │ │ │ │ │ ├── bug.svg │ │ │ │ │ │ ├── building.svg │ │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ │ ├── burn.svg │ │ │ │ │ │ ├── bus-alt.svg │ │ │ │ │ │ ├── bus.svg │ │ │ │ │ │ ├── business-time.svg │ │ │ │ │ │ ├── calculator.svg │ │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ │ ├── calendar.svg │ │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ │ ├── camera.svg │ │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ │ ├── capsules.svg │ │ │ │ │ │ ├── car-alt.svg │ │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ │ ├── car-crash.svg │ │ │ │ │ │ ├── car-side.svg │ │ │ │ │ │ ├── car.svg │ │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ │ ├── certificate.svg │ │ │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ │ ├── check-double.svg │ │ │ │ │ │ ├── check-square.svg │ │ │ │ │ │ ├── check.svg │ │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ │ ├── chess-board.svg │ │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ │ ├── chess.svg │ │ │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ │ ├── child.svg │ │ │ │ │ │ ├── church.svg │ │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ │ ├── circle.svg │ │ │ │ │ │ ├── city.svg │ │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ ├── clone.svg │ │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ │ │ ├── cloud.svg │ │ │ │ │ │ ├── cocktail.svg │ │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ │ ├── code.svg │ │ │ │ │ │ ├── coffee.svg │ │ │ │ │ │ ├── cog.svg │ │ │ │ │ │ ├── cogs.svg │ │ │ │ │ │ ├── coins.svg │ │ │ │ │ │ ├── columns.svg │ │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ │ ├── comment.svg │ │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ │ ├── comments.svg │ │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ ├── compress.svg │ │ │ │ │ │ ├── concierge-bell.svg │ │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ │ ├── cookie.svg │ │ │ │ │ │ ├── copy.svg │ │ │ │ │ │ ├── copyright.svg │ │ │ │ │ │ ├── couch.svg │ │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ │ ├── crop-alt.svg │ │ │ │ │ │ ├── crop.svg │ │ │ │ │ │ ├── cross.svg │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ ├── crow.svg │ │ │ │ │ │ ├── crown.svg │ │ │ │ │ │ ├── cube.svg │ │ │ │ │ │ ├── cubes.svg │ │ │ │ │ │ ├── cut.svg │ │ │ │ │ │ ├── database.svg │ │ │ │ │ │ ├── deaf.svg │ │ │ │ │ │ ├── desktop.svg │ │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ │ ├── diagnoses.svg │ │ │ │ │ │ ├── dice-five.svg │ │ │ │ │ │ ├── dice-four.svg │ │ │ │ │ │ ├── dice-one.svg │ │ │ │ │ │ ├── dice-six.svg │ │ │ │ │ │ ├── dice-three.svg │ │ │ │ │ │ ├── dice-two.svg │ │ │ │ │ │ ├── dice.svg │ │ │ │ │ │ ├── digital-tachograph.svg │ │ │ │ │ │ ├── directions.svg │ │ │ │ │ │ ├── divide.svg │ │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ │ ├── dna.svg │ │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ │ │ ├── dolly.svg │ │ │ │ │ │ ├── donate.svg │ │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ │ ├── door-open.svg │ │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ │ ├── dove.svg │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ ├── drafting-compass.svg │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ │ ├── drum.svg │ │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ ├── eject.svg │ │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ │ ├── envelope-square.svg │ │ │ │ │ │ ├── envelope.svg │ │ │ │ │ │ ├── equals.svg │ │ │ │ │ │ ├── eraser.svg │ │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ │ ├── exchange-alt.svg │ │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ ├── external-link-alt.svg │ │ │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ │ ├── eye.svg │ │ │ │ │ │ ├── fast-backward.svg │ │ │ │ │ │ ├── fast-forward.svg │ │ │ │ │ │ ├── fax.svg │ │ │ │ │ │ ├── feather-alt.svg │ │ │ │ │ │ ├── feather.svg │ │ │ │ │ │ ├── female.svg │ │ │ │ │ │ ├── fighter-jet.svg │ │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ │ ├── file-code.svg │ │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ │ ├── file-download.svg │ │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ │ ├── file-export.svg │ │ │ │ │ │ ├── file-image.svg │ │ │ │ │ │ ├── file-import.svg │ │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ │ ├── file-medical-alt.svg │ │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ │ ├── file-upload.svg │ │ │ │ │ │ ├── file-video.svg │ │ │ │ │ │ ├── file-word.svg │ │ │ │ │ │ ├── file.svg │ │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ │ ├── fill.svg │ │ │ │ │ │ ├── film.svg │ │ │ │ │ │ ├── filter.svg │ │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ │ ├── fire.svg │ │ │ │ │ │ ├── first-aid.svg │ │ │ │ │ │ ├── fish.svg │ │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ ├── flask.svg │ │ │ │ │ │ ├── flushed.svg │ │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ │ ├── folder.svg │ │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ ├── football-ball.svg │ │ │ │ │ │ ├── forward.svg │ │ │ │ │ │ ├── frog.svg │ │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ │ ├── frown.svg │ │ │ │ │ │ ├── funnel-dollar.svg │ │ │ │ │ │ ├── futbol.svg │ │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ │ ├── gavel.svg │ │ │ │ │ │ ├── gem.svg │ │ │ │ │ │ ├── genderless.svg │ │ │ │ │ │ ├── gift.svg │ │ │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ │ │ ├── glass-martini.svg │ │ │ │ │ │ ├── glasses.svg │ │ │ │ │ │ ├── globe-africa.svg │ │ │ │ │ │ ├── globe-americas.svg │ │ │ │ │ │ ├── globe-asia.svg │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ ├── golf-ball.svg │ │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ │ ├── grimace.svg │ │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ │ ├── grin.svg │ │ │ │ │ │ ├── grip-horizontal.svg │ │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ │ ├── h-square.svg │ │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ │ ├── hands-helping.svg │ │ │ │ │ │ ├── hands.svg │ │ │ │ │ │ ├── handshake.svg │ │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ │ ├── haykal.svg │ │ │ │ │ │ ├── hdd.svg │ │ │ │ │ │ ├── heading.svg │ │ │ │ │ │ ├── headphones-alt.svg │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ ├── headset.svg │ │ │ │ │ │ ├── heart.svg │ │ │ │ │ │ ├── heartbeat.svg │ │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ │ ├── home.svg │ │ │ │ │ │ ├── hospital-alt.svg │ │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ │ ├── hospital.svg │ │ │ │ │ │ ├── hot-tub.svg │ │ │ │ │ │ ├── hotel.svg │ │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ │ ├── id-card-alt.svg │ │ │ │ │ │ ├── id-card.svg │ │ │ │ │ │ ├── image.svg │ │ │ │ │ │ ├── images.svg │ │ │ │ │ │ ├── inbox.svg │ │ │ │ │ │ ├── indent.svg │ │ │ │ │ │ ├── industry.svg │ │ │ │ │ │ ├── infinity.svg │ │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ │ ├── info.svg │ │ │ │ │ │ ├── italic.svg │ │ │ │ │ │ ├── jedi.svg │ │ │ │ │ │ ├── joint.svg │ │ │ │ │ │ ├── journal-whills.svg │ │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ │ ├── key.svg │ │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ │ ├── khanda.svg │ │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ │ ├── kiss.svg │ │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ │ ├── landmark.svg │ │ │ │ │ │ ├── language.svg │ │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ │ ├── laptop.svg │ │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ │ ├── laugh.svg │ │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ │ ├── leaf.svg │ │ │ │ │ │ ├── lemon.svg │ │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ │ ├── less-than.svg │ │ │ │ │ │ ├── level-down-alt.svg │ │ │ │ │ │ ├── level-up-alt.svg │ │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ │ ├── list.svg │ │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ │ │ ├── low-vision.svg │ │ │ │ │ │ ├── luggage-cart.svg │ │ │ │ │ │ ├── magic.svg │ │ │ │ │ │ ├── magnet.svg │ │ │ │ │ │ ├── mail-bulk.svg │ │ │ │ │ │ ├── male.svg │ │ │ │ │ │ ├── map-marked-alt.svg │ │ │ │ │ │ ├── map-marked.svg │ │ │ │ │ │ ├── map-marker-alt.svg │ │ │ │ │ │ ├── map-marker.svg │ │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ │ ├── map-signs.svg │ │ │ │ │ │ ├── map.svg │ │ │ │ │ │ ├── marker.svg │ │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ │ ├── mars.svg │ │ │ │ │ │ ├── medal.svg │ │ │ │ │ │ ├── medkit.svg │ │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ │ ├── meh.svg │ │ │ │ │ │ ├── memory.svg │ │ │ │ │ │ ├── menorah.svg │ │ │ │ │ │ ├── mercury.svg │ │ │ │ │ │ ├── microchip.svg │ │ │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ │ │ ├── microphone-alt.svg │ │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ │ ├── microphone.svg │ │ │ │ │ │ ├── microscope.svg │ │ │ │ │ │ ├── minus-circle.svg │ │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ │ ├── minus.svg │ │ │ │ │ │ ├── mobile-alt.svg │ │ │ │ │ │ ├── mobile.svg │ │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ │ ├── money-check-alt.svg │ │ │ │ │ │ ├── money-check.svg │ │ │ │ │ │ ├── monument.svg │ │ │ │ │ │ ├── moon.svg │ │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ │ ├── mosque.svg │ │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ │ ├── mouse-pointer.svg │ │ │ │ │ │ ├── music.svg │ │ │ │ │ │ ├── neuter.svg │ │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ │ ├── om.svg │ │ │ │ │ │ ├── outdent.svg │ │ │ │ │ │ ├── paint-brush.svg │ │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ │ ├── palette.svg │ │ │ │ │ │ ├── pallet.svg │ │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ │ ├── parking.svg │ │ │ │ │ │ ├── passport.svg │ │ │ │ │ │ ├── pastafarianism.svg │ │ │ │ │ │ ├── paste.svg │ │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ │ ├── pause.svg │ │ │ │ │ │ ├── paw.svg │ │ │ │ │ │ ├── peace.svg │ │ │ │ │ │ ├── pen-alt.svg │ │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ │ ├── pen-square.svg │ │ │ │ │ │ ├── pen.svg │ │ │ │ │ │ ├── pencil-alt.svg │ │ │ │ │ │ ├── pencil-ruler.svg │ │ │ │ │ │ ├── people-carry.svg │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ ├── percentage.svg │ │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ │ ├── phone-square.svg │ │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ │ ├── phone.svg │ │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ │ ├── pills.svg │ │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ │ ├── plane.svg │ │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ │ ├── play.svg │ │ │ │ │ │ ├── plug.svg │ │ │ │ │ │ ├── plus-circle.svg │ │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ │ ├── plus.svg │ │ │ │ │ │ ├── podcast.svg │ │ │ │ │ │ ├── poll-h.svg │ │ │ │ │ │ ├── poll.svg │ │ │ │ │ │ ├── poo.svg │ │ │ │ │ │ ├── poop.svg │ │ │ │ │ │ ├── portrait.svg │ │ │ │ │ │ ├── pound-sign.svg │ │ │ │ │ │ ├── power-off.svg │ │ │ │ │ │ ├── pray.svg │ │ │ │ │ │ ├── praying-hands.svg │ │ │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ │ ├── prescription.svg │ │ │ │ │ │ ├── print.svg │ │ │ │ │ │ ├── procedures.svg │ │ │ │ │ │ ├── project-diagram.svg │ │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ ├── quidditch.svg │ │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ │ ├── quran.svg │ │ │ │ │ │ ├── random.svg │ │ │ │ │ │ ├── receipt.svg │ │ │ │ │ │ ├── recycle.svg │ │ │ │ │ │ ├── redo-alt.svg │ │ │ │ │ │ ├── redo.svg │ │ │ │ │ │ ├── registered.svg │ │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ │ ├── reply.svg │ │ │ │ │ │ ├── retweet.svg │ │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ │ ├── road.svg │ │ │ │ │ │ ├── robot.svg │ │ │ │ │ │ ├── rocket.svg │ │ │ │ │ │ ├── route.svg │ │ │ │ │ │ ├── rss-square.svg │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ │ ├── ruler.svg │ │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ │ ├── save.svg │ │ │ │ │ │ ├── school.svg │ │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ │ ├── search-dollar.svg │ │ │ │ │ │ ├── search-location.svg │ │ │ │ │ │ ├── search-minus.svg │ │ │ │ │ │ ├── search-plus.svg │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ ├── seedling.svg │ │ │ │ │ │ ├── server.svg │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ ├── share-alt-square.svg │ │ │ │ │ │ ├── share-alt.svg │ │ │ │ │ │ ├── share-square.svg │ │ │ │ │ │ ├── share.svg │ │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ │ ├── shield-alt.svg │ │ │ │ │ │ ├── ship.svg │ │ │ │ │ │ ├── shipping-fast.svg │ │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ │ ├── shopping-bag.svg │ │ │ │ │ │ ├── shopping-basket.svg │ │ │ │ │ │ ├── shopping-cart.svg │ │ │ │ │ │ ├── shower.svg │ │ │ │ │ │ ├── shuttle-van.svg │ │ │ │ │ │ ├── sign-in-alt.svg │ │ │ │ │ │ ├── sign-language.svg │ │ │ │ │ │ ├── sign-out-alt.svg │ │ │ │ │ │ ├── sign.svg │ │ │ │ │ │ ├── signal.svg │ │ │ │ │ │ ├── signature.svg │ │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ │ ├── skull.svg │ │ │ │ │ │ ├── sliders-h.svg │ │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ │ ├── smile.svg │ │ │ │ │ │ ├── smoking-ban.svg │ │ │ │ │ │ ├── smoking.svg │ │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ │ ├── socks.svg │ │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ │ ├── sort-amount-down.svg │ │ │ │ │ │ ├── sort-amount-up.svg │ │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ │ ├── sort.svg │ │ │ │ │ │ ├── spa.svg │ │ │ │ │ │ ├── space-shuttle.svg │ │ │ │ │ │ ├── spinner.svg │ │ │ │ │ │ ├── splotch.svg │ │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ │ ├── square-full.svg │ │ │ │ │ │ ├── square-root-alt.svg │ │ │ │ │ │ ├── square.svg │ │ │ │ │ │ ├── stamp.svg │ │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ │ ├── star-half.svg │ │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ │ ├── star.svg │ │ │ │ │ │ ├── step-backward.svg │ │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ │ ├── store-alt.svg │ │ │ │ │ │ ├── store.svg │ │ │ │ │ │ ├── stream.svg │ │ │ │ │ │ ├── street-view.svg │ │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ │ ├── subscript.svg │ │ │ │ │ │ ├── subway.svg │ │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ │ ├── sun.svg │ │ │ │ │ │ ├── superscript.svg │ │ │ │ │ │ ├── surprise.svg │ │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ │ ├── swimmer.svg │ │ │ │ │ │ ├── swimming-pool.svg │ │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ │ ├── sync-alt.svg │ │ │ │ │ │ ├── sync.svg │ │ │ │ │ │ ├── syringe.svg │ │ │ │ │ │ ├── table-tennis.svg │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ ├── tablet-alt.svg │ │ │ │ │ │ ├── tablet.svg │ │ │ │ │ │ ├── tablets.svg │ │ │ │ │ │ ├── tachometer-alt.svg │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ ├── tags.svg │ │ │ │ │ │ ├── tape.svg │ │ │ │ │ │ ├── tasks.svg │ │ │ │ │ │ ├── taxi.svg │ │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ │ ├── teeth.svg │ │ │ │ │ │ ├── terminal.svg │ │ │ │ │ │ ├── text-height.svg │ │ │ │ │ │ ├── text-width.svg │ │ │ │ │ │ ├── th-large.svg │ │ │ │ │ │ ├── th-list.svg │ │ │ │ │ │ ├── th.svg │ │ │ │ │ │ ├── theater-masks.svg │ │ │ │ │ │ ├── thermometer-empty.svg │ │ │ │ │ │ ├── thermometer-full.svg │ │ │ │ │ │ ├── thermometer-half.svg │ │ │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ │ ├── ticket-alt.svg │ │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ │ ├── times.svg │ │ │ │ │ │ ├── tint-slash.svg │ │ │ │ │ │ ├── tint.svg │ │ │ │ │ │ ├── tired.svg │ │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ │ ├── tooth.svg │ │ │ │ │ │ ├── torah.svg │ │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ │ ├── trademark.svg │ │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ │ ├── train.svg │ │ │ │ │ │ ├── transgender-alt.svg │ │ │ │ │ │ ├── transgender.svg │ │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ │ ├── trash.svg │ │ │ │ │ │ ├── tree.svg │ │ │ │ │ │ ├── trophy.svg │ │ │ │ │ │ ├── truck-loading.svg │ │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ │ ├── truck.svg │ │ │ │ │ │ ├── tshirt.svg │ │ │ │ │ │ ├── tty.svg │ │ │ │ │ │ ├── tv.svg │ │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ │ ├── underline.svg │ │ │ │ │ │ ├── undo-alt.svg │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ │ ├── university.svg │ │ │ │ │ │ ├── unlink.svg │ │ │ │ │ │ ├── unlock-alt.svg │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ ├── upload.svg │ │ │ │ │ │ ├── user-alt-slash.svg │ │ │ │ │ │ ├── user-alt.svg │ │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ │ ├── user-check.svg │ │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ │ ├── user-cog.svg │ │ │ │ │ │ ├── user-edit.svg │ │ │ │ │ │ ├── user-friends.svg │ │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ │ ├── user-md.svg │ │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ │ ├── user-times.svg │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ ├── users-cog.svg │ │ │ │ │ │ ├── users.svg │ │ │ │ │ │ ├── utensil-spoon.svg │ │ │ │ │ │ ├── utensils.svg │ │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ │ ├── venus.svg │ │ │ │ │ │ ├── vial.svg │ │ │ │ │ │ ├── vials.svg │ │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ │ ├── video.svg │ │ │ │ │ │ ├── vihara.svg │ │ │ │ │ │ ├── volleyball-ball.svg │ │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ │ ├── walking.svg │ │ │ │ │ │ ├── wallet.svg │ │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ │ ├── weight.svg │ │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ │ ├── wifi.svg │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ │ ├── wrench.svg │ │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ │ └── yin-yang.svg │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── jquery │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ ├── popper.js │ │ │ ├── prism │ │ │ │ ├── prism.css │ │ │ │ └── prism.js │ │ │ └── tinymce │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── changelog.txt │ │ │ │ ├── js │ │ │ │ └── tinymce │ │ │ │ │ ├── jquery.tinymce.min.js │ │ │ │ │ ├── langs │ │ │ │ │ ├── de.js │ │ │ │ │ └── readme.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── plugins │ │ │ │ │ ├── advlist │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── anchor │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── autolink │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── autoresize │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── autosave │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── bbcode │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── charmap │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── code │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── codesample │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── prism.css │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── colorpicker │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── compat3x │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── dialog.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ ├── plugin.min.js │ │ │ │ │ │ ├── tiny_mce_popup.js │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── editable_selects.js │ │ │ │ │ │ │ ├── form_utils.js │ │ │ │ │ │ │ ├── mctabs.js │ │ │ │ │ │ │ └── validate.js │ │ │ │ │ ├── contextmenu │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── directionality │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── emoticons │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ │ │ └── smiley-yell.gif │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── example │ │ │ │ │ │ ├── dialog.html │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── example_dependency │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── fullpage │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── fullscreen │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── help │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── hr │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── image │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── imagetools │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── importcss │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── insertdatetime │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── legacyoutput │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── link │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── lists │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── media │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── nonbreaking │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── noneditable │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── pagebreak │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── paste │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── preview │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── print │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── save │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── searchreplace │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── spellchecker │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── tabfocus │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── table │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── template │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── textcolor │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── textpattern │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── toc │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── visualblocks │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── visualblocks.css │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── visualchars │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ └── wordcount │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── skins │ │ │ │ │ └── lightgray │ │ │ │ │ │ ├── content.inline.min.css │ │ │ │ │ │ ├── content.min.css │ │ │ │ │ │ ├── content.mobile.min.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── tinymce-mobile.woff │ │ │ │ │ │ ├── tinymce-small.eot │ │ │ │ │ │ ├── tinymce-small.svg │ │ │ │ │ │ ├── tinymce-small.ttf │ │ │ │ │ │ ├── tinymce-small.woff │ │ │ │ │ │ ├── tinymce.eot │ │ │ │ │ │ ├── tinymce.svg │ │ │ │ │ │ ├── tinymce.ttf │ │ │ │ │ │ └── tinymce.woff │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── anchor.gif │ │ │ │ │ │ ├── loader.gif │ │ │ │ │ │ ├── object.gif │ │ │ │ │ │ └── trans.gif │ │ │ │ │ │ ├── skin.ie7.min.css │ │ │ │ │ │ ├── skin.min.css │ │ │ │ │ │ ├── skin.min.css.map │ │ │ │ │ │ ├── skin.mobile.min.css │ │ │ │ │ │ └── skin.mobile.min.css.map │ │ │ │ │ ├── themes │ │ │ │ │ ├── inlite │ │ │ │ │ │ ├── theme.js │ │ │ │ │ │ └── theme.min.js │ │ │ │ │ ├── mobile │ │ │ │ │ │ ├── theme.js │ │ │ │ │ │ └── theme.min.js │ │ │ │ │ └── modern │ │ │ │ │ │ ├── theme.js │ │ │ │ │ │ └── theme.min.js │ │ │ │ │ ├── tinymce.js │ │ │ │ │ └── tinymce.min.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.md │ │ │ │ ├── src │ │ │ │ ├── core │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── content_editable.css │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ ├── commands_demo.html │ │ │ │ │ │ │ ├── content_editable_false_demo.html │ │ │ │ │ │ │ ├── custom_theme_demo.html │ │ │ │ │ │ │ ├── full_demo.html │ │ │ │ │ │ │ ├── jquery_integration.html │ │ │ │ │ │ │ ├── tiny_demo.html │ │ │ │ │ │ │ └── ui_container.html │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ ├── CommandsDemo.ts │ │ │ │ │ │ │ ├── ContentEditableFalseDemo.ts │ │ │ │ │ │ │ ├── CustomThemeDemo.ts │ │ │ │ │ │ │ ├── Demos.ts │ │ │ │ │ │ │ ├── FullDemo.ts │ │ │ │ │ │ │ ├── TinyMceDemo.ts │ │ │ │ │ │ │ └── UiContainerDemo.ts │ │ │ │ │ ├── main │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── GlobalsTemplate.js │ │ │ │ │ │ │ └── JqueryIntegration.js │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ └── globals.json │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ └── readme_lang.md │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── DragDropOverrides.ts │ │ │ │ │ │ │ ├── EditorContent.ts │ │ │ │ │ │ │ ├── EditorRemove.ts │ │ │ │ │ │ │ ├── EditorSettings.ts │ │ │ │ │ │ │ ├── EditorView.ts │ │ │ │ │ │ │ ├── ErrorReporter.ts │ │ │ │ │ │ │ ├── ForceBlocks.ts │ │ │ │ │ │ │ ├── InsertContent.ts │ │ │ │ │ │ │ ├── InsertList.ts │ │ │ │ │ │ │ ├── Mode.ts │ │ │ │ │ │ │ ├── NodeChange.ts │ │ │ │ │ │ │ ├── SelectionOverrides.ts │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── AddOnManager.ts │ │ │ │ │ │ │ ├── Editor.ts │ │ │ │ │ │ │ ├── EditorCommands.ts │ │ │ │ │ │ │ ├── EditorManager.ts │ │ │ │ │ │ │ ├── EditorObservable.ts │ │ │ │ │ │ │ ├── EditorUpload.ts │ │ │ │ │ │ │ ├── Env.ts │ │ │ │ │ │ │ ├── Events.ts │ │ │ │ │ │ │ ├── FocusManager.ts │ │ │ │ │ │ │ ├── Formatter.ts │ │ │ │ │ │ │ ├── Main.ts │ │ │ │ │ │ │ ├── NotificationManager.ts │ │ │ │ │ │ │ ├── PluginManager.ts │ │ │ │ │ │ │ ├── Settings.ts │ │ │ │ │ │ │ ├── Shortcuts.ts │ │ │ │ │ │ │ ├── ThemeManager.ts │ │ │ │ │ │ │ ├── Tinymce.ts │ │ │ │ │ │ │ ├── UndoManager.ts │ │ │ │ │ │ │ ├── WindowManager.ts │ │ │ │ │ │ │ ├── dom │ │ │ │ │ │ │ │ ├── BookmarkManager.ts │ │ │ │ │ │ │ │ ├── ControlSelection.ts │ │ │ │ │ │ │ │ ├── DOMUtils.ts │ │ │ │ │ │ │ │ ├── DomQuery.ts │ │ │ │ │ │ │ │ ├── ElementUtils.ts │ │ │ │ │ │ │ │ ├── EventUtils.ts │ │ │ │ │ │ │ │ ├── NativeTypes.ts │ │ │ │ │ │ │ │ ├── RangeUtils.ts │ │ │ │ │ │ │ │ ├── ScriptLoader.ts │ │ │ │ │ │ │ │ ├── Selection.ts │ │ │ │ │ │ │ │ ├── Serializer.ts │ │ │ │ │ │ │ │ ├── Sizzle.ts │ │ │ │ │ │ │ │ └── TreeWalker.ts │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── BlobCache.ts │ │ │ │ │ │ │ ├── geom │ │ │ │ │ │ │ │ └── Rect.ts │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ ├── DomParser.ts │ │ │ │ │ │ │ │ ├── Entities.ts │ │ │ │ │ │ │ │ ├── Node.ts │ │ │ │ │ │ │ │ ├── SaxParser.ts │ │ │ │ │ │ │ │ ├── Schema.ts │ │ │ │ │ │ │ │ ├── Serializer.ts │ │ │ │ │ │ │ │ ├── Styles.ts │ │ │ │ │ │ │ │ └── Writer.ts │ │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ │ └── Factory.ts │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ ├── Class.ts │ │ │ │ │ │ │ │ ├── Color.ts │ │ │ │ │ │ │ │ ├── Delay.ts │ │ │ │ │ │ │ │ ├── EventDispatcher.ts │ │ │ │ │ │ │ │ ├── I18n.ts │ │ │ │ │ │ │ │ ├── JSON.ts │ │ │ │ │ │ │ │ ├── JSONP.ts │ │ │ │ │ │ │ │ ├── JSONRequest.ts │ │ │ │ │ │ │ │ ├── LocalStorage.ts │ │ │ │ │ │ │ │ ├── Observable.ts │ │ │ │ │ │ │ │ ├── Promise.ts │ │ │ │ │ │ │ │ ├── Tools.ts │ │ │ │ │ │ │ │ ├── URI.ts │ │ │ │ │ │ │ │ ├── VK.ts │ │ │ │ │ │ │ │ └── XHR.ts │ │ │ │ │ │ │ ├── caret │ │ │ │ │ │ │ ├── CaretBookmark.ts │ │ │ │ │ │ │ ├── CaretCandidate.ts │ │ │ │ │ │ │ ├── CaretContainer.ts │ │ │ │ │ │ │ ├── CaretContainerInline.ts │ │ │ │ │ │ │ ├── CaretContainerInput.ts │ │ │ │ │ │ │ ├── CaretContainerRemove.ts │ │ │ │ │ │ │ ├── CaretFinder.ts │ │ │ │ │ │ │ ├── CaretPosition.ts │ │ │ │ │ │ │ ├── CaretUtils.ts │ │ │ │ │ │ │ ├── CaretWalker.ts │ │ │ │ │ │ │ ├── FakeCaret.ts │ │ │ │ │ │ │ ├── LineReader.ts │ │ │ │ │ │ │ ├── LineUtils.ts │ │ │ │ │ │ │ ├── LineWalker.ts │ │ │ │ │ │ │ └── TableCells.ts │ │ │ │ │ │ │ ├── commands │ │ │ │ │ │ │ └── IndentOutdent.ts │ │ │ │ │ │ │ ├── delete │ │ │ │ │ │ │ ├── BlockBoundary.ts │ │ │ │ │ │ │ ├── BlockBoundaryDelete.ts │ │ │ │ │ │ │ ├── BlockRangeDelete.ts │ │ │ │ │ │ │ ├── CefDelete.ts │ │ │ │ │ │ │ ├── CefDeleteAction.ts │ │ │ │ │ │ │ ├── DeleteCommands.ts │ │ │ │ │ │ │ ├── DeleteElement.ts │ │ │ │ │ │ │ ├── DeleteUtils.ts │ │ │ │ │ │ │ ├── InlineBoundaryDelete.ts │ │ │ │ │ │ │ ├── InlineFormatDelete.ts │ │ │ │ │ │ │ ├── MergeBlocks.ts │ │ │ │ │ │ │ ├── TableDelete.ts │ │ │ │ │ │ │ └── TableDeleteAction.ts │ │ │ │ │ │ │ ├── dom │ │ │ │ │ │ │ ├── Bookmarks.ts │ │ │ │ │ │ │ ├── Dimensions.ts │ │ │ │ │ │ │ ├── DomSerializer.ts │ │ │ │ │ │ │ ├── DomSerializerFilters.ts │ │ │ │ │ │ │ ├── DomSerializerPreProcess.ts │ │ │ │ │ │ │ ├── ElementType.ts │ │ │ │ │ │ │ ├── Empty.ts │ │ │ │ │ │ │ ├── GetBookmark.ts │ │ │ │ │ │ │ ├── MousePosition.ts │ │ │ │ │ │ │ ├── NodePath.ts │ │ │ │ │ │ │ ├── NodeType.ts │ │ │ │ │ │ │ ├── PaddingBr.ts │ │ │ │ │ │ │ ├── Parents.ts │ │ │ │ │ │ │ ├── Position.ts │ │ │ │ │ │ │ ├── RangePoint.ts │ │ │ │ │ │ │ ├── ResolveBookmark.ts │ │ │ │ │ │ │ ├── ScrollIntoView.ts │ │ │ │ │ │ │ ├── StyleSheetLoader.ts │ │ │ │ │ │ │ ├── TrimHtml.ts │ │ │ │ │ │ │ └── TrimNode.ts │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ ├── Conversions.ts │ │ │ │ │ │ │ ├── ImageScanner.ts │ │ │ │ │ │ │ ├── UploadStatus.ts │ │ │ │ │ │ │ └── Uploader.ts │ │ │ │ │ │ │ ├── fmt │ │ │ │ │ │ │ ├── ApplyFormat.ts │ │ │ │ │ │ │ ├── CaretFormat.ts │ │ │ │ │ │ │ ├── DefaultFormats.ts │ │ │ │ │ │ │ ├── ExpandRange.ts │ │ │ │ │ │ │ ├── FormatChanged.ts │ │ │ │ │ │ │ ├── FormatRegistry.ts │ │ │ │ │ │ │ ├── FormatUtils.ts │ │ │ │ │ │ │ ├── Hooks.ts │ │ │ │ │ │ │ ├── MatchFormat.ts │ │ │ │ │ │ │ ├── MergeFormats.ts │ │ │ │ │ │ │ ├── Preview.ts │ │ │ │ │ │ │ ├── RemoveFormat.ts │ │ │ │ │ │ │ └── ToggleFormat.ts │ │ │ │ │ │ │ ├── focus │ │ │ │ │ │ │ ├── CefFocus.ts │ │ │ │ │ │ │ ├── EditorFocus.ts │ │ │ │ │ │ │ └── FocusController.ts │ │ │ │ │ │ │ ├── geom │ │ │ │ │ │ │ └── ClientRect.ts │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ ├── FilterNode.ts │ │ │ │ │ │ │ ├── LegacyFilter.ts │ │ │ │ │ │ │ ├── ParserFilters.ts │ │ │ │ │ │ │ └── ParserUtils.ts │ │ │ │ │ │ │ ├── init │ │ │ │ │ │ │ ├── Init.ts │ │ │ │ │ │ │ ├── InitContentBody.ts │ │ │ │ │ │ │ ├── InitIframe.ts │ │ │ │ │ │ │ └── Render.ts │ │ │ │ │ │ │ ├── keyboard │ │ │ │ │ │ │ ├── ArrowKeys.ts │ │ │ │ │ │ │ ├── BoundaryCaret.ts │ │ │ │ │ │ │ ├── BoundaryLocation.ts │ │ │ │ │ │ │ ├── BoundarySelection.ts │ │ │ │ │ │ │ ├── CefNavigation.ts │ │ │ │ │ │ │ ├── CefUtils.ts │ │ │ │ │ │ │ ├── DeleteBackspaceKeys.ts │ │ │ │ │ │ │ ├── EnterKey.ts │ │ │ │ │ │ │ ├── FormatShortcuts.ts │ │ │ │ │ │ │ ├── InlineUtils.ts │ │ │ │ │ │ │ ├── InsertSpace.ts │ │ │ │ │ │ │ ├── KeyboardOverrides.ts │ │ │ │ │ │ │ ├── MatchKeys.ts │ │ │ │ │ │ │ ├── SpaceKey.ts │ │ │ │ │ │ │ └── TableNavigation.ts │ │ │ │ │ │ │ ├── newline │ │ │ │ │ │ │ ├── ContextSelectors.ts │ │ │ │ │ │ │ ├── InsertBlock.ts │ │ │ │ │ │ │ ├── InsertBr.ts │ │ │ │ │ │ │ ├── InsertLi.ts │ │ │ │ │ │ │ ├── InsertNewLine.ts │ │ │ │ │ │ │ ├── NewLineAction.ts │ │ │ │ │ │ │ └── NewLineUtils.ts │ │ │ │ │ │ │ ├── selection │ │ │ │ │ │ │ ├── CaretRangeFromPoint.ts │ │ │ │ │ │ │ ├── ElementSelection.ts │ │ │ │ │ │ │ ├── EventProcessRanges.ts │ │ │ │ │ │ │ ├── FragmentReader.ts │ │ │ │ │ │ │ ├── GetSelectionContent.ts │ │ │ │ │ │ │ ├── MultiRange.ts │ │ │ │ │ │ │ ├── NormalizeRange.ts │ │ │ │ │ │ │ ├── RangeCompare.ts │ │ │ │ │ │ │ ├── RangeNodes.ts │ │ │ │ │ │ │ ├── RangeNormalizer.ts │ │ │ │ │ │ │ ├── RangeWalk.ts │ │ │ │ │ │ │ ├── SelectionBookmark.ts │ │ │ │ │ │ │ ├── SelectionRestore.ts │ │ │ │ │ │ │ ├── SelectionUtils.ts │ │ │ │ │ │ │ ├── SetSelectionContent.ts │ │ │ │ │ │ │ ├── SimpleTableModel.ts │ │ │ │ │ │ │ ├── SplitRange.ts │ │ │ │ │ │ │ ├── TableCellSelection.ts │ │ │ │ │ │ │ └── WordSelection.ts │ │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ ├── Bidi.ts │ │ │ │ │ │ │ ├── ExtendingChar.ts │ │ │ │ │ │ │ └── Zwsp.ts │ │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ ├── NotificationManagerImpl.ts │ │ │ │ │ │ │ ├── Sidebar.ts │ │ │ │ │ │ │ └── WindowManagerImpl.ts │ │ │ │ │ │ │ ├── undo │ │ │ │ │ │ │ ├── Diff.ts │ │ │ │ │ │ │ ├── Fragments.ts │ │ │ │ │ │ │ └── Levels.ts │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── Arr.ts │ │ │ │ │ │ │ ├── Fun.ts │ │ │ │ │ │ │ ├── LazyEvaluator.ts │ │ │ │ │ │ │ ├── Private.ts │ │ │ │ │ │ │ ├── Quirks.ts │ │ │ │ │ │ │ └── Uuid.ts │ │ │ │ │ └── test │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── ui-overrides.css │ │ │ │ │ │ ├── json │ │ │ │ │ │ └── routes.json │ │ │ │ │ │ └── ts │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ ├── keyboard │ │ │ │ │ │ │ └── MatchKeysTest.ts │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ ├── BidiTest.ts │ │ │ │ │ │ │ ├── ExtendingCharTest.ts │ │ │ │ │ │ │ └── ZwspTest.ts │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── LazyEvaluatorTest.ts │ │ │ │ │ │ ├── browser │ │ │ │ │ │ ├── AddOnManagerTest.ts │ │ │ │ │ │ ├── ClickContentEditableFalseTest.ts │ │ │ │ │ │ ├── EditorContentTest.ts │ │ │ │ │ │ ├── EditorForcedSettingsTest.ts │ │ │ │ │ │ ├── EditorGetContentTreeTest.ts │ │ │ │ │ │ ├── EditorManagerTest.ts │ │ │ │ │ │ ├── EditorRemoveTest.ts │ │ │ │ │ │ ├── EditorRemovedApiTest.ts │ │ │ │ │ │ ├── EditorRtlTest.ts │ │ │ │ │ │ ├── EditorSettingsTest.ts │ │ │ │ │ │ ├── EditorTest.ts │ │ │ │ │ │ ├── EditorUploadTest.ts │ │ │ │ │ │ ├── EditorViewIframeTest.ts │ │ │ │ │ │ ├── EditorViewInlineTest.ts │ │ │ │ │ │ ├── FontSelectTest.ts │ │ │ │ │ │ ├── ForceBlocksTest.ts │ │ │ │ │ │ ├── FormatterApplyTest.ts │ │ │ │ │ │ ├── FormatterCheckTest.ts │ │ │ │ │ │ ├── FormatterRemoveTest.ts │ │ │ │ │ │ ├── FormattingCommandsTest.ts │ │ │ │ │ │ ├── InsertContentCommandTest.ts │ │ │ │ │ │ ├── InsertContentForcedRootFalseTest.ts │ │ │ │ │ │ ├── InsertContentTest.ts │ │ │ │ │ │ ├── InsertContentWebKitBugs.ts │ │ │ │ │ │ ├── InsertListTest.ts │ │ │ │ │ │ ├── JqueryIntegrationTest.disabled │ │ │ │ │ │ ├── MiscCommandsTest.ts │ │ │ │ │ │ ├── NotificationManagerTest.ts │ │ │ │ │ │ ├── SelectionOverridesTest.ts │ │ │ │ │ │ ├── ShortcutsTest.ts │ │ │ │ │ │ ├── UndoManagerTest.ts │ │ │ │ │ │ ├── WindowManagerTest.ts │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── SettingsTest.ts │ │ │ │ │ │ │ └── dom │ │ │ │ │ │ │ │ └── RangeUtilsTest.ts │ │ │ │ │ │ ├── caret │ │ │ │ │ │ │ ├── CaretBookmarkTest.ts │ │ │ │ │ │ │ ├── CaretCandidateTest.ts │ │ │ │ │ │ │ ├── CaretContainerRemoveTest.ts │ │ │ │ │ │ │ ├── CaretContainerTest.ts │ │ │ │ │ │ │ ├── CaretFinderTest.ts │ │ │ │ │ │ │ ├── CaretPositionTest.ts │ │ │ │ │ │ │ ├── CaretUtilsTest.ts │ │ │ │ │ │ │ ├── CaretWalkerTest.ts │ │ │ │ │ │ │ ├── FakeCaretTest.ts │ │ │ │ │ │ │ ├── LineReaderTest.ts │ │ │ │ │ │ │ ├── LineUtilsTest.ts │ │ │ │ │ │ │ ├── LineWalkerTest.ts │ │ │ │ │ │ │ └── TableCellsTest.ts │ │ │ │ │ │ ├── delete │ │ │ │ │ │ │ ├── BlockBoundaryDeleteTest.ts │ │ │ │ │ │ │ ├── BlockBoundaryTest.ts │ │ │ │ │ │ │ ├── BlockRangeDeleteTest.ts │ │ │ │ │ │ │ ├── CefDeleteActionTest.ts │ │ │ │ │ │ │ ├── CefDeleteTest.ts │ │ │ │ │ │ │ ├── DeleteCommandsTest.ts │ │ │ │ │ │ │ ├── DeleteElementTest.ts │ │ │ │ │ │ │ ├── DeleteUtilsTest.ts │ │ │ │ │ │ │ ├── InlineBoundaryDeleteTest.ts │ │ │ │ │ │ │ ├── InlineFormatDeleteTest.ts │ │ │ │ │ │ │ ├── MergeBlocksTest.ts │ │ │ │ │ │ │ ├── TableDeleteActionTest.ts │ │ │ │ │ │ │ └── TableDeleteTest.ts │ │ │ │ │ │ ├── dom │ │ │ │ │ │ │ ├── ControlSelectionTest.ts │ │ │ │ │ │ │ ├── DimensionsTest.ts │ │ │ │ │ │ │ ├── DomUtilsTest.ts │ │ │ │ │ │ │ ├── ElementTypeTest.ts │ │ │ │ │ │ │ ├── EmptyTest.ts │ │ │ │ │ │ │ ├── EventUtilsTest.ts │ │ │ │ │ │ │ ├── NodePathTest.ts │ │ │ │ │ │ │ ├── NodeTypeTest.ts │ │ │ │ │ │ │ ├── PaddingBrTest.ts │ │ │ │ │ │ │ ├── ParentsTest.ts │ │ │ │ │ │ │ ├── ScrollIntoViewTest.ts │ │ │ │ │ │ │ ├── SelectionEventsTest.ts │ │ │ │ │ │ │ ├── SelectionQuirksTest.ts │ │ │ │ │ │ │ ├── SelectionTest.ts │ │ │ │ │ │ │ ├── SerializerEventsTest.ts │ │ │ │ │ │ │ ├── SerializerTest.ts │ │ │ │ │ │ │ ├── TreeWalkerTest.ts │ │ │ │ │ │ │ ├── TrimHtmlTest.ts │ │ │ │ │ │ │ └── TrimNodeTest.ts │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ ├── BlobCacheTest.ts │ │ │ │ │ │ │ ├── ConversionsTest.ts │ │ │ │ │ │ │ ├── ImageScannerTest.ts │ │ │ │ │ │ │ └── UploadStatusTest.ts │ │ │ │ │ │ ├── fmt │ │ │ │ │ │ │ ├── CaretFormatTest.ts │ │ │ │ │ │ │ ├── ExpandRangeTest.ts │ │ │ │ │ │ │ ├── FontsizeFormatTest.ts │ │ │ │ │ │ │ ├── FormatChangeSelectionTest.ts │ │ │ │ │ │ │ ├── HooksTest.ts │ │ │ │ │ │ │ ├── PreviewTest.ts │ │ │ │ │ │ │ └── RemoveTrailingWhitespaceFormatTest.ts │ │ │ │ │ │ ├── focus │ │ │ │ │ │ │ ├── CefFocusTest.ts │ │ │ │ │ │ │ ├── EditorFocusTest.ts │ │ │ │ │ │ │ └── FocusControllerTest.ts │ │ │ │ │ │ ├── geom │ │ │ │ │ │ │ ├── ClientRectTest.ts │ │ │ │ │ │ │ └── RectTest.ts │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ ├── DomParserTest.ts │ │ │ │ │ │ │ ├── EntitiesTest.ts │ │ │ │ │ │ │ ├── NodeTest.ts │ │ │ │ │ │ │ ├── SaxParserTest.ts │ │ │ │ │ │ │ ├── SchemaTest.ts │ │ │ │ │ │ │ ├── SerializerTest.ts │ │ │ │ │ │ │ ├── StylesTest.ts │ │ │ │ │ │ │ └── WriterTest.ts │ │ │ │ │ │ ├── init │ │ │ │ │ │ │ ├── ContentStylePositionTest.ts │ │ │ │ │ │ │ ├── EditorCustomThemeTest.ts │ │ │ │ │ │ │ ├── EditorInitializationTest.ts │ │ │ │ │ │ │ ├── InitEditorNoThemeIframeTest.ts │ │ │ │ │ │ │ ├── InitEditorNoThemeInlineTest.ts │ │ │ │ │ │ │ ├── InitEditorOnHiddenElementTest.ts │ │ │ │ │ │ │ ├── InitEditorThemeFunctionIframeTest.ts │ │ │ │ │ │ │ ├── InitEditorThemeFunctionInlineTest.ts │ │ │ │ │ │ │ └── InitIframeEditorWithCustomAttrsTest.ts │ │ │ │ │ │ ├── keyboard │ │ │ │ │ │ │ ├── ArrowKeysAnchorTest.ts │ │ │ │ │ │ │ ├── ArrowKeysInlineBoundariesTest.ts │ │ │ │ │ │ │ ├── ArrowKeysTableTest.ts │ │ │ │ │ │ │ ├── BoundaryCaretTest.ts │ │ │ │ │ │ │ ├── BoundaryLocationTest.ts │ │ │ │ │ │ │ ├── EnterKeyAnchorTest.ts │ │ │ │ │ │ │ ├── EnterKeyCeFalseTest.ts │ │ │ │ │ │ │ ├── EnterKeyHrTest.ts │ │ │ │ │ │ │ ├── EnterKeyInlineTest.ts │ │ │ │ │ │ │ ├── EnterKeyListsTest.ts │ │ │ │ │ │ │ ├── EnterKeyTest.ts │ │ │ │ │ │ │ ├── InlineUtilsTest.ts │ │ │ │ │ │ │ ├── SpaceKeyTest.ts │ │ │ │ │ │ │ └── TypeTextAtCefTest.ts │ │ │ │ │ │ ├── newline │ │ │ │ │ │ │ ├── InsertBrTest.ts │ │ │ │ │ │ │ └── InsertNewLineTest.ts │ │ │ │ │ │ ├── selection │ │ │ │ │ │ │ ├── FragmentReaderTest.ts │ │ │ │ │ │ │ ├── GetSelectionContentTest.ts │ │ │ │ │ │ │ ├── NormalizeRangeTest.ts │ │ │ │ │ │ │ ├── RangeNormalizerTest.ts │ │ │ │ │ │ │ ├── SelectionBookmarkIframeEditorTest.ts │ │ │ │ │ │ │ ├── SelectionBookmarkInlineEditorTest.ts │ │ │ │ │ │ │ ├── SelectionBookmarkTest.ts │ │ │ │ │ │ │ ├── SelectionUtilsTest.ts │ │ │ │ │ │ │ ├── SetSelectionContentTest.ts │ │ │ │ │ │ │ ├── SimpleTableModelTest.ts │ │ │ │ │ │ │ └── TableCellSelectionTest.ts │ │ │ │ │ │ ├── undo │ │ │ │ │ │ │ ├── DiffTest.ts │ │ │ │ │ │ │ ├── ForcedRootBlockTest.ts │ │ │ │ │ │ │ ├── FragmentsTest.ts │ │ │ │ │ │ │ └── LevelsTest.ts │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ColorTest.ts │ │ │ │ │ │ │ ├── DelayTest.ts │ │ │ │ │ │ │ ├── EventDispatcherTest.ts │ │ │ │ │ │ │ ├── FunTest.ts │ │ │ │ │ │ │ ├── I18nTest.ts │ │ │ │ │ │ │ ├── JsonRequestTest.ts │ │ │ │ │ │ │ ├── JsonTest.ts │ │ │ │ │ │ │ ├── LocalStorageTest.ts │ │ │ │ │ │ │ ├── ObservableTest.ts │ │ │ │ │ │ │ ├── PromiseTest.ts │ │ │ │ │ │ │ ├── QuirksWebkitTest.ts │ │ │ │ │ │ │ ├── ToolsTest.ts │ │ │ │ │ │ │ ├── UriTest.ts │ │ │ │ │ │ │ └── XhrTest.ts │ │ │ │ │ │ └── module │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── CaretAsserts.ts │ │ │ │ │ │ ├── HtmlUtils.ts │ │ │ │ │ │ ├── KeyUtils.ts │ │ │ │ │ │ ├── TypeText.ts │ │ │ │ │ │ └── ViewBlock.ts │ │ │ │ ├── plugins │ │ │ │ │ ├── advlist │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ │ │ └── ListUtils.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ └── ListStyles.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── AdvlistPluginTest.ts │ │ │ │ │ │ │ ├── ChangeListStyleTest.ts │ │ │ │ │ │ │ └── SplitButtonTest.ts │ │ │ │ │ ├── anchor │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── Commands.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Anchor.ts │ │ │ │ │ │ │ │ └── FilterContent.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ └── Dialog.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── AnchorInlineTest.ts │ │ │ │ │ │ │ └── AnchorSanityTest.ts │ │ │ │ │ ├── autolink │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ └── Keys.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── AutoLinkPluginTest.ts │ │ │ │ │ │ │ ├── ConsecutiveLinkTest.ts │ │ │ │ │ │ │ └── EnterKeyTest.ts │ │ │ │ │ │ │ └── module │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── KeyUtils.ts │ │ │ │ │ ├── autoresize │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ └── Resize.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── AutoresizePluginTest.ts │ │ │ │ │ ├── autosave │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ ├── Events.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── BeforeUnload.ts │ │ │ │ │ │ │ │ ├── Storage.ts │ │ │ │ │ │ │ │ └── Time.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── AutoSavePluginTest.ts │ │ │ │ │ ├── bbcode │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ └── Convert.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── BbcodeSanityTest.ts │ │ │ │ │ ├── charmap │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ ├── Events.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ │ │ └── CharMap.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ ├── Dialog.ts │ │ │ │ │ │ │ │ └── GridHtml.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── CharmapPluginTest.ts │ │ │ │ │ │ │ └── InsertQuotationMarkTest.ts │ │ │ │ │ ├── code │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ └── Content.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ └── Dialog.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── CodeSanityTest.ts │ │ │ │ │ ├── codesample │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── prism.css │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── CodeSample.ts │ │ │ │ │ │ │ │ ├── FilterContent.ts │ │ │ │ │ │ │ │ ├── Languages.ts │ │ │ │ │ │ │ │ ├── LoadCss.ts │ │ │ │ │ │ │ │ └── Prism.ts │ │ │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ └── Dialog.ts │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── Utils.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── CodeSampleSanityTest.ts │ │ │ │ │ │ │ └── DblClickCodesampleTest.ts │ │ │ │ │ ├── colorpicker │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Dialog.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── ColorPickerSanityTest.ts │ │ │ │ │ ├── compat3x │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── dialog.css │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ │ │ ├── tiny_mce_popup.js │ │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── editable_selects.js │ │ │ │ │ │ │ │ ├── form_utils.js │ │ │ │ │ │ │ │ ├── mctabs.js │ │ │ │ │ │ │ │ └── validate.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── dialog.html │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── Compat3xPluginTest.disabled │ │ │ │ │ ├── contextmenu │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Bind.ts │ │ │ │ │ │ │ │ ├── Coords.ts │ │ │ │ │ │ │ │ ├── RangePoint.ts │ │ │ │ │ │ │ │ └── UiContainer.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── ContextMenu.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── ContextMenuPluginTest.ts │ │ │ │ │ ├── directionality │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── Commands.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ └── Direction.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── DirectionalitySanityTest.ts │ │ │ │ │ ├── emoticons │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ │ │ │ └── smiley-yell.gif │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ └── PanelHtml.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── EmoticonSanityTest.ts │ │ │ │ │ ├── fullpage │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── FilterContent.ts │ │ │ │ │ │ │ │ ├── Parser.ts │ │ │ │ │ │ │ │ └── Protect.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ └── Dialog.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ │ └── ProtectTest.ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── FullPagePluginTest.ts │ │ │ │ │ ├── fullscreen │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Events.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ └── Actions.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── FullScreenPluginTest.ts │ │ │ │ │ │ │ └── FullscreenPluginInlineEditorTest.ts │ │ │ │ │ ├── help │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── Commands.ts │ │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── KeyboardShortcuts.ts │ │ │ │ │ │ │ │ └── PluginUrls.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ ├── ButtonsRow.ts │ │ │ │ │ │ │ │ ├── Dialog.ts │ │ │ │ │ │ │ │ ├── KeyboardShortcutsTab.ts │ │ │ │ │ │ │ │ └── PluginsTab.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── IgnoreForcedPluginsTest.ts │ │ │ │ │ │ │ ├── MetadataTest.ts │ │ │ │ │ │ │ └── PluginTest.ts │ │ │ │ │ │ │ └── module │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── FakePlugin.ts │ │ │ │ │ │ │ └── NoMetaFakePlugin.ts │ │ │ │ │ ├── hr │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── Commands.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── HrSanityTest.ts │ │ │ │ │ ├── image │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── FilterContent.ts │ │ │ │ │ │ │ │ ├── Uploader.ts │ │ │ │ │ │ │ │ └── Utils.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── AdvTab.ts │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ ├── Dialog.ts │ │ │ │ │ │ │ │ ├── MainTab.ts │ │ │ │ │ │ │ │ ├── SizeManager.ts │ │ │ │ │ │ │ │ └── UploadTab.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── FigureDeleteTest.ts │ │ │ │ │ │ │ ├── FigureResizeTest.ts │ │ │ │ │ │ │ ├── ImageListTest.ts │ │ │ │ │ │ │ ├── ImagePluginTest.ts │ │ │ │ │ │ │ ├── ImageResizeTest.ts │ │ │ │ │ │ │ └── UploadTabTest.ts │ │ │ │ │ ├── imagetools │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ └── dogleft.jpg │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ │ │ ├── Errors.ts │ │ │ │ │ │ │ │ ├── ImageSize.ts │ │ │ │ │ │ │ │ ├── LoadImage.ts │ │ │ │ │ │ │ │ ├── Proxy.ts │ │ │ │ │ │ │ │ ├── UndoStack.ts │ │ │ │ │ │ │ │ ├── UploadSelectedImage.ts │ │ │ │ │ │ │ │ └── Utils.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ ├── ContextToolbar.ts │ │ │ │ │ │ │ │ ├── CropRect.ts │ │ │ │ │ │ │ │ ├── Dialog.ts │ │ │ │ │ │ │ │ └── ImagePanel.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ │ └── ErrorsTest.ts │ │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── ImageToolsErrorTest.ts │ │ │ │ │ │ │ ├── ImageToolsPluginTest.ts │ │ │ │ │ │ │ └── SequenceTest.ts │ │ │ │ │ │ │ └── module │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── ImageOps.ts │ │ │ │ │ │ │ └── ImageUtils.ts │ │ │ │ │ ├── importcss │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── rules.css │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ └── ImportCss.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── ImportCssPluginTest.ts │ │ │ │ │ ├── insertdatetime │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ └── Actions.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── InsertDatetimeSanityTest.ts │ │ │ │ │ ├── legacyoutput │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ └── Formats.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── LegacyOutputPluginTest.ts │ │ │ │ │ ├── link │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ │ │ ├── Keyboard.ts │ │ │ │ │ │ │ │ ├── OpenUrl.ts │ │ │ │ │ │ │ │ └── Utils.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Controls.ts │ │ │ │ │ │ │ │ └── Dialog.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── AllowUnsafeLinkTargetTest.ts │ │ │ │ │ │ │ ├── AssumeExternalTargetsTest.ts │ │ │ │ │ │ │ ├── ContextToolbarTest.ts │ │ │ │ │ │ │ ├── ImageFigureLinkTest.ts │ │ │ │ │ │ │ ├── LinkClassListTest.ts │ │ │ │ │ │ │ ├── LinkPluginTest.ts │ │ │ │ │ │ │ ├── LinkTitleTest.ts │ │ │ │ │ │ │ ├── RelListTest.ts │ │ │ │ │ │ │ ├── SelectedLinkTest.ts │ │ │ │ │ │ │ ├── TargetListTest.ts │ │ │ │ │ │ │ └── UrlInputTest.ts │ │ │ │ │ ├── lists │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ │ ├── Indent.ts │ │ │ │ │ │ │ │ ├── Outdent.ts │ │ │ │ │ │ │ │ └── ToggleList.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Bookmark.ts │ │ │ │ │ │ │ │ ├── Delete.ts │ │ │ │ │ │ │ │ ├── Keyboard.ts │ │ │ │ │ │ │ │ ├── NodeType.ts │ │ │ │ │ │ │ │ ├── NormalizeLists.ts │ │ │ │ │ │ │ │ ├── Range.ts │ │ │ │ │ │ │ │ ├── Selection.ts │ │ │ │ │ │ │ │ ├── SplitList.ts │ │ │ │ │ │ │ │ └── TextBlock.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── ApplyDlTest.ts │ │ │ │ │ │ │ ├── ApplyListOnParagraphWithStylesTest.ts │ │ │ │ │ │ │ ├── ApplyTest.ts │ │ │ │ │ │ │ ├── BackspaceDeleteFromBlockIntoLiTest.ts │ │ │ │ │ │ │ ├── BackspaceDeleteInlineTest.ts │ │ │ │ │ │ │ ├── BackspaceDeleteTest.ts │ │ │ │ │ │ │ ├── ChangeListStyleTest.ts │ │ │ │ │ │ │ ├── IndentTest.ts │ │ │ │ │ │ │ ├── InlineTest.ts │ │ │ │ │ │ │ ├── OutdentTest.ts │ │ │ │ │ │ │ ├── RemoveTest.ts │ │ │ │ │ │ │ └── TableInListTest.ts │ │ │ │ │ ├── media │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── DataToHtml.ts │ │ │ │ │ │ │ │ ├── FilterContent.ts │ │ │ │ │ │ │ │ ├── HtmlToData.ts │ │ │ │ │ │ │ │ ├── Mime.ts │ │ │ │ │ │ │ │ ├── Nodes.ts │ │ │ │ │ │ │ │ ├── ResolveName.ts │ │ │ │ │ │ │ │ ├── Sanitize.ts │ │ │ │ │ │ │ │ ├── Selection.ts │ │ │ │ │ │ │ │ ├── Service.ts │ │ │ │ │ │ │ │ ├── Size.ts │ │ │ │ │ │ │ │ ├── UpdateHtml.ts │ │ │ │ │ │ │ │ ├── UrlPatterns.ts │ │ │ │ │ │ │ │ └── VideoScript.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ ├── Dialog.ts │ │ │ │ │ │ │ │ └── SizeManager.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ │ └── HtmlToDataTest.ts │ │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── ContentFormatsTest.ts │ │ │ │ │ │ │ ├── DataAttributeTest.ts │ │ │ │ │ │ │ ├── DataToHtmlTest.ts │ │ │ │ │ │ │ ├── DimensionsControlTest.ts │ │ │ │ │ │ │ ├── DimensionsFalseEmbedTest.ts │ │ │ │ │ │ │ ├── EphoxEmbedTest.ts │ │ │ │ │ │ │ ├── IframeNodeTest.ts │ │ │ │ │ │ │ ├── IsCachedResponseTest.ts │ │ │ │ │ │ │ ├── MediaEmbedTest.ts │ │ │ │ │ │ │ ├── NoAdvancedTabTest.ts │ │ │ │ │ │ │ ├── PlaceholderTest.ts │ │ │ │ │ │ │ ├── PluginTest.ts │ │ │ │ │ │ │ ├── ReopenResizeTest.ts │ │ │ │ │ │ │ └── SubmitTest.ts │ │ │ │ │ │ │ └── module │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── Utils.ts │ │ │ │ │ ├── nonbreaking │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ │ │ └── Keyboard.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── NonbreakingForceTabTest.ts │ │ │ │ │ │ │ ├── NonbreakingSanityTest.ts │ │ │ │ │ │ │ └── NonbreakingSettingsTest.ts │ │ │ │ │ ├── noneditable │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ └── FilterContent.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── NonEditablePluginTest.ts │ │ │ │ │ ├── pagebreak │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── FilterContent.ts │ │ │ │ │ │ │ │ └── ResolveName.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── PageBreakSanityTest.ts │ │ │ │ │ ├── paste │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── alien │ │ │ │ │ │ │ │ └── DetectProPlugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ ├── Clipboard.ts │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ ├── Events.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ │ │ ├── Clipboard.ts │ │ │ │ │ │ │ │ ├── CutCopy.ts │ │ │ │ │ │ │ │ ├── DragDrop.ts │ │ │ │ │ │ │ │ ├── FragmentParser.ts │ │ │ │ │ │ │ │ ├── InternalHtml.ts │ │ │ │ │ │ │ │ ├── Newlines.ts │ │ │ │ │ │ │ │ ├── PasteBin.ts │ │ │ │ │ │ │ │ ├── PrePostProcess.ts │ │ │ │ │ │ │ │ ├── ProcessFilters.ts │ │ │ │ │ │ │ │ ├── Quirks.ts │ │ │ │ │ │ │ │ ├── SmartPaste.ts │ │ │ │ │ │ │ │ ├── Utils.ts │ │ │ │ │ │ │ │ └── WordFilter.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ │ ├── FragmentParserTest.ts │ │ │ │ │ │ │ └── InternalHtmlTest.ts │ │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── ImagePasteTest.ts │ │ │ │ │ │ │ ├── InternalClipboardTest.ts │ │ │ │ │ │ │ ├── NewlinesTest.ts │ │ │ │ │ │ │ ├── PasteBinTest.ts │ │ │ │ │ │ │ ├── PasteFormatToggleTest.ts │ │ │ │ │ │ │ ├── PasteSettingsTest.ts │ │ │ │ │ │ │ ├── PasteStylesTest.ts │ │ │ │ │ │ │ ├── PasteTest.ts │ │ │ │ │ │ │ ├── PlainTextPasteTest.ts │ │ │ │ │ │ │ ├── ProcessFiltersTest.ts │ │ │ │ │ │ │ ├── SmartPasteTest.ts │ │ │ │ │ │ │ └── alien │ │ │ │ │ │ │ │ └── DetectProPluginTest.ts │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── MockDataTransfer.ts │ │ │ │ │ │ │ │ ├── Paste.ts │ │ │ │ │ │ │ │ ├── Strings.ts │ │ │ │ │ │ │ │ └── ViewBlock.ts │ │ │ │ │ │ │ └── webdriver │ │ │ │ │ │ │ └── CutTest.ts │ │ │ │ │ ├── preview │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ ├── Dialog.ts │ │ │ │ │ │ │ │ └── IframeContent.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── PreviewContentStyleTest.ts │ │ │ │ │ │ │ └── PreviewSanityTest.ts │ │ │ │ │ ├── print │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── Commands.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── PrintSanityTest.ts │ │ │ │ │ ├── save │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ └── Actions.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── SaveSanityTest.ts │ │ │ │ │ ├── searchreplace │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ └── Commands.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ │ │ └── FindReplaceText.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ └── Dialog.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── SearchReplacePluginTest.ts │ │ │ │ │ │ │ └── UndoReplaceSpanTest.ts │ │ │ │ │ │ │ └── module │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── HtmlUtils.ts │ │ │ │ │ ├── spellchecker │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── alien │ │ │ │ │ │ │ │ └── DetectProPlugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ ├── Events.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ │ │ └── DomTextMatcher.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ └── SuggestionsMenu.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── AddToDictionaryTest.ts │ │ │ │ │ │ │ ├── SpellcheckerManyLanguagesTest.ts │ │ │ │ │ │ │ ├── SpellcheckerSingleLanguageTest.ts │ │ │ │ │ │ │ ├── SpellcheckerTest.ts │ │ │ │ │ │ │ └── alien │ │ │ │ │ │ │ └── DetectProPluginTest.ts │ │ │ │ │ ├── tabfocus │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ └── Keyboard.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── TabfocusSanityTest.ts │ │ │ │ │ ├── table │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ │ ├── Clipboard.ts │ │ │ │ │ │ │ │ ├── InsertTable.ts │ │ │ │ │ │ │ │ ├── ResizeHandler.ts │ │ │ │ │ │ │ │ ├── Styles.ts │ │ │ │ │ │ │ │ ├── TableActions.ts │ │ │ │ │ │ │ │ └── TableWire.ts │ │ │ │ │ │ │ │ ├── alien │ │ │ │ │ │ │ │ └── Util.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ ├── Events.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── queries │ │ │ │ │ │ │ │ ├── CellOperations.ts │ │ │ │ │ │ │ │ ├── Direction.ts │ │ │ │ │ │ │ │ ├── TabContext.ts │ │ │ │ │ │ │ │ └── TableTargets.ts │ │ │ │ │ │ │ │ ├── selection │ │ │ │ │ │ │ │ ├── CellSelection.ts │ │ │ │ │ │ │ │ ├── Ephemera.ts │ │ │ │ │ │ │ │ ├── SelectionTypes.ts │ │ │ │ │ │ │ │ └── Selections.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ ├── CellDialog.ts │ │ │ │ │ │ │ │ ├── Helpers.ts │ │ │ │ │ │ │ │ ├── MenuItems.ts │ │ │ │ │ │ │ │ ├── RowDialog.ts │ │ │ │ │ │ │ │ └── TableDialog.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── ClipboardTest.ts │ │ │ │ │ │ │ ├── DragResizeTest.ts │ │ │ │ │ │ │ ├── GridSelectionTest.ts │ │ │ │ │ │ │ ├── IndentListsInTableTest.ts │ │ │ │ │ │ │ ├── InsertCommandsTest.ts │ │ │ │ │ │ │ ├── InsertTableTest.ts │ │ │ │ │ │ │ ├── KeyboardCellNavigationTest.ts │ │ │ │ │ │ │ ├── MergeCellCommandTest.ts │ │ │ │ │ │ │ ├── NewCellRowEventsTest.ts │ │ │ │ │ │ │ ├── ResizeTableTest.ts │ │ │ │ │ │ │ ├── TabKeyNavigationTest.ts │ │ │ │ │ │ │ ├── TableAsBodyTest.ts │ │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ │ ├── CustomTableToolbarTest.ts │ │ │ │ │ │ │ │ ├── DefaultTableToolbarTest.ts │ │ │ │ │ │ │ │ ├── DisabledTableToolbarTest.ts │ │ │ │ │ │ │ │ ├── TableAppearanceOptionsTest.ts │ │ │ │ │ │ │ │ ├── TableCellClassListTest.ts │ │ │ │ │ │ │ │ ├── TableClassListTest.ts │ │ │ │ │ │ │ │ ├── TableDefaultAttributesTest.ts │ │ │ │ │ │ │ │ ├── TableDefaultStylesTest.ts │ │ │ │ │ │ │ │ ├── TableGridFalseTest.ts │ │ │ │ │ │ │ │ ├── TableRowClassListTest.ts │ │ │ │ │ │ │ │ └── TableTabNavigationDisabledTest.ts │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── ColorPickerTest.ts │ │ │ │ │ │ │ │ ├── TableCellDialogTest.ts │ │ │ │ │ │ │ │ ├── TableDialogTest.ts │ │ │ │ │ │ │ │ └── TableRowDialogTest.ts │ │ │ │ │ │ │ └── module │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── TableTestUtils.ts │ │ │ │ │ ├── template │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── DateTimeHelper.ts │ │ │ │ │ │ │ │ ├── FilterContent.ts │ │ │ │ │ │ │ │ └── Templates.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ └── Dialog.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── test_template.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── DatesTest.ts │ │ │ │ │ │ │ ├── SelectedContentTest.ts │ │ │ │ │ │ │ └── TemplateSanityTest.ts │ │ │ │ │ ├── textcolor │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ └── TextColor.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ └── ColorPickerHtml.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── TextcolorCommandsTest.ts │ │ │ │ │ │ │ └── TextcolorSanityTest.ts │ │ │ │ │ ├── textpattern │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ ├── Formatter.ts │ │ │ │ │ │ │ │ ├── KeyHandler.ts │ │ │ │ │ │ │ │ ├── Keyboard.ts │ │ │ │ │ │ │ │ └── Patterns.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ │ └── FindPatternsTest.ts │ │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── FormatterTest.ts │ │ │ │ │ │ │ ├── TextPatternPluginTest.ts │ │ │ │ │ │ │ ├── TrailingPunctuationTest.ts │ │ │ │ │ │ │ ├── TriggerInlinePatternBeginningTest.ts │ │ │ │ │ │ │ └── UndoTextpatternTest.ts │ │ │ │ │ │ │ └── module │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── Utils.ts │ │ │ │ │ ├── toc │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── FilterContent.ts │ │ │ │ │ │ │ │ ├── Guid.ts │ │ │ │ │ │ │ │ └── Toc.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── TocPluginTest.ts │ │ │ │ │ │ │ └── api │ │ │ │ │ │ │ │ └── SettingsTest.ts │ │ │ │ │ │ │ └── module │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── HtmlUtils.ts │ │ │ │ │ ├── visualblocks │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── visualblocks.css │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ ├── address.gif │ │ │ │ │ │ │ │ ├── article.gif │ │ │ │ │ │ │ │ ├── aside.gif │ │ │ │ │ │ │ │ ├── blockquote.gif │ │ │ │ │ │ │ │ ├── div.gif │ │ │ │ │ │ │ │ ├── dl.gif │ │ │ │ │ │ │ │ ├── figure.gif │ │ │ │ │ │ │ │ ├── h1.gif │ │ │ │ │ │ │ │ ├── h2.gif │ │ │ │ │ │ │ │ ├── h3.gif │ │ │ │ │ │ │ │ ├── h4.gif │ │ │ │ │ │ │ │ ├── h5.gif │ │ │ │ │ │ │ │ ├── h6.gif │ │ │ │ │ │ │ │ ├── hgroup.gif │ │ │ │ │ │ │ │ ├── ol.gif │ │ │ │ │ │ │ │ ├── p.gif │ │ │ │ │ │ │ │ ├── pre.gif │ │ │ │ │ │ │ │ ├── section.gif │ │ │ │ │ │ │ │ └── ul.gif │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ ├── Events.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Bindings.ts │ │ │ │ │ │ │ │ ├── LoadCss.ts │ │ │ │ │ │ │ │ └── VisualBlocks.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ ├── PreviewFormatTest.ts │ │ │ │ │ │ │ └── VisualBlocksSanityTest.ts │ │ │ │ │ ├── visualchars │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ │ │ ├── Commands.ts │ │ │ │ │ │ │ │ └── Events.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ │ │ ├── Data.ts │ │ │ │ │ │ │ │ ├── Html.ts │ │ │ │ │ │ │ │ ├── Keyboard.ts │ │ │ │ │ │ │ │ ├── Nodes.ts │ │ │ │ │ │ │ │ └── VisualChars.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ └── Buttons.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ │ ├── DataTest.ts │ │ │ │ │ │ │ ├── HtmlTest.ts │ │ │ │ │ │ │ └── NodesTest.ts │ │ │ │ │ │ │ └── browser │ │ │ │ │ │ │ └── PluginTest.ts │ │ │ │ │ └── wordcount │ │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ └── Demo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── Plugin.ts │ │ │ │ │ │ │ ├── alien │ │ │ │ │ │ │ └── Arr.ts │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ └── Api.ts │ │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ ├── StringMapper.ts │ │ │ │ │ │ │ ├── UnicodeData.ts │ │ │ │ │ │ │ ├── WordBoundary.ts │ │ │ │ │ │ │ ├── WordCount.ts │ │ │ │ │ │ │ └── WordGetter.ts │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ └── Statusbar.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ └── ts │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ └── core │ │ │ │ │ │ │ ├── IsWordBoundaryTest.ts │ │ │ │ │ │ │ ├── StringMapperTest.ts │ │ │ │ │ │ │ └── WordGetterTest.ts │ │ │ │ │ │ └── browser │ │ │ │ │ │ ├── ApiTest.ts │ │ │ │ │ │ └── core │ │ │ │ │ │ └── PluginTest.ts │ │ │ │ ├── skins │ │ │ │ │ └── lightgray │ │ │ │ │ │ ├── demo │ │ │ │ │ │ └── html │ │ │ │ │ │ │ └── icons_demo.html │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── readme.md │ │ │ │ │ │ ├── tinymce-mobile.json │ │ │ │ │ │ ├── tinymce-mobile.woff │ │ │ │ │ │ ├── tinymce-small.eot │ │ │ │ │ │ ├── tinymce-small.json │ │ │ │ │ │ ├── tinymce-small.svg │ │ │ │ │ │ ├── tinymce-small.ttf │ │ │ │ │ │ ├── tinymce-small.woff │ │ │ │ │ │ ├── tinymce.eot │ │ │ │ │ │ ├── tinymce.json │ │ │ │ │ │ ├── tinymce.svg │ │ │ │ │ │ ├── tinymce.ttf │ │ │ │ │ │ └── tinymce.woff │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── anchor.gif │ │ │ │ │ │ ├── loader.gif │ │ │ │ │ │ ├── object.gif │ │ │ │ │ │ └── trans.gif │ │ │ │ │ │ └── less │ │ │ │ │ │ ├── desktop │ │ │ │ │ │ ├── AbsoluteLayout.less │ │ │ │ │ │ ├── Animations.less │ │ │ │ │ │ ├── Arrows.less │ │ │ │ │ │ ├── BrowseButton.less │ │ │ │ │ │ ├── Button.less │ │ │ │ │ │ ├── ButtonGroup.less │ │ │ │ │ │ ├── Checkbox.less │ │ │ │ │ │ ├── ColorBox.less │ │ │ │ │ │ ├── ColorButton.less │ │ │ │ │ │ ├── ColorPicker.less │ │ │ │ │ │ ├── ComboBox.less │ │ │ │ │ │ ├── Container.less │ │ │ │ │ │ ├── Content.Inline.less │ │ │ │ │ │ ├── Content.Objects.less │ │ │ │ │ │ ├── Content.less │ │ │ │ │ │ ├── CropRect.less │ │ │ │ │ │ ├── DropZone.less │ │ │ │ │ │ ├── FieldSet.less │ │ │ │ │ │ ├── FilePicker.less │ │ │ │ │ │ ├── FitLayout.less │ │ │ │ │ │ ├── FloatPanel.less │ │ │ │ │ │ ├── FlowLayout.less │ │ │ │ │ │ ├── Icons.less │ │ │ │ │ │ ├── Iframe.less │ │ │ │ │ │ ├── ImagePanel.less │ │ │ │ │ │ ├── InfoBox.less │ │ │ │ │ │ ├── Label.less │ │ │ │ │ │ ├── ListBox.less │ │ │ │ │ │ ├── Menu.less │ │ │ │ │ │ ├── MenuBar.less │ │ │ │ │ │ ├── MenuButton.less │ │ │ │ │ │ ├── MenuItem.less │ │ │ │ │ │ ├── Mixins.less │ │ │ │ │ │ ├── Notification.less │ │ │ │ │ │ ├── Panel.less │ │ │ │ │ │ ├── Path.less │ │ │ │ │ │ ├── Progress.less │ │ │ │ │ │ ├── Radio.less │ │ │ │ │ │ ├── Reset.less │ │ │ │ │ │ ├── ResizeHandle.less │ │ │ │ │ │ ├── Scrollable.less │ │ │ │ │ │ ├── SelectBox.less │ │ │ │ │ │ ├── Sidebar.less │ │ │ │ │ │ ├── Skin.less │ │ │ │ │ │ ├── Slider.less │ │ │ │ │ │ ├── Spacer.less │ │ │ │ │ │ ├── SplitButton.less │ │ │ │ │ │ ├── StackLayout.less │ │ │ │ │ │ ├── TabPanel.less │ │ │ │ │ │ ├── TextBox.less │ │ │ │ │ │ ├── Throbber.less │ │ │ │ │ │ ├── TinyMCE.less │ │ │ │ │ │ ├── ToolTip.less │ │ │ │ │ │ ├── Variables.less │ │ │ │ │ │ └── Window.less │ │ │ │ │ │ └── mobile │ │ │ │ │ │ ├── app │ │ │ │ │ │ ├── android.less │ │ │ │ │ │ ├── mask-section.less │ │ │ │ │ │ ├── mask.less │ │ │ │ │ │ ├── mobile-icons.less │ │ │ │ │ │ ├── mobile-less.less │ │ │ │ │ │ ├── reset.less │ │ │ │ │ │ └── variables.less │ │ │ │ │ │ ├── content.less │ │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── dropup.less │ │ │ │ │ │ └── styles-menu.less │ │ │ │ │ │ └── toolstrip │ │ │ │ │ │ ├── context-toolbar.less │ │ │ │ │ │ ├── main-toolbar.less │ │ │ │ │ │ ├── serialised-dialogs.less │ │ │ │ │ │ ├── slider.less │ │ │ │ │ │ └── toolstrip.less │ │ │ │ ├── themes │ │ │ │ │ ├── inlite │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── demo.css │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ └── Demos.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Theme.ts │ │ │ │ │ │ │ │ ├── alien │ │ │ │ │ │ │ │ ├── Arr.ts │ │ │ │ │ │ │ │ ├── Bookmark.ts │ │ │ │ │ │ │ │ ├── EditorSettings.ts │ │ │ │ │ │ │ │ ├── Type.ts │ │ │ │ │ │ │ │ ├── UiContainer.ts │ │ │ │ │ │ │ │ ├── Unlink.ts │ │ │ │ │ │ │ │ └── Uuid.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── Events.ts │ │ │ │ │ │ │ │ ├── Settings.ts │ │ │ │ │ │ │ │ └── ThemeApi.ts │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── Actions.ts │ │ │ │ │ │ │ │ ├── Convert.ts │ │ │ │ │ │ │ │ ├── ElementMatcher.ts │ │ │ │ │ │ │ │ ├── Layout.ts │ │ │ │ │ │ │ │ ├── Matcher.ts │ │ │ │ │ │ │ │ ├── Measure.ts │ │ │ │ │ │ │ │ ├── PredicateId.ts │ │ │ │ │ │ │ │ ├── Render.ts │ │ │ │ │ │ │ │ ├── SelectionMatcher.ts │ │ │ │ │ │ │ │ ├── SkinLoader.ts │ │ │ │ │ │ │ │ └── UrlType.ts │ │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ ├── Conversions.ts │ │ │ │ │ │ │ │ └── Picker.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ ├── Forms.ts │ │ │ │ │ │ │ │ ├── Panel.ts │ │ │ │ │ │ │ │ └── Toolbar.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ │ ├── alien │ │ │ │ │ │ │ │ ├── ArrTest.ts │ │ │ │ │ │ │ │ ├── TypeTest.ts │ │ │ │ │ │ │ │ └── UuidTest.ts │ │ │ │ │ │ │ └── core │ │ │ │ │ │ │ │ ├── ConvertTest.ts │ │ │ │ │ │ │ │ ├── MatcherTest.ts │ │ │ │ │ │ │ │ └── UrlTypeTest.ts │ │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── AutoCompleteTest.ts │ │ │ │ │ │ │ ├── ClosedDialogScrollTest.ts │ │ │ │ │ │ │ ├── SkinFalseTest.ts │ │ │ │ │ │ │ ├── ThemeTest.ts │ │ │ │ │ │ │ ├── alien │ │ │ │ │ │ │ │ ├── BookmarkTest.ts │ │ │ │ │ │ │ │ ├── EditorSettingsTest.ts │ │ │ │ │ │ │ │ └── UnlinkTest.ts │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── ActionsTest.ts │ │ │ │ │ │ │ │ ├── ElementMatcherTest.ts │ │ │ │ │ │ │ │ ├── LayoutTest.ts │ │ │ │ │ │ │ │ ├── MeasureTest.ts │ │ │ │ │ │ │ │ ├── PredicateIdTest.ts │ │ │ │ │ │ │ │ └── SelectionMatcherTest.ts │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ ├── ConversionsTest.ts │ │ │ │ │ │ │ │ └── SelectionMatcher.ts │ │ │ │ │ │ │ └── module │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── Toolbar.ts │ │ │ │ │ ├── mobile │ │ │ │ │ │ ├── demo │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ │ ├── demo-forms.html │ │ │ │ │ │ │ │ ├── demo-sliders.html │ │ │ │ │ │ │ │ ├── demo-styles.html │ │ │ │ │ │ │ │ └── demo.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ │ ├── Demo.ts │ │ │ │ │ │ │ │ ├── Demos.ts │ │ │ │ │ │ │ │ ├── FormDemo.ts │ │ │ │ │ │ │ │ ├── SlidersDemo.ts │ │ │ │ │ │ │ │ └── StylesMenuDemo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ │ ├── Theme.ts │ │ │ │ │ │ │ │ ├── alien │ │ │ │ │ │ │ │ └── TinyCodeDupe.ts │ │ │ │ │ │ │ │ ├── android │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ │ ├── AndroidEvents.ts │ │ │ │ │ │ │ │ │ ├── AndroidMode.ts │ │ │ │ │ │ │ │ │ └── AndroidSetup.ts │ │ │ │ │ │ │ │ └── focus │ │ │ │ │ │ │ │ │ └── ResumeEditing.ts │ │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ ├── AndroidWebapp.ts │ │ │ │ │ │ │ │ ├── IosWebapp.ts │ │ │ │ │ │ │ │ ├── MobileSchema.ts │ │ │ │ │ │ │ │ └── Settings.ts │ │ │ │ │ │ │ │ ├── bridge │ │ │ │ │ │ │ │ └── LinkBridge.ts │ │ │ │ │ │ │ │ ├── channels │ │ │ │ │ │ │ │ ├── Receivers.ts │ │ │ │ │ │ │ │ └── TinyChannels.ts │ │ │ │ │ │ │ │ ├── features │ │ │ │ │ │ │ │ ├── DefaultStyleFormats.ts │ │ │ │ │ │ │ │ └── Features.ts │ │ │ │ │ │ │ │ ├── ios │ │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ │ ├── IosEvents.ts │ │ │ │ │ │ │ │ │ ├── IosHacks.ts │ │ │ │ │ │ │ │ │ ├── IosMode.ts │ │ │ │ │ │ │ │ │ ├── IosSetup.ts │ │ │ │ │ │ │ │ │ └── PlatformEditor.ts │ │ │ │ │ │ │ │ ├── focus │ │ │ │ │ │ │ │ │ ├── FakeSelection.ts │ │ │ │ │ │ │ │ │ └── ResumeEditing.ts │ │ │ │ │ │ │ │ ├── scroll │ │ │ │ │ │ │ │ │ ├── IosScrolling.ts │ │ │ │ │ │ │ │ │ └── Scrollables.ts │ │ │ │ │ │ │ │ ├── smooth │ │ │ │ │ │ │ │ │ ├── BackgroundActivity.ts │ │ │ │ │ │ │ │ │ └── SmoothAnimation.ts │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ │ ├── DeviceZones.ts │ │ │ │ │ │ │ │ │ ├── Devices.ts │ │ │ │ │ │ │ │ │ ├── Greenzone.ts │ │ │ │ │ │ │ │ │ ├── IosKeyboard.ts │ │ │ │ │ │ │ │ │ ├── IosUpdates.ts │ │ │ │ │ │ │ │ │ └── IosViewport.ts │ │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ │ └── SwipingModel.ts │ │ │ │ │ │ │ │ ├── style │ │ │ │ │ │ │ │ └── Styles.ts │ │ │ │ │ │ │ │ ├── toolbar │ │ │ │ │ │ │ │ └── ScrollingToolbar.ts │ │ │ │ │ │ │ │ ├── touch │ │ │ │ │ │ │ │ ├── focus │ │ │ │ │ │ │ │ │ └── CursorRefresh.ts │ │ │ │ │ │ │ │ ├── scroll │ │ │ │ │ │ │ │ │ └── Scrollable.ts │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ │ ├── MetaViewport.ts │ │ │ │ │ │ │ │ │ ├── Orientation.ts │ │ │ │ │ │ │ │ │ └── TapToEditMask.ts │ │ │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ │ ├── AndroidRealm.ts │ │ │ │ │ │ │ │ ├── Buttons.ts │ │ │ │ │ │ │ │ ├── ColorSlider.ts │ │ │ │ │ │ │ │ ├── CommonRealm.ts │ │ │ │ │ │ │ │ ├── Dropup.ts │ │ │ │ │ │ │ │ ├── FontSizeSlider.ts │ │ │ │ │ │ │ │ ├── HeadingSlider.ts │ │ │ │ │ │ │ │ ├── ImagePicker.ts │ │ │ │ │ │ │ │ ├── Inputs.ts │ │ │ │ │ │ │ │ ├── IosRealm.ts │ │ │ │ │ │ │ │ ├── LinkButton.ts │ │ │ │ │ │ │ │ ├── OuterContainer.ts │ │ │ │ │ │ │ │ ├── SerialisedDialog.ts │ │ │ │ │ │ │ │ ├── SizeSlider.ts │ │ │ │ │ │ │ │ ├── StylesMenu.ts │ │ │ │ │ │ │ │ └── ToolbarWidgets.ts │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ ├── CaptureBin.ts │ │ │ │ │ │ │ │ ├── CssUrls.ts │ │ │ │ │ │ │ │ ├── DataAttributes.ts │ │ │ │ │ │ │ │ ├── FontSizes.ts │ │ │ │ │ │ │ │ ├── FormatChangers.ts │ │ │ │ │ │ │ │ ├── RangePreserver.ts │ │ │ │ │ │ │ │ ├── Rectangles.ts │ │ │ │ │ │ │ │ ├── SkinLoaded.ts │ │ │ │ │ │ │ │ ├── StyleConversions.ts │ │ │ │ │ │ │ │ ├── StyleFormats.ts │ │ │ │ │ │ │ │ ├── TappingEvent.ts │ │ │ │ │ │ │ │ ├── Thor.ts │ │ │ │ │ │ │ │ └── UiDomFactory.ts │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ └── html │ │ │ │ │ │ │ │ ├── index-bootstrap.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ └── editor.html │ │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ │ ├── smooth │ │ │ │ │ │ │ │ ├── AsyncSmoothAnimationTest.ts │ │ │ │ │ │ │ │ └── SmoothAnimationTest.ts │ │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ │ └── StyleConversionsTest.ts │ │ │ │ │ │ │ ├── browser │ │ │ │ │ │ │ ├── SkinFalseTest.ts │ │ │ │ │ │ │ ├── features │ │ │ │ │ │ │ │ ├── BasicFormattingTest.ts │ │ │ │ │ │ │ │ ├── ListTest.ts │ │ │ │ │ │ │ │ └── UnlinkTest.ts │ │ │ │ │ │ │ ├── ios │ │ │ │ │ │ │ │ └── IosRealmTest.ts │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── ButtonsTest.ts │ │ │ │ │ │ │ │ ├── FontSizeSliderTest.ts │ │ │ │ │ │ │ │ └── SerialisedLinkTest.ts │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── GuiSetup.ts │ │ │ │ │ │ │ │ ├── TestStore.ts │ │ │ │ │ │ │ │ ├── theme │ │ │ │ │ │ │ │ └── TestTheme.ts │ │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ │ ├── TestEditor.ts │ │ │ │ │ │ │ │ ├── TestFrameEditor.ts │ │ │ │ │ │ │ │ ├── TestSelectors.ts │ │ │ │ │ │ │ │ ├── TestStyles.ts │ │ │ │ │ │ │ │ └── TestUi.ts │ │ │ │ │ │ │ └── phantom │ │ │ │ │ │ │ ├── bridge │ │ │ │ │ │ │ └── LinkBridgeTest.ts │ │ │ │ │ │ │ └── features │ │ │ │ │ │ │ ├── FeatureDetectTest.ts │ │ │ │ │ │ │ └── IdentifyToolbarTest.ts │ │ │ │ │ └── modern │ │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ ├── classic_demo.html │ │ │ │ │ │ │ ├── demo.html │ │ │ │ │ │ │ └── notification_demo.html │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ └── demo │ │ │ │ │ │ │ ├── ClassicDemo.ts │ │ │ │ │ │ │ ├── Demo.ts │ │ │ │ │ │ │ ├── Demos.ts │ │ │ │ │ │ │ └── NotificationDemo.ts │ │ │ │ │ │ ├── main │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── Theme.ts │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── Events.ts │ │ │ │ │ │ │ ├── Settings.ts │ │ │ │ │ │ │ └── ThemeApi.ts │ │ │ │ │ │ │ ├── modes │ │ │ │ │ │ │ ├── Iframe.ts │ │ │ │ │ │ │ └── Inline.ts │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── A11y.ts │ │ │ │ │ │ │ ├── ContextToolbars.ts │ │ │ │ │ │ │ ├── Menubar.ts │ │ │ │ │ │ │ ├── ProgressState.ts │ │ │ │ │ │ │ ├── Render.ts │ │ │ │ │ │ │ ├── Resize.ts │ │ │ │ │ │ │ ├── Sidebar.ts │ │ │ │ │ │ │ ├── SkinLoaded.ts │ │ │ │ │ │ │ └── Toolbar.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ └── ts │ │ │ │ │ │ ├── browser │ │ │ │ │ │ ├── BrandingDisabledTest.ts │ │ │ │ │ │ ├── BrandingEnabledTest.ts │ │ │ │ │ │ ├── DimensionsTest.ts │ │ │ │ │ │ ├── SidebarTest.ts │ │ │ │ │ │ ├── SkinFalseInlineTest.ts │ │ │ │ │ │ ├── SkinFalseTest.ts │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ └── MenubarTest.ts │ │ │ │ │ │ └── module │ │ │ │ │ │ └── test │ │ │ │ │ │ └── ViewBlock.ts │ │ │ │ └── ui │ │ │ │ │ ├── main │ │ │ │ │ └── ts │ │ │ │ │ │ ├── AbsoluteLayout.ts │ │ │ │ │ │ ├── Api.ts │ │ │ │ │ │ ├── BoxUtils.ts │ │ │ │ │ │ ├── BrowseButton.ts │ │ │ │ │ │ ├── Button.ts │ │ │ │ │ │ ├── ButtonGroup.ts │ │ │ │ │ │ ├── Checkbox.ts │ │ │ │ │ │ ├── ClassList.ts │ │ │ │ │ │ ├── Collection.ts │ │ │ │ │ │ ├── ColorBox.ts │ │ │ │ │ │ ├── ColorButton.ts │ │ │ │ │ │ ├── ColorPicker.ts │ │ │ │ │ │ ├── ComboBox.ts │ │ │ │ │ │ ├── Container.ts │ │ │ │ │ │ ├── Control.ts │ │ │ │ │ │ ├── DomUtils.ts │ │ │ │ │ │ ├── DragHelper.ts │ │ │ │ │ │ ├── DropZone.ts │ │ │ │ │ │ ├── ElementPath.ts │ │ │ │ │ │ ├── FieldSet.ts │ │ │ │ │ │ ├── FilePicker.ts │ │ │ │ │ │ ├── FitLayout.ts │ │ │ │ │ │ ├── FlexLayout.ts │ │ │ │ │ │ ├── FloatPanel.ts │ │ │ │ │ │ ├── FlowLayout.ts │ │ │ │ │ │ ├── Form.ts │ │ │ │ │ │ ├── FormItem.ts │ │ │ │ │ │ ├── FormatControls.ts │ │ │ │ │ │ ├── GridLayout.ts │ │ │ │ │ │ ├── Iframe.ts │ │ │ │ │ │ ├── InfoBox.ts │ │ │ │ │ │ ├── KeyboardNavigation.ts │ │ │ │ │ │ ├── Label.ts │ │ │ │ │ │ ├── Layout.ts │ │ │ │ │ │ ├── ListBox.ts │ │ │ │ │ │ ├── Menu.ts │ │ │ │ │ │ ├── MenuBar.ts │ │ │ │ │ │ ├── MenuButton.ts │ │ │ │ │ │ ├── MenuItem.ts │ │ │ │ │ │ ├── MessageBox.ts │ │ │ │ │ │ ├── Movable.ts │ │ │ │ │ │ ├── Notification.ts │ │ │ │ │ │ ├── NotificationManagerImpl.ts │ │ │ │ │ │ ├── Panel.ts │ │ │ │ │ │ ├── PanelButton.ts │ │ │ │ │ │ ├── Path.ts │ │ │ │ │ │ ├── Progress.ts │ │ │ │ │ │ ├── Radio.ts │ │ │ │ │ │ ├── ReflowQueue.ts │ │ │ │ │ │ ├── Resizable.ts │ │ │ │ │ │ ├── ResizeHandle.ts │ │ │ │ │ │ ├── Scrollable.ts │ │ │ │ │ │ ├── SelectBox.ts │ │ │ │ │ │ ├── Selector.ts │ │ │ │ │ │ ├── Slider.ts │ │ │ │ │ │ ├── Spacer.ts │ │ │ │ │ │ ├── SplitButton.ts │ │ │ │ │ │ ├── StackLayout.ts │ │ │ │ │ │ ├── TabPanel.ts │ │ │ │ │ │ ├── TextBox.ts │ │ │ │ │ │ ├── Throbber.ts │ │ │ │ │ │ ├── Toolbar.ts │ │ │ │ │ │ ├── Tooltip.ts │ │ │ │ │ │ ├── UiContainer.ts │ │ │ │ │ │ ├── Widget.ts │ │ │ │ │ │ ├── Window.ts │ │ │ │ │ │ ├── WindowManagerImpl.ts │ │ │ │ │ │ ├── content │ │ │ │ │ │ └── LinkTargets.ts │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── Binding.ts │ │ │ │ │ │ ├── ObservableArray.ts │ │ │ │ │ │ └── ObservableObject.ts │ │ │ │ │ │ ├── editorui │ │ │ │ │ │ ├── Align.ts │ │ │ │ │ │ ├── FontSelect.ts │ │ │ │ │ │ ├── FontSizeSelect.ts │ │ │ │ │ │ ├── FormatSelect.ts │ │ │ │ │ │ ├── FormatUtils.ts │ │ │ │ │ │ ├── Formats.ts │ │ │ │ │ │ ├── InsertButton.ts │ │ │ │ │ │ ├── SimpleControls.ts │ │ │ │ │ │ ├── UndoRedo.ts │ │ │ │ │ │ └── VisualAid.ts │ │ │ │ │ │ └── fmt │ │ │ │ │ │ └── FontInfo.ts │ │ │ │ │ └── test │ │ │ │ │ └── ts │ │ │ │ │ ├── browser │ │ │ │ │ ├── AbsoluteLayoutTest.ts │ │ │ │ │ ├── BoxUtilsMeasureBoxIframeDisplayNoneTest.ts │ │ │ │ │ ├── ButtonTest.ts │ │ │ │ │ ├── CollectionTest.ts │ │ │ │ │ ├── ColorButtonTest.ts │ │ │ │ │ ├── ControlTest.ts │ │ │ │ │ ├── FilePickerTest.ts │ │ │ │ │ ├── FitLayoutTest.ts │ │ │ │ │ ├── FlexLayoutTest.ts │ │ │ │ │ ├── GridLayoutTest.ts │ │ │ │ │ ├── MenuButtonTest.ts │ │ │ │ │ ├── PanelTest.ts │ │ │ │ │ ├── SelectorTest.ts │ │ │ │ │ ├── SplitButtonTest.ts │ │ │ │ │ ├── TabPanelTest.ts │ │ │ │ │ ├── TextBoxTest.ts │ │ │ │ │ ├── WindowTest.ts │ │ │ │ │ ├── content │ │ │ │ │ │ └── LinkTargetsTest.ts │ │ │ │ │ ├── data │ │ │ │ │ │ └── ObservableObjectTest.ts │ │ │ │ │ └── fmt │ │ │ │ │ │ └── FontInfoTest.ts │ │ │ │ │ └── module │ │ │ │ │ └── test │ │ │ │ │ ├── UiUtils.ts │ │ │ │ │ └── ViewBlock.ts │ │ │ │ └── tools │ │ │ │ ├── docs │ │ │ │ ├── tinymce.CommandEvent.js │ │ │ │ ├── tinymce.ContentEvent.js │ │ │ │ ├── tinymce.Editor.js │ │ │ │ ├── tinymce.Event.js │ │ │ │ ├── tinymce.FocusEvent.js │ │ │ │ ├── tinymce.ProgressStateEvent.js │ │ │ │ ├── tinymce.ResizeEvent.js │ │ │ │ └── tinymce.js │ │ │ │ ├── modules │ │ │ │ ├── grunt-utils.js │ │ │ │ ├── grunt-webpack.js │ │ │ │ └── zip-helper.js │ │ │ │ └── tasks │ │ │ │ ├── bundle.js │ │ │ │ ├── globals.js │ │ │ │ ├── moxiezip.js │ │ │ │ └── validateVersion.js │ │ └── robots.txt │ ├── tasks.py │ ├── templates │ │ ├── 404.html │ │ ├── base.html │ │ ├── core │ │ │ ├── antispam │ │ │ │ ├── blacklist.html │ │ │ │ ├── dnsbl.html │ │ │ │ └── rate.html │ │ │ ├── captcha │ │ │ │ └── text_field.html │ │ │ ├── cards │ │ │ │ ├── languages.html │ │ │ │ ├── tools.html │ │ │ │ └── updates.html │ │ │ ├── contact.html │ │ │ ├── errors │ │ │ │ └── xmpp_backend.html │ │ │ ├── forms │ │ │ │ └── widgets │ │ │ │ │ └── linktargetwidget.html │ │ │ └── include │ │ │ │ ├── blocked_contact.html │ │ │ │ ├── card.html │ │ │ │ ├── facebook_link.html │ │ │ │ ├── messages.html │ │ │ │ ├── metadata.html │ │ │ │ ├── sidebar.html │ │ │ │ └── twitter_link.html │ │ ├── error.html │ │ └── page.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── canonical.py │ │ ├── core.py │ │ ├── icons.py │ │ └── render.py │ ├── tests │ │ ├── __init__.py │ │ ├── base.py │ │ ├── tests_basic.py │ │ ├── tests_contact.py │ │ ├── tests_context_processors.py │ │ ├── tests_converters.py │ │ ├── tests_urlpatterns.py │ │ └── tests_views.py │ ├── urlpatterns.py │ ├── urls.py │ ├── utils.py │ ├── views.py │ ├── widgets.py │ └── xmlrpc.py ├── feed │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── feed │ │ │ ├── atom.png │ │ │ ├── atom_icon.png │ │ │ ├── ical.svg │ │ │ └── rss.png │ ├── tests.py │ ├── urls.py │ └── views.py ├── hp │ ├── __init__.py │ ├── celery.py │ ├── dockersettings.py │ ├── locale │ │ └── de │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── localsettings.py.example │ ├── settings.py │ ├── test_settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── stats │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── constants.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── munin_plugin.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170221_2058.py │ ├── 0003_event_metric_new.py │ ├── 0004_auto_20170224_0704.py │ ├── 0005_remove_event_metric.py │ ├── 0006_auto_20170224_0716.py │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── less └── bootstrap-hp.less ├── localsettings.yaml ├── package.json ├── requirements-dev.txt ├── requirements-docker.txt ├── requirements.txt ├── tox.ini └── uwsgi.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/.gitignore -------------------------------------------------------------------------------- /.pep8: -------------------------------------------------------------------------------- 1 | [pep8] 2 | max-line-length = 110 3 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.8.2 2 | 3.7.7 3 | -------------------------------------------------------------------------------- /.repo-maint.yaml: -------------------------------------------------------------------------------- 1 | pyenv: 2 | latest-versions: 2 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/Changelog.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/README.md -------------------------------------------------------------------------------- /celery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/celery.sh -------------------------------------------------------------------------------- /conf/build/localsettings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/conf/build/localsettings.yaml -------------------------------------------------------------------------------- /conf/nginx/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/conf/nginx/nginx.sh -------------------------------------------------------------------------------- /conf/nginx/shared_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/conf/nginx/shared_config -------------------------------------------------------------------------------- /conf/nginx/sites-available/localhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/conf/nginx/sites-available/localhost.conf -------------------------------------------------------------------------------- /conf/nginx/uwsgi_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/conf/nginx/uwsgi_server -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/clients.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/clients.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/content.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/content.rst -------------------------------------------------------------------------------- /doc/conversejs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/conversejs.rst -------------------------------------------------------------------------------- /doc/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/development.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/js_css.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/js_css.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/settings.rst -------------------------------------------------------------------------------- /doc/sharing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/sharing.rst -------------------------------------------------------------------------------- /doc/templatetags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/templatetags.rst -------------------------------------------------------------------------------- /doc/validators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/doc/validators.rst -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/fabfile.py -------------------------------------------------------------------------------- /files/apache/vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/files/apache/vhost.conf -------------------------------------------------------------------------------- /files/logrotate/hp-celery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/files/logrotate/hp-celery -------------------------------------------------------------------------------- /files/systemd/hp-celery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/files/systemd/hp-celery.conf -------------------------------------------------------------------------------- /files/systemd/hp-celery.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/files/systemd/hp-celery.service -------------------------------------------------------------------------------- /files/systemd/hp-celery.tmpfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/files/systemd/hp-celery.tmpfiles -------------------------------------------------------------------------------- /files/uwsgi/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/files/uwsgi/uwsgi.ini -------------------------------------------------------------------------------- /hp/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/admin.py -------------------------------------------------------------------------------- /hp/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/apps.py -------------------------------------------------------------------------------- /hp/account/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/constants.py -------------------------------------------------------------------------------- /hp/account/formfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/formfields.py -------------------------------------------------------------------------------- /hp/account/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/forms.py -------------------------------------------------------------------------------- /hp/account/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /hp/account/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/account/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/account/management/commands/import_xmpp_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/management/commands/import_xmpp_users.py -------------------------------------------------------------------------------- /hp/account/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/managers.py -------------------------------------------------------------------------------- /hp/account/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0001_initial.py -------------------------------------------------------------------------------- /hp/account/migrations/0002_auto_20160906_1812.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0002_auto_20160906_1812.py -------------------------------------------------------------------------------- /hp/account/migrations/0004_user_blocked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0004_user_blocked.py -------------------------------------------------------------------------------- /hp/account/migrations/0005_user_last_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0005_user_last_activity.py -------------------------------------------------------------------------------- /hp/account/migrations/0006_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0006_notifications.py -------------------------------------------------------------------------------- /hp/account/migrations/0007_auto_20161014_1408.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0007_auto_20161014_1408.py -------------------------------------------------------------------------------- /hp/account/migrations/0008_auto_20161014_1804.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0008_auto_20161014_1804.py -------------------------------------------------------------------------------- /hp/account/migrations/0009_userlogentry_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0009_userlogentry_payload.py -------------------------------------------------------------------------------- /hp/account/migrations/0010_auto_20161224_1053.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0010_auto_20161224_1053.py -------------------------------------------------------------------------------- /hp/account/migrations/0011_auto_20161226_1719.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0011_auto_20161226_1719.py -------------------------------------------------------------------------------- /hp/account/migrations/0012_auto_20161226_1722.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0012_auto_20161226_1722.py -------------------------------------------------------------------------------- /hp/account/migrations/0013_auto_20161226_1751.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0013_auto_20161226_1751.py -------------------------------------------------------------------------------- /hp/account/migrations/0014_user_default_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0014_user_default_language.py -------------------------------------------------------------------------------- /hp/account/migrations/0015_user_normalized_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0015_user_normalized_email.py -------------------------------------------------------------------------------- /hp/account/migrations/0016_auto_20171011_1958.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0016_auto_20171011_1958.py -------------------------------------------------------------------------------- /hp/account/migrations/0017_auto_20171011_2015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0017_auto_20171011_2015.py -------------------------------------------------------------------------------- /hp/account/migrations/0018_auto_20180527_1400.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/migrations/0018_auto_20180527_1400.py -------------------------------------------------------------------------------- /hp/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/models.py -------------------------------------------------------------------------------- /hp/account/querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/querysets.py -------------------------------------------------------------------------------- /hp/account/static/account/admin/username_widget.css: -------------------------------------------------------------------------------- 1 | select#id_username_1 { 2 | margin-left: 1em; 3 | } 4 | -------------------------------------------------------------------------------- /hp/account/static/account/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/static/account/css/base.css -------------------------------------------------------------------------------- /hp/account/static/account/css/gpgmixin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/static/account/css/gpgmixin.css -------------------------------------------------------------------------------- /hp/account/static/account/css/keyupload_widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/static/account/css/keyupload_widget.css -------------------------------------------------------------------------------- /hp/account/static/account/css/notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/static/account/css/notifications.css -------------------------------------------------------------------------------- /hp/account/static/account/css/username_widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/static/account/css/username_widget.css -------------------------------------------------------------------------------- /hp/account/static/account/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/static/account/js/base.js -------------------------------------------------------------------------------- /hp/account/static/account/js/gpgmixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/static/account/js/gpgmixin.js -------------------------------------------------------------------------------- /hp/account/static/account/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/static/account/js/notifications.js -------------------------------------------------------------------------------- /hp/account/static/account/js/username_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/static/account/js/username_widget.js -------------------------------------------------------------------------------- /hp/account/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/tasks.py -------------------------------------------------------------------------------- /hp/account/templates/account/add_gpg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/add_gpg.html -------------------------------------------------------------------------------- /hp/account/templates/account/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/base.html -------------------------------------------------------------------------------- /hp/account/templates/account/blocked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/blocked.html -------------------------------------------------------------------------------- /hp/account/templates/account/confirm/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/confirm/delete.html -------------------------------------------------------------------------------- /hp/account/templates/account/confirm/delete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/confirm/delete.txt -------------------------------------------------------------------------------- /hp/account/templates/account/confirm/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/confirm/register.html -------------------------------------------------------------------------------- /hp/account/templates/account/confirm/register.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/confirm/register.txt -------------------------------------------------------------------------------- /hp/account/templates/account/confirm/set_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/confirm/set_email.html -------------------------------------------------------------------------------- /hp/account/templates/account/confirm/set_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/confirm/set_email.txt -------------------------------------------------------------------------------- /hp/account/templates/account/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/delete.html -------------------------------------------------------------------------------- /hp/account/templates/account/delete_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/delete_confirm.html -------------------------------------------------------------------------------- /hp/account/templates/account/email/user_expires.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/email/user_expires.html -------------------------------------------------------------------------------- /hp/account/templates/account/email/user_expires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/email/user_expires.txt -------------------------------------------------------------------------------- /hp/account/templates/account/form-base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/form-base.html -------------------------------------------------------------------------------- /hp/account/templates/account/include/gpg_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/include/gpg_form.html -------------------------------------------------------------------------------- /hp/account/templates/account/no_registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/no_registration.html -------------------------------------------------------------------------------- /hp/account/templates/account/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/notifications.html -------------------------------------------------------------------------------- /hp/account/templates/account/requires_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/requires_email.html -------------------------------------------------------------------------------- /hp/account/templates/account/sessions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/sessions.html -------------------------------------------------------------------------------- /hp/account/templates/account/set_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/set_password.html -------------------------------------------------------------------------------- /hp/account/templates/account/user_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/user_detail.html -------------------------------------------------------------------------------- /hp/account/templates/account/user_gpg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/user_gpg.html -------------------------------------------------------------------------------- /hp/account/templates/account/user_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/user_login.html -------------------------------------------------------------------------------- /hp/account/templates/account/user_register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/user_register.html -------------------------------------------------------------------------------- /hp/account/templates/account/user_set_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/user_set_email.html -------------------------------------------------------------------------------- /hp/account/templates/account/widgets/username.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/widgets/username.html -------------------------------------------------------------------------------- /hp/account/templates/account/xep0363.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/templates/account/xep0363.html -------------------------------------------------------------------------------- /hp/account/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/account/tests/testdata/non_armored.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/tests/testdata/non_armored.gpg -------------------------------------------------------------------------------- /hp/account/tests/tests_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/tests/tests_login.py -------------------------------------------------------------------------------- /hp/account/tests/tests_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/tests/tests_notifications.py -------------------------------------------------------------------------------- /hp/account/tests/tests_password_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/tests/tests_password_reset.py -------------------------------------------------------------------------------- /hp/account/tests/tests_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/tests/tests_registration.py -------------------------------------------------------------------------------- /hp/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/urls.py -------------------------------------------------------------------------------- /hp/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/views.py -------------------------------------------------------------------------------- /hp/account/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/account/widgets.py -------------------------------------------------------------------------------- /hp/antispam/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/antispam/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/antispam/admin.py -------------------------------------------------------------------------------- /hp/antispam/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/antispam/apps.py -------------------------------------------------------------------------------- /hp/antispam/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/antispam/exceptions.py -------------------------------------------------------------------------------- /hp/antispam/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/antispam/managers.py -------------------------------------------------------------------------------- /hp/antispam/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/antispam/migrations/0001_initial.py -------------------------------------------------------------------------------- /hp/antispam/migrations/0002_auto_20171011_1949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/antispam/migrations/0002_auto_20171011_1949.py -------------------------------------------------------------------------------- /hp/antispam/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/antispam/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/antispam/models.py -------------------------------------------------------------------------------- /hp/antispam/querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/antispam/querysets.py -------------------------------------------------------------------------------- /hp/antispam/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/antispam/tests.py -------------------------------------------------------------------------------- /hp/antispam/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/antispam/utils.py -------------------------------------------------------------------------------- /hp/antispam/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render # NOQA 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /hp/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/admin.py -------------------------------------------------------------------------------- /hp/blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/apps.py -------------------------------------------------------------------------------- /hp/blog/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/context_processors.py -------------------------------------------------------------------------------- /hp/blog/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/forms.py -------------------------------------------------------------------------------- /hp/blog/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/middleware.py -------------------------------------------------------------------------------- /hp/blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /hp/blog/migrations/0002_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/migrations/0002_image.py -------------------------------------------------------------------------------- /hp/blog/migrations/0003_auto_20161223_1649.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/migrations/0003_auto_20161223_1649.py -------------------------------------------------------------------------------- /hp/blog/migrations/0004_blogpost_publication_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/migrations/0004_blogpost_publication_date.py -------------------------------------------------------------------------------- /hp/blog/migrations/0005_auto_20161224_1017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/migrations/0005_auto_20161224_1017.py -------------------------------------------------------------------------------- /hp/blog/migrations/0006_auto_20161224_1021.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/migrations/0006_auto_20161224_1021.py -------------------------------------------------------------------------------- /hp/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/models.py -------------------------------------------------------------------------------- /hp/blog/querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/querysets.py -------------------------------------------------------------------------------- /hp/blog/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/sitemaps.py -------------------------------------------------------------------------------- /hp/blog/static/blog/admin/css/basepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/static/blog/admin/css/basepage.css -------------------------------------------------------------------------------- /hp/blog/static/blog/admin/js/basepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/static/blog/admin/js/basepage.js -------------------------------------------------------------------------------- /hp/blog/static/blog/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/static/blog/blog.css -------------------------------------------------------------------------------- /hp/blog/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/tasks.py -------------------------------------------------------------------------------- /hp/blog/templates/blog/blogpost_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/templates/blog/blogpost_detail.html -------------------------------------------------------------------------------- /hp/blog/templates/blog/blogpost_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/templates/blog/blogpost_list.html -------------------------------------------------------------------------------- /hp/blog/templates/blog/include/blogpost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/templates/blog/include/blogpost.html -------------------------------------------------------------------------------- /hp/blog/templates/blog/page_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/templates/blog/page_detail.html -------------------------------------------------------------------------------- /hp/blog/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/blog/templatetags/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/templatetags/blog.py -------------------------------------------------------------------------------- /hp/blog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/tests.py -------------------------------------------------------------------------------- /hp/blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/urls.py -------------------------------------------------------------------------------- /hp/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/blog/views.py -------------------------------------------------------------------------------- /hp/bootstrap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/bootstrap/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/admin.py -------------------------------------------------------------------------------- /hp/bootstrap/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/apps.py -------------------------------------------------------------------------------- /hp/bootstrap/formfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/formfields.py -------------------------------------------------------------------------------- /hp/bootstrap/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/forms.py -------------------------------------------------------------------------------- /hp/bootstrap/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /hp/bootstrap/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/bootstrap/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/bootstrap/management/commands/find_bs3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/management/commands/find_bs3.py -------------------------------------------------------------------------------- /hp/bootstrap/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/bootstrap/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/models.py -------------------------------------------------------------------------------- /hp/bootstrap/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /hp/bootstrap/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /hp/bootstrap/templates/bootstrap/forms/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/templates/bootstrap/forms/buttons.html -------------------------------------------------------------------------------- /hp/bootstrap/templates/bootstrap/forms/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/templates/bootstrap/forms/feedback.html -------------------------------------------------------------------------------- /hp/bootstrap/templates/bootstrap/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/password.html" %} 2 | -------------------------------------------------------------------------------- /hp/bootstrap/templates/bootstrap/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/text.html" %} 2 | -------------------------------------------------------------------------------- /hp/bootstrap/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/tests.py -------------------------------------------------------------------------------- /hp/bootstrap/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/utils.py -------------------------------------------------------------------------------- /hp/bootstrap/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/views.py -------------------------------------------------------------------------------- /hp/bootstrap/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/bootstrap/widgets.py -------------------------------------------------------------------------------- /hp/certs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/certs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/admin.py -------------------------------------------------------------------------------- /hp/certs/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/apps.py -------------------------------------------------------------------------------- /hp/certs/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/forms.py -------------------------------------------------------------------------------- /hp/certs/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /hp/certs/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/migrations/0001_initial.py -------------------------------------------------------------------------------- /hp/certs/migrations/0002_auto_20180101_1211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/migrations/0002_auto_20180101_1211.py -------------------------------------------------------------------------------- /hp/certs/migrations/0003_auto_20180101_1752.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/migrations/0003_auto_20180101_1752.py -------------------------------------------------------------------------------- /hp/certs/migrations/0004_certificate_enabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/migrations/0004_certificate_enabled.py -------------------------------------------------------------------------------- /hp/certs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/certs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/models.py -------------------------------------------------------------------------------- /hp/certs/querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/querysets.py -------------------------------------------------------------------------------- /hp/certs/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/serializers.py -------------------------------------------------------------------------------- /hp/certs/static/certs/certificate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/static/certs/certificate.css -------------------------------------------------------------------------------- /hp/certs/static/certs/certificate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/static/certs/certificate.js -------------------------------------------------------------------------------- /hp/certs/templates/certs/certificate_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/templates/certs/certificate_detail.html -------------------------------------------------------------------------------- /hp/certs/templates/certs/certificate_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/templates/certs/certificate_list.html -------------------------------------------------------------------------------- /hp/certs/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/tests.py -------------------------------------------------------------------------------- /hp/certs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/urls.py -------------------------------------------------------------------------------- /hp/certs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/utils.py -------------------------------------------------------------------------------- /hp/certs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/certs/views.py -------------------------------------------------------------------------------- /hp/conversejs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/conversejs/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin # NOQA 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /hp/conversejs/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/apps.py -------------------------------------------------------------------------------- /hp/conversejs/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /hp/conversejs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/conversejs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/models.py -------------------------------------------------------------------------------- /hp/conversejs/static/conversejs/init.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/.eslintrc.json -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/.gitignore -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/.travis.yml -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/CHANGES.md -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/COPYRIGHT -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'sass', '~> 3.5.5' 3 | -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/Gemfile.lock -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/LICENSE -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/Makefile -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/Makefile.win -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/README.md -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/RELEASE.md -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/buildout.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/buildout.cfg -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/composer.json -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/css/fonts.css -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/css/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/css/jasmine.css -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/css/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/css/website.css -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/demo/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/demo/config.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/demo/index.html -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/dev.html -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/docs/.gitattributes: -------------------------------------------------------------------------------- 1 | CHANGES.rst merge=union 2 | -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/fullscreen.html -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/index.html -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/jshintrc -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/jslicenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/jslicenses.html -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/logo/keycdn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/logo/keycdn.png -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/logo/keycdn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/logo/keycdn.svg -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/mobile.html -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/mockup/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/mockup/main.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/mockup/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/mockup/utils.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/package.json -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/redirect.html -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/requirements.txt: -------------------------------------------------------------------------------- 1 | zc.buildout==2.12.1 2 | -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/sass/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/sass/_core.scss -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/sounds/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/sounds/README -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/spec/chatbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/spec/chatbox.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/spec/disco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/spec/disco.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/spec/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/spec/login.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/spec/mam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/spec/mam.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/spec/omemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/spec/omemo.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/spec/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/spec/ping.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/spec/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/spec/push.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/spec/roster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/spec/roster.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/spec/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/spec/utils.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/src/converse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/src/converse.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/src/headless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/src/headless.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/src/i18n.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/src/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/src/polyfill.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/src/templates/rooms_results.html: -------------------------------------------------------------------------------- 1 |
  • {{{ o.feedback_text }}} 2 | -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/src/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/src/website.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/tests/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/tests/mock.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/tests/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/tests/runner.js -------------------------------------------------------------------------------- /hp/conversejs/static/lib/converse.js/tests/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/static/lib/converse.js/tests/utils.js -------------------------------------------------------------------------------- /hp/conversejs/templates/conversejs/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/templates/conversejs/init.js -------------------------------------------------------------------------------- /hp/conversejs/templates/conversejs/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/templates/conversejs/main.html -------------------------------------------------------------------------------- /hp/conversejs/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/tests.py -------------------------------------------------------------------------------- /hp/conversejs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/urls.py -------------------------------------------------------------------------------- /hp/conversejs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/conversejs/views.py -------------------------------------------------------------------------------- /hp/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/__init__.py -------------------------------------------------------------------------------- /hp/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/admin.py -------------------------------------------------------------------------------- /hp/core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/apps.py -------------------------------------------------------------------------------- /hp/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/constants.py -------------------------------------------------------------------------------- /hp/core/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/context_processors.py -------------------------------------------------------------------------------- /hp/core/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/converters.py -------------------------------------------------------------------------------- /hp/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/exceptions.py -------------------------------------------------------------------------------- /hp/core/formfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/formfields.py -------------------------------------------------------------------------------- /hp/core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/forms.py -------------------------------------------------------------------------------- /hp/core/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /hp/core/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/core/management/commands/genkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/management/commands/genkey.py -------------------------------------------------------------------------------- /hp/core/management/commands/import_drupal_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/management/commands/import_drupal_data.py -------------------------------------------------------------------------------- /hp/core/management/commands/import_user_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/management/commands/import_user_data.py -------------------------------------------------------------------------------- /hp/core/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/managers.py -------------------------------------------------------------------------------- /hp/core/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/middleware.py -------------------------------------------------------------------------------- /hp/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /hp/core/migrations/0002_auto_20160903_1232.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0002_auto_20160903_1232.py -------------------------------------------------------------------------------- /hp/core/migrations/0003_auto_20160903_1235.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0003_auto_20160903_1235.py -------------------------------------------------------------------------------- /hp/core/migrations/0004_auto_20160903_1321.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0004_auto_20160903_1321.py -------------------------------------------------------------------------------- /hp/core/migrations/0005_auto_20160924_1148.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0005_auto_20160924_1148.py -------------------------------------------------------------------------------- /hp/core/migrations/0006_auto_20161002_1140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0006_auto_20161002_1140.py -------------------------------------------------------------------------------- /hp/core/migrations/0007_addressactivity_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0007_addressactivity_headers.py -------------------------------------------------------------------------------- /hp/core/migrations/0008_auto_20161125_1312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0008_auto_20161125_1312.py -------------------------------------------------------------------------------- /hp/core/migrations/0009_auto_20161125_1407.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0009_auto_20161125_1407.py -------------------------------------------------------------------------------- /hp/core/migrations/0010_auto_20161125_1410.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0010_auto_20161125_1410.py -------------------------------------------------------------------------------- /hp/core/migrations/0011_cachedmessage_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0011_cachedmessage_payload.py -------------------------------------------------------------------------------- /hp/core/migrations/0012_auto_20170128_1059.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0012_auto_20170128_1059.py -------------------------------------------------------------------------------- /hp/core/migrations/0013_auto_20170311_1712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0013_auto_20170311_1712.py -------------------------------------------------------------------------------- /hp/core/migrations/0014_auto_20171009_1753.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0014_auto_20171009_1753.py -------------------------------------------------------------------------------- /hp/core/migrations/0015_auto_20190120_1411.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0015_auto_20190120_1411.py -------------------------------------------------------------------------------- /hp/core/migrations/0016_auto_20200322_1609.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/migrations/0016_auto_20200322_1609.py -------------------------------------------------------------------------------- /hp/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/core/modelfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/modelfields.py -------------------------------------------------------------------------------- /hp/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/models.py -------------------------------------------------------------------------------- /hp/core/querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/querysets.py -------------------------------------------------------------------------------- /hp/core/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/sitemaps.py -------------------------------------------------------------------------------- /hp/core/static/core/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/css/base.css -------------------------------------------------------------------------------- /hp/core/static/core/css/bootstrap-hp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/css/bootstrap-hp.css -------------------------------------------------------------------------------- /hp/core/static/core/css/captcha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/css/captcha.css -------------------------------------------------------------------------------- /hp/core/static/core/css/clients.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/css/clients.css -------------------------------------------------------------------------------- /hp/core/static/core/css/linktargetwidget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/css/linktargetwidget.css -------------------------------------------------------------------------------- /hp/core/static/core/css/tinymce-preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/css/tinymce-preview.css -------------------------------------------------------------------------------- /hp/core/static/core/img/629hwmjt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/img/629hwmjt.png -------------------------------------------------------------------------------- /hp/core/static/core/img/629hwmjt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/img/629hwmjt.svg -------------------------------------------------------------------------------- /hp/core/static/core/img/android_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/img/android_orig.png -------------------------------------------------------------------------------- /hp/core/static/core/img/de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/img/de.svg -------------------------------------------------------------------------------- /hp/core/static/core/img/en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/img/en.svg -------------------------------------------------------------------------------- /hp/core/static/core/img/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/img/fb.png -------------------------------------------------------------------------------- /hp/core/static/core/img/itemprop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/img/itemprop.png -------------------------------------------------------------------------------- /hp/core/static/core/img/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/img/rss.svg -------------------------------------------------------------------------------- /hp/core/static/core/img/smtw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/img/smtw.svg -------------------------------------------------------------------------------- /hp/core/static/core/img/toggler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/img/toggler.svg -------------------------------------------------------------------------------- /hp/core/static/core/img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/img/twitter.png -------------------------------------------------------------------------------- /hp/core/static/core/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/js/base.js -------------------------------------------------------------------------------- /hp/core/static/core/js/basepage-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/js/basepage-add.js -------------------------------------------------------------------------------- /hp/core/static/core/js/captcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/js/captcha.js -------------------------------------------------------------------------------- /hp/core/static/core/js/linktargetwidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/core/js/linktargetwidget.js -------------------------------------------------------------------------------- /hp/core/static/css/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/css/blog.css -------------------------------------------------------------------------------- /hp/core/static/favicon/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /hp/core/static/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /hp/core/static/favicon/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /hp/core/static/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /hp/core/static/favicon/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /hp/core/static/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /hp/core/static/favicon/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /hp/core/static/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /hp/core/static/favicon/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/code.txt -------------------------------------------------------------------------------- /hp/core/static/favicon/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/favicon-128.png -------------------------------------------------------------------------------- /hp/core/static/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /hp/core/static/favicon/favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/favicon-196x196.png -------------------------------------------------------------------------------- /hp/core/static/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /hp/core/static/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /hp/core/static/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/favicon.ico -------------------------------------------------------------------------------- /hp/core/static/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /hp/core/static/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /hp/core/static/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /hp/core/static/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /hp/core/static/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /hp/core/static/google359e555f66a8412e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/google359e555f66a8412e.html -------------------------------------------------------------------------------- /hp/core/static/google65bb49afe5a62fe1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/google65bb49afe5a62fe1.html -------------------------------------------------------------------------------- /hp/core/static/hp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/hp.css -------------------------------------------------------------------------------- /hp/core/static/hp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/hp.js -------------------------------------------------------------------------------- /hp/core/static/lib/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /hp/core/static/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /hp/core/static/lib/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /hp/core/static/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /hp/core/static/lib/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /hp/core/static/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /hp/core/static/lib/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /hp/core/static/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /hp/core/static/lib/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/LICENSE.txt -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/all.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/brands.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/brands.min.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/fontawesome.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/regular.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/regular.min.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/solid.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/solid.min.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/svg-with-js.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/v4-shims.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/css/v4-shims.min.css -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/all.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/all.min.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/brands.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/brands.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/brands.min.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/fontawesome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/fontawesome.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/fontawesome.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/fontawesome.min.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/regular.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/regular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/regular.min.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/solid.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/solid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/solid.min.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/v4-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/v4-shims.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/js/v4-shims.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/js/v4-shims.min.js -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/_animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/_animated.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/_core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/_core.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/_icons.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/_larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/_larger.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/_list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/_list.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/_mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/_mixins.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/_shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/_shims.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/_stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/_stacked.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/_variables.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/brands.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/brands.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/fontawesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/fontawesome.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/regular.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/regular.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/solid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/solid.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/less/v4-shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/less/v4-shims.less -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/metadata/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/metadata/icons.json -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/metadata/icons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/metadata/icons.yml -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/metadata/shims.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/metadata/shims.json -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/metadata/shims.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/metadata/shims.yml -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/metadata/sponsors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/metadata/sponsors.yml -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/_animated.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/_core.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/_icons.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/_larger.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/_list.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/_mixins.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/_shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/_shims.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/_stacked.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/_variables.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/brands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/brands.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/fontawesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/fontawesome.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/regular.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/regular.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/solid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/solid.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/scss/v4-shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/scss/v4-shims.scss -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/sprites/brands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/sprites/brands.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/sprites/regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/sprites/regular.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/sprites/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/sprites/solid.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/500px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/500px.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/adn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/adn.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/apper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/apper.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/apple.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/aws.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/bity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/bity.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/btc.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/css3.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/digg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/digg.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/ebay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/ebay.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/edge.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/ello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/ello.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/ember.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/ember.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/etsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/etsy.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/fly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/fly.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/gg.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/git.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/glide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/glide.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/grav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/grav.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/grunt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/grunt.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/gulp.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/hips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/hips.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/hooli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/hooli.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/houzz.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/html5.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/imdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/imdb.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/java.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/joget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/joget.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/js.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/less.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/line.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/linux.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/lyft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/lyft.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/medrt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/medrt.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/mix.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/modx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/modx.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/neos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/neos.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/node.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/npm.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/ns8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/ns8.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/opera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/opera.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/osi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/osi.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/page4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/page4.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/php.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/qq.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/quora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/quora.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/react.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/rebel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/rebel.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/rev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/rev.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/sass.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/sith.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/sith.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/skype.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/slack.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/steam.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/typo3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/typo3.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/uber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/uber.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/uikit.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/usb.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/viber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/viber.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/vimeo.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/vine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/vine.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/vk.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/vnv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/vnv.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/vuejs.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/weibo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/weibo.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/whmcs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/whmcs.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/wix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/wix.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/xbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/xbox.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/xing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/xing.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/yahoo.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/yelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/yelp.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/yoast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/yoast.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/brands/zhihu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/brands/zhihu.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/bell.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/copy.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/edit.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/eye.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/file.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/flag.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/gem.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/grin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/grin.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/hdd.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/kiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/kiss.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/map.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/meh.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/moon.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/save.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/star.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/sun.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/regular/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/regular/user.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/ad.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/adjust.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/anchor.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/angry.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/ankh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/ankh.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/at.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/atlas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/atlas.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/atom.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/award.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/award.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/ban.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bars.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bath.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bed.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/beer.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bell.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bible.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/blind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/blind.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bold.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bolt.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bomb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bomb.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bone.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bong.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/book.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/box.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/boxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/boxes.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/brain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/brain.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/broom.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/brush.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bug.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/burn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/burn.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/bus.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/camera.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/car.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/check.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/chess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/chess.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/child.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/child.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/church.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/church.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/circle.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/city.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/clock.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/clone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/clone.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/cloud.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/code.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/coffee.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/cog.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/cogs.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/coins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/coins.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/cookie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/cookie.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/copy.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/couch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/couch.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/crop.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/cross.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/crow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/crow.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/crown.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/cube.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/cubes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/cubes.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/cut.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/deaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/deaf.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/dice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/dice.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/divide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/divide.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/dizzy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/dizzy.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/dna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/dna.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/dolly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/dolly.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/donate.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/dove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/dove.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/drum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/drum.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/edit.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/eject.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/equals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/equals.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/eraser.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/expand.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/eye.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/fax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/fax.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/female.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/file.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/fill.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/film.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/filter.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/fire.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/fish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/fish.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/flag.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/flask.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/folder.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/font.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/frog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/frog.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/frown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/frown.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/futbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/futbol.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/gavel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/gavel.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/gem.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/gift.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/globe.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/grin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/grin.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/hamsa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/hamsa.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/hands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/hands.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/haykal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/haykal.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/hdd.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/heart.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/home.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/hotel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/hotel.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/image.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/images.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/inbox.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/indent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/indent.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/info.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/italic.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/jedi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/jedi.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/joint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/joint.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/kaaba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/kaaba.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/key.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/khanda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/khanda.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/kiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/kiss.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/laptop.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/laugh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/laugh.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/leaf.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/lemon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/lemon.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/link.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/list.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/lock.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/magic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/magic.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/magnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/magnet.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/male.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/map.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/marker.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/mars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/mars.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/medal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/medal.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/medkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/medkit.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/meh.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/memory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/memory.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/minus.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/mobile.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/moon.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/mosque.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/mosque.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/music.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/neuter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/neuter.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/om.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/pallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/pallet.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/paste.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/pause.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/paw.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/peace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/peace.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/pen.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/phone.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/pills.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/pills.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/plane.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/play.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/plug.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/plus.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/poll-h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/poll-h.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/poll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/poll.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/poo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/poo.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/poop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/poop.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/pray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/pray.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/print.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/qrcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/qrcode.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/quran.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/quran.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/random.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/redo.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/reply.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/ribbon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/ribbon.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/road.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/road.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/robot.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/rocket.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/route.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/route.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/rss.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/ruler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/ruler.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/save.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/school.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/search.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/server.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/shapes.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/share.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/ship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/ship.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/shower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/shower.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/sign.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/signal.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/skull.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/smile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/smile.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/socks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/socks.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/sort.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/spa.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/square.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/stamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/stamp.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/star.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/stop.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/store.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/stream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/stream.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/subway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/subway.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/sun.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/sync.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/table.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/tablet.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/tag.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/tags.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/tape.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/tasks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/tasks.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/taxi.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/teeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/teeth.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/th.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/tint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/tint.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/tree.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/tty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/tty.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/tv.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/undo.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/user.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/vial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/vial.svg -------------------------------------------------------------------------------- /hp/core/static/lib/fontawesome/svgs/solid/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/fontawesome/svgs/solid/wifi.svg -------------------------------------------------------------------------------- /hp/core/static/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/jquery/jquery.js -------------------------------------------------------------------------------- /hp/core/static/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /hp/core/static/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /hp/core/static/lib/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/popper.js -------------------------------------------------------------------------------- /hp/core/static/lib/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/prism/prism.css -------------------------------------------------------------------------------- /hp/core/static/lib/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/prism/prism.js -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/Gruntfile.js -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/LICENSE.TXT -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/changelog.txt -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/js/tinymce/langs/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/js/tinymce/langs/de.js -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/js/tinymce/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/js/tinymce/license.txt -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/js/tinymce/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/js/tinymce/tinymce.js -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/package.json -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/readme.md -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/src/core/main/js/GlobalsTemplate.js: -------------------------------------------------------------------------------- 1 | export default tinymce.util.Tools.resolve('{$globalId}'); 2 | -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/src/skins/lightgray/main/less/desktop/Radio.less: -------------------------------------------------------------------------------- 1 | // Radio - not implemented yet 2 | -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/src/ui/main/ts/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/src/ui/main/ts/Api.ts -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/src/ui/main/ts/Form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/src/ui/main/ts/Form.ts -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/src/ui/main/ts/Label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/src/ui/main/ts/Label.ts -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/src/ui/main/ts/Menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/src/ui/main/ts/Menu.ts -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/src/ui/main/ts/Panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/src/ui/main/ts/Panel.ts -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/src/ui/main/ts/Path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/src/ui/main/ts/Path.ts -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/src/ui/main/ts/Radio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/src/ui/main/ts/Radio.ts -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/tools/docs/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/tools/docs/tinymce.js -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/tools/tasks/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/tools/tasks/bundle.js -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/tools/tasks/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/tools/tasks/globals.js -------------------------------------------------------------------------------- /hp/core/static/lib/tinymce/tools/tasks/moxiezip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/static/lib/tinymce/tools/tasks/moxiezip.js -------------------------------------------------------------------------------- /hp/core/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /hp/core/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/tasks.py -------------------------------------------------------------------------------- /hp/core/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/404.html -------------------------------------------------------------------------------- /hp/core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/base.html -------------------------------------------------------------------------------- /hp/core/templates/core/antispam/blacklist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/antispam/blacklist.html -------------------------------------------------------------------------------- /hp/core/templates/core/antispam/dnsbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/antispam/dnsbl.html -------------------------------------------------------------------------------- /hp/core/templates/core/antispam/rate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/antispam/rate.html -------------------------------------------------------------------------------- /hp/core/templates/core/captcha/text_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/captcha/text_field.html -------------------------------------------------------------------------------- /hp/core/templates/core/cards/languages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/cards/languages.html -------------------------------------------------------------------------------- /hp/core/templates/core/cards/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/cards/tools.html -------------------------------------------------------------------------------- /hp/core/templates/core/cards/updates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/cards/updates.html -------------------------------------------------------------------------------- /hp/core/templates/core/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/contact.html -------------------------------------------------------------------------------- /hp/core/templates/core/errors/xmpp_backend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/errors/xmpp_backend.html -------------------------------------------------------------------------------- /hp/core/templates/core/include/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/include/card.html -------------------------------------------------------------------------------- /hp/core/templates/core/include/facebook_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/include/facebook_link.html -------------------------------------------------------------------------------- /hp/core/templates/core/include/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/include/messages.html -------------------------------------------------------------------------------- /hp/core/templates/core/include/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/include/metadata.html -------------------------------------------------------------------------------- /hp/core/templates/core/include/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/include/sidebar.html -------------------------------------------------------------------------------- /hp/core/templates/core/include/twitter_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/core/include/twitter_link.html -------------------------------------------------------------------------------- /hp/core/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/error.html -------------------------------------------------------------------------------- /hp/core/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templates/page.html -------------------------------------------------------------------------------- /hp/core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/core/templatetags/canonical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templatetags/canonical.py -------------------------------------------------------------------------------- /hp/core/templatetags/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templatetags/core.py -------------------------------------------------------------------------------- /hp/core/templatetags/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templatetags/icons.py -------------------------------------------------------------------------------- /hp/core/templatetags/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/templatetags/render.py -------------------------------------------------------------------------------- /hp/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/core/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/tests/base.py -------------------------------------------------------------------------------- /hp/core/tests/tests_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/tests/tests_basic.py -------------------------------------------------------------------------------- /hp/core/tests/tests_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/tests/tests_contact.py -------------------------------------------------------------------------------- /hp/core/tests/tests_context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/tests/tests_context_processors.py -------------------------------------------------------------------------------- /hp/core/tests/tests_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/tests/tests_converters.py -------------------------------------------------------------------------------- /hp/core/tests/tests_urlpatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/tests/tests_urlpatterns.py -------------------------------------------------------------------------------- /hp/core/tests/tests_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/tests/tests_views.py -------------------------------------------------------------------------------- /hp/core/urlpatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/urlpatterns.py -------------------------------------------------------------------------------- /hp/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/urls.py -------------------------------------------------------------------------------- /hp/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/utils.py -------------------------------------------------------------------------------- /hp/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/views.py -------------------------------------------------------------------------------- /hp/core/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/widgets.py -------------------------------------------------------------------------------- /hp/core/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/core/xmlrpc.py -------------------------------------------------------------------------------- /hp/feed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/feed/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin # NOQA 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /hp/feed/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/feed/apps.py -------------------------------------------------------------------------------- /hp/feed/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/feed/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/feed/models.py -------------------------------------------------------------------------------- /hp/feed/static/feed/atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/feed/static/feed/atom.png -------------------------------------------------------------------------------- /hp/feed/static/feed/atom_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/feed/static/feed/atom_icon.png -------------------------------------------------------------------------------- /hp/feed/static/feed/ical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/feed/static/feed/ical.svg -------------------------------------------------------------------------------- /hp/feed/static/feed/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/feed/static/feed/rss.png -------------------------------------------------------------------------------- /hp/feed/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/feed/tests.py -------------------------------------------------------------------------------- /hp/feed/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/feed/urls.py -------------------------------------------------------------------------------- /hp/feed/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/feed/views.py -------------------------------------------------------------------------------- /hp/hp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/hp/__init__.py -------------------------------------------------------------------------------- /hp/hp/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/hp/celery.py -------------------------------------------------------------------------------- /hp/hp/dockersettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/hp/dockersettings.py -------------------------------------------------------------------------------- /hp/hp/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/hp/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /hp/hp/localsettings.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/hp/localsettings.py.example -------------------------------------------------------------------------------- /hp/hp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/hp/settings.py -------------------------------------------------------------------------------- /hp/hp/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/hp/test_settings.py -------------------------------------------------------------------------------- /hp/hp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/hp/urls.py -------------------------------------------------------------------------------- /hp/hp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/hp/wsgi.py -------------------------------------------------------------------------------- /hp/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/manage.py -------------------------------------------------------------------------------- /hp/stats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/stats/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin # NOQA 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /hp/stats/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/stats/apps.py -------------------------------------------------------------------------------- /hp/stats/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/stats/constants.py -------------------------------------------------------------------------------- /hp/stats/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/stats/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/stats/management/commands/munin_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/stats/management/commands/munin_plugin.py -------------------------------------------------------------------------------- /hp/stats/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/stats/migrations/0001_initial.py -------------------------------------------------------------------------------- /hp/stats/migrations/0002_auto_20170221_2058.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/stats/migrations/0002_auto_20170221_2058.py -------------------------------------------------------------------------------- /hp/stats/migrations/0003_event_metric_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/stats/migrations/0003_event_metric_new.py -------------------------------------------------------------------------------- /hp/stats/migrations/0004_auto_20170224_0704.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/stats/migrations/0004_auto_20170224_0704.py -------------------------------------------------------------------------------- /hp/stats/migrations/0005_remove_event_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/stats/migrations/0005_remove_event_metric.py -------------------------------------------------------------------------------- /hp/stats/migrations/0006_auto_20170224_0716.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/stats/migrations/0006_auto_20170224_0716.py -------------------------------------------------------------------------------- /hp/stats/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hp/stats/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/stats/models.py -------------------------------------------------------------------------------- /hp/stats/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/hp/stats/tests.py -------------------------------------------------------------------------------- /hp/stats/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /less/bootstrap-hp.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/less/bootstrap-hp.less -------------------------------------------------------------------------------- /localsettings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/localsettings.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/package.json -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-docker.txt: -------------------------------------------------------------------------------- 1 | uWSGI==2.0.18 2 | psycopg2==2.8.5 3 | -r requirements.txt 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/requirements.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/tox.ini -------------------------------------------------------------------------------- /uwsgi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabber-at/hp/HEAD/uwsgi.sh --------------------------------------------------------------------------------