├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── config.yml ├── modules ├── classes.py ├── emojistore.py ├── mfmrenderer.py └── model.py ├── requirements.txt ├── static ├── css │ └── style.css ├── data │ └── wordguess-word-list.json ├── favicon.ico ├── image │ ├── antenna.png │ ├── channel.png │ ├── follow-request-accept.png │ ├── follow-request-reject.png │ ├── follow-request.png │ ├── game.png │ ├── game │ │ └── wordguess-icon.jpg │ ├── icon.png │ ├── list.png │ ├── message-circle.png │ ├── message.png │ ├── notification.png │ ├── nsfw.jpeg │ ├── reload.png │ ├── search.png │ ├── settings.png │ ├── users.png │ └── visibility │ │ ├── followers.png │ │ ├── home.png │ │ ├── localonly.png │ │ ├── public.png │ │ └── specified.png └── js │ ├── app.js │ ├── cookie.js │ ├── dist │ └── class-change_1.js │ ├── messaging.js │ └── wordguessEngine.js └── templates ├── app ├── antenna.html ├── antenna_view.html ├── channel.html ├── channel_discovery.html ├── channel_search.html ├── channel_view.html ├── components │ ├── channel_card.html │ ├── footer.html │ ├── head.html │ ├── message.html │ ├── message_form.html │ ├── note.html │ ├── note_form.html │ └── user_card.html ├── follow_requests.html ├── game.html ├── game │ └── wordguess │ │ └── index.html ├── home.html ├── list.html ├── list_view.html ├── messaging.html ├── messaging_user.html ├── note_detail.html ├── note_form_page.html ├── notifications.html ├── search.html ├── settings.html └── user_detail.html ├── auth_callback.html ├── auth_ok.html ├── auth_start.html └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/app.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/config.yml -------------------------------------------------------------------------------- /modules/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/modules/classes.py -------------------------------------------------------------------------------- /modules/emojistore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/modules/emojistore.py -------------------------------------------------------------------------------- /modules/mfmrenderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/modules/mfmrenderer.py -------------------------------------------------------------------------------- /modules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/modules/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/data/wordguess-word-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/data/wordguess-word-list.json -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/image/antenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/antenna.png -------------------------------------------------------------------------------- /static/image/channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/channel.png -------------------------------------------------------------------------------- /static/image/follow-request-accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/follow-request-accept.png -------------------------------------------------------------------------------- /static/image/follow-request-reject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/follow-request-reject.png -------------------------------------------------------------------------------- /static/image/follow-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/follow-request.png -------------------------------------------------------------------------------- /static/image/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/game.png -------------------------------------------------------------------------------- /static/image/game/wordguess-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/game/wordguess-icon.jpg -------------------------------------------------------------------------------- /static/image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/icon.png -------------------------------------------------------------------------------- /static/image/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/list.png -------------------------------------------------------------------------------- /static/image/message-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/message-circle.png -------------------------------------------------------------------------------- /static/image/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/message.png -------------------------------------------------------------------------------- /static/image/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/notification.png -------------------------------------------------------------------------------- /static/image/nsfw.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/nsfw.jpeg -------------------------------------------------------------------------------- /static/image/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/reload.png -------------------------------------------------------------------------------- /static/image/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/search.png -------------------------------------------------------------------------------- /static/image/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/settings.png -------------------------------------------------------------------------------- /static/image/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/users.png -------------------------------------------------------------------------------- /static/image/visibility/followers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/visibility/followers.png -------------------------------------------------------------------------------- /static/image/visibility/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/visibility/home.png -------------------------------------------------------------------------------- /static/image/visibility/localonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/visibility/localonly.png -------------------------------------------------------------------------------- /static/image/visibility/public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/visibility/public.png -------------------------------------------------------------------------------- /static/image/visibility/specified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/image/visibility/specified.png -------------------------------------------------------------------------------- /static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/js/app.js -------------------------------------------------------------------------------- /static/js/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/js/cookie.js -------------------------------------------------------------------------------- /static/js/dist/class-change_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/js/dist/class-change_1.js -------------------------------------------------------------------------------- /static/js/messaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/js/messaging.js -------------------------------------------------------------------------------- /static/js/wordguessEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/static/js/wordguessEngine.js -------------------------------------------------------------------------------- /templates/app/antenna.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/antenna.html -------------------------------------------------------------------------------- /templates/app/antenna_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/antenna_view.html -------------------------------------------------------------------------------- /templates/app/channel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/channel.html -------------------------------------------------------------------------------- /templates/app/channel_discovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/channel_discovery.html -------------------------------------------------------------------------------- /templates/app/channel_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/channel_search.html -------------------------------------------------------------------------------- /templates/app/channel_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/channel_view.html -------------------------------------------------------------------------------- /templates/app/components/channel_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/components/channel_card.html -------------------------------------------------------------------------------- /templates/app/components/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/components/footer.html -------------------------------------------------------------------------------- /templates/app/components/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/components/head.html -------------------------------------------------------------------------------- /templates/app/components/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/components/message.html -------------------------------------------------------------------------------- /templates/app/components/message_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/components/message_form.html -------------------------------------------------------------------------------- /templates/app/components/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/components/note.html -------------------------------------------------------------------------------- /templates/app/components/note_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/components/note_form.html -------------------------------------------------------------------------------- /templates/app/components/user_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/components/user_card.html -------------------------------------------------------------------------------- /templates/app/follow_requests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/follow_requests.html -------------------------------------------------------------------------------- /templates/app/game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/game.html -------------------------------------------------------------------------------- /templates/app/game/wordguess/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/game/wordguess/index.html -------------------------------------------------------------------------------- /templates/app/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/home.html -------------------------------------------------------------------------------- /templates/app/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/list.html -------------------------------------------------------------------------------- /templates/app/list_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/list_view.html -------------------------------------------------------------------------------- /templates/app/messaging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/messaging.html -------------------------------------------------------------------------------- /templates/app/messaging_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/messaging_user.html -------------------------------------------------------------------------------- /templates/app/note_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/note_detail.html -------------------------------------------------------------------------------- /templates/app/note_form_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/note_form_page.html -------------------------------------------------------------------------------- /templates/app/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/notifications.html -------------------------------------------------------------------------------- /templates/app/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/search.html -------------------------------------------------------------------------------- /templates/app/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/settings.html -------------------------------------------------------------------------------- /templates/app/user_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/app/user_detail.html -------------------------------------------------------------------------------- /templates/auth_callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/auth_callback.html -------------------------------------------------------------------------------- /templates/auth_ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/auth_ok.html -------------------------------------------------------------------------------- /templates/auth_start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/auth_start.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberRex0/citraskey/HEAD/templates/index.html --------------------------------------------------------------------------------