Ariel Rin
1ca5e38bd9
Merge branch 'fix-docker-tag' into 'master'
...
fix missing v in tag
See merge request allianceauth/allianceauth!1476
2022-11-03 10:32:29 +00:00
Matteo Ghia
ecb737c6a5
fix missing v in tag
2022-11-01 13:45:44 +01:00
Ariel Rin
7063f53cdf
Merge branch 'coverage' into 'master'
...
Adding Coverage % to MRs
See merge request allianceauth/allianceauth!1473
2022-10-25 10:10:33 +00:00
Ariel Rin
017424b9d4
Adding Coverage % to MRs
2022-10-25 10:10:33 +00:00
Ariel Rin
f6c26cf2ec
Merge branch 'py3.11' into 'master'
...
Python 3.11 Stable Tests
See merge request allianceauth/allianceauth!1471
2022-10-25 02:51:12 +00:00
Ariel Rin
9a422bd4ca
Python 3.11 Stable Tests
2022-10-25 02:51:12 +00:00
Ariel Rin
47fec23f2e
cap django for docs
2022-10-23 16:42:16 +10:00
Ariel Rin
399ef1917d
Version Bump 3.3.0
v3.3.0
2022-10-14 21:46:28 +10:00
Ariel Rin
9db443ba54
Merge branch 'tokens-and-alts' into 'master'
...
CCP SSO Issues, Mitigations
See merge request allianceauth/allianceauth!1472
2022-10-14 11:44:18 +00:00
Ariel Rin
0f2f5ea0ba
nowrap to stop buttons moving around
2022-10-14 20:21:07 +10:00
Ariel Rin
1f781c5037
datatables statesave
2022-10-12 20:52:59 +10:00
Ariel Rin
36dedfcbd2
add disclaimer
2022-10-12 20:51:36 +10:00
Ariel Rin
13a05606fb
Scopes Typo
2022-10-12 20:29:42 +10:00
Ariel Rin
90ad7790e1
rename revoke to delete to be clearer
2022-10-12 20:22:20 +10:00
Ariel Rin
6b8341ab5a
Add FA icon to user dropdown
2022-10-12 20:21:27 +10:00
Ariel Rin
d15f42b3fd
Merge branch 'tokens-and-alts' of https://gitlab.com/aaronkable/allianceauth into tokens-and-alts
2022-10-12 20:07:49 +10:00
Aaron Kable
cc60b26f5a
add token management link to user dropdown
2022-10-12 17:57:12 +08:00
Aaron Kable
36ff0af993
Add token management and restrict logins to mains only
2022-10-12 17:50:41 +08:00
Aaron Kable
f17c94a9e1
Add token management and restrict logins to mains only
2022-10-12 17:49:28 +08:00
Ariel Rin
7e3ba476f3
Merge branch 'docs' into 'master'
...
Discord Credential Clarification
See merge request allianceauth/allianceauth!1470
2022-10-12 08:07:02 +00:00
Ariel Rin
dd1313a2a9
Merge branch 'remove-unnecessary-lambda-statement' into 'master'
...
[REMOVED] Unnecessary `lambda` statement
See merge request allianceauth/allianceauth!1465
2022-10-09 08:17:46 +00:00
Ariel Rin
763003bd7d
Clarify new discord developers layout
2022-10-09 17:41:41 +10:00
Ariel Rin
f3217443dd
Merge branch 'remove-celery-backend-from-docker' into 'master'
...
[REMOVED] Celery backend from docker config
See merge request allianceauth/allianceauth!1466
2022-10-09 07:16:04 +00:00
Ariel Rin
a713ae1914
Merge branch 'fix-default-perms-for-static-files' into 'master'
...
[FIX] Default permissions for static files
See merge request allianceauth/allianceauth!1469
2022-10-09 06:15:18 +00:00
Peter Pfeufer
5815bac0df
[FIX] Default permissions for static files
...
A little fallacy on my end in the docs.
655 is enough for files in those directories, but the directories themselves need to be traversal, so 755 for the directories ...
2022-09-22 19:54:58 +02:00
Ariel Rin
6154d2c2e7
Merge branch 'better-exclude-regex' into 'master'
...
[CHANGE] Better regex for exclusion in pre-commit
See merge request allianceauth/allianceauth!1468
2022-09-18 08:26:22 +00:00
Peter Pfeufer
b34661b35d
[CHANGE] Better regex for exclusion in pre-commit
2022-09-18 08:26:22 +00:00
Ariel Rin
a9a7e03b80
Merge branch 'capntack-master-patch-07678' into 'master'
...
Update switch_to_non_root.md
See merge request allianceauth/allianceauth!1467
2022-09-16 14:48:08 +00:00
Tack
23c797ef64
Update switch_to_non_root.md
...
chmod requires "-R" to be Recursive, not "-r"
2022-09-14 16:51:10 +00:00
Ariel Rin
da102618a0
Version Bump 3.2.0
v3.2.0
2022-09-14 23:26:02 +10:00
Ariel Rin
51ee281b14
Update from Transifex
2022-09-14 23:20:08 +10:00
Peter Pfeufer
9133232c20
[REMOVED] Celery backend from docker config
2022-09-14 13:06:30 +02:00
Peter Pfeufer
9cbabee126
[CHANGE] Language names always start with a capital letter
2022-09-13 21:00:31 +02:00
Peter Pfeufer
4026523a2e
[REMOVED] Unnecessary lambda
statement
...
The `lambda` statement in `base.py` is unnecessary and has no effect.
```py
ugettext = lambda s: s
LANGUAGES = (
("en", ugettext("English")),
("de", ugettext("German")),
("es", ugettext("Spanish")),
("zh-hans", ugettext("Chinese Simplified")),
("ru", ugettext("Russian")),
("ko", ugettext("Korean")),
("fr", ugettext("French")),
("ja", ugettext("Japanese")),
("it", ugettext("Italian")),
)
```
In this case `ugettext = lambda s: s` is pretty much the same as:
```py
def ugettext(s):
return s
```
And would simply return the string the function receives as parameter.
So we can omit this completely and simplify the `LANGUAGES` list to:
```py
LANGUAGES = (
("en", "English"),
("de", "German"),
("es", "Spanish"),
("zh-hans", "Chinese Simplified"),
("ru", "Russian"),
("ko", "Korean"),
("fr", "French"),
("ja", "Japanese"),
("it", "Italian"),
)
```
2022-09-13 20:59:14 +02:00
Ariel Rin
7fbf96623b
Update from Transifex
2022-09-12 11:41:08 +10:00
Ariel Rin
273bda173e
Merge branch '1088-qol-improve-name-handling-for-smf' into 'master'
...
Displayed names for SMF
Closes #1088
See merge request allianceauth/allianceauth!1459
2022-09-11 13:53:25 +00:00
Ariel Rin
7bd5838ea1
Merge branch 'master' into 'master'
...
minor fixes to dev environment setup
See merge request allianceauth/allianceauth!1458
2022-09-11 13:51:42 +00:00
Ariel Rin
b232d9ab17
Merge branch 'use-SITE_URL-in-templates' into 'master'
...
[ADDED] `SITE_URL` usage in templates
See merge request allianceauth/allianceauth!1456
2022-09-11 13:51:21 +00:00
Ariel Rin
a11b870664
Merge branch 'switch-to-non-root' into 'master'
...
Add docs for switching to a non-root installation
See merge request allianceauth/allianceauth!1463
2022-09-11 13:48:44 +00:00
Erik Kalkoken
a27aae5d1c
Add docs for switching to a non-root installation
2022-09-11 13:48:43 +00:00
Ariel Rin
117ef63d90
Merge branch 'trailing-slash-it' into 'master'
...
[ADDED] Missing trailing slashes to URLs
See merge request allianceauth/allianceauth!1457
2022-09-11 13:45:50 +00:00
Ariel Rin
1bde3d5672
Merge branch 'esi-related-links-on-login' into 'master'
...
[ADDED] ESI related links in login box
See merge request allianceauth/allianceauth!1455
2022-09-11 13:44:55 +00:00
Ariel Rin
d2355b1ec8
Merge branch 'none-is-not-an-alliance' into 'master'
...
[CHANGE] None is not an alliance name, so don't show `None`
See merge request allianceauth/allianceauth!1460
2022-09-11 13:44:34 +00:00
Ariel Rin
191d474a8e
Merge branch 'task-queue-top-margin-fix' into 'master'
...
[FIX] Top margin on celery task percentage bar
See merge request allianceauth/allianceauth!1461
2022-09-11 13:44:11 +00:00
Peter Pfeufer
ec9a9733be
[FIX] Top margin on celery task percentage bar
2022-09-11 13:44:11 +00:00
Ariel Rin
cf7a8cedf1
Merge branch 'dont-fight-against-bootstrap' into 'master'
...
[FIX] Use proper markup instead of fighting against Bootstrap
See merge request allianceauth/allianceauth!1462
2022-09-11 13:43:38 +00:00
Peter Pfeufer
18cbb994d5
[FIX] Use proper markup instead of fighting against Bootstrap
2022-09-08 11:22:40 +02:00
Peter Pfeufer
663388a0c2
[CHANGE] None is not an alliance name, so don't show None
2022-09-08 00:19:41 +02:00
Peter Pfeufer
7a943591ec
[ADDED] Migration to update existing user's displayed names
2022-09-07 23:01:38 +02:00
Peter Pfeufer
cd189927fe
[ADDED] Update displayed name when main is changed
2022-09-07 23:01:07 +02:00