Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2018-02-26 | remove snekchek and replace with flake8 (#27) | -8/+2 | ||
2018-02-26 | Help page #z62n (#25) | -15/+533 | ||
* Help page and misc improvements Committing so I can go home >:| * Changes for @lmn * Rephrase first paragraph * Rephrase questions so they aren't all about discord.py * Remove _every single header_ on the help page from the nav * Unit test the help route * Small styling fixes * Add page-specific classes to body element * Clean up section padding * IndexView -> HelpView * Remove unnecessary path in test | ||||
2018-02-26 | brings coverage to 90% (#24) | -45/+257 | ||
* brings coverage to 75% * satisfy flake8 * missing docstring added * one more test * artificially inflate coverage because python acts strange * testing decorators * fixed instantiation of test route * straggling newlines from debugging code * remove debug comments * restructure tests into logical class separations. more exlusions. more tests * testing websocket echo tests * added missing comment * convert single quotes to double quotes to satisfy docstrings | ||||
2018-02-21 | New banner! | -1/+1 | ||
2018-02-21 | Actually make the button link to the invite | -1/+1 | ||
2018-02-21 | Remove extra buttons | -13/+0 | ||
2018-02-21 | More landing page work. Also: Blurple! | -21/+9651 | ||
2018-02-21 | Index page prose | -9/+12 | ||
2018-02-21 | Smaller navbar, move dropdown to the bottom of the navbar | -6/+9 | ||
2018-02-21 | Dropdown instead of dropbar | -1/+1 | ||
2018-02-21 | Disable dropbar push | -1/+1 | ||
2018-02-21 | Sample pushing dropbar nav | -11/+42 | ||
2018-02-21 | Better pre-release warning on index | -9/+6 | ||
2018-02-21 | Basic main page hero | -2/+26 | ||
2018-02-21 | Add warning about pre-release-ness to base template | -7/+10 | ||
2018-02-21 | Jinja is weird | -8/+10 | ||
2018-02-21 | Rearrange views and templates | -4/+4 | ||
2018-02-20 | adds initial unit testing (#22) | -1/+111 | ||
* Adds Unit Testing * Adds coveralls coverage badge | ||||
2018-02-19 | Add Vagrantfile | -0/+102 | ||
* attempt to fix stacktrace when initialising logger * adds vagrantfile for local development * restart rethinkdb after setting config * fix source .profile * adds alias python=python3.6 * include more reminder of what to add in hosts file * also install snekchek in vm * update vagrant bootstrap script to properly include environment variables in bashrc | ||||
2018-02-19 | Readme (#23) | -0/+4 | ||
* point to wiki! * remove pytest file | ||||
2018-02-18 | adds favicon to header (#21) | -1/+2 | ||
2018-02-18 | Cleanup of base_route module | -15/+17 | ||
2018-02-18 | Error handlers can now handle more than one HTTP status code | -4/+32 | ||
2018-02-18 | Register error routes on the app instead of specific blueprints #1rcht | -1/+1 | ||
2018-02-18 | adds .api to the secure websocket connection (#18) | -2/+2 | ||
2018-02-18 | adding one line of logging to debug a problem with rethinkdb | -0/+1 | ||
2018-02-18 | typo in a comment was driving me nuts. | -1/+1 | ||
2018-02-18 | Switch back to wss://, again | -1/+1 | ||
2018-02-18 | Merge remote-tracking branch 'origin/master' | -3/+3 | ||
# Conflicts: # pysite/views/ws/echo.py | ||||
2018-02-18 | Rename "Websocket" to "WS" to avoid confusion with the gevents-websocket ↵ | -11/+11 | ||
WebSocket class | ||||
2018-02-18 | attempt to fix stacktrace when initialising logger (#17) | -2/+1 | ||
2018-02-18 | Simple logging. (#16) | -15/+39 | ||
* Simple logging. I don't know if this will show up in the docker logs like inver wanted, so it probably needs testing in prod. * log level via hasattr/getattr, basicConfig instead of custom handlers * removing the empty string log call | ||||
2018-02-17 | Go back to using wss:// for the WS test | -1/+1 | ||
2018-02-17 | Integrate websockets into the Flask webapp | -93/+214 | ||
2018-02-17 | snekchek | -1/+0 | ||
2018-02-17 | Clean up WS application a bit | -6/+8 | ||
2018-02-16 | Fix slight error in database insertion | -1/+1 | ||
2018-02-16 | API_KEY -> BOT_API_KEY | -1/+1 | ||
2018-02-16 | Simplify user API route and return changes | -9/+5 | ||
2018-02-16 | API schema validation decorator #yzuf (#15) | -31/+107 | ||
* API schema validation decorator * Remove stray comma * Remove unnecessary conditional * Only cast to list when needed to |