Skip to content
Snippets Groups Projects
Verified Commit 8c5377d9 authored by mirabilos's avatar mirabilos Committed by mirabilos
Browse files

Finish renaming BiscuIT-ng to AlekSIS in this äpp

parent 740b63b4
No related branches found
No related tags found
No related merge requests found
......@@ -21,4 +21,4 @@ Minor changes
* Use bootstrap buttons everywhere
_`1.0a1`: https://edugit.org/Teckids/BiscuIT/BiscuIT-App-Untis/-/tags/1.0a1
_`1.0a1`: https://edugit.org/Teckids/AlekSIS/AlekSIS-App-Untis/-/tags/1.0a1
include LICENCE
recursive-include biscuit/apps/untis/static *
recursive-include biscuit/apps/untis/templates *
recursive-include biscuit/apps/untis/migrations *
recursive-include aleksis/apps/untis/static *
recursive-include aleksis/apps/untis/templates *
recursive-include aleksis/apps/untis/migrations *
AlekSIS School Information System (SIS) - App for Untis import
AlekSIS (School Information System) - App for Untis import
======================================================================
AlekSIS
......
import pkg_resources
try:
__version__ = pkg_resources.get_distribution("BiscuIT-App-Untis").version
__version__ = pkg_resources.get_distribution("AlekSIS-App-Untis").version
except Exception:
__version__ = "unknown"
default_app_config = "biscuit.apps.untis.apps.UntisConfig"
default_app_config = "aleksis.apps.untis.apps.UntisConfig"
from biscuit.core.util.apps import AppConfig
from aleksis.core.util.apps import AppConfig
class UntisConfig(AppConfig):
name = "biscuit.apps.untis"
verbose_name = "BiscuIT - Untis interface"
name = "aleksis.apps.untis"
verbose_name = "AlekSIS - Untis interface"
......@@ -10,8 +10,8 @@ msgstr ""
"POT-Creation-Date: 2019-09-15 14:10+0200\n"
"PO-Revision-Date: 2019-09-15 13:40+0000\n"
"Last-Translator: Tom Teichler <tom.teichler@teckids.org>\n"
"Language-Team: German <https://translate.edugit.org/projects/biscuit-sis/"
"biscuit-app-untis/de/>\n"
"Language-Team: German <https://translate.edugit.org/projects/aleksis-sis/"
"aleksis-app-untis/de/>\n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
......@@ -117,8 +117,8 @@ msgstr "Ungültige Liste von Klassen: %s"
msgid "Failed to import lesson: Teacher %s does not exist."
msgstr "Fehler beim Importieren der Stunde: Lehrer %s existiert nicht."
#~ msgid "BiscuIT - Untis interface"
#~ msgstr "BiscuIT - Untis-Schnittstelle"
#~ msgid "AlekSIS - Untis interface"
#~ msgstr "AlekSIS - Untis-Schnittstelle"
#~ msgid "Interfaces"
#~ msgstr "Schnittstellen"
......@@ -8,7 +8,7 @@ MENUS = {
"validators": [
"menu_generator.validators.is_authenticated",
"menu_generator.validators.is_superuser",
"biscuit.core.util.core_helpers.has_person",
"aleksis.core.util.core_helpers.has_person",
],
}
]
......
......@@ -5,9 +5,9 @@ from xml.dom import Node, minidom
from django.http import HttpRequest
from django.utils.translation import ugettext as _
from biscuit.apps.chronos.models import Lesson, Room, Subject, TimePeriod
from biscuit.core.models import Group, Person
from biscuit.core.util import messages
from aleksis.apps.chronos.models import Lesson, Room, Subject, TimePeriod
from aleksis.core.models import Group, Person
from aleksis.core.util import messages
from untisconnect.api import TYPE_TEACHER, get_teacher_by_shortcode, TYPE_CLASS, get_class_by_name, get_all_teachers, \
......
......@@ -2,7 +2,7 @@ from django.contrib.auth.decorators import login_required
from django.http import HttpRequest, HttpResponse
from django.shortcuts import render
from biscuit.core.decorators import admin_required
from aleksis.core.decorators import admin_required
from .forms import UntisUploadForm
from .util import untis_import_xml
......
[tool.poetry]
name = "BiscuIT-App-Untis"
name = "AlekSIS-App-Untis"
version = "1.0a4.dev0"
packages = [
{ include = "aleksis" }
]
readme = "README.rst"
description = "AlekSIS School Information System (SIS) - App for Untis import"
description = "AlekSIS (School Information System) - App for Untis import"
authors = ["Dominik George <dominik.george@teckids.org>", "Julian Leucker <leuckeju@katharineum.de>", "Frank Poetzsch-Heffter <p-h@katharineum.de>", "Jonathan Weth <wethjo@katharineum.de>"]
license = "EUPL-1.2"
homepage = "https://aleksis.edugit.io/"
repository = "https://edugit.org/BiscuIT/BiscuIT-App-Untis"
repository = "https://edugit.org/AlekSIS/AlekSIS-App-Untis"
documentation = "https://aleksis.edugit.io/AlekSIS/docs/html/"
classifiers = [
"Environment :: Web Environment",
......@@ -21,7 +21,7 @@ classifiers = [
[tool.poetry.dependencies]
python = "^3.7"
AlekSIS = { path = "../../.." }
BiscuIT-App-Chronos = { path = "../BiscuIT-App-Chronos" }
AlekSIS-App-Chronos = { path = "../AlekSIS-App-Chronos" }
[build-system]
requires = ["poetry>=0.12"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment