Skip to content

Commit 0670380

Browse files
committed
Copyright: 2024 → 2025
1 parent bc12bed commit 0670380

File tree

330 files changed

+330
-330
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

330 files changed

+330
-330
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Inyoka - Next generation portal software
22

3-
Copyright (c) 2006-2024 by the Inyoka Team, see AUTHORS for more details.
3+
Copyright (c) 2006-2025 by the Inyoka Team, see AUTHORS for more details.
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

inyoka/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Init file for the inyoka portal.
66
7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
# Secure XML libraries till a python solution exists.

inyoka/default_settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
The inyoka default settings.
66
7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from collections import OrderedDict

inyoka/forum/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
inyoka.forum
33
~~~~~~~~~~~~
44
5-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
5+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
66
:license: BSD, see LICENSE for more details.
77
"""

inyoka/forum/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Various constants for the forum application.
66
7-
:copyright: (c) 2011-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2011-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from django.utils.translation import gettext_lazy

inyoka/forum/forms.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Forms for the forum.
66
7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from django import forms

inyoka/forum/jinja2/forum/_edit_latestpost_row.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Used for updating the latest posts view on the edit page.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99

1010
#}

inyoka/forum/jinja2/forum/_forum.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Some macros for the forum.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{% macro render_forum(forum, subforums, last_posts) %}

inyoka/forum/jinja2/forum/delete_topic.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This template is flashed to ensure that the user want to delete the selected topic.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010

inyoka/forum/jinja2/forum/edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
This page shows a form where the user can either create a new thread or
66
write / edit a post.
77

8-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
8+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
99
:license: BSD, see LICENSE for more details.
1010

1111
#}

inyoka/forum/jinja2/forum/forum.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This template shows a forum with all subforums and topics inside.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'forum/page.html' %}

inyoka/forum/jinja2/forum/forum_edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Admin template for editing forums.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'forum/page.html' %}

inyoka/forum/jinja2/forum/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
first-level subforums. It also displays some information about the
77
forums like the last post and the overall topic / post count.
88

9-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
9+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
1010
:license: BSD, see LICENSE for more details.
1111
#}
1212
{%- extends 'forum/page.html' %}

inyoka/forum/jinja2/forum/movetopic.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This page gives the user the ability to move a topic into a new forum.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'forum/page.html' %}

inyoka/forum/jinja2/forum/page.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
This template is included by all forum templates and adds the elements
66
they all use (stylesheets etc).
77

8-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
8+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
99
:license: BSD, see LICENSE for more details.
1010
#}
1111
{%- extends 'overall.html' %}

inyoka/forum/jinja2/forum/post_delete.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This template is flashed to ensure that the user want to delete the selected post.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010

inyoka/forum/jinja2/forum/postlist.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Show a list of all posts for a given user.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{% extends 'forum/page.html' %}

inyoka/forum/jinja2/forum/report.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
The user can report a topic to the moderators on this page.
66
It shows a text field where the user can describe the problem.
77

8-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
8+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
99
:license: BSD, see LICENSE for more details.
1010
#}
1111

inyoka/forum/jinja2/forum/reportlist.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The moderators can see all reported topics on this page.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010

inyoka/forum/jinja2/forum/revisions.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
This page shows all old revisions of a post and gives the moderator the
66
possibility to restore it.
77

8-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
8+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
99
:license: BSD, see LICENSE for more details.
1010
#}
1111

inyoka/forum/jinja2/forum/splittopic.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This page shows the "splittopic" form.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'forum/page.html' %}

inyoka/forum/jinja2/forum/topic.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
It displays the posts and some informations about their authors.
77
It is "paginated".
88

9-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
9+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
1010
:license: BSD, see LICENSE for more details.
1111
#}
1212
{%- extends 'forum/page.html' %}

inyoka/forum/jinja2/forum/topiclist.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Show a list of all recent posts.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'forum/page.html' %}

inyoka/forum/jinja2/forum/welcome.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Show the rules for the community area.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'forum/page.html' %}

inyoka/forum/macros.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Macros for the forum.
66
7-
:copyright: (c) 2012-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2012-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from django.dispatch import receiver

inyoka/forum/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Database models for the forum.
66
7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
import os

inyoka/forum/notifications.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Utilities for forum notifications.
66
7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from celery import shared_task

inyoka/forum/services.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Forum specific services.
66
77
8-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
8+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
99
:license: BSD, see LICENSE for more details.
1010
"""
1111
from urllib.parse import unquote

inyoka/forum/signals.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Signals for the forum.
66
7-
:copyright: (c) 2011-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2011-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from django.core.cache import cache

inyoka/forum/urls.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
URL list for the forum.
66
7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from django.conf import settings

inyoka/forum/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
The views for the forum.
66
7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010
from datetime import timedelta

inyoka/hosts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Subdomain specifications.
66
7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010

inyoka/ikhaya/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
55
The ikhaya application.
66
7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""

inyoka/ikhaya/forms.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Forms for the Ikhaya.
66
7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
"""
1010

inyoka/ikhaya/jinja2/ikhaya/archive.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This page shows links to all months of ikhaya articles.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'ikhaya/page.html' %}

inyoka/ikhaya/jinja2/ikhaya/article_delete.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This template is flashed to ensure that the user want to delete the selected article.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010

inyoka/ikhaya/jinja2/ikhaya/article_edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Template for editing or creating an Ikhaya article
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'ikhaya/page.html' %}

inyoka/ikhaya/jinja2/ikhaya/category_edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Template for editing or creating a ikhaya category.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'ikhaya/page.html' %}

inyoka/ikhaya/jinja2/ikhaya/comment_edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ikhaya/comment_edit.html
33
~~~~~~~~~~~~~~~~~~~~~~~~
44

5-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
5+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
66
:license: BSD, see LICENSE for more details.
77
#}
88
{%- extends 'ikhaya/page.html' %}

inyoka/ikhaya/jinja2/ikhaya/detail.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Show a single ikhaya article.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'ikhaya/page.html' %}

inyoka/ikhaya/jinja2/ikhaya/event_delete.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Template for deleting an event.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010

inyoka/ikhaya/jinja2/ikhaya/event_edit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Template for editing or creating an event.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'ikhaya/page.html' %}

inyoka/ikhaya/jinja2/ikhaya/event_suggest.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This page is for new calendar events.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'ikhaya/page.html' %}

inyoka/ikhaya/jinja2/ikhaya/events.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This is the overview of the events.
66

7-
:copyright: (c) 2007-2024 by the Inyoka Team, see AUTHORS for more details.
7+
:copyright: (c) 2007-2025 by the Inyoka Team, see AUTHORS for more details.
88
:license: BSD, see LICENSE for more details.
99
#}
1010
{%- extends 'ikhaya/page.html' %}

0 commit comments

Comments
 (0)