diff --git a/config/.htaccess.dist b/config/.htaccess.dist index d4ba3b1f7eb05e2ca9d57bee555547e361a0916f..255f603b0179bcd335523c83df02d8781fdac5da 100644 --- a/config/.htaccess.dist +++ b/config/.htaccess.dist @@ -4,15 +4,11 @@ #RewriteRule ^download/(normal|force_download|zip)/([0-467])/([^/]+)/(.+)$ sendfile.php?$1=1&type=$2&file_id=$3&file_name=$4 [L,B] #RewriteRule ^download/(normal|force_download|zip)/5/([^/]+)/([^/]+)/(.+)$ sendfile.php?$1=1&type=5&range_id=$2&list_id=$3&file_name=$4 [L,B] -#Apache 2.2 -#Order Allow,Deny -#Allow from all - #Apache 2.4 Require all granted -php_value upload_max_filesize 8M -php_value post_max_size 9M +php_value upload_max_filesize 250M +php_value post_max_size 250M php_value memory_limit 128M php_value max_execution_time 300 php_flag short_open_tag On @@ -23,6 +19,3 @@ php_value max_input_vars 10000 # 22519 = E_ALL & ~(E_NOTICE|E_DEPRECATED) PHP 5.3.x php_value error_reporting 22519 -# PHP 5.5 (ab 5.6 Standardeinstellung) -php_value default_charset utf-8 -php_value mbstring.internal_encoding utf-8 diff --git a/config/config.inc.php.dist b/config/config.inc.php.dist index 98c38a4b1c218580419bd954c60c0e4629c852ac..3ef8fb60fa1ae0a05ff5a0ff896abcdaaeae0cfc 100644 --- a/config/config.inc.php.dist +++ b/config/config.inc.php.dist @@ -69,7 +69,7 @@ $UNI_URL = "http://www.studip.de"; $UNI_LOGIN_ADD=''; $UNI_LOGOUT_ADD=sprintf(_("Und hier geht's zur %sStud.IP Portalseite%s "), "<a href=\"http://www.studip.de\"><b>", "</b></a>"); $UNI_CONTACT = "<please insert your general contact mail-adress here>"; -$UNI_INFO = "Stud.IP 5.1 - Studienbegleitender Internetsupport von Präsenzlehre"; +$UNI_INFO = "Stud.IP 5.4 - Studienbegleitender Internetsupport von Präsenzlehre"; /* $SEM_CLASS and $SEM_TYPE configuration moved to database @@ -264,6 +264,7 @@ $SYMBOL_SHORT = array( this options are only needed, if you are using the addional Stud.IP modules (please see in config_local.inc.php which modules are activated). It's a good idea to leave this settings untouched...*/ + /* * use this to customize the fields shown in the standard/extended view on the instiute member page * valid values are 'raum', 'sprechzeiten', 'telefon', 'email', 'homepage' and userinstrole datafield ids diff --git a/config/studip-httpd.conf.dist b/config/studip-httpd.conf.dist index 8227730bda5a9e68442477be0040b9886a74e55e..e5db44bdf39588fecf9068f01e669d230e83571a 100644 --- a/config/studip-httpd.conf.dist +++ b/config/studip-httpd.conf.dist @@ -11,15 +11,10 @@ #RewriteRule ^download/(normal|force_download|zip)/([0-467])/([^/]+)/(.+)$ /studip/sendfile.php?$1=1&type=$2&file_id=$3&file_name=$4 [L] #RewriteRule ^download/(normal|force_download|zip)/5/([^/]+)/([^/]+)/(.+)$ /studip/sendfile.php?$1=1&type=5&range_id=$2&list_id=$3&file_name=$4 [L] - #Apache 2.2 - #Order Allow,Deny - #Allow from all - - #Apache 2.4 Require all granted - php_value upload_max_filesize 8M - php_value post_max_size 9M + php_value upload_max_filesize 250M + php_value post_max_size 250M php_value memory_limit 128M php_value max_execution_time 300 php_flag short_open_tag On @@ -29,8 +24,4 @@ # 22519 = E_ALL & ~(E_NOTICE|E_DEPRECATED) PHP 5.3.x php_value error_reporting 22519 - # PHP 5.5 (ab 5.6 Standardeinstellung) - php_value default_charset utf-8 - php_value mbstring.internal_encoding utf-8 - </Directory> diff --git a/db/studip.sql b/db/studip.sql index ff8f11d1162873ec264ec4831befbaac86983b4b..5a8f395c5846cb28f5a929c96f385e1aea96e897 100644 --- a/db/studip.sql +++ b/db/studip.sql @@ -1,8 +1,8 @@ --- MySQL dump 10.13 Distrib 8.0.33, for Linux (x86_64) +-- MySQL dump 10.13 Distrib 8.0.35, for Linux (x86_64) -- --- Host: localhost Database: studip_53 +-- Host: localhost Database: studip_54 -- ------------------------------------------------------ --- Server version 8.0.33-0ubuntu0.22.04.2 +-- Server version 8.0.35-0ubuntu0.22.04.1 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; @@ -351,9 +351,9 @@ CREATE TABLE `auth_user_md5` ( `username` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `password` varbinary(64) NOT NULL DEFAULT '', `perms` enum('user','autor','tutor','dozent','admin','root') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'user', - `Vorname` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `Nachname` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `Email` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `Vorname` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `Nachname` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `Email` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `validation_key` varchar(10) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `auth_plugin` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'standard', `locked` tinyint unsigned NOT NULL DEFAULT '0', @@ -683,7 +683,7 @@ DROP TABLE IF EXISTS `clipboards`; CREATE TABLE `clipboards` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `name` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `handler` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'Clipboard', `allowed_item_class` varchar(64) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'StudipItem', `mkdate` int unsigned NOT NULL DEFAULT '0', @@ -702,7 +702,7 @@ DROP TABLE IF EXISTS `colour_values`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `colour_values` ( `colour_id` varchar(128) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `description` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `value` varchar(8) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'ffffffff', `mkdate` int unsigned NOT NULL DEFAULT '0', `chdate` int unsigned NOT NULL DEFAULT '0', @@ -1210,6 +1210,31 @@ CREATE TABLE `cw_certificates` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `cw_clipboards` +-- + +DROP TABLE IF EXISTS `cw_clipboards`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cw_clipboards` ( + `id` int NOT NULL AUTO_INCREMENT, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, + `description` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `block_id` int DEFAULT NULL, + `container_id` int DEFAULT NULL, + `structural_element_id` int DEFAULT NULL, + `object_type` enum('courseware-structural-elements','courseware-containers','courseware-blocks') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `object_kind` varchar(255) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `backup` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int unsigned NOT NULL, + `chdate` int unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `index_user_id` (`user_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `cw_containers` -- @@ -1316,6 +1341,7 @@ CREATE TABLE `cw_structural_elements` ( `position` int NOT NULL, `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `image_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `image_type` enum('FileRef','StockImage') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'FileRef', `purpose` enum('content','draft','task','template','oer','other','portfolio') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `payload` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `public` tinyint(1) NOT NULL, @@ -1438,7 +1464,7 @@ CREATE TABLE `cw_units` ( `creator_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `release_date` int unsigned DEFAULT NULL, `withdraw_date` int unsigned DEFAULT NULL, - `config` text COLLATE utf8mb4_unicode_ci NOT NULL, + `config` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `mkdate` int unsigned NOT NULL, `chdate` int unsigned NOT NULL, PRIMARY KEY (`id`), @@ -1982,7 +2008,6 @@ CREATE TABLE `ex_termine` ( `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `autor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date` int unsigned NOT NULL DEFAULT '0', `end_time` int unsigned NOT NULL DEFAULT '0', `mkdate` int unsigned NOT NULL DEFAULT '0', @@ -2383,24 +2408,6 @@ CREATE TABLE `global_resource_locks` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; --- --- Table structure for table `globalsearch_buzzwords` --- - -DROP TABLE IF EXISTS `globalsearch_buzzwords`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `globalsearch_buzzwords` ( - `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `rights` enum('user','autor','tutor','dozent','admin','root') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'user', - `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `buzzwords` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `subtitle` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -/*!40101 SET character_set_client = @saved_cs_client */; - -- -- Table structure for table `grading_definitions` -- @@ -2635,13 +2642,13 @@ DROP TABLE IF EXISTS `licenses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `licenses` ( - `identifier` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'According to SPDX standard if able.', - `name` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `link` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `identifier` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'According to SPDX standard if able.', + `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `link` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default` tinyint(1) DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `twillo_licensekey` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `twillo_cclicenseversion` varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `twillo_licensekey` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `twillo_cclicenseversion` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `chdate` int DEFAULT NULL, `mkdate` int DEFAULT NULL, PRIMARY KEY (`identifier`), @@ -2841,7 +2848,7 @@ DROP TABLE IF EXISTS `mail_queue_entries`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `mail_queue_entries` ( `mail_queue_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mail` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `mail` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `message_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `tries` int unsigned NOT NULL, @@ -4096,7 +4103,7 @@ CREATE TABLE `oer_comments` ( `comment_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `review_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `foreign_comment_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `comment` text COLLATE utf8mb4_unicode_ci NOT NULL, + `comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `host_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `chdate` bigint NOT NULL, @@ -4135,11 +4142,11 @@ DROP TABLE IF EXISTS `oer_hosts`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oer_hosts` ( `host_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `sorm_class` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'OERHost', - `name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, - `url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, - `public_key` text COLLATE utf8mb4_unicode_ci NOT NULL, - `private_key` text COLLATE utf8mb4_unicode_ci, + `sorm_class` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'OERHost', + `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `public_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `private_key` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `active` tinyint NOT NULL DEFAULT '1', `index_server` tinyint NOT NULL DEFAULT '0', `allowed_as_index_server` tinyint NOT NULL DEFAULT '1', @@ -4162,26 +4169,26 @@ CREATE TABLE `oer_material` ( `material_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `foreign_material_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `host_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, - `category` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `category` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `draft` tinyint(1) NOT NULL DEFAULT '0', - `filename` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, - `short_description` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `description` text COLLATE utf8mb4_unicode_ci NOT NULL, + `filename` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `short_description` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `difficulty_start` tinyint NOT NULL DEFAULT '1', `difficulty_end` tinyint NOT NULL DEFAULT '12', - `player_url` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `tool` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `player_url` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `tool` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content_type` varchar(256) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `front_image_content_type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `structure` text COLLATE utf8mb4_unicode_ci, + `front_image_content_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `structure` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `rating` double DEFAULT NULL, - `license_identifier` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'CC BY SA 3.0', - `uri` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `uri_hash` char(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `published_id_on_twillo` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `source_url` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `data` text COLLATE utf8mb4_unicode_ci, + `license_identifier` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'CC BY SA 3.0', + `uri` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `uri_hash` char(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `published_id_on_twillo` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `source_url` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `chdate` bigint NOT NULL, `mkdate` int NOT NULL, PRIMARY KEY (`material_id`), @@ -4242,7 +4249,7 @@ CREATE TABLE `oer_reviews` ( `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `host_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `rating` int NOT NULL, - `review` text COLLATE utf8mb4_unicode_ci NOT NULL, + `review` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `chdate` int NOT NULL, `mkdate` int NOT NULL, PRIMARY KEY (`review_id`), @@ -4263,7 +4270,7 @@ DROP TABLE IF EXISTS `oer_tags`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oer_tags` ( `tag_hash` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, + `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`tag_hash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4295,9 +4302,9 @@ CREATE TABLE `oer_user` ( `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `foreign_user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `host_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, - `avatar` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `description` text COLLATE utf8mb4_unicode_ci, + `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `avatar` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `chdate` int NOT NULL, `mkdate` int NOT NULL, PRIMARY KEY (`user_id`), @@ -4443,7 +4450,12 @@ CREATE TABLE `plugins` ( `dependentonid` int unsigned DEFAULT NULL, `automatic_update_url` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `automatic_update_secret` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - PRIMARY KEY (`pluginid`) + `description` text COLLATE utf8mb4_unicode_ci, + `description_mode` enum('add','override_description','replace_all') COLLATE utf8mb4_unicode_ci DEFAULT 'add', + `highlight_until` int unsigned DEFAULT NULL, + `highlight_text` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`pluginid`), + KEY `highlight_until` (`highlight_until`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4587,9 +4599,9 @@ DROP TABLE IF EXISTS `questionnaire_questions`; CREATE TABLE `questionnaire_questions` ( `question_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `questionnaire_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `questiontype` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `internal_name` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `questiondata` text COLLATE utf8mb4_unicode_ci NOT NULL, + `questiontype` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `internal_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `questiondata` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `position` int NOT NULL, `chdate` int unsigned NOT NULL, `mkdate` int unsigned NOT NULL, @@ -4808,7 +4820,7 @@ DROP TABLE IF EXISTS `resource_property_groups`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `resource_property_groups` ( `id` int NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `position` tinyint NOT NULL DEFAULT '0', `mkdate` int unsigned NOT NULL DEFAULT '0', `chdate` int unsigned NOT NULL DEFAULT '0', @@ -5176,7 +5188,6 @@ DROP TABLE IF EXISTS `semester_data`; CREATE TABLE `semester_data` ( `semester_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `semester_token` varchar(10) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `beginn` int unsigned DEFAULT NULL, `ende` int unsigned DEFAULT NULL, @@ -5415,7 +5426,7 @@ DROP TABLE IF EXISTS `separable_rooms`; CREATE TABLE `separable_rooms` ( `id` int NOT NULL AUTO_INCREMENT, `building_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `name` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `mkdate` int unsigned NOT NULL DEFAULT '0', `chdate` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) @@ -5470,30 +5481,6 @@ CREATE TABLE `siteinfo_rubrics` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; --- --- Table structure for table `smiley` --- - -DROP TABLE IF EXISTS `smiley`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `smiley` ( - `smiley_id` int unsigned NOT NULL AUTO_INCREMENT, - `smiley_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `smiley_width` int NOT NULL DEFAULT '0', - `smiley_height` int NOT NULL DEFAULT '0', - `short_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `smiley_counter` int unsigned NOT NULL DEFAULT '0', - `short_counter` int unsigned NOT NULL DEFAULT '0', - `fav_counter` int unsigned NOT NULL DEFAULT '0', - `mkdate` int unsigned DEFAULT NULL, - `chdate` int unsigned DEFAULT NULL, - PRIMARY KEY (`smiley_id`), - UNIQUE KEY `name` (`smiley_name`), - KEY `short` (`short_name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -/*!40101 SET character_set_client = @saved_cs_client */; - -- -- Table structure for table `statusgruppe_user` -- @@ -5541,6 +5528,31 @@ CREATE TABLE `statusgruppen` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `stock_images` +-- + +DROP TABLE IF EXISTS `stock_images`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `stock_images` ( + `id` int NOT NULL AUTO_INCREMENT, + `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `license` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `author` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `mime_type` varchar(64) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `size` int unsigned NOT NULL, + `width` int unsigned NOT NULL, + `height` int unsigned NOT NULL, + `palette` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `tags` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int unsigned NOT NULL, + `chdate` int unsigned NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `studygroup_invitations` -- @@ -5596,7 +5608,6 @@ CREATE TABLE `termine` ( `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `autor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date` int unsigned NOT NULL DEFAULT '0', `end_time` int unsigned NOT NULL DEFAULT '0', `mkdate` int unsigned NOT NULL DEFAULT '0', @@ -5729,7 +5740,7 @@ DROP TABLE IF EXISTS `user_info`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_info` ( `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `hobby` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `hobby` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `lebenslauf` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `publi` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `schwerp` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, @@ -5747,7 +5758,6 @@ CREATE TABLE `user_info` ( `smsforward_copy` tinyint unsigned NOT NULL DEFAULT '1', `smsforward_rec` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `email_forward` tinyint unsigned NOT NULL DEFAULT '0', - `smiley_favorite` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `motto` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `lock_rule` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `oercampus_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, @@ -6128,4 +6138,4 @@ CREATE TABLE `wiki_page_config` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2023-06-07 17:12:29 +-- Dump completed on 2023-11-01 17:15:52 diff --git a/db/studip_default_data.sql b/db/studip_default_data.sql index 811b1dd0745b2234a491b40179d6039d38313597..8f90114162ac2a815e67902fa24adf6c0d83919c 100644 --- a/db/studip_default_data.sql +++ b/db/studip_default_data.sql @@ -130,11 +130,15 @@ INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chd INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.SimpleBookingWithExceptions.Bg', 'Die Farbe im Belegungsplan für einfache Buchungen mit Wiederholungen, bei denen es Ausfalltermine gibt.', '70c3bfff', 1591630777, 1591630777); INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.SimpleBookingWithExceptions.Fg', 'Die Textfarbe im Belegungsplan für einfache Buchungen mit Wiederholungen, bei denen es Ausfalltermine gibt.', 'ffffffff', 1591630777, 1591630777); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACCESSIBILITY_DISCLAIMER_URL', '', 'string', 'global', 'accessibility', 1698855217, 1698855217, 'URL der Barrierefreiheitserklärung, die in der Fußleiste verlinkt wird. Wenn Sie den Mustertext im Impressum verwenden, tragen Sie diese URL ein: dispatch.php/siteinfo/show/1/8'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACCESSIBILITY_INFO_TEXT', '', 'i18n', 'global', 'accessibility', 1686150733, 1686150733, 'Diese Konfiguration bitte unter Admin -> Standort -> Infotext zu barrierefreien Dateien anpassen!'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACCESSIBILITY_RECEIVER_EMAIL', '', 'array', 'global', 'accessibility', 1686150733, 1686150733, 'Die E-Mail-Adressen der Personen, die beim Melden einer Barriere benachrichtigt werden sollen.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACCESSIBILITY_RECEIVER_EMAIL', '', 'array', 'global', 'accessibility', 1686150733, 1686150733, 'Die E-Mail-Adressen der Personen, die beim Melden einer Barriere benachrichtigt werden sollen.\n Beispiel: [\"mailadresse1@server.de\",\"mailadresse2@server.de\"]'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACTION_MENU_THRESHOLD', '1', 'integer', 'global', 'global', 1669041528, 1669041528, 'Obergrenze an Einträgen, bis zu der ein Aktionsmenü als Icons dargestellt wird'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMIN_COURSES_DATAFIELDS_FILTERS', '[]', 'array', 'user', '', 1698855217, 1698855217, 'Für Admins, Roots und DedicatedAdmins können hier die Datenfelder gespeichert werden, nach denen die Veranstaltungen gefiltert werden sollen.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMIN_COURSES_SEARCHTEXT', '', 'string', 'user', '', 1698855218, 1698855218, 'Speichert den auf der Veranstaltungsübersicht für Admins eingegebenen Suchtext'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMIN_COURSES_SHOW_COMPLETE', '1', 'boolean', 'global', 'global', 1462287310, 1462287310, 'Definiert, ob auf der Admin-Veranstaltunggseite der Komplett-Status für Veranstaltungen aufgeführt sein soll'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMIN_COURSES_SIDEBAR_ACTIVE_ELEMENTS', '', 'string', 'user', '', 0, 0, 'Diese Einstellung legt fest, welche Elemente in der Seitenleiste der Veranstaltungsübersicht für Admins sichtbar sind.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMIN_COURSES_TEACHERFILTER', '', 'string', 'user', '', 1698855218, 1698855218, 'Der auf der Veranstaltungsübersicht für Admins gewählte Filter auf Lehrende'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMISSION_PRELIM_COMMENT_ENABLE', '1', 'boolean', 'global', '', 1153814966, 1153814966, 'Schaltet ein oder aus, ob ein Nutzer im Modus \"Vorläufiger Eintrag\" eine Bemerkung hinterlegen kann'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('AJAX_AUTOCOMPLETE_DISABLED', '0', 'boolean', 'global', '', 1293118060, 1293118060, 'Sollen alle QuickSearches deaktiviertes Autocomplete haben? Wenn es zu Performanceproblemen kommt, kann es sich lohnen, diese Variable auf true zu stellen.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_ADMIN_RELATED_INST', '0', 'boolean', 'global', 'global', 1640797278, 1640797278, 'Admins beteiligter Einrichtungen haben die gleiche Rechte an Veranstaltungen wie die Heimateinrichtung'); @@ -169,6 +173,7 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_SEND_MESSAGES', '1', 'boolean', 'user', 'Terminvergabe', 1557244743, 1557244743, 'Nachrichten empfangen über Buchungen/Stornierungen'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_SHOW_GROUPED', '1', 'boolean', 'user', 'Terminvergabe', 1640797277, 1640797277, 'Sollen die Termine nach Blöcken sortiert angezeigt werden?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_TAB_TITLE', 'Terminvergabe', 'i18n', 'range', 'Terminvergabe', 1640797277, 1640797277, 'Der Name des Reiters für die Terminvergabe'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONTENTMODULES_TILED_DISPLAY', '1', 'boolean', 'user', '', 1698855218, 1698855218, 'Bevorzugt ein Nutzer eine Kachelansicht auf der Werkzeugseite in den Veranstaltungen oder lieber eine Tabelle?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONVERT_IDNA_URL', '1', 'boolean', 'global', 'global', 1510849314, 1510849314, 'If true, urls with german \"umlauts\" are converted'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSEWARE_FAVORITE_BLOCK_TYPES', '[]', 'array', 'user', '', 1640797279, 1640797279, 'In dieser Konfigurationseinstellung können Nutzende ihre Lieblingsblocktypen speichern.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSEWARE_LAST_ELEMENT', '[]', 'array', 'user', '', 1640797279, 1640797279, 'In dieser Konfigurationseinstellung werden die zuletzt besuchten Elemente in allen Coursewares abgelegt.'); @@ -264,9 +269,10 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_FORCE_GROUPING', 'sem_number', 'string', 'global', '', 1293118059, 1293118059, 'Legt fest, ob die persönliche Veranstaltungsübersicht systemweit zwangsgruppiert werden soll, wenn keine eigene Gruppierung eingestellt ist. Werte: not_grouped, sem_number, sem_tree_id, sem_status, gruppe, dozent_id.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_GROUPING', '', 'string', 'user', '', 1403258015, 1403258015, 'Gruppierung der Veranstaltungsübersicht'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_OPEN_GROUPS', '[]', 'array', 'user', '', 1403258015, 1403258015, 'geöffnete Gruppen der Veranstaltungsübersicht'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_SHOW_NEW_ICONS_ONLY', '0', 'boolean', 'user', 'MeineVeranstaltungen', 1640797277, 1640797277, 'Nur Icons für neue Inhalte sollen angezeigt werden'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_TILED_DISPLAY', '0', 'boolean', 'user', 'MeineVeranstaltungen', 1640797277, 1640797277, 'Hat die Kachelansicht unter \"Meine Veranstaltungen\" aktiviert'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_TILED_DISPLAY_RESPONSIVE', '1', 'boolean', 'user', 'MeineVeranstaltungen', 1640797277, 1640797277, 'Hat die Kachelansicht unter \"Meine Veranstaltungen\" aktiviert (responsiv)'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_SELECTED_CYCLE', '', 'string', 'user', '', 1698855218, 1698855218, 'Das auf der Veranstaltungsübersicht für Admins gewählte Semester'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_SELECTED_STGTEIL', '', 'string', 'user', '', 1698855218, 1698855218, 'Der auf der Veranstaltungsübersicht für Admins gewählte Studiengangsteil'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_TYPE_FILTER', '', 'string', 'user', '', 1698855218, 1698855218, 'Der auf der Veranstaltungsübersicht für Admins gewählte Filter auf Veranstaltungstypen'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_VIEW_SETTINGS', '{\"regular\":{\"tiled\":false,\"only_new\":false},\"responsive\":{\"tiled\":true,\"only_new\":false}}', 'array', 'user', 'MeineVeranstaltungen', 1698855217, 1698855217, 'Konfiguration der Ansicht \"Meine Veranstaltungen\"'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_INSTITUTES_DEFAULT', 'all', 'string', 'user', '', 1403258015, 1403258015, 'Standard Einrichtung in der Veranstaltungsübersicht für Admins'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_INSTITUTES_INCLUDE_CHILDREN', '1', 'boolean', 'user', '', 1530289048, 1530289048, 'Sollen untergeordnete Institute mit angezeigt werden in der Veranstaltungsübersicht für Admins?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('NEWS_DISABLE_GARBAGE_COLLECT', '1', 'boolean', 'global', '', 1123751948, 1123751948, 'Schaltet den Garbage-Collect für News ein oder aus'); @@ -288,6 +294,7 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ONLINE_VISIBILITY_DEFAULT', '1', 'boolean', 'global', 'privacy', 1326799691, 1326799691, 'Sind Nutzer sichtbar in der Wer ist online-Liste, falls sie nichts anderes eingestellt haben?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('OPENGRAPH_ENABLE', '1', 'boolean', 'global', 'global', 1403258018, 1403258018, 'De-/Aktiviert OpenGraph-Informationen und deren Abrufen.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PDF_LOGO', '', 'string', 'global', 'global', 1311411856, 1311411856, 'Geben Sie hier den absoluten Pfad auf Ihrem Server (also ohne http) zu einem Logo an, das bei PDF-Exporten im Kopfbereich verwendet wird.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PERSONAL_DETAILS_INFO_TEXT', 'Einige Ihrer persönlichen Daten werden nicht in Stud.IP verwaltet und können daher hier nicht geändert werden.', 'i18n', 'global', 'global', 1698855217, 1698855217, 'Der Infotext der unter Profil->Persönliche Angaben->Grunddaten angezeigt wird, wenn man nicht die Standard-Auth nutzt.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PERSONAL_NOTIFICATIONS_ACTIVATED', '1', 'boolean', 'global', 'privacy', 1403258015, 1403258015, 'Sollen persönliche Benachrichtigungen aktiviert sein?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PERSONAL_STARTPAGE', '0', 'integer', 'user', '', 1403258015, 1403258015, 'Persönliche Startseite'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PLUGINADMIN_DISPLAY_SETTINGS', '{\"plugin_filter\":null,\"core_filter\":\"yes\"}', 'array', 'user', '', 1483462779, 1483462779, 'Speichert die Darstellungseinstellungen der Pluginadministration'); @@ -303,7 +310,6 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ALLOW_ROOM_REQUESTS', '1', 'boolean', 'global', 'resources', 0, 1100709567, 'Schaltet in der Ressourcenverwaltung das System zum Stellen und Bearbeiten von Raumanfragen ein oder aus'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ALLOW_SINGLE_ASSIGN_PERCENTAGE', '50', 'integer', 'global', 'resources', 0, 1100709567, 'Wert (in Prozent), ab dem ein Raum mit Einzelbelegungen (statt Serienbelegungen) gefüllt wird, wenn dieser Anteil an möglichen Belegungen bereits durch andere Belegungen zu Überschneidungen führt'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ALLOW_SINGLE_DATE_GROUPING', '5', 'integer', 'global', 'resources', 0, 1100709567, 'Anzahl an Einzeltermine, ab der diese als Gruppe zusammengefasst bearbeitet werden'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ALLOW_VIEW_RESOURCE_OCCUPATION', '1', 'boolean', 'global', 'resources', 1462287310, 1462287310, 'Dürfen alle Nutzer Ressourcenbelegungen einsehen?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_BOOKING_PLAN_END_HOUR', '21:00', 'string', 'global', 'resources', 1591630777, 1591630777, 'The start hour for the default view of the booking plan.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_BOOKING_PLAN_START_HOUR', '07:00', 'string', 'global', 'resources', 1591630777, 1591630777, 'The start hour for the default view of the booking plan.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_CONFIRM_PLAN_DRAG_AND_DROP', '0', 'boolean', 'user', 'resources', 1656513808, 1656513808, 'Soll beim Verschieben von Buchungen im Belegungsplan eine Sicherheitsabfrage erscheinen?'); @@ -337,7 +343,6 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SHOW_ADRESSEES_LIMIT', '20', 'string', 'global', 'global', 1530289048, 1530289048, 'Ab wievielen Adressaten dürfen diese aus datenschutzgründen nicht mehr angezeigt werden in einer empfangenen Nachricht?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SHOW_FOLDER_SIZE', '1', 'boolean', 'global', 'files', 1686150733, 1686150733, 'SHOW_FOLDER_SIZE gibt an, ob die Anzahl der Objekte (Dateien und Unterordner) in einem Ordner angezeigt werden sollen.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SHOW_TERMS_ON_FIRST_LOGIN', '1', 'boolean', 'global', 'global', 1510849314, 1510849314, 'If true, the user has to accept the terms on his first login (this feature makes only sense, if you use disable ENABLE_SELF_REGISTRATION).'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SMILEYADMIN_ENABLE', '1', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob die Administration der Smileys verfügbar ist.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SOAP_ENABLE', '0', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Schaltet die SOAP-Schnittstelle an.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SOAP_USE_PHP5', '0', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Sollen PHP-Bibliotheken für SOAP verwendet werden?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SORT_NEWS_BY_CHDATE', 'false', 'boolean', 'global', 'view', 1557244742, 1557244742, 'Wenn diese Einstellung gesetzt ist werden Ankündigungen nach ihrem letzten Änderungsdatum statt ihrem Erstellungsdatum sortiert angezeigt.'); @@ -970,6 +975,7 @@ INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, INSERT INTO `i18n` (`object_id`, `table`, `field`, `lang`, `value`) VALUES('28cb0aeb29e9b3046b6c2e958566d6a5', 'config', 'value', 'en_GB', 'Date allocation'); INSERT INTO `i18n` (`object_id`, `table`, `field`, `lang`, `value`) VALUES('3c28f017886d9acf0b0f654195ec478f', 'config', 'value', 'en_GB', 'Using two-factor authentication you can protect your account by entering a token on each login. You get that token either via E-Mail or by using an appropriate authenticator app.'); +INSERT INTO `i18n` (`object_id`, `table`, `field`, `lang`, `value`) VALUES('698096bc7269ee90517c6f22a8711b4e', 'config', 'value', 'en_GB', 'Some of your personal data is not managed in Stud.IP and therefore cannot be changed here.'); INSERT INTO `i18n` (`object_id`, `table`, `field`, `lang`, `value`) VALUES('e98bde4d61d028203eb3c2c26fa5ac4a', 'config', 'value', 'en_GB', 'Set up a suitable OTP authenticator app for this purpose. Here you will find a list of known and compatible apps:\n- [Authy]https://authy.com/\n- [FreeOTP]https://freeotp.github.io/\n- Google Authenticator: [Android]https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2 oder [iOS]https://apps.apple.com/app/google-authenticator/id388497605\n- [LastPass Authenticator]https://lastpass.com/auth/\n- [Microsoft Authenticator]https://www.microsoft.com/authenticator'); INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-1.0', 'Creative Commons Attribution 1.0 Generic', 'https://creativecommons.org/licenses/by/1.0/legalcode', 0, NULL, 'CC_BY', '1.0', 1640797278, 1640797278); @@ -1024,6 +1030,7 @@ INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('347738302758bea951248b255409fa85', 'MVV_KATEGORIE_UPDATE', 'MVV: Abschluss-Kategorie ändern', '%user ändert Abschluss-Kategorie %abskategorie(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('370db4eb0e38051dd3c5d7c52717215a', 'SEM_DELETE_SINGLEDATE_REQUEST', 'Einzeltermin, Raumanfrage gelöscht', '%user hat in %sem(%affected) die Raumanfrage für den Termin <em>%coaffected</em> gelöscht.', 1, 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('3861d5249b8fe7f2be57adfda8944f4d', 'MVV_LVGRUPPE_UPDATE', 'MVV: LV-Gruppe ändern', '%user ändert LV-Gruppe %lvgruppe(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL); +INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('39082f4fbfe61ff3aee8e93f47bc1722', 'FILE_DELETE', 'Nutzer löscht Datei', '%user löscht Datei %info (File-Id: %affected)', 1, 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('398c62a78ec7e2b72d88cce504c2730f', 'MVV_MODULTEIL_STGTEILABS_NEW', 'MVV: Studiengangteilabschnitt zu Modulteil Zuweisung erstellen', '%user weist den Modulteil %modulteil(%affected) dem Studiengangteilabschnitt %stgteilabs(%coaffected) im %fachsem. Fachsemester zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('3f7dcf6cc85d6fba1281d18c4d9aba6f', 'SEM_ADD_SINGLEDATE', 'Einzeltermin hinzufügen', '%user hat in %sem(%affected) den Einzeltermin <em>%coaffected</em> hinzugefügt', 1, 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('3f9b68eacae768ff01cc1cc2d0d82174', 'MVV_FACHBERATER_NEW', 'MVV: Person zu Fach Zuweisung erstellen', '%user weist dem Studiengangteil %stgteil(%affected) %user(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL); @@ -1043,12 +1050,15 @@ INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('4dd6b4101f7bf3bd7fe8374042da95e9', 'USER_NEWPWD', 'Neues Passwort', '%user generiert neues Passwort für %user(%affected)', 1, 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('4e2cf05ca311e5a616a7612ce8f5a885', 'MVV_MODULTEIL_STGTEILABS_DEL', 'MVV: Studiengangteilabschnitt zu Modulteil Zuweisung löschen', '%user löscht die Zuweisung des Modulteils %modulteil(%affected) im %fachsem. des Studiengangteilabschnitt %stgteilabs(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('535010528d6c012ec0e3535e2d754f66', 'SEM_USER_ADD', 'In Veranstaltung eingetragen', '%user hat %user(%coaffected) für %sem(%affected) mit dem status %info eingetragen. (%dbg_info)', 0, 0, NULL, NULL, NULL, NULL, NULL); +INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('54fb2968cd737ed53f300864ee507260', 'USER_UNLOCK', 'Nutzer wird entsperrt', '%user entsperrt %user(%affected) (%info)', 1, 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('566a614092e9f502d9340467ecef59d1', 'MVV_STGTEILVERSION_UPDATE', 'MVV: Studiengangteilversion ändern', '%user ändert Studiengangteilversion %version(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('5a34b0ea6a824f96c0117a035d1cf9e9', 'MVV_DOKUMENT_UPDATE', 'MVV: Dokument ändern', '%user ändert Dokument %dokument(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('5b96f2fe994637253ba0fe4a94ad1b98', 'SEM_ARCHIVE', 'Veranstaltung archivieren', '%user archiviert %info (ID: %affected).', 1, 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('5f8fda12a4c0bd6eadbb94861de83696', 'SEM_ADD_CYCLE', 'Regelmäßige Zeit hinzugefügt', '%user hat in %sem(%affected) die regelmäßige Zeit %info hinzugefügt.', 1, 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('5fd9b4ddb5c4e035c0b0e7751613cd94', 'MVV_STGTEILABS_MODUL_NEW', 'MVV: Stgteilabschnitt-Modul Zuweisung erstellen', '%user weist dem Studiengangteilabschnitt %stgteilabs(%affected) dem Modul %Modul(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL); +INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('63031a1eb903c1092752521ccf4b7456', 'FOLDER_DELETE', 'Nutzer löscht Ordner', '%user löscht Datei %info (Folder-Id: %affected)', 1, 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('63042706e5cd50924987b9515e1e6cae', 'INST_USER_ADD', 'Benutzer zu Einrichtung hinzufügen', '%user fügt %user(%coaffected) zu Einrichtung %inst(%affected) mit Status %info hinzu.', 1, 0, NULL, NULL, NULL, NULL, NULL); +INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('64c30d6741b4799dc06456cb8b5fbab9', 'USER_LOCK', 'Nutzer wird gesperrt', '%user sperrt %user(%affected) (%info)', 1, 0, NULL, NULL, NULL, NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('65c495cf5d5fcd7af862106bf13cff23', 'MVV_STGTEIL_UPDATE', 'MVV: Studiengangteil ändern', '%user ändert Studiengangteil %stgteil(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('687433f4cf1b36cb93ad417738236484', 'MVV_STGTEILABS_UPDATE', 'MVV: Studiengangteilabschnitt ändern', '%user ändert Studiengangteilabschnitt %stgteilabs(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL); INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('6af3ec5cc886036fd7795a66035a7cbd', 'MIGRATE_DOWN', 'Migration wird zurückgenommen', '%user hat Migration %affected zurückgenommen (Domain: %coaffected)', 1, 0, NULL, NULL, NULL, 1640797279, 1640797279); @@ -1376,11 +1386,12 @@ INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(6, 'tutor'); INSERT INTO `roles_user` (`roleid`, `userid`, `institut_id`) VALUES(7, 'nobody', ''); INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '1', 327); -INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.1', 48); +INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.1', 52); INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.2', 15); -INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.3', 19); +INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.3', 21); +INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.4', 15); -INSERT INTO `semester_data` (`semester_id`, `name`, `description`, `semester_token`, `beginn`, `ende`, `sem_wechsel`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`, `mkdate`, `chdate`) VALUES('322f640f3f4643ebe514df65f1163eb1', 'SS 2023', '', '', 1680300000, 1696111199, NULL, 1681164000, 1689371999, 1, '', NULL, 1669041706); +INSERT INTO `semester_data` (`semester_id`, `name`, `description`, `semester_token`, `beginn`, `ende`, `sem_wechsel`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`, `mkdate`, `chdate`) VALUES('322f640f3f4643ebe514df65f1163eb1', 'SS 2024', '', '', 1711922400, 1727733599, NULL, 1712527200, 1720821599, 1, '', NULL, 1698856529); INSERT INTO `semester_data` (`semester_id`, `name`, `description`, `semester_token`, `beginn`, `ende`, `sem_wechsel`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`, `mkdate`, `chdate`) VALUES('4967f0a483e36554b77e3dc47aa58941', 'WS 2023/2024', '', '', 1696111200, 1711922399, NULL, 1698012000, 1707519599, 1, '', NULL, 1686151054); INSERT INTO `semester_holiday` (`holiday_id`, `semester_id`, `name`, `description`, `beginn`, `ende`, `mkdate`, `chdate`) VALUES('704038f0cb3ea0a285ba0a453788ebed', '', 'Unterbrechung', '', 1703286000, 1704495599, NULL, 1686151122); @@ -1405,14 +1416,13 @@ INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(12, ' INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(13, 'sonstige', 3, 1366882120, 1366882120); INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(99, 'Studiengruppe', 99, 1366882120, 1366882120); -INSERT INTO `session_data` (`sid`, `val`, `changed`) VALUES('193b0220a1d154da77f9d542d954218b', 0x617574687c4f3a32303a2253656d696e61725f44656661756c745f41757468223a323a7b733a343a2261757468223b613a383a7b733a333a22756964223b733a33323a223736656434336566323836666235356366396534316265616462343834613966223b733a343a227065726d223b733a343a22726f6f74223b733a353a22756e616d65223b733a31313a22726f6f7440737475646970223b733a373a226a736372697074223b623a313b733a31363a22646576696365506978656c526174696f223b643a312e3130303030303032333834313835383b733a31313a22617574685f706c7567696e223b733a383a227374616e64617264223b733a343a2278726573223b693a313932303b733a343a2279726573223b693a313230303b7d733a393a22636c6173736e616d65223b733a32303a2253656d696e61725f44656661756c745f41757468223b7d666f726365645f6c616e67756167657c4e3b5f6c616e67756167657c733a353a2264655f4445223b636f6e74726173747c4e3b6f61757468327c4e3b706c7567696e735f64697361626c65647c4e3b747261696c735f666c6173687c4f3a31323a22547261696c735f466c617368223a323a7b733a353a22666c617368223b613a303a7b7d733a343a2275736564223b613a303a7b7d7d53657373696f6e53746172747c693a313638363135303633333b6f626a6563745f63616368657c613a303a7b7d5f64656661756c745f73656d7c733a33323a223332326636343066336634363433656265353134646636356631313633656231223b7466612f6661696c65647c613a303a7b7d6d6967726174696f6e2d636865636b7c613a333a7b733a383a2264697361626c6564223b623a303b733a393a2274696d657374616d70223b693a313638363135313035343b733a353a22636f756e74223b693a303b7d73656375726974795f746f6b656e7c733a34343a224b305064763965334c784c57516b303050674d6f686d495062383438796e7634514768582b666c557477413d223b6163746976655f746f75727c613a353a7b733a373a22746f75725f6964223b733a33323a226138343837343462646534646163343765633265386233383331353533383164223b733a373a22737465705f6e72223b733a313a2231223b733a31303a226c6173745f726f757465223b733a31383a2264697370617463682e7068702f7374617274223b733a31343a2270726576696f75735f726f757465223b733a303a22223b733a31303a226e6578745f726f757465223b733a32333a2264697370617463682e7068702f6d795f636f7572736573223b7d517569636b53656172636865737c613a313a7b733a33323a223037613237366634376234613232383265633265616665373864366665636261223b613a333a7b733a343a2274696d65223b693a313638363135303930383b733a363a226f626a656374223b733a3834383a224f3a31343a225374616e64617264536561726368223a363a7b733a363a22736561726368223b733a373a22757365725f6964223b733a31353a227365617263685f73657474696e6773223b613a303a7b7d733a363a22002a0073716c223b733a3636363a2253454c4543542044495354494e435420617574685f757365725f6d64352e757365725f69642c20434f4e43415428617574685f757365725f6d64352e4e6163686e616d652c20272c20272c20617574685f757365725f6d64352e566f726e616d652c20272028272c20617574685f757365725f6d64352e757365726e616d652c20272927292c20617574685f757365725f6d64352e7065726d732046524f4d20617574685f757365725f6d6435204c454654204a4f494e20757365725f696e666f204f4e2028757365725f696e666f2e757365725f6964203d20617574685f757365725f6d64352e757365725f696429204c454654204a4f494e20757365725f7669736962696c697479204f4e2028757365725f7669736962696c6974792e757365725f6964203d20617574685f757365725f6d64352e757365725f6964292057484552452028434f4e43415428617574685f757365725f6d64352e566f726e616d652c202720272c20617574685f757365725f6d64352e4e6163686e616d6529204c494b45205245504c414345283a696e7075742c202720272c202725202729204f5220434f4e43415428617574685f757365725f6d64352e4e6163686e616d652c202720272c20617574685f757365725f6d64352e566f726e616d6529204c494b45205245504c414345283a696e7075742c202720272c202725202729204f5220434f4e43415428617574685f757365725f6d64352e4e6163686e616d652c20272c20272c20617574685f757365725f6d64352e566f726e616d6529204c494b45203a696e707574204f5220617574685f757365725f6d64352e757365726e616d65204c494b45203a696e7075742920414e442031204f52444552204259204e6163686e616d65204153432c20566f726e616d6520415343223b733a31333a22002a006176617461724c696b65223b733a373a22757365725f6964223b733a383a22002a007469746c65223b4e3b733a31343a22657874656e6465644c61796f7574223b623a313b7d223b733a31313a22696e636c75646550617468223b733a34383a226c69622f636c61737365732f73656172636874797065732f5374616e646172645365617263682e636c6173732e706870223b7d7d5f6d61726b65645f6974656d7c4e3b, '2023-06-07 15:18:50'); - INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(1, 1, NULL, '[lang=de]Ansprechpartner[/lang][lang=en]Contact[/lang]', '[style=float: right]\r\n[img]https://develop.studip.de/logos/logoklein.png\r\n**Version:** (:version:)\r\n[/style]\r\n[lang=de]Für diese Stud.IP-Installation ((:uniname:)) sind folgende Administratoren zuständig:[/lang]\r\n[lang=en]The following administrators are responsible for this Stud.IP installation ((:uniname:)):[/lang]\r\n(:rootlist:)\r\n[lang=de]allgemeine Anfragen wie Passwort-Anforderungen u.a. richten Sie bitte an:[/lang]\r\n[lang=en]General queries e.g., password queries, please contact:[/lang]\r\n(:unicontact:)\r\n[lang=de]Folgende Einrichtungen sind beteiligt:\r\n(Genannt werden die jeweiligen Administratoren der Einrichtungen für entsprechende Anfragen)[/lang]\r\n[lang=en]The following institutes participate:\r\n(Named are the institutes administrators responsible for the corresponding query areas)[/lang]\r\n(:adminlist:)'); INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(2, 1, NULL, '[lang=de]Entwickler[/lang][lang=en]Developer[/lang]', '[style=float: right]\r\n\r\n[img]https://develop.studip.de/logos/logoklein.png\r\n\r\n**Version:** (:version:)\r\n\r\n[/style]\r\n\r\n[lang=de]Stud.IP ist ein Open Source Projekt zur Unterstützung von Präsenzlehre an Universitäten, Hochschulen und anderen Bildungseinrichtungen. Das System entstand am Zentrum für interdisziplinäre Medienwissenschaft (ZiM) der Georg-August-Universität Göttingen unter Mitwirkung der Suchi & Berg GmbH (data-quest) , Göttingen. Heute erfolgt die Weiterentwicklung von Stud.IP verteilt an vielen Standorten (Göttingen, Osnabrück, Oldenburg, Bremen, Hannover, Jena und weiteren). Die Koordination der Entwicklung erfolgt durch die Stud.IP-CoreGroup.\r\n\r\nStud.IP steht unter der GNU General Public License, Version 2.\r\n\r\n\r\n\r\nWeitere Informationen finden sie auf ** [www.studip.de]http://www.studip.de **,**  [develop.studip.de]http://develop.studip.de **.[/lang]\r\n\r\n\r\n\r\n[lang=en]Stud.IP is an opensource project for supporting attendance courses offered by universities, institutions of higher education and other educational institutions. The system was established at the Zentrum für interdisziplinäre Medienwissenschaft (ZiM) in the Georg-August-Universität Göttingen in cooperation with Suchi & Berg GmbH (data-quest) , Göttingen. At the present further developing takes place at various locations (among others Göttingen, Osnabrück, Oldenburg, Bremen, Hannover, Jena) under coordination through the Stud.IP-CoreGroup.\r\n\r\n\r\n\r\nStud.IP is covered by the GNU General Public Licence, version 2.\r\n\r\n\r\n\r\nFurther information can be found under ** [www.studip.de]http://www.studip.de **,**  [develop.studip.de]http://develop.studip.de **.[/lang]\r\n\r\n\r\n\r\n(:coregroup:)\r\n\r\n[lang=de]Sie erreichen uns auch über folgende **Mailinglisten**:\r\n\r\n\r\n\r\n**Nutzer-Anfragen**, E-Mail: studip-users@lists.sourceforge.net : Fragen, Anregungen und Vorschläge an die Entwickler - bitte __keine__ Passwort Anfragen!\r\n\r\n**News-Mailingsliste**, E-Mail: studip-news@lists.sourceforge.net : News rund um Stud.IP (Eintragung notwendig)\r\n\r\n\r\n\r\nWir laden alle Entwickler, Betreiber und Nutzer von Stud.IP ein, sich auf dem Developer-Server http://develop.studip.de an den Diskussionen rund um die Weiterentwicklung und Nutzung der Plattform zu beteiligen.[/lang]\r\n\r\n[lang=en]You can contact us via the following **mailing lists**:\r\n\r\n\r\n\r\n**User enquiries**, E-Mail: studip-users@lists.sourceforge.net : Questions, suggestions and recommendations to the developers - __please no password queries__!\r\n\r\n\r\n\r\n**News mailing list**, E-Mail: studip-news@lists.sourceforge.net : News about Stud.IP (registration necessary)\r\n\r\n\r\n\r\nWe invite all developers, administrators and users of Stud.IP to join the discussions on further developing and using the platform available at the developer server http://develop.studip.de[/lang]'); INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(3, 2, NULL, '[lang=de]Technik[/lang][lang=en]Technology[/lang]', '[style=float: right]\r\n[img]https://develop.studip.de/logos/logoklein.png\r\n**Version:** (:version:)\r\n[/style]\r\n[lang=de]Stud IP ist ein Open-Source Projekt und steht unter der GNU General Public License. Sämtliche zum Betrieb notwendigen Dateien können unter http://sourceforge.net/projects/studip/ heruntergeladen werden.\r\nDie technische Grundlage bietet ein LINUX-System mit Apache Webserver sowie eine MySQL Datenbank, die über PHP gesteuert wird.\r\nIm System findet ein 6-stufiges Rechtesystem Verwendung, das individuell auf verschiedenen Ebenen wirkt - etwa in Veranstaltungen, Einrichtungen, Fakultäten oder systemweit.\r\n\r\nDas System wird ständig weiterentwickelt und an die Wünsche unserer Nutzer angepasst - [sagen Sie uns Ihre Meinung!]studip-users@lists.sourceforge.net[/lang]\r\n[lang=en]Stud.IP is an Open Source Project and is covered by the Gnu General Public License (GPL). All files necessary for operation can be downloaded from http://sourceforge.net/projects/studip/ .\r\nThe technical basis can be provided by a LINUX system with Apache Webserver and a MySQL database, which is then controlled by PHP.\r\nThe system features a authorisation system with six ranks, that affects individually different levels - in courses, institutes,faculties or system wide.\r\n\r\nThe system is continually being developed and customised to the wishes of our users - [Tell us your opinion!]studip-users@lists.sourceforge.net[/lang]'); INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(4, 2, NULL, '[lang=de]Statistik[/lang][lang=en]Statistics[/lang]', '[lang=de]!!Top-Listen aller Veranstaltungen[/lang][lang=en]!!Top list of all courses[/lang]\n[style=float: right]\n[lang=de]!!Statistik[/lang][lang=en]!!statistics[/lang]\n(:indicator seminar_all:)\n(:indicator seminar_archived:)\n(:indicator institute_firstlevel_all:)\n(:indicator institute_secondlevel_all:)\n(:indicator user_admin:)\n(:indicator user_dozent:)\n(:indicator user_tutor:)\n(:indicator user_autor:)\n(:indicator posting:)\n(:indicator document:)\n(:indicator link:)\n(:indicator litlist:)\n(:indicator termin:)\n(:indicator news:)\n(:indicator guestbook:)\n(:indicator vote:)\n(:indicator test:)\n(:indicator evaluation:)\n(:indicator wiki_pages:)\n(:indicator lernmodul:)\n(:indicator resource:)\n[/style]\n(:toplist mostparticipants:)\n(:toplist recentlycreated:)\n(:toplist mostdocuments:)\n(:toplist mostpostings:)\n(:toplist mostvisitedhomepages:)'); INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(5, 2, NULL, 'History', '(:history:)'); INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(7, 1, NULL, 'Datenschutzerklärung', '++**Datenschutzerklärung**++\n\nSie erhalten als Nutzer/-in unserer Internetseite in dieser Datenschutzerklärung notwendige Informationen darüber, wie und in welchem Umfang sowie zu welchem Zweck die **[Betreibereinrichtung]** Daten von Ihnen erhebt und wie diese verwendet werden. Die Daten werden nur innerhalb der **[Betreibereinrichtung]** verarbeitet und verwendet und nicht an Dritte weitergegeben.\n\n\n++**Rechtsgrundlagen**++\n\nDie Erhebung und Nutzung Ihrer Daten erfolgt streng nach den gesetzlichen Vorgaben. Regelungen dazu finden sich in:\nEuropäische Datenschutzgrundverordnung (EU DSGVO)\nBundesdatenschutzgesetz (BDSG)\nNiedersächsisches Datenschutzgesetz (NDSG)\nTeledienstegesetz (TDG)\nMediendienste-Staatsvertrag (MDStV)\nTeledienstedatenschutzgesetz (TDDSG).\n\n\n++**Personenbezogene Daten**++\n\nPersonenbezogene Daten werden zum Zwecke der administrativen Nutzerverwaltung, zur Kontaktaufnahme und Interaktion mit Ihnen sowie zur Bereitstellung personalisierter Dienste [zur Durchführung Ihres Studium bzw. Ihrer Arbeit an **[Betreibereinrichtung]**] von uns gespeichert.\nFür die Nutzung von Stud.IP werden folgende Daten abgefragt und gespeichert:\n- Nutzername\n- Vorname, Nachname\n- Mailadresse\n- [ggf. weitere Daten]\n\n\nWeitere Daten, die evtl. Ihnen gespeichert werden, sind Inhalte, die Sie selbst im Rahmen Ihrer Arbeit oder Ihres Studiums in Stud.IP einstellen. Dazu gehören:\n- Freiwillige Angaben zur Person\n- Beiträge in Foren\n- hochgeladene Dateien\n- Chatverläufe in Blubber\n- interne Nachrichten\n- Kalendereinträge und Stundenpläne\n- Teilnahme an Lehrveranstaltungen, Studiengruppen, Orgagremien\n- Persönliche Einstellungen und Konfigurationen\n- [ggf. Plugindaten]\n\n\nDiese Inhalte werden mit Ihrem Klarnamen gespeichert und angezeigt. Sie haben die Möglichkeit über die Privatsphäreeinstellungen selbst zu bestimmen, ob und ggf. welche Personengruppen diese Daten sehen dürfen. Diese Daten werden von Stud.IP intern verschlüsselt abgelegt.\n\n\n++**Aufbewahrungsfristen **++\n\nIhre personenbezogenen Daten werden für die Dauer Ihres Studiums/Ihrer Arbeit bei [Beitreibereinrichtung] gespeichert. Nach Beendigung ihrer Tätigkeit und Ablauf der gesetzlichen Aufbewahrungsfristen werden Ihre Daten gelöscht.\n\n\n++**Auskunft, Löschung, Sperrung**++\n\nSie erhalten jederzeit auf Anfrage Auskunft über die von uns über Sie gespeicherten personenbezogenen Daten sowie dem Zweck von Datenerhebung sowie Datenverarbeitung. Bitte wenden Sie sich hierzu an o.g. Kontaktadresse.\n\nAußerdem haben Sie das Recht, die Berichtigung, die Sperrung oder Löschung Ihrer Daten zu verlangen. Sie können Ihre Einwilligung ohne Angabe von Gründen durch Schreiben an die o.g. Kontakadresse widerrufen. Ihre Daten werden dann umgehend gelöscht. Eine weitere Nutzung der Lernplattform Stud.IP ist dann aber nicht mehr möglich.\n\nAusgenommen von der Löschung sind Daten, die aufgrund gesetzlicher Vorschriften aufbewahrt oder zur ordnungsgemäßen Geschäftsabwicklung benötigt werden. Damit eine Datensperre jederzeit realisiert werden kann, werden Daten zu Kontrollzwecken in einer Sperrdatei vorgehalten.\n\nWerden Daten nicht von einer gesetzlichen Archivierungspflicht erfasst, löschen wir Ihre Daten auf Ihren Wunsch. Greift die Archivierungspflicht, sperren wir Ihre Daten. Für alle Fragen und Anliegen zur Berichtigung, Sperrung oder Löschung von personenbezogenen Daten wenden Sie sich bitte an unsere Datenschutzbeauftragten unter den Kontaktdaten in dieser Datenschutzerklärung bzw. an die im Impressum genannte Adresse.\n\n\n++**Datenübertragbarkeit**++\n\nSie haben das Recht, jederzeit Ihre Daten ausgehändigt zu bekommen. Auf Anfrage stellen wir Ihnen Ihre Daten in menschenlesbaren, gängigen und bearbeitbaren Formaten zur Verfügung.\n\n\n++**Cookies**++\n\nStud.IP verwendet ein Session-Cookie. Diese kleine Textdatei beinhaltet lediglich eine verschlüsselte Zeichenfolge, die bei der Navigation im System hilft. Das Cookie wird bei der Abmeldung aus Stud.IP oder beim Schließen des Browsers gelöscht.\n\n\n++**Server Logfiles**++\n\nMit dem Zugriff auf Stud.IP werden IP-Adresse, Datum, Uhrzeit und Browserversion zum Zeitpunkt des Zugriffs registriert und anonymisiert gespeichert. Die Erhebung und Nutzung dieser Log-File-Daten dient lediglich der Auswertung zu rein statistischen Forschungs- und Evaluationszwecken der Lernplattform, werden also nicht in Verbindung mit Namen oder Mailadresse gespeichert oder ausgewertet. Diese Daten werden für die Zeit von [X] Monaten auf gesicherten Systemen der **[Betreibereinrichtung]** gespeichert und ebenfalls nicht an Dritte weitergegeben.\n\n\n++**SSL-Verschlüsselung**++\n\nDie Verbindung zu Stud.IP erfolgt mit einer SSL-Verschlüsselung. Über SSL verschlüsselte Daten sind nicht von Dritten lesbar. Übermitteln Sie Ihre vertraulichen Informationen nur bei aktivierter SSL-Verschlüsselung und wenden Sie sich im Zweifel an uns.\n\n\n++Kontaktdaten:++\n**Name:**\n**Telefonnummer:**\n**E-Mail-Adresse:**\n**Unternehmensbezeichnung:**\n\n++Datenschutzbeauftragte/-r:++\n**Name:**\n**Telefonnummer:**\n**E-Mail-Adresse:**\n**Unternehmensbezeichnung:**\n\n\n'); +INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(8, 1, NULL, 'Barrierefreiheitserklärung', '<!--HTML-->[lang=de]\n<h1>Mustertext Erklärung zur Barrierefreiheit für Stud.IP</h1>\n\n<p>[Text in eckigen Klammern ist ggf. zu ergänzen, zu streichen oder sprachlich anzupassen, je nachdem, wie das Ergebnis der Überprüfung der Barrierefreiheit ausfällt.]</p>\n\n<p>Diese Erklärung zur Barrierefreiheit gilt für die Stud.IP-Installation unter der [URL der ergänzen; bitte Version und Datum angeben] der [Betreiber der Stud.IP-Installation ergänzen].</p>\n\n<p>Als öffentliche Stelle im Sinne der Richtlinie (EU) 2016/2102 sind wir bemüht, unsere Websites und mobilen Anwendungen im Einklang mit den Bestimmungen des Behindertengleichstellungsgesetzes des Bundes (BGG) sowie der Barrierefreien-Informationstechnik-Verordnung (BITV 2.0) zur Umsetzung der Richtlinie (EU) 2016/2102 barrierefrei zugänglich zu machen.</p>\n\n<p>[Hier ggf. jeweilige Landesverordnung zusätzlich einfügen, z.B. für Niedersachsen <em>§ 9 NBGG.</em>]</p>\n\n<h2>Stand der Vereinbarkeit mit den Anforderungen</h2>\n\n<p>Die Anforderungen der Barrierefreiheit ergeben sich aus §§ 3 Absätze 1 bis 4 und 4 der BITV 2.0, die auf der Grundlage von § 12d BGG erlassen wurde.</p>\n\n<p>Die Überprüfung der Einhaltung der Anforderungen beruht auf</p>\n\n<p>einer von Materna Information & Communications SE im Zeitraum von Ende Januar bis Anfang Februar 2021 vorgenommenen Bewertung. Maßstab der Prüfung ist die EN 301 549 und der A sowie AA Status der WCAG 2.1. Überprüft wurden die Vorgaben der WCAG 2.1 (Konformitätsstufen A und AA) anhand der 60 Prüfschritte des BITV/WCAG-Tests.</p>\n\n<p>Die Überprüfung bezieht sich auf das Stud.IP-Release 4.6. [Plugins und Inhalte müssen standortspezifisch geprüft und ggf. dokumentiert/diese Erklärung angepasst werden. Bitte ggf. ergänzen.]</p>\n\n<p>Diese Stud.IP-Installation ist nicht vollständig mit den für uns geltenden Vorschriften zur Barrierefreiheit vereinbar. Im Einzelnen:</p>\n\n<ul>\n <li>\n <p>Überschriftenhierarchien werden auf manchen Seiten nicht vollständig eingehalten.</p>\n </li>\n <li>\n <p>Für Bilder, Bedienelemente und grafische Elemente sind in manchen Fällen keine, falsche oder unzureichende Alternativen vorhanden.</p>\n </li>\n <li>\n <p>Grafiken und Bedienelementen fehlen in manchen Fällen korrekte Auszeichnungen, so dass sie von Assistenzsystemen nicht richtig erfasst werden können.</p>\n </li>\n <li>\n <p>Die Sprache in Alternativtexten ist teilweise in Englisch angegeben ohne das der Sprachwechsel korrekt ausgezeichnet ist.</p>\n </li>\n <li>\n <p>Listeneinträge, Tabellen(-spalten) und Formulare sind teilweise nicht korrekt ausgezeichnet.</p>\n </li>\n <li>\n <p>Die sichtbare Reihenfolge von Seitenelementen weicht teilweise von der Reihenfolge im Quelltext ab.</p>\n </li>\n <li>\n <p>Die Mindestanforderung an Kontraste ist nicht überall erfüllt.</p>\n </li>\n <li>\n <p>Die Tastatursteuerung ist nicht uneingeschränkt benutzbar.</p>\n </li>\n <li>\n <p>Auf der Startseite fehlt die Bereitstellung der Erläuterungen über die Website in Leichter Sprache und in Deutscher Gebärdensprache.</p>\n </li>\n</ul>\n\n<p>Zudem können von Nutzerinnen und Nutzern eingestellte Inhalte, z.B. PDFs oder Videos, Barrieren aufweisen.</p>\n\n<p>Stud.IP wird derzeit in Bezug auf Barrierefreiheit überarbeitet. Folgende Maßnahmen zur Verringerung von Barrieren werden voraussichtlich in das Release von Stud.IP 5.1 und 5.2 einfließen:</p>\n\n<ul>\n <li>\n <p>Attribute und Alternativtexte werden hinzugefügt und korrigiert, damit Screen Reader Schaltflächen, Links, Bedienelemente und Grafiken korrekt interpretieren und passende Texte ausgeben können.</p>\n </li>\n <li>\n <p>Die Hierarchien von Überschriften und Reihenfolge von Seitenelementen werden überarbeitet/korrigiert.</p>\n </li>\n <li>\n <p>Sprachauszeichnungen werden vereinheitlicht.</p>\n </li>\n <li>\n <p>Listeneinträge, Tabellen(-spalten) und Formulare werden korrekt ausgezeichnet und sinnvoll verknüpft.</p>\n </li>\n <li>\n <p>Eine Möglichkeit den Kontrast zu verändern, wird implementiert.</p>\n </li>\n <li>\n <p>Die Tastatursteuerung korrigiert.</p>\n </li>\n <li>\n <p>Aktionsmenüs und Akkordeonelemente werden überarbeitet.</p>\n </li>\n <li>\n <p>Die responsive Navigation wird verbessert.</p>\n </li>\n</ul>\n\n<p>Folgende Inhalte sind aufgrund der Absicht, ein höheres Maß an digitaler Barrierefreiheit als gesetzlich gefordert umzusetzen, realisiert:<br />\n[Geben Sie die jeweiligen Inhalte an]</p>\n\n<h2>Datum der Erstellung bzw. der letzten Aktualisierung der Erklärung</h2>\n\n<p>Diese Erklärung wurde am [09/2021] erstellt und zuletzt am [Datum] aktualisiert.</p>\n\n<h2>Barrieren melden: Kontakt zu den Feedback Ansprechpartnern</h2>\n\n<p>Sie möchten uns bestehende Barrieren mitteilen oder Informationen zur Umsetzung der Barrierefreiheit erfragen? Für Ihr Feedback sowie alle weiteren Informationen sprechen Sie unsere verantwortlichen Kontaktpersonen unter xxx an.</p>\n\n<p>[verlinkte URL mit Namen des Feedback-Mechanismus, z. B. „Barrieren melden“ angeben. Dabei sollte der Leitfaden „Erklärung zur Barrierefreiheit“ und der Leitfaden „Feedback-Mechanismus“ beachtet werden]</p>\n\n<h2>Schlichtungsverfahren</h2>\n\n<p>[Nicht zutreffende Stelle streichen ggf. Stelle Ihres Bundeslandes einfügen]</p>\n\n<p>Wenn auch nach Ihrem Feedback an den oben genannten Kontakt keine zufriedenstellende Lösung gefunden wurde, können Sie sich an die Schlichtungsstelle nach § 16 BGG wenden. Die Schlichtungsstelle BGG hat die Aufgabe, bei Konflikten zum Thema Barrierefreiheit zwischen Menschen mit Behinderungen und öffentlichen Stellen des Bundes eine außergerichtliche Streitbeilegung zu unterstützen. Das Schlichtungsverfahren ist kostenlos. Es muss kein Rechtsbeistand eingeschaltet werden. Weitere Informationen zum Schlichtungsverfahren und den Möglichkeiten der Antragstellung erhalten Sie unter: <u><a href=\"http://www.schlichtungsstelle-bgg.de/\">www.schlichtungsstelle-bgg.de</a></u>.</p>\n\n<p>Direkt kontaktieren können Sie die Schlichtungsstelle BGG unter <u><a href=\"mailto:info@schlichtungsstelle-bgg.de\">info@schlichtungsstelle-bgg.de</a></u>.</p>\n(:reportbarrierlink:)[/lang]\n\n[lang=en]\n<!--HTML-->\n<h1>Sample Text Accessibility Statement</h1>\n\n<p>[Text in square brackets may need to be added, deleted, or linguistically adjusted depending on the outcome of the accessibility review].</p>\n\n<p>This accessibility statement applies to the Stud.IP installation at the [add URL of; please specify version and date] of the [add operator of Stud.IP installation].</p>\n\n<p>As a public body within the meaning of Directive (EU) 2016/2102, we strive to make our websites and mobile applications accessible in accordance with the provisions of the Federal Disability Equality Act (BGG) and the Barrier-Free Information Technology Ordinance (BITV 2.0) implementing Directive (EU) 2016/2102.</p>\n\n<p>[Here, if necessary, insert the respective state ordinance additionally, e.g. for Lower Saxony § 9 NBGG].</p>\n\n<h2>Status of compatibility with the requirements</h2>\n\n<p>The accessibility requirements result from §§ 3 paragraphs 1 to 4 and 4 of BITV 2.0, which was issued on the basis of § 12d BGG.</p>\n\n<p>The review of compliance with the requirements is based on</p>\n\n<p>an assessment performed by Materna Information & Communications SE in the period from the end of January to the beginning of February 2021. The benchmark for the test is EN 301 549 and the A and AA status of WCAG 2.1. The requirements of WCAG 2.1 (conformance levels A and AA) were checked using the 60 test steps of the BITV/WCAG test.</p>\n\n<p>The check refers to Stud.IP release 4.6. [Plugins and content must be checked site-specifically and documented/adapted to this statement if necessary. Please add if necessary].</p>\n\n<p>This Stud.IP installation is not fully compliant with the accessibility regulations that apply to us. In detail:</p>\n\n<ul>\n <li>\n <p>Heading hierarchies are not fully respected on some pages.</p>\n </li>\n <li>\n <p>In some cases, there are no, incorrect or insufficient alternatives for images, control elements and graphical elements.</p>\n </li>\n <li>\n <p>Graphics and control elements lack correct markup in some cases, so that they cannot be correctly detected by assistance systems.</p>\n </li>\n <li>\n <p>The language in alternative texts is sometimes specified in English without the language change being correctly marked.</p>\n </li>\n <li>\n <p>List entries, tables (columns) and forms are sometimes not correctly labeled.</p>\n </li>\n <li>\n <p>The visible order of page elements sometimes differs from the order in the source text.</p>\n </li>\n <li>\n <p>The minimum requirement for contrasts is not met everywhere.</p>\n </li>\n <li>\n <p>The keyboard control is not fully usable.</p>\n </li>\n <li>\n <p>The home page lacks the provision of explanations about the website in plain language and in German sign language.</p>\n </li>\n</ul>\n\n<p>In addition, content posted by users, e.g. PDFs or videos, may have barriers.<br />\n </p>\n\n<p>Stud.IP is currently being revised with regard to accessibility. The following measures to reduce barriers are expected to be included in the release of Stud.IP 5.1 and 5.2:</p>\n\n<ul>\n <li>\n <p>Attributes and alternative texts are added and corrected so that screen readers can correctly interpret buttons, links, controls and graphics and output appropriate texts.</p>\n </li>\n <li>\n <p>Heading hierarchies and page element order are revised/corrected.</p>\n </li>\n <li>\n <p>Language mark-ups will be standardized.</p>\n </li>\n <li>\n <p>List entries, tables (columns) and forms will be labelled correctly and linked in a meaningful way.</p>\n </li>\n <li>\n <p>A possibility to change the contrast is implemented.</p>\n </li>\n <li>\n <p>The keyboard control is corrected.</p>\n </li>\n <li>\n <p>Action menus and accordion elements are revised.</p>\n </li>\n <li>\n <p>Responsive navigation will be improved.</p>\n </li>\n <li>\n <p>The following content is implemented due to the intention to implement a higher level of digital accessibility than required by law:</p>\n </li>\n</ul>\n\n<p>[Specify the respective content]</p>\n\n<h2>Date of preparation or last update of the declaration</h2>\n\n<p>This statement was created on [09/2021] and last updated on [date].</p>\n\n<h2>Report Barriers: Contact Feedback Contacts</h2>\n\n<p>Would you like to report existing barriers or request information on implementing accessibility? For your feedback as well as any further information, please contact our responsible contact persons at xxx.</p>\n\n<p>[provide linked URL with name of feedback mechanism, e.g. \"Report barriers\". The \"Accessibility Statement\" guide and the \"Feedback Mechanism\" guide should be followed].</p>\n\n<h2>Arbitration</h2>\n\n<p>[Delete non-applicable body, if necessary insert body of your federal state].</p>\n\n<p>If a satisfactory solution has not been found even after you have sent feedback to the above-mentioned contact, you can turn to the conciliation body pursuant to Section 16 BGG. The BGG conciliation body is tasked with supporting out-of-court dispute resolution in the event of conflicts on the topic of accessibility between people with disabilities and federal public agencies. The conciliation procedure is free of charge. No legal counsel needs to be involved. For more information on the conciliation process and how to submit a request, visit: www.schlichtungsstelle-bgg.de.</p>\n\n<p>You can contact the BGG conciliation body directly at <u><a href=\"mailto:info@schlichtungsstelle-bgg.de\">info@schlichtungsstelle-bgg.de</a></u>.</p>\n(:reportbarrierlink:)[/lang]'); INSERT INTO `siteinfo_rubrics` (`rubric_id`, `position`, `name`) VALUES(1, NULL, '[lang=de]Kontakt[/lang][lang=en]Contact[/lang]'); INSERT INTO `siteinfo_rubrics` (`rubric_id`, `position`, `name`) VALUES(2, NULL, '[lang=de]Über Stud.IP[/lang][lang=en]About Stud.IP[/lang]'); diff --git a/db/studip_demo_data.sql b/db/studip_demo_data.sql index 7c10d61b4d605de66b3f2b23fe134286a67fa052..dc26abae3833d19aaa19c21bad7e9983eaabbbac 100644 --- a/db/studip_demo_data.sql +++ b/db/studip_demo_data.sql @@ -155,20 +155,20 @@ REPLACE INTO `scm` (`scm_id`, `range_id`, `user_id`, `tab_name`, `content`, `mkd -- Dumping data for table `semester_courses` -- -REPLACE INTO `semester_courses` (`semester_id`, `course_id`, `mkdate`, `chdate`) VALUES('322f640f3f4643ebe514df65f1163eb1', 'a07535cf2f8a72df33c12ddfa4b53dde', 1641490271, 1641490271); +REPLACE INTO `semester_courses` (`semester_id`, `course_id`, `mkdate`, `chdate`) VALUES('4967f0a483e36554b77e3dc47aa58941', 'a07535cf2f8a72df33c12ddfa4b53dde', 1641490271, 1641490271); -- -- Dumping data for table `seminare` -- REPLACE INTO `seminare` (`Seminar_id`, `VeranstaltungsNummer`, `Institut_id`, `Name`, `Untertitel`, `status`, `Beschreibung`, `Ort`, `Sonstiges`, `Lesezugriff`, `Schreibzugriff`, `start_time`, `duration_time`, `art`, `teilnehmer`, `vorrausetzungen`, `lernorga`, `leistungsnachweis`, `mkdate`, `chdate`, `ects`, `admission_turnout`, `admission_binding`, `admission_prelim`, `admission_prelim_txt`, `admission_disable_waitlist`, `visible`, `showscore`, `aux_lock_rule`, `aux_lock_rule_forced`, `lock_rule`, `admission_waitlist_max`, `admission_disable_waitlist_move`, `completion`, `parent_course`) VALUES('7cb72dab1bf896a0b55c6aa7a70a3a86', '', 'ec2e364b28357106c0f8c282733dbe56', 'Test Studiengruppe', '', 99, 'Studiengruppen sind eine einfache Möglichkeit, mit KommilitonInnen, KollegInnen und anderen zusammenzuarbeiten.', '', '', 1, 1, 1680300000, -1, '', '', '', '', '', 1268739824, 1607705186, '', 0, 0, 0, '', 0, 1, 0, NULL, 0, NULL, 0, 0, 0, NULL); -REPLACE INTO `seminare` (`Seminar_id`, `VeranstaltungsNummer`, `Institut_id`, `Name`, `Untertitel`, `status`, `Beschreibung`, `Ort`, `Sonstiges`, `Lesezugriff`, `Schreibzugriff`, `start_time`, `duration_time`, `art`, `teilnehmer`, `vorrausetzungen`, `lernorga`, `leistungsnachweis`, `mkdate`, `chdate`, `ects`, `admission_turnout`, `admission_binding`, `admission_prelim`, `admission_prelim_txt`, `admission_disable_waitlist`, `visible`, `showscore`, `aux_lock_rule`, `aux_lock_rule_forced`, `lock_rule`, `admission_waitlist_max`, `admission_disable_waitlist_move`, `completion`, `parent_course`) VALUES('a07535cf2f8a72df33c12ddfa4b53dde', '12345', '2560f7c7674942a7dce8eeb238e15d93', 'Test Lehrveranstaltung', 'eine normale Lehrveranstaltung', 1, '', '', '', 1, 1, 1680300000, 0, '', 'für alle Studierenden', 'abgeschlossenes Grundstudium', 'Referate in Gruppenarbeit', 'Klausur', 1343924407, 1641229951, '4', 0, 0, 0, '', 0, 1, 0, NULL, 0, NULL, 0, 0, 0, NULL); +REPLACE INTO `seminare` (`Seminar_id`, `VeranstaltungsNummer`, `Institut_id`, `Name`, `Untertitel`, `status`, `Beschreibung`, `Ort`, `Sonstiges`, `Lesezugriff`, `Schreibzugriff`, `start_time`, `duration_time`, `art`, `teilnehmer`, `vorrausetzungen`, `lernorga`, `leistungsnachweis`, `mkdate`, `chdate`, `ects`, `admission_turnout`, `admission_binding`, `admission_prelim`, `admission_prelim_txt`, `admission_disable_waitlist`, `visible`, `showscore`, `aux_lock_rule`, `aux_lock_rule_forced`, `lock_rule`, `admission_waitlist_max`, `admission_disable_waitlist_move`, `completion`, `parent_course`) VALUES('a07535cf2f8a72df33c12ddfa4b53dde', '12345', '2560f7c7674942a7dce8eeb238e15d93', 'Test Lehrveranstaltung', 'eine normale Lehrveranstaltung', 1, '', '', '', 1, 1, 1696111200, 0, '', 'für alle Studierenden', 'abgeschlossenes Grundstudium', 'Referate in Gruppenarbeit', 'Klausur', 1343924407, 1641229951, '4', 0, 0, 0, '', 0, 1, 0, NULL, 0, NULL, 0, 0, 0, NULL); -- -- Dumping data for table `seminar_cycle_dates` -- -REPLACE INTO `seminar_cycle_dates` (`metadate_id`, `seminar_id`, `start_time`, `end_time`, `weekday`, `description`, `sws`, `cycle`, `week_offset`, `end_offset`, `sorter`, `mkdate`, `chdate`) VALUES('fc3c44f257e448e3cd36a88406a8a9c1', 'a07535cf2f8a72df33c12ddfa4b53dde', '09:00:00', '11:00:00', 1, '', '0.0', 0, 0, 13, 0, 1530291739, 1573239101); +REPLACE INTO `seminar_cycle_dates` (`metadate_id`, `seminar_id`, `start_time`, `end_time`, `weekday`, `description`, `sws`, `cycle`, `week_offset`, `end_offset`, `sorter`, `mkdate`, `chdate`) VALUES('fc3c44f257e448e3cd36a88406a8a9c1', 'a07535cf2f8a72df33c12ddfa4b53dde', '09:00:00', '11:00:00', 1, '', '0.0', 0, 0, 15, 0, 1530291739, 1698856934); -- -- Daten für Tabelle `seminar_inst` @@ -227,34 +227,38 @@ REPLACE INTO `statusgruppe_user` (`statusgruppe_id`, `user_id`, `position`, `vis -- -- Dumping data for table `termine` --- -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('03c29d35ff046a26ce41ee021473bcd2', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1684738800, 1684746000, 1669043318, 1669043646, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('03e159dcfd421949a2db4d36869b0205', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1688367600, 1688374800, 1669043318, 1669043646, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('0de8bc031df8e2354d4c3136670382b5', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1683529200, 1683536400, 1669043318, 1669043646, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('11cf07ec71bcfbb171095d2b0ca2007e', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1687158000, 1687165200, 1669043318, 1669043646, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('323c9f7e3403c3eb2e7eeaed6aa2f4ce', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1681714800, 1681722000, 1669043318, 1669043646, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('3dcbb39e90a51b8047419105a6c2df27', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1684134000, 1684141200, 1669043318, 1669043646, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('62587021142c23dcb3f18461554b0116', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1686553200, 1686560400, 1669043318, 1669043646, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('6671170964137c6b4f521b3552fc27a7', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1688972400, 1688979600, 1669043318, 1669043646, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('8bc6a901aba362d7ed6301836f2b4377', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1687762800, 1687770000, 1669043318, 1669043646, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('9b771586f77475dba1b1e56abdbc5d6c', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1685948400, 1685955600, 1669043318, 1669043646, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('9ff59e18112a686c553412761a5df85c', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1690445700, 1690452000, 1641490611, 1669043415, 3, '', NULL); -REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('f0fb7805ce3bbdb2332a1b581c6c30a5', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1682319600, 1682326800, 1669043318, 1669043646, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); - +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('005be9fa51cae40cb7864420ef20cc21', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1700467200, 1700474400, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('04907423f4fecaf2326bde7d595e3fa6', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1706515200, 1706522400, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('0a32d2bb1d24c471fd62d2f542fee471', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1701676800, 1701684000, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('3b74ff2f7ce0964146a90b3d723ee594', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1702281600, 1702288800, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('68985894e2389e16c9922f28bc88447b', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1704700800, 1704708000, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('86de155d92a8f2da7ed6cd8ed9c08d71', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1707991200, 1707996600, 1698856983, 1698856983, 3, '', NULL); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('8c145ae92eef055db022e79df007af19', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1705305600, 1705312800, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('953ce88c783cbc921f82e41e4af7a6af', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1702886400, 1702893600, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('ab8e1dca6db2eb7dec5a2c99af8338ec', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1699257600, 1699264800, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('afde51cfbc49f0e5fcd8be6bd32cc1d1', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1698652800, 1698660000, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('ba543c308e144270c44406288393c041', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1699862400, 1699869600, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('bb87ee9eb1711bf15d84e3814c1cd4ce', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1707120000, 1707127200, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('dfaef63fdf5d7b7349190b5ae131463e', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1701072000, 1701079200, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('f08b3ef4fe781e7e32d3153832ca5e21', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1698044400, 1698051600, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); +REPLACE INTO `termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`) VALUES('fe11571844e66b495fc12114b48ec161', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1705910400, 1705917600, 1698856934, 1698857418, 1, '', 'fc3c44f257e448e3cd36a88406a8a9c1'); -REPLACE INTO `ex_termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`, `resource_id`) VALUES('11c4d885da4b11d48678176564a32bfb', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1685343600, 1685350800, 1669043318, 1669043318, 1, NULL, 'fc3c44f257e448e3cd36a88406a8a9c1', ''); -REPLACE INTO `ex_termine` (`termin_id`, `range_id`, `autor_id`, `content`, `description`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`, `resource_id`) VALUES('53dd308a9561bf77d826887d10a49727', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', NULL, 1682924400, 1682931600, 1669043318, 1669043318, 1, NULL, 'fc3c44f257e448e3cd36a88406a8a9c1', ''); +-- +-- Daten für Tabelle `ex_termine` +-- +REPLACE INTO `ex_termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`, `resource_id`) VALUES('3887db95c939fc701fddc2f906a87287', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1704096000, 1704103200, 1698856934, 1698856934, 1, NULL, 'fc3c44f257e448e3cd36a88406a8a9c1', ''); +REPLACE INTO `ex_termine` (`termin_id`, `range_id`, `autor_id`, `content`, `date`, `end_time`, `mkdate`, `chdate`, `date_typ`, `raum`, `metadate_id`, `resource_id`) VALUES('d1f461421c4357b55bbfd6b16a6d1c81', 'a07535cf2f8a72df33c12ddfa4b53dde', '76ed43ef286fb55cf9e41beadb484a9f', '', 1703491200, 1703498400, 1698856934, 1698856934, 1, NULL, 'fc3c44f257e448e3cd36a88406a8a9c1', ''); -- -- Daten für Tabelle `user_info` -- +REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `motto`, `lock_rule`, `oercampus_description`) VALUES('205f3efb7997a0fc9755da2b535038da', '', '', '', '', '', '', '', '', 0, 0, 0, 0, '', '', NULL, 1, '', 0, '', '', NULL); +REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `motto`, `lock_rule`, `oercampus_description`) VALUES('6235c46eb9e962866ebdceece739ace5', '', '', '', '', '', '', '', '', 0, 0, 0, 0, '', '', NULL, 1, '', 0, '', '', NULL); +REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `motto`, `lock_rule`, `oercampus_description`) VALUES('76ed43ef286fb55cf9e41beadb484a9f', '', '', '', '', '', '', '', '', 0, 0, 0, 1698855190, '', '', NULL, 1, '', 0, '', '', NULL); +REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `motto`, `lock_rule`, `oercampus_description`) VALUES('7e81ec247c151c02ffd479511e24cc03', '', '', '', '', '', '', '', '', 0, 0, 0, 0, '', '', NULL, 1, '', 0, '', '', NULL); +REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `motto`, `lock_rule`, `oercampus_description`) VALUES('e7a0a84b161f3e8c09b4a0a2e8a58147', '', '', '', '', '', '', '', '', 0, 0, 0, 0, '', '', NULL, 1, '', 0, '', '', NULL); -REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `smiley_favorite`, `motto`, `lock_rule`) VALUES('76ed43ef286fb55cf9e41beadb484a9f', '', '', '', '', '', '', '', '', 0, 0, 0, 0, '', '', NULL, 1, '', 0, '', '', ''); -REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `smiley_favorite`, `motto`, `lock_rule`) VALUES('e7a0a84b161f3e8c09b4a0a2e8a58147', '', '', '', '', '', '', '', '', 0, 0, 0, 0, '', '', NULL, 1, '', 0, '', '', ''); -REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `smiley_favorite`, `motto`, `lock_rule`) VALUES('205f3efb7997a0fc9755da2b535038da', '', '', '', '', '', '', '', '', 0, 0, 0, 0, '', '', NULL, 1, '', 0, '', '', ''); -REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `smiley_favorite`, `motto`, `lock_rule`) VALUES('6235c46eb9e962866ebdceece739ace5', '', '', '', '', '', '', '', '', 0, 0, 0, 0, '', '', NULL, 1, '', 0, '', '', ''); -REPLACE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schwerp`, `Home`, `privatnr`, `privatcell`, `privadr`, `score`, `geschlecht`, `mkdate`, `chdate`, `title_front`, `title_rear`, `preferred_language`, `smsforward_copy`, `smsforward_rec`, `email_forward`, `smiley_favorite`, `motto`, `lock_rule`) VALUES('7e81ec247c151c02ffd479511e24cc03', '', '', '', '', '', '', '', '', 0, 0, 0, 0, '', '', NULL, 1, '', 0, '', '', ''); -- -- Daten für Tabelle `user_inst` diff --git a/db/studip_resources_demo_data.sql b/db/studip_resources_demo_data.sql index 91fb11d2e55dc643032a5cb6993472eb594dae9f..e9e2ecbeda4e9293221ca90660c536bd6480106d 100644 --- a/db/studip_resources_demo_data.sql +++ b/db/studip_resources_demo_data.sql @@ -34,33 +34,40 @@ REPLACE INTO `resources` (`id`, `parent_id`, `category_id`, `level`, `name`, `de -- Dumping data for table `resource_bookings` -- -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('041322c703035a3b6b18e9a94d6d2995', '728f1578de643fb08b32b4b8afb2db77', '11cf07ec71bcfbb171095d2b0ca2007e', '', 1687158000, 1687165200, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('239ef5105bcf70e1bc280d3b119762a8', '728f1578de643fb08b32b4b8afb2db77', '62587021142c23dcb3f18461554b0116', '', 1686553200, 1686560400, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('29460433af113a3568a0a3a9517df2a8', '728f1578de643fb08b32b4b8afb2db77', '3dcbb39e90a51b8047419105a6c2df27', '', 1684134000, 1684141200, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('53b12a396ac0f2e9ad94d2a1acb78323', '728f1578de643fb08b32b4b8afb2db77', '8bc6a901aba362d7ed6301836f2b4377', '', 1687762800, 1687770000, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('6bbb6edd3b206861b142ead8466bd64d', '728f1578de643fb08b32b4b8afb2db77', '6671170964137c6b4f521b3552fc27a7', '', 1688972400, 1688979600, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('753c71518bcd3b2234ee176b10605ffd', '728f1578de643fb08b32b4b8afb2db77', '03e159dcfd421949a2db4d36869b0205', '', 1688367600, 1688374800, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('bc37146133034592918cf026e8fe8051', '728f1578de643fb08b32b4b8afb2db77', '03c29d35ff046a26ce41ee021473bcd2', '', 1684738800, 1684746000, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('e9e2ba935ed36404b29bbe9be8c9bded', '728f1578de643fb08b32b4b8afb2db77', 'f0fb7805ce3bbdb2332a1b581c6c30a5', '', 1682319600, 1682326800, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('ee860dc940d6b0ac9e22d218cd5d8716', '728f1578de643fb08b32b4b8afb2db77', '9b771586f77475dba1b1e56abdbc5d6c', '', 1685948400, 1685955600, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('f56859cd74357a535c36021c4ba0ba7d', '728f1578de643fb08b32b4b8afb2db77', '323c9f7e3403c3eb2e7eeaed6aa2f4ce', '', 1681714800, 1681722000, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('fb73140a0f3436ee3b4583aa423dc65b', '728f1578de643fb08b32b4b8afb2db77', '0de8bc031df8e2354d4c3136670382b5', '', 1683529200, 1683536400, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('09fe718f2b03958790c175c22b9ead30', '728f1578de643fb08b32b4b8afb2db77', 'bb87ee9eb1711bf15d84e3814c1cd4ce', '', 1707120000, 1707127200, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('308995121c82d01691e3dc9a920257d8', '728f1578de643fb08b32b4b8afb2db77', 'ba543c308e144270c44406288393c041', '', 1699862400, 1699869600, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('386690efb8f4c1d892f9c24123264229', '728f1578de643fb08b32b4b8afb2db77', 'dfaef63fdf5d7b7349190b5ae131463e', '', 1701072000, 1701079200, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('41ed2b95b0b6d86db1a48ddf8eee8f6d', '728f1578de643fb08b32b4b8afb2db77', '8c145ae92eef055db022e79df007af19', '', 1705305600, 1705312800, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('61422bd079e18a365c9b170e28289eca', '728f1578de643fb08b32b4b8afb2db77', '953ce88c783cbc921f82e41e4af7a6af', '', 1702886400, 1702893600, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('7ea453895c4dd2b0ac791ef14d91c601', '728f1578de643fb08b32b4b8afb2db77', '0a32d2bb1d24c471fd62d2f542fee471', '', 1701676800, 1701684000, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('8b0a5177c0ebdf2116d71f077a9da1dd', '728f1578de643fb08b32b4b8afb2db77', '3b74ff2f7ce0964146a90b3d723ee594', '', 1702281600, 1702288800, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('a2960560876542106dddf761add7c4ba', '728f1578de643fb08b32b4b8afb2db77', '04907423f4fecaf2326bde7d595e3fa6', '', 1706515200, 1706522400, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('aac383acadc20d7019bd12c3436540d8', '728f1578de643fb08b32b4b8afb2db77', 'fe11571844e66b495fc12114b48ec161', '', 1705910400, 1705917600, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('b9063c4e391e0ca22f9df2c26f7325bf', '728f1578de643fb08b32b4b8afb2db77', '005be9fa51cae40cb7864420ef20cc21', '', 1700467200, 1700474400, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('bc4de36334c1e3bc04d1ed438f713f7a', '728f1578de643fb08b32b4b8afb2db77', 'ab8e1dca6db2eb7dec5a2c99af8338ec', '', 1699257600, 1699264800, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('d1cf3828b5cbfb567a23ebc925818e8d', '728f1578de643fb08b32b4b8afb2db77', '68985894e2389e16c9922f28bc88447b', '', 1704700800, 1704708000, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('f03962407e755a182d79725663c065c8', '728f1578de643fb08b32b4b8afb2db77', 'afde51cfbc49f0e5fcd8be6bd32cc1d1', '', 1698652800, 1698660000, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('f9347670839cbf98d8351e55ebc80a00', '728f1578de643fb08b32b4b8afb2db77', 'f08b3ef4fe781e7e32d3153832ca5e21', '', 1698044400, 1698051600, NULL, 1698857418, 1698857418, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -- -- Dumping data for table `resource_booking_intervals` -- -REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('1588e0fb4d75cd5af07bfbdb2dceec82', '728f1578de643fb08b32b4b8afb2db77', '041322c703035a3b6b18e9a94d6d2995', 1687158000, 1687165200, 1669043646, 1669043646, 1); -REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('1fb63f35fa56cd41c72635ec04e36e4e', '728f1578de643fb08b32b4b8afb2db77', '53b12a396ac0f2e9ad94d2a1acb78323', 1687762800, 1687770000, 1669043646, 1669043646, 1); -REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('334dc6b9d547da3015eafd9e2d9f312e', '728f1578de643fb08b32b4b8afb2db77', '6bbb6edd3b206861b142ead8466bd64d', 1688972400, 1688979600, 1669043646, 1669043646, 1); -REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('3cb7bb38ef726b5b84adacb92fdb6e46', '728f1578de643fb08b32b4b8afb2db77', 'fb73140a0f3436ee3b4583aa423dc65b', 1683529200, 1683536400, 1669043646, 1669043646, 1); -REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('5dc5ea89184eb9205b8b5b996abde7be', '728f1578de643fb08b32b4b8afb2db77', '753c71518bcd3b2234ee176b10605ffd', 1688367600, 1688374800, 1669043646, 1669043646, 1); -REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('83e1842eb56c1d2575aa177e13408ce3', '728f1578de643fb08b32b4b8afb2db77', 'bc37146133034592918cf026e8fe8051', 1684738800, 1684746000, 1669043646, 1669043646, 1); -REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('9e410665d2bf5ee8ed067a30453aca39', '728f1578de643fb08b32b4b8afb2db77', 'f56859cd74357a535c36021c4ba0ba7d', 1681714800, 1681722000, 1669043646, 1669043646, 1); -REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('bb3baf907b7781c14f4666728f43f4d7', '728f1578de643fb08b32b4b8afb2db77', 'e9e2ba935ed36404b29bbe9be8c9bded', 1682319600, 1682326800, 1669043646, 1669043646, 1); -REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('dc7f0eb94246a785bf764d65bfad7985', '728f1578de643fb08b32b4b8afb2db77', 'ee860dc940d6b0ac9e22d218cd5d8716', 1685948400, 1685955600, 1669043646, 1669043646, 1); -REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('f045bcd1d0d1a565c774b5bd60656ed8', '728f1578de643fb08b32b4b8afb2db77', '239ef5105bcf70e1bc280d3b119762a8', 1686553200, 1686560400, 1669043646, 1669043646, 1); -REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('fc91d45b701d8c6fc84e5bb6cdb16ff9', '728f1578de643fb08b32b4b8afb2db77', '29460433af113a3568a0a3a9517df2a8', 1684134000, 1684141200, 1669043646, 1669043646, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('00aa3e6189e3d2a88698902eddd886e6', '728f1578de643fb08b32b4b8afb2db77', 'f03962407e755a182d79725663c065c8', 1698652800, 1698660000, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('23ceb8ae093abf4b800f6a6428fb26c7', '728f1578de643fb08b32b4b8afb2db77', '308995121c82d01691e3dc9a920257d8', 1699862400, 1699869600, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('26410654a334c4bf611ef284d319fae0', '728f1578de643fb08b32b4b8afb2db77', '41ed2b95b0b6d86db1a48ddf8eee8f6d', 1705305600, 1705312800, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('2b08833600e7f62dd64c1088e239acad', '728f1578de643fb08b32b4b8afb2db77', 'f9347670839cbf98d8351e55ebc80a00', 1698044400, 1698051600, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('4cb9c7ebd8d2b8f9dd8edf7d7efee689', '728f1578de643fb08b32b4b8afb2db77', '8b0a5177c0ebdf2116d71f077a9da1dd', 1702281600, 1702288800, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('5c4d0760b3eeb38940922b2e6e1dc501', '728f1578de643fb08b32b4b8afb2db77', '61422bd079e18a365c9b170e28289eca', 1702886400, 1702893600, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('7fa0f8495e920486ce023f1edf27d63d', '728f1578de643fb08b32b4b8afb2db77', 'b9063c4e391e0ca22f9df2c26f7325bf', 1700467200, 1700474400, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('9e046c83f532548b28dcf63c6a0972ab', '728f1578de643fb08b32b4b8afb2db77', '7ea453895c4dd2b0ac791ef14d91c601', 1701676800, 1701684000, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('a63c9ef59a074de9b6c81fcd7a302f1a', '728f1578de643fb08b32b4b8afb2db77', '09fe718f2b03958790c175c22b9ead30', 1707120000, 1707127200, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('b2fbaebbb83524970b728734c1fc06cf', '728f1578de643fb08b32b4b8afb2db77', '386690efb8f4c1d892f9c24123264229', 1701072000, 1701079200, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('b9d912ccfbd1df39e9cfeeb134062ff0', '728f1578de643fb08b32b4b8afb2db77', 'd1cf3828b5cbfb567a23ebc925818e8d', 1704700800, 1704708000, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('c59c88cf0a268bfed2c96d833401d04b', '728f1578de643fb08b32b4b8afb2db77', 'bc4de36334c1e3bc04d1ed438f713f7a', 1699257600, 1699264800, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('c9d45a65b84d4606c04ed80d0e83ead6', '728f1578de643fb08b32b4b8afb2db77', 'aac383acadc20d7019bd12c3436540d8', 1705910400, 1705917600, 1698857418, 1698857418, 1); +REPLACE INTO `resource_booking_intervals` (`interval_id`, `resource_id`, `booking_id`, `begin`, `end`, `mkdate`, `chdate`, `takes_place`) VALUES('dffbf273272a70eed2ff3d22fa59c3ba', '728f1578de643fb08b32b4b8afb2db77', 'a2960560876542106dddf761add7c4ba', 1706515200, 1706522400, 1698857418, 1698857418, 1); + -- @@ -128,10 +135,12 @@ REPLACE INTO `resource_properties` (`resource_id`, `property_id`, `state`, `mkda -- Dumping data for table `resource_requests` -- -REPLACE INTO `resource_requests` (`id`, `course_id`, `termin_id`, `metadate_id`, `user_id`, `last_modified_by`, `resource_id`, `category_id`, `comment`, `reply_comment`, `reply_recipients`, `closed`, `mkdate`, `chdate`, `begin`, `end`, `preparation_time`, `marked`) VALUES('287715ad7156792ee8a1c4a00a23831a', 'a07535cf2f8a72df33c12ddfa4b53dde', '9ff59e18112a686c553412761a5df85c', '', '76ed43ef286fb55cf9e41beadb484a9f', '', '', '5a72dfe3f0c0295a8fe4e12c86d4c8f4', NULL, NULL, 'requester', 0, 1591714392, 1591714392, 0, 0, 900, 0); +REPLACE INTO `resource_requests` (`id`, `course_id`, `termin_id`, `metadate_id`, `user_id`, `last_modified_by`, `resource_id`, `category_id`, `comment`, `reply_comment`, `reply_recipients`, `closed`, `mkdate`, `chdate`, `begin`, `end`, `preparation_time`, `marked`) VALUES + ('b73b58e393bea88e9938744a4843ab45', 'a07535cf2f8a72df33c12ddfa4b53dde', '86de155d92a8f2da7ed6cd8ed9c08d71', '', '76ed43ef286fb55cf9e41beadb484a9f', '76ed43ef286fb55cf9e41beadb484a9f', '728f1578de643fb08b32b4b8afb2db77', '85d62e2a8a87a2924db8fc4ed3fde09d', '', NULL, 'lecturer', 0, 1698857463, 1698857463, 0, 0, 900, 0); + -- -- Dumping data for table `resource_request_properties` -- -REPLACE INTO `resource_request_properties` (`request_id`, `property_id`, `state`, `mkdate`, `chdate`) VALUES('287715ad7156792ee8a1c4a00a23831a', '44fd30e8811d0d962582fa1a9c452bdd', '20', 1591714392, 1591714392); +REPLACE INTO `resource_request_properties` (`request_id`, `property_id`, `state`, `mkdate`, `chdate`) VALUES('b73b58e393bea88e9938744a4843ab45', '44fd30e8811d0d962582fa1a9c452bdd', '20', 1591714392, 1591714392);