Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2019-10-17 | Add Code of Conduct to navbar submenu | -0/+3 | ||
This commit adds a link to the Code of Conduct to the dropdown menu in the navbar. It does not include a direct link to the CoC policies, which are accessible via the Code of Conduct page. | ||||
2019-10-14 | Wiki: Show breadcrumb without menus for users that can't edit, without the ↵ | -52/+58 | ||
root shown | ||||
2019-10-14 | Wiki: Remove Django messages from Wiki templates | -25/+0 | ||
We've already got this handled in the main base template for the site. | ||||
2019-10-14 | Wiki: Hide breadcrumbs bar if the user can't edit | -1/+3 | ||
2019-10-14 | Remove accidental comment before docstring | -1/+1 | ||
2019-10-14 | Wiki: Permissions hotfix | -0/+24 | ||
2019-10-14 | Allauth: Address reviews by @lemonsaurus | -39/+119 | ||
2019-10-12 | Forgot to update base.html template with favicon changes | -11/+9 | ||
2019-10-11 | Update favicons (rounded corners, other improvements) | -7/+7 | ||
2019-10-11 | Signals: Handle (and test) mapping updates/deletions | -14/+125 | ||
This also enforces unique values for both attributes on the RoleMapping model. Supporting configurations where this isn't the case would introduce quite a lot of added complexity. | ||||
2019-10-11 | Bump PostgreSQL in compose. | -1/+1 | ||
This might break local PostgreSQL containers with the following error: postgres_1 | 2019-10-11 20:01:48.772 UTC [1] FATAL: database files are incompatible with server postgres_1 | 2019-10-11 20:01:48.772 UTC [1] DETAIL: The data directory was initialized by PostgreSQL version 11, which is not compatible with this version 12.0. You will need to do one of the following: - Delete the old data volume and start from scratch (simple, recommended). As we don't have an explicit volume configured, only the one the PostgreSQL image uses, this is as simple as running `docker-compose stop` followed by `docker-compose rm`. Afterwards, you can restart it. - The dump & restore route. Do this if you don't want to delete your container data. To do this, first switch the PostgreSQL version in `docker-compose.yml` back to `11`, then run the following commands: docker-compose stop # Stop all containers docker-compose start postgres # Start the database docker-compose exec postgres pg_dumpall -U pysite > db.sql # Pull a SQL dump docker-compose stop # Stop the containers again docker-compose rm # Remove the containers Now, update the PostgreSQL version in `docker-compose.yml` to `12` again, and run the following commands: docker-compose up -d postgres # Start the database docker-compose exec -T postgres psql -U pysite < db.sql # Pull in the dump rm db.sql # Cleanup garbage, if you want If you're on Windows, then I can't help you. Sorry. | ||||
2019-10-11 | Deny manual `LogEntry` creation. | -0/+4 | ||
2019-10-11 | Resolve migration merge conflicts. | -1/+1 | ||
2019-10-11 | Improve formatting for `has_delete_permission`, typespec. | -1/+8 | ||
2019-10-11 | Deny `LogEntry` deletion. | -0/+5 | ||
2019-10-11 | Allow filtering through metadata, and searching by message. | -0/+2 | ||
2019-10-11 | Signals: Fix test for `deletion=True` change | -1/+1 | ||
2019-10-11 | Signals: `add()` does require a list, a generator won't do. | -2/+2 | ||
2019-10-11 | Clean up signal tests as per @jchristgit's review | -9/+10 | ||
2019-10-11 | Simplify signals.py as per @jchristgit's review | -10/+6 | ||
2019-10-11 | Clarify _apply_groups kwarg (Thanks, @jchristgit) | -1/+1 | ||
Co-Authored-By: Johannes Christ <[email protected]> | ||||
2019-10-11 | Remove old import. | -2/+0 | ||
2019-10-11 | Group fieldsets. | -0/+5 | ||
2019-10-11 | Use multi-column output from Django. | -32/+1 | ||
2019-10-11 | Pluralize properly. | -0/+22 | ||
2019-10-11 | Allow viewing log entries in the Django Admin. | -11/+73 | ||
2019-10-09 | Improve homepage flex responsiveness | -26/+18 | ||
2019-10-08 | Add favicons; workaround for gitattributes | -1/+51 | ||
2019-10-06 | Register GH provider manually in tests | -0/+9 | ||
2019-10-06 | Re-lock Pipfile due to merge with master | -18/+17 | ||
2019-10-06 | Remove GH login implementation, out of scope of this PR | -2/+0 | ||
2019-10-06 | Prevent saving emails, remove login page | -86/+34 | ||
2019-10-06 | Replace card on login page with notification | -14/+6 | ||
2019-10-06 | Login page and styling fixes | -23/+117 | ||
2019-10-06 | Make the Bulma colours less saturated | -4/+11 | ||