Joel Falknau
4021b2dc72
use same task name to override existing task, use offset
2025-05-24 16:35:29 +10:00
Joel Falknau
daaffaeabc
use token subset cleanup task from Django-ESI 7
2025-05-24 15:33:59 +10:00
Joel Falknau
15fc38ccfd
Merge branch 'master' of gitlab.com:allianceauth/allianceauth into v5.x
2025-03-03 12:52:12 +10:00
Peter Pfeufer
47842c1243
[FIX] Correct locale link for moment js
...
The other one was the directory for the node modules …
2025-02-26 21:53:27 +01:00
Peter Pfeufer
c26af593ff
[ADD] Links to available languaes for mapping
...
Makes it easier for adding new languages in the future
2025-02-26 11:11:18 +01:00
Peter Pfeufer
856e939c21
[ADD] Locale mapping for DataTables and Moment.JS
2025-01-20 04:35:10 +01:00
Ariel Rin
60998bffc2
Cron Offset Tasks
2025-01-10 12:10:49 +00:00
Peter Pfeufer
0f057ffa84
[ADD] django-sri
to provide integrity hashes for local static files
2025-01-02 16:54:37 +01:00
Joel Falknau
a99315ea55
formatting storm
2024-09-13 23:10:37 +10:00
Joel Falknau
0a17427169
update language codes
2024-09-13 19:59:40 +10:00
Peter Pfeufer
e0d76dc268
[CHANGE] Switch to Django Solo
2024-08-20 14:41:43 +02:00
Peter Pfeufer
3315ae7778
[ADD] Module to base settings file
2024-08-14 12:47:38 +02:00
Ariel Rin
2ba0412890
Add Polish to language selections
2024-05-12 19:44:30 +10:00
Ariel Rin
e03c1307a3
Merge branch 'master' of gitlab.com:allianceauth/allianceauth into v4.x
2024-02-17 20:01:50 +10:00
Erik Kalkoken
62c936f1c0
Improve menu app
2024-02-17 07:56:38 +00:00
ErikKalkoken
9c7de58989
Add email timeout
2024-01-02 11:48:27 +01:00
Ariel Rin
b28b51916c
Merge branch 'aa-framework-part-2' into 'v4.x'
...
Alliance Auth Framework (Part 2)
See merge request allianceauth/allianceauth!1558
2023-12-25 09:46:57 +00:00
Peter Pfeufer
77c126ea2f
[ADD] Alliance Auth Framework base app
2023-12-17 23:50:13 +01:00
Aaron Kable
f7821b647f
swap to middleware to sync menu hooks
2023-10-28 15:26:48 +08:00
Peter Pfeufer
ee24706e43
v4 Template fixes
2023-10-24 02:04:49 +00:00
Ariel Rin
4912f0f8f0
Theme handling improvements
2023-10-21 09:08:28 +00:00
Aaron Kable
2e78aa5f26
BS5 Theme
2023-10-07 08:20:22 +00:00
Ariel Rin
d6821b3fd6
Merge branch 'master' of gitlab.com:allianceauth/allianceauth into v4.x
2023-08-14 15:13:54 +10:00
Ariel Rin
a2f217ace5
Analytics UA to V4 Conversion
2023-08-14 03:31:33 +00:00
Peter Pfeufer
5d4c7b9030
[FIX] crontab
arguments here as well
2023-07-14 19:22:29 +02:00
Ariel Rin
8da0122d17
Update from Transifex
2023-04-25 10:05:38 +00: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
Peter Pfeufer
1d240a40dd
Remove deprecated settings
...
Examples:
RemovedInDjango50Warning: The USE_L10N setting is deprecated. Starting with Django 5.0, localized formatting of data will always be enabled. For example Django will display numbers and dates using the format of the current locale.
warnings.warn(USE_L10N_DEPRECATED_MSG, RemovedInDjango50Warning)
RemovedInDjango41Warning: 'allianceauth' defines default_app_config = 'allianceauth.apps.AllianceAuthConfig'. Django now detects this configuration automatically. You can remove default_app_config.
app_config = AppConfig.create(entry)
2022-03-03 12:06:16 +01:00
Ariel Rin
1aad3e4512
Persistent User Settings
2022-02-26 06:19:38 +00:00
Aaron Kable
297da44a5a
Swap the Redis Cache client
2022-02-02 04:12:04 +00:00
Adarnof
abb5090d63
Use danger and error message tags to render correctly on admin site.
...
Closes #1305
(cherry picked from commit f17ebbede6d675f6308f41b3e72b78758642ef60)
2021-11-20 01:14:07 +00:00
Ariel Rin
0032f91525
Update from Transifex
2021-10-17 09:28:37 +00:00
Peter Pfeufer
f8cffb64a1
add favicon support to django admin backend
2021-08-25 22:37:37 +02:00
Ariel Rin
5af33facb6
Analytics Module
2021-07-03 04:43:16 +00:00
Peter Pfeufer
e6a4cea4de
editorconfig applied
2021-05-17 11:42:28 +02:00
Peter Pfeufer
2697fb5317
remove coding pragma. it's not needed since python 3.x
2021-05-17 09:51:09 +02:00
Peter Pfeufer
8c3df89d52
remove trailing whitespaces
2021-05-17 09:46:11 +02:00
Peter Pfeufer
3630812b92
revert migrations & set DEFAULT_AUTO_FIELD to django.db.models.AutoField
2021-05-10 13:35:40 +02:00
Peter Pfeufer
db5ad85811
add new default for PKs
2021-04-07 18:16:33 +02:00
Erik Kalkoken
4394d25961
Notifications refresh v2 and session caching
2021-01-16 00:09:49 +00:00
Ariel Rin
0fabb2b368
Add French and Japanese Translations + QoL Translation Fixes
2020-10-13 04:17:37 +00:00
ErikKalkoken
bbb70c93d9
Initial
2020-06-06 17:59:23 +02:00
Col Crunch
db51abec1f
Change default logging level for extension logger.
2020-05-26 13:26:19 -04:00
Ariel Rin
4988b5f260
Merge branch 'common_logger' into 'master'
...
Extensions Logging
See merge request allianceauth/allianceauth!1180
2020-04-02 02:59:55 +00:00
Ariel Rin
d7e7457bc5
Add Korean and Russian, Update from Transifex
2020-03-26 02:50:25 +00:00
Col Crunch
527d7ef671
Change level of extension_file
handler, rename the logger from allianceauth.extensions
to extensions
and remove propagate
from the logger.
2020-03-13 04:42:09 -04:00
Col Crunch
e54b80e061
Add a common logger (and specific log file) for extensions to utilize.
2020-03-13 00:33:35 -04:00
Ariel Rin
8865d15ed9
Update German and Spanish Locales, Add Chinese Simplified with Transifex
2020-03-09 15:51:12 +00:00
Adarnof
ee9ed13a66
Remove reference to depreciated bad_gateway model.
...
Addresses #1078
I too enjoy breaking changes with no warning. Round two.
2018-05-28 17:16:58 -04:00
Adarnof
22bda62e59
Spanish translations courtesy of @frank1210
...
Fixed a few problems with translating the menu links - they had leading spaces.
2018-05-02 20:49:21 -04:00