apis-acdhch-default-settings 2.4.0__tar.gz → 2.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/CHANGELOG.md +12 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/PKG-INFO +4 -1
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/apis_acdhch_default_settings/settings.py +0 -2
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/apis_acdhch_default_settings/templates/base.html +6 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/pyproject.toml +5 -1
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/.github/dependabot.yml +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/.github/workflows/add-to-project.yml +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/.github/workflows/publish.yml +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/.github/workflows/release-please.yml +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/.gitignore +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/LICENSE +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/README.md +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/apis_acdhch_default_settings/__init__.py +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/apis_acdhch_default_settings/ldapauth.py +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/apis_acdhch_default_settings/querysets.py +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/apis_acdhch_default_settings/templates/imprint.html +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/apis_acdhch_default_settings/urls.py +0 -0
- {apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/apis_acdhch_default_settings/views.py +0 -0
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.5.0](https://github.com/acdh-oeaw/apis-acdhch-default-settings/compare/v2.4.0...v2.5.0) (2025-04-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **templates:** add a monitoring variable to the meta tags ([06a729d](https://github.com/acdh-oeaw/apis-acdhch-default-settings/commit/06a729de0483ff208cf7f6021c64adae7830faf9))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
* **settings:** drop unnecessary comment ([5db1d0a](https://github.com/acdh-oeaw/apis-acdhch-default-settings/commit/5db1d0ad38bb724e28dd842d0605345c09395eac)), closes [#188](https://github.com/acdh-oeaw/apis-acdhch-default-settings/issues/188)
|
|
14
|
+
|
|
3
15
|
## [2.4.0](https://github.com/acdh-oeaw/apis-acdhch-default-settings/compare/v2.3.1...v2.4.0) (2025-03-20)
|
|
4
16
|
|
|
5
17
|
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apis-acdhch-default-settings
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.5.0
|
|
4
4
|
Summary: Default settings for APIS instances at the ACDH-CH
|
|
5
|
+
Project-URL: source, https://github.com/acdh-oeaw/apis-acdhch-default-settings
|
|
6
|
+
Project-URL: changelog, https://github.com/acdh-oeaw/apis-acdhch-default-settings/blob/main/CHANGELOG.md
|
|
7
|
+
Project-URL: issues, https://github.com/acdh-oeaw/apis-acdhch-default-settings/issues
|
|
5
8
|
Author-email: Birger Schacht <birger.schacht@oeaw.ac.at>
|
|
6
9
|
License-Expression: MIT
|
|
7
10
|
License-File: LICENSE
|
|
@@ -29,8 +29,6 @@ SECRET_KEY = os.environ.get("SECRET_KEY", get_random_secret_key())
|
|
|
29
29
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
|
30
30
|
|
|
31
31
|
# Application definition
|
|
32
|
-
# put apis_override_select2js at the beginning of the list
|
|
33
|
-
# to make its static files weigh more than from the other apps
|
|
34
32
|
INSTALLED_APPS = [
|
|
35
33
|
"dal",
|
|
36
34
|
"dal_select2",
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
{% extends "base.html" %}
|
|
2
2
|
{% load i18n %}
|
|
3
|
+
|
|
4
|
+
{% block meta %}
|
|
5
|
+
{{ block.super }}
|
|
6
|
+
<meta name="monitoring" content="Icinga Check">
|
|
7
|
+
{% endblock meta %}
|
|
8
|
+
|
|
3
9
|
{% block imprint %}
|
|
4
10
|
{% url "imprint" as imprint_url %}
|
|
5
11
|
{% if imprint_url %}<a href="{{ imprint_url }}">{% translate "Imprint" %}</a>{% endif %}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "apis-acdhch-default-settings"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.5.0"
|
|
4
4
|
description = "Default settings for APIS instances at the ACDH-CH"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
@@ -22,6 +22,10 @@ dependencies = [
|
|
|
22
22
|
"opentelemetry-distro",
|
|
23
23
|
"django-removals>=1.0.5,<=2.0",
|
|
24
24
|
]
|
|
25
|
+
[project.urls]
|
|
26
|
+
source = "https://github.com/acdh-oeaw/apis-acdhch-default-settings"
|
|
27
|
+
changelog = "https://github.com/acdh-oeaw/apis-acdhch-default-settings/blob/main/CHANGELOG.md"
|
|
28
|
+
issues = "https://github.com/acdh-oeaw/apis-acdhch-default-settings/issues"
|
|
25
29
|
|
|
26
30
|
[build-system]
|
|
27
31
|
requires = ["hatchling"]
|
{apis_acdhch_default_settings-2.4.0 → apis_acdhch_default_settings-2.5.0}/.github/dependabot.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|