From 1e4177614040e8acf6c12a610289495c3665c451 Mon Sep 17 00:00:00 2001 From: noackorama <noackorama@gmail.com> Date: Thu, 30 Dec 2021 17:16:13 +0100 Subject: [PATCH] sql dumps re #495 --- db/studip.sql | 2387 ++++++++++++++++++++++-------------- db/studip_default_data.sql | 1168 +++++++++++------- db/studip_root_user.sql | 6 +- 3 files changed, 2157 insertions(+), 1404 deletions(-) diff --git a/db/studip.sql b/db/studip.sql index e697efd23c7..d175b285acd 100644 --- a/db/studip.sql +++ b/db/studip.sql @@ -1,8 +1,8 @@ --- MySQL dump 10.13 Distrib 5.7.32-35, for debian-linux-gnu (x86_64) +-- MySQL dump 10.13 Distrib 5.7.35-38, for debian-linux-gnu (x86_64) -- --- Host: localhost Database: studip_46 +-- Host: localhost Database: studip_50 -- ------------------------------------------------------ --- Server version 5.7.32-35 +-- Server version 5.7.35-38 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; @@ -23,9 +23,9 @@ DROP TABLE IF EXISTS `Institute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `Institute` ( - `Institut_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `Institut_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `Name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `fakultaets_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `fakultaets_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `Strasse` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `Plz` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'http://www.studip.de', @@ -33,11 +33,10 @@ CREATE TABLE `Institute` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `fax` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `type` tinyint(3) unsigned NOT NULL DEFAULT '0', - `modules` int(10) unsigned DEFAULT NULL, - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `lit_plugin_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `srienabled` tinyint(4) NOT NULL DEFAULT '0', + `srienabled` tinyint(1) unsigned NOT NULL DEFAULT '0', `lock_rule` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`Institut_id`), KEY `fakultaets_id` (`fakultaets_id`) @@ -56,10 +55,10 @@ CREATE TABLE `abschluss` ( `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `name_kurz` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `beschreibung` text COLLATE utf8mb4_unicode_ci, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(20) DEFAULT NULL, - `chdate` int(20) DEFAULT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`abschluss_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -75,14 +74,14 @@ CREATE TABLE `activities` ( `id` int(11) NOT NULL AUTO_INCREMENT, `object_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `context` enum('system','course','institute','user') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `context_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `context_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `provider` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `actor_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `actor_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `verb` enum('answered','attempted','attended','completed','created','deleted','edited','experienced','failed','imported','interacted','passed','shared','sent','voided') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'experienced', `content` text COLLATE utf8mb4_unicode_ci, `object_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `mkdate` int(11) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `context_id` (`context_id`), KEY `mkdate` (`mkdate`), @@ -98,10 +97,10 @@ DROP TABLE IF EXISTS `admission_condition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `admission_condition` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `filter_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `conditiongroup_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `mkdate` int(11) NOT NULL DEFAULT '0', + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `filter_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `conditiongroup_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`,`filter_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -114,7 +113,7 @@ DROP TABLE IF EXISTS `admission_conditiongroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `admission_conditiongroup` ( - `conditiongroup_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `conditiongroup_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `quota` int(11) NOT NULL, PRIMARY KEY (`conditiongroup_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -128,10 +127,11 @@ DROP TABLE IF EXISTS `admission_seminar_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `admission_seminar_user` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `status` enum('awaiting','accepted') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned DEFAULT NULL, `position` int(5) DEFAULT NULL, `comment` tinytext COLLATE utf8mb4_unicode_ci, `visible` enum('yes','no','unknown') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'unknown', @@ -148,12 +148,12 @@ DROP TABLE IF EXISTS `admissionfactor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `admissionfactor` ( - `list_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `list_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `factor` float NOT NULL DEFAULT '1', - `owner_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `owner_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`list_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -168,8 +168,8 @@ DROP TABLE IF EXISTS `admissionrule_compat`; CREATE TABLE `admissionrule_compat` ( `rule_type` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `compat_rule_type` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_type`,`compat_rule_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -182,9 +182,9 @@ DROP TABLE IF EXISTS `admissionrule_inst`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `admissionrule_inst` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `institute_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) NOT NULL DEFAULT '0', + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `institute_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`,`institute_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -199,8 +199,8 @@ DROP TABLE IF EXISTS `admissionrules`; CREATE TABLE `admissionrules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ruletype` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `active` tinyint(1) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', + `active` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ruletype` (`ruletype`) @@ -293,20 +293,20 @@ DROP TABLE IF EXISTS `archiv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `archiv` ( - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `untertitel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `beschreibung` text COLLATE utf8mb4_unicode_ci NOT NULL, - `start_time` int(20) NOT NULL DEFAULT '0', + `start_time` int(11) unsigned NOT NULL DEFAULT '0', `semester` varchar(16) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `heimat_inst_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `heimat_inst_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `institute` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `dozenten` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `fakultaet` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `dump` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, - `archiv_file_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `archiv_protected_file_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `mkdate` int(20) NOT NULL DEFAULT '0', + `archiv_file_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `archiv_protected_file_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `forumdump` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `wikidump` longtext COLLATE utf8mb4_unicode_ci, `studienbereiche` text COLLATE utf8mb4_unicode_ci NOT NULL, @@ -324,8 +324,8 @@ DROP TABLE IF EXISTS `archiv_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `archiv_user` ( - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `status` enum('user','autor','tutor','dozent') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'user', PRIMARY KEY (`seminar_id`,`user_id`), KEY `user_id` (`user_id`,`status`) @@ -340,7 +340,7 @@ DROP TABLE IF EXISTS `auth_extern`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `auth_extern` ( - `studip_user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `studip_user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `external_user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `external_user_name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `external_user_password` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', @@ -361,7 +361,7 @@ DROP TABLE IF EXISTS `auth_user_md5`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `auth_user_md5` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `username` varchar(64) 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', @@ -405,7 +405,7 @@ DROP TABLE IF EXISTS `auto_insert_user`; CREATE TABLE `auto_insert_user` ( `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(10) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`seminar_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -418,11 +418,13 @@ DROP TABLE IF EXISTS `aux_lock_rules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `aux_lock_rules` ( - `lock_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `lock_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `attributes` text COLLATE utf8mb4_unicode_ci NOT NULL, `sorting` text COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`lock_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -435,19 +437,19 @@ DROP TABLE IF EXISTS `banner_ads`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `banner_ads` ( - `ad_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `ad_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `banner_path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `alttext` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `target_type` enum('url','seminar','inst','user','none') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'url', `target` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `startdate` int(20) NOT NULL DEFAULT '0', - `enddate` int(20) NOT NULL DEFAULT '0', - `priority` int(4) NOT NULL DEFAULT '0', - `views` int(11) NOT NULL DEFAULT '0', - `clicks` int(11) NOT NULL DEFAULT '0', - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `startdate` int(11) unsigned NOT NULL DEFAULT '0', + `enddate` int(11) unsigned NOT NULL DEFAULT '0', + `priority` int(11) unsigned NOT NULL DEFAULT '0', + `views` int(11) unsigned NOT NULL DEFAULT '0', + `clicks` int(11) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`ad_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -463,11 +465,11 @@ CREATE TABLE `blubber_comments` ( `comment_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `thread_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `external_contact` tinyint(1) NOT NULL DEFAULT '0', + `external_contact` tinyint(1) unsigned NOT NULL DEFAULT '0', `content` text COLLATE utf8mb4_unicode_ci, `network` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `chdate` int(11) DEFAULT NULL, - `mkdate` int(11) DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`comment_id`), KEY `thread_id` (`thread_id`), KEY `user_id` (`user_id`) @@ -483,34 +485,13 @@ DROP TABLE IF EXISTS `blubber_events_queue`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `blubber_events_queue` ( `event_type` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `item_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) NOT NULL, + `item_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`event_type`,`item_id`,`mkdate`), KEY `item_id` (`item_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 `blubber_external_contact` --- - -DROP TABLE IF EXISTS `blubber_external_contact`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `blubber_external_contact` ( - `external_contact_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mail_identifier` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contact_type` varchar(16) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'anonymous', - `name` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL, - `data` text COLLATE utf8mb4_unicode_ci, - `chdate` bigint(20) NOT NULL, - `mkdate` bigint(20) NOT NULL, - PRIMARY KEY (`external_contact_id`), - KEY `mail_identifier` (`mail_identifier`), - KEY `contact_type` (`contact_type`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; -/*!40101 SET character_set_client = @saved_cs_client */; - -- -- Table structure for table `blubber_follower` -- @@ -519,9 +500,9 @@ DROP TABLE IF EXISTS `blubber_follower`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `blubber_follower` ( - `studip_user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `external_contact_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `left_follows_right` tinyint(1) NOT NULL, + `studip_user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `external_contact_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `left_follows_right` tinyint(1) unsigned NOT NULL DEFAULT '0', KEY `studip_user_id` (`studip_user_id`), KEY `external_contact_id` (`external_contact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -537,9 +518,9 @@ DROP TABLE IF EXISTS `blubber_mentions`; CREATE TABLE `blubber_mentions` ( `mention_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `thread_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `external_contact` tinyint(4) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `external_contact` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`mention_id`), UNIQUE KEY `unique_users_per_topic` (`thread_id`,`user_id`,`external_contact`), KEY `topic_id` (`thread_id`), @@ -555,7 +536,7 @@ DROP TABLE IF EXISTS `blubber_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `blubber_tags` ( - `topic_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `topic_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `tag` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`topic_id`,`tag`), KEY `tag` (`tag`) @@ -572,16 +553,16 @@ DROP TABLE IF EXISTS `blubber_threads`; CREATE TABLE `blubber_threads` ( `thread_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `context_type` enum('public','private','course','institute') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'public', - `context_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `context_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `external_contact` tinyint(1) NOT NULL DEFAULT '0', + `external_contact` tinyint(1) unsigned NOT NULL DEFAULT '0', `content` text COLLATE utf8mb4_unicode_ci, `display_class` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `visible_in_stream` tinyint(1) NOT NULL DEFAULT '1', - `commentable` tinyint(1) NOT NULL DEFAULT '1', + `visible_in_stream` tinyint(1) unsigned NOT NULL DEFAULT '0', + `commentable` tinyint(1) unsigned NOT NULL DEFAULT '0', `metadata` text COLLATE utf8mb4_unicode_ci, - `chdate` int(11) DEFAULT NULL, - `mkdate` int(11) DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`thread_id`), KEY `context_type` (`context_type`), KEY `context_id` (`context_id`), @@ -590,16 +571,17 @@ CREATE TABLE `blubber_threads` ( /*!40101 SET character_set_client = @saved_cs_client */; -- --- Table structure for table `blubber_threads_unfollow` +-- Table structure for table `blubber_threads_followstates` -- -DROP TABLE IF EXISTS `blubber_threads_unfollow`; +DROP TABLE IF EXISTS `blubber_threads_followstates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; -CREATE TABLE `blubber_threads_unfollow` ( - `thread_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) DEFAULT NULL, +CREATE TABLE `blubber_threads_followstates` ( + `thread_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `state` enum('followed','unfollowed') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'unfollowed', + `mkdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`thread_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; @@ -636,6 +618,23 @@ CREATE TABLE `cache_operations` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `cache_types` +-- + +DROP TABLE IF EXISTS `cache_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_types` ( + `cache_id` int(11) NOT NULL AUTO_INCREMENT, + `class_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, + `chdate` int(11) DEFAULT NULL, + `mkdate` int(11) DEFAULT NULL, + PRIMARY KEY (`cache_id`), + UNIQUE KEY `class_name` (`class_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 `calendar_event` -- @@ -644,11 +643,11 @@ DROP TABLE IF EXISTS `calendar_event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `calendar_event` ( - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `event_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `group_status` tinyint(4) unsigned NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL, - `chdate` int(10) unsigned NOT NULL DEFAULT '0', + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `event_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `group_status` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`range_id`,`event_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -661,11 +660,11 @@ DROP TABLE IF EXISTS `calendar_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `calendar_user` ( - `owner_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `owner_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `permission` int(2) NOT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`owner_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -732,12 +731,12 @@ DROP TABLE IF EXISTS `comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comments` ( - `comment_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `object_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `comment_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `object_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `content` text COLLATE utf8mb4_unicode_ci NOT NULL, - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_id`), KEY `object_id` (`object_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -751,13 +750,13 @@ DROP TABLE IF EXISTS `conditionaladmissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `conditionaladmissions` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `message` text COLLATE utf8mb4_unicode_ci, - `start_time` int(11) NOT NULL DEFAULT '0', - `end_time` int(11) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', - `conditions_stopped` tinyint(1) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `start_time` int(11) unsigned NOT NULL DEFAULT '0', + `end_time` int(11) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `conditions_stopped` tinyint(1) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -772,11 +771,11 @@ DROP TABLE IF EXISTS `config`; CREATE TABLE `config` ( `field` varchar(255) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `value` text COLLATE utf8mb4_unicode_ci NOT NULL, - `type` enum('boolean','integer','string','array') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'string', - `range` enum('global','user','course') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'global', + `type` enum('boolean','integer','string','array','i18n') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'string', + `range` enum('global','range','user','course','institute') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'global', `section` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`field`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -791,10 +790,10 @@ DROP TABLE IF EXISTS `config_values`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `config_values` ( `field` varchar(255) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `value` text COLLATE utf8mb4_unicode_ci NOT NULL, - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `comment` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`field`,`range_id`), KEY `field` (`field`,`value`(10)), @@ -811,17 +810,22 @@ DROP TABLE IF EXISTS `consultation_blocks`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `consultation_blocks` ( `block_id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `teacher_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_type` enum('user','course','institute') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `teacher_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `start` int(11) unsigned NOT NULL, `end` int(11) unsigned NOT NULL, `room` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `calendar_events` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT 'Create events for slots', + `show_participants` tinyint(1) unsigned NOT NULL DEFAULT '0', + `require_reason` enum('no','optional','yes') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'optional', + `confirmation_text` text COLLATE utf8mb4_unicode_ci, `note` text COLLATE utf8mb4_unicode_ci NOT NULL, `size` tinyint(2) unsigned NOT NULL DEFAULT '1' COMMENT 'How many people may book a slot', - `course_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `mkdate` int(11) unsigned NOT NULL, `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`block_id`), + KEY `range` (`range_id`,`range_type`), KEY `teacher_id` (`teacher_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -837,7 +841,7 @@ CREATE TABLE `consultation_bookings` ( `booking_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `slot_id` int(11) unsigned NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `reason` text COLLATE utf8mb4_unicode_ci NOT NULL, + `reason` text COLLATE utf8mb4_unicode_ci, `student_event_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `mkdate` int(11) unsigned NOT NULL, `chdate` int(11) unsigned NOT NULL, @@ -876,8 +880,9 @@ DROP TABLE IF EXISTS `contact`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `contact` ( - `owner_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `owner_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `mkdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`owner_id`,`user_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -891,16 +896,16 @@ DROP TABLE IF EXISTS `content_terms_of_use_entries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `content_terms_of_use_entries` ( - `id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `position` int(10) unsigned NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `student_description` text COLLATE utf8mb4_unicode_ci NOT NULL, `download_condition` tinyint(2) NOT NULL, `icon` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `is_default` tinyint(2) unsigned NOT NULL DEFAULT '0', - `mkdate` int(10) unsigned NOT NULL, - `chdate` int(10) unsigned NOT NULL, + `is_default` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -913,14 +918,14 @@ DROP TABLE IF EXISTS `coursememberadmissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `coursememberadmissions` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `message` text COLLATE utf8mb4_unicode_ci NOT NULL, - `start_time` int(11) NOT NULL DEFAULT '0', - `end_time` int(11) NOT NULL DEFAULT '0', - `course_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `start_time` int(11) unsigned NOT NULL DEFAULT '0', + `end_time` int(11) unsigned NOT NULL DEFAULT '0', + `course_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `modus` tinyint(1) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -933,9 +938,9 @@ DROP TABLE IF EXISTS `courseset_factorlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `courseset_factorlist` ( - `set_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `factorlist_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) NOT NULL DEFAULT '0', + `set_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `factorlist_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`set_id`,`factorlist_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -948,10 +953,10 @@ DROP TABLE IF EXISTS `courseset_institute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `courseset_institute` ( - `set_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `institute_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) DEFAULT NULL, - `chdate` int(11) DEFAULT NULL, + `set_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `institute_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`set_id`,`institute_id`), KEY `institute_id` (`institute_id`,`set_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -965,10 +970,10 @@ DROP TABLE IF EXISTS `courseset_rule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `courseset_rule` ( - `set_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `set_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `mkdate` int(11) DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`set_id`,`rule_id`), KEY `type` (`set_id`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -982,15 +987,15 @@ DROP TABLE IF EXISTS `coursesets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `coursesets` ( - `set_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `set_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `infotext` text COLLATE utf8mb4_unicode_ci NOT NULL, `algorithm` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `algorithm_run` tinyint(1) NOT NULL DEFAULT '0', - `private` tinyint(1) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `algorithm_run` tinyint(1) unsigned NOT NULL DEFAULT '0', + `private` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`set_id`), KEY `set_user` (`user_id`,`set_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1004,13 +1009,13 @@ DROP TABLE IF EXISTS `coursewizardsteps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `coursewizardsteps` ( - `id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `classname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `number` tinyint(1) NOT NULL, - `enabled` tinyint(1) NOT NULL DEFAULT '1', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `enabled` tinyint(1) unsigned NOT NULL DEFAULT '1', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `classname` (`classname`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1046,7 +1051,7 @@ DROP TABLE IF EXISTS `cronjobs_schedules`; CREATE TABLE `cronjobs_schedules` ( `schedule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `task_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `active` tinyint(1) NOT NULL DEFAULT '0', + `active` tinyint(1) unsigned NOT NULL DEFAULT '0', `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(4096) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parameters` text COLLATE utf8mb4_unicode_ci, @@ -1079,13 +1084,189 @@ CREATE TABLE `cronjobs_tasks` ( `task_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `filename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `class` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `active` tinyint(1) NOT NULL DEFAULT '0', + `active` tinyint(1) unsigned NOT NULL DEFAULT '0', `execution_count` bigint(20) unsigned NOT NULL DEFAULT '0', `assigned_count` int(11) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`task_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 `cw_block_comments` +-- + +DROP TABLE IF EXISTS `cw_block_comments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_block_comments` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `block_id` int(11) NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `comment` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) NOT NULL, + `chdate` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `index_block_id` (`block_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_block_feedbacks` +-- + +DROP TABLE IF EXISTS `cw_block_feedbacks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_block_feedbacks` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `block_id` int(11) NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `feedback` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) NOT NULL, + `chdate` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `index_block_id` (`block_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_blocks` +-- + +DROP TABLE IF EXISTS `cw_blocks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_blocks` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `container_id` int(11) NOT NULL, + `owner_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `edit_blocker_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `position` int(11) NOT NULL, + `block_type` varchar(255) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `visible` tinyint(1) NOT NULL, + `payload` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) NOT NULL, + `chdate` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `index_container_id` (`container_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_bookmarks` +-- + +DROP TABLE IF EXISTS `cw_bookmarks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_bookmarks` ( + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `element_id` int(11) NOT NULL, + `mkdate` int(11) NOT NULL, + `chdate` int(11) NOT NULL, + PRIMARY KEY (`user_id`,`element_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_containers` +-- + +DROP TABLE IF EXISTS `cw_containers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_containers` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `structural_element_id` int(11) NOT NULL, + `owner_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `edit_blocker_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `position` int(11) NOT NULL, + `site` int(11) NOT NULL, + `container_type` varchar(255) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `visible` tinyint(1) NOT NULL, + `payload` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) NOT NULL, + `chdate` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `index_structural_element_id` (`structural_element_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_structural_elements` +-- + +DROP TABLE IF EXISTS `cw_structural_elements`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_structural_elements` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `parent_id` int(11) DEFAULT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_type` enum('course','user') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `owner_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `edit_blocker_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `position` int(11) NOT NULL, + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, + `image_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `purpose` enum('content','template','oer','portfolio','draft','other') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `payload` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `public` tinyint(1) NOT NULL, + `release_date` int(11) NOT NULL, + `withdraw_date` int(11) NOT NULL, + `read_approval` text COLLATE utf8mb4_unicode_ci NOT NULL, + `write_approval` text COLLATE utf8mb4_unicode_ci NOT NULL, + `copy_approval` text COLLATE utf8mb4_unicode_ci NOT NULL, + `external_relations` text COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) NOT NULL, + `chdate` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `index_parent_id` (`parent_id`), + KEY `index_range_id` (`range_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_user_data_fields` +-- + +DROP TABLE IF EXISTS `cw_user_data_fields`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_user_data_fields` ( + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `block_id` int(11) NOT NULL, + `payload` text COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) NOT NULL, + `chdate` int(11) NOT NULL, + PRIMARY KEY (`user_id`,`block_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_user_progresses` +-- + +DROP TABLE IF EXISTS `cw_user_progresses`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_user_progresses` ( + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `block_id` int(11) NOT NULL, + `grade` float NOT NULL, + `mkdate` int(11) NOT NULL, + `chdate` int(11) NOT NULL, + PRIMARY KEY (`user_id`,`block_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `datafields` -- @@ -1094,21 +1275,21 @@ DROP TABLE IF EXISTS `datafields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `datafields` ( - `datafield_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `datafield_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `object_type` enum('sem','inst','user','userinstrole','usersemdata','roleinstdata','moduldeskriptor','modulteildeskriptor','studycourse') COLLATE utf8mb4_unicode_ci DEFAULT NULL, `object_class` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `edit_perms` enum('user','autor','tutor','dozent','admin','root') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `view_perms` enum('all','user','autor','tutor','dozent','admin','root') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `institut_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `institut_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `priority` tinyint(3) unsigned NOT NULL DEFAULT '0', - `mkdate` int(20) unsigned DEFAULT NULL, - `chdate` int(20) unsigned DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, `type` enum('bool','textline','textlinei18n','textarea','textareai18n','textmarkup','textmarkupi18n','selectbox','date','time','email','phone','radio','combo','link','selectboxmultiple') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'textline', `typeparam` text COLLATE utf8mb4_unicode_ci NOT NULL, - `is_required` tinyint(4) NOT NULL DEFAULT '0', + `is_required` tinyint(1) unsigned NOT NULL DEFAULT '0', `default_value` text COLLATE utf8mb4_unicode_ci, - `is_userfilter` tinyint(3) unsigned NOT NULL DEFAULT '0', + `is_userfilter` tinyint(1) unsigned NOT NULL DEFAULT '0', `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `system` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`datafield_id`), @@ -1124,12 +1305,12 @@ DROP TABLE IF EXISTS `datafields_entries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `datafields_entries` ( - `datafield_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `datafield_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `content` text COLLATE utf8mb4_unicode_ci, - `mkdate` int(20) unsigned DEFAULT NULL, - `chdate` int(20) unsigned DEFAULT NULL, - `sec_range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, + `sec_range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `lang` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`datafield_id`,`range_id`,`sec_range_id`,`lang`) USING BTREE, KEY `range_id` (`range_id`,`datafield_id`), @@ -1146,11 +1327,13 @@ DROP TABLE IF EXISTS `deputies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `deputies` ( - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `gruppe` tinyint(4) NOT NULL DEFAULT '0', `notification` int(10) NOT NULL DEFAULT '0', - `edit_about` tinyint(1) NOT NULL DEFAULT '0', + `edit_about` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`range_id`,`user_id`), KEY `user_id` (`user_id`,`range_id`,`edit_about`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1167,9 +1350,11 @@ CREATE TABLE `etask_assignment_attempts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `assignment_id` int(11) NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `start` int(11) DEFAULT NULL, - `end` int(11) DEFAULT NULL, + `start` int(11) unsigned DEFAULT NULL, + `end` int(11) unsigned DEFAULT NULL, `options` text COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1187,6 +1372,8 @@ CREATE TABLE `etask_assignment_ranges` ( `range_type` enum('course','global','group','institute','user') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `options` text COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `assignment_id` (`assignment_id`,`range_type`,`range_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1205,10 +1392,12 @@ CREATE TABLE `etask_assignments` ( `range_type` enum('course','global','group','institute','user') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `type` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, - `start` int(11) DEFAULT NULL, - `end` int(11) DEFAULT NULL, - `active` tinyint(1) NOT NULL, + `start` int(11) unsigned DEFAULT NULL, + `end` int(11) unsigned DEFAULT NULL, + `active` tinyint(1) unsigned NOT NULL, `options` text COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1230,8 +1419,8 @@ CREATE TABLE `etask_responses` ( `points` float DEFAULT NULL, `feedback` text COLLATE utf8mb4_unicode_ci, `grader_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, `options` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1266,8 +1455,8 @@ CREATE TABLE `etask_tasks` ( `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `task` text COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, `options` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1301,6 +1490,8 @@ CREATE TABLE `etask_test_tasks` ( `position` int(11) NOT NULL, `points` float DEFAULT NULL, `options` text COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`test_id`,`task_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1317,8 +1508,8 @@ CREATE TABLE `etask_tests` ( `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, `options` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1332,18 +1523,18 @@ DROP TABLE IF EXISTS `eval`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `eval` ( - `eval_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `eval_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `text` text COLLATE utf8mb4_unicode_ci NOT NULL, - `startdate` int(20) DEFAULT NULL, - `stopdate` int(20) DEFAULT NULL, - `timespan` int(20) DEFAULT NULL, - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', - `anonymous` tinyint(1) NOT NULL DEFAULT '1', - `visible` tinyint(1) NOT NULL DEFAULT '1', - `shared` tinyint(1) NOT NULL DEFAULT '0', + `startdate` int(11) unsigned DEFAULT NULL, + `stopdate` int(11) unsigned DEFAULT NULL, + `timespan` int(11) unsigned DEFAULT NULL, + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', + `anonymous` tinyint(1) unsigned NOT NULL DEFAULT '1', + `visible` tinyint(1) unsigned NOT NULL DEFAULT '1', + `shared` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`eval_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1356,8 +1547,8 @@ DROP TABLE IF EXISTS `eval_group_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `eval_group_template` ( - `evalgroup_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `evalgroup_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `group_type` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'normal', PRIMARY KEY (`evalgroup_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1371,8 +1562,8 @@ DROP TABLE IF EXISTS `eval_range`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `eval_range` ( - `eval_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `eval_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`eval_id`,`range_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1385,15 +1576,15 @@ DROP TABLE IF EXISTS `eval_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `eval_templates` ( - `template_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `institution_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `template_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `institution_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `show_questions` tinyint(1) NOT NULL DEFAULT '1', - `show_total_stats` tinyint(1) NOT NULL DEFAULT '1', - `show_graphics` tinyint(1) NOT NULL DEFAULT '1', - `show_questionblock_headline` tinyint(1) NOT NULL DEFAULT '1', - `show_group_headline` tinyint(1) NOT NULL DEFAULT '1', + `show_questions` tinyint(1) unsigned NOT NULL DEFAULT '1', + `show_total_stats` tinyint(1) unsigned NOT NULL DEFAULT '1', + `show_graphics` tinyint(1) unsigned NOT NULL DEFAULT '1', + `show_questionblock_headline` tinyint(1) unsigned NOT NULL DEFAULT '1', + `show_group_headline` tinyint(1) unsigned NOT NULL DEFAULT '1', `polscale_gfx_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'bars', `likertscale_gfx_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'bars', `mchoice_scale_gfx_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'bars', @@ -1411,8 +1602,8 @@ DROP TABLE IF EXISTS `eval_templates_eval`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `eval_templates_eval` ( - `eval_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `template_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `eval_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `template_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`eval_id`), KEY `eval_id` (`eval_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1426,9 +1617,9 @@ DROP TABLE IF EXISTS `eval_templates_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `eval_templates_user` ( - `eval_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `template_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `eval_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `template_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', KEY `eval_id` (`eval_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1441,8 +1632,8 @@ DROP TABLE IF EXISTS `eval_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `eval_user` ( - `eval_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `eval_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`eval_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1455,14 +1646,14 @@ DROP TABLE IF EXISTS `evalanswer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `evalanswer` ( - `evalanswer_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `parent_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `evalanswer_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `parent_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `position` int(11) NOT NULL DEFAULT '0', `text` text COLLATE utf8mb4_unicode_ci NOT NULL, `value` int(11) NOT NULL DEFAULT '0', - `rows` tinyint(4) NOT NULL DEFAULT '0', - `counter` int(11) NOT NULL DEFAULT '0', - `residual` tinyint(1) NOT NULL DEFAULT '0', + `rows` tinyint(4) unsigned NOT NULL DEFAULT '0', + `counter` int(11) unsigned NOT NULL DEFAULT '0', + `residual` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`evalanswer_id`), KEY `parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1476,9 +1667,9 @@ DROP TABLE IF EXISTS `evalanswer_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `evalanswer_user` ( - `evalanswer_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `evaldate` int(11) NOT NULL DEFAULT '0', + `evalanswer_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `evaldate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`evalanswer_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1491,14 +1682,14 @@ DROP TABLE IF EXISTS `evalgroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `evalgroup` ( - `evalgroup_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `parent_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `evalgroup_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `parent_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `text` text COLLATE utf8mb4_unicode_ci NOT NULL, `position` int(11) NOT NULL DEFAULT '0', `child_type` enum('EvaluationGroup','EvaluationQuestion') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'EvaluationGroup', - `mandatory` tinyint(1) NOT NULL DEFAULT '0', - `template_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `mandatory` tinyint(1) unsigned NOT NULL DEFAULT '0', + `template_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`evalgroup_id`), KEY `parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1512,12 +1703,12 @@ DROP TABLE IF EXISTS `evalquestion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `evalquestion` ( - `evalquestion_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `parent_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `evalquestion_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `parent_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `type` enum('likertskala','multiplechoice','polskala') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'multiplechoice', `position` int(11) NOT NULL DEFAULT '0', `text` text COLLATE utf8mb4_unicode_ci NOT NULL, - `multiplechoice` tinyint(1) NOT NULL DEFAULT '0', + `multiplechoice` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`evalquestion_id`), KEY `parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1531,12 +1722,12 @@ DROP TABLE IF EXISTS `event_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `event_data` ( - `event_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `uid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `start` int(10) unsigned NOT NULL DEFAULT '0', - `end` int(10) unsigned NOT NULL DEFAULT '0', + `event_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `uid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, + `start` int(11) unsigned NOT NULL DEFAULT '0', + `end` int(11) unsigned NOT NULL DEFAULT '0', `summary` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci, `class` enum('PUBLIC','PRIVATE','CONFIDENTIAL') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'PRIVATE', @@ -1544,7 +1735,7 @@ CREATE TABLE `event_data` ( `category_intern` tinyint(3) unsigned NOT NULL DEFAULT '0', `priority` tinyint(3) unsigned NOT NULL DEFAULT '0', `location` tinytext COLLATE utf8mb4_unicode_ci, - `ts` int(10) unsigned NOT NULL DEFAULT '0', + `ts` int(11) unsigned NOT NULL DEFAULT '0', `linterval` smallint(5) unsigned DEFAULT NULL, `sinterval` smallint(5) unsigned DEFAULT NULL, `wdays` varchar(7) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, @@ -1553,11 +1744,11 @@ CREATE TABLE `event_data` ( `rtype` enum('SINGLE','DAILY','WEEKLY','MONTHLY','YEARLY') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'SINGLE', `duration` smallint(5) unsigned NOT NULL DEFAULT '0', `count` smallint(5) DEFAULT '0', - `expire` int(10) unsigned NOT NULL DEFAULT '0', + `expire` int(11) unsigned NOT NULL DEFAULT '0', `exceptions` text COLLATE utf8mb4_unicode_ci, - `mkdate` int(10) unsigned NOT NULL DEFAULT '0', - `chdate` int(10) unsigned NOT NULL DEFAULT '0', - `importdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', + `importdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`event_id`), UNIQUE KEY `uid` (`uid`), KEY `autor_id` (`author_id`) @@ -1572,20 +1763,20 @@ DROP TABLE IF EXISTS `ex_termine`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ex_termine` ( - `termin_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `autor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `termin_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci, - `date` int(20) NOT NULL DEFAULT '0', - `end_time` int(20) NOT NULL DEFAULT '0', - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `date` int(11) unsigned NOT NULL DEFAULT '0', + `end_time` int(11) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `date_typ` tinyint(4) NOT NULL DEFAULT '0', - `topic_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `topic_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `raum` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `metadate_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `resource_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `metadate_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `resource_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`termin_id`), KEY `range_id` (`range_id`,`date`), KEY `metadate_id` (`metadate_id`,`date`), @@ -1601,18 +1792,41 @@ DROP TABLE IF EXISTS `extern_config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `extern_config` ( - `config_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `config_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `config_type` int(4) NOT NULL DEFAULT '0', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `is_standard` int(4) NOT NULL DEFAULT '0', + `is_standard` tinyint(1) unsigned NOT NULL DEFAULT '0', `config` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`config_id`,`range_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 `external_users` +-- + +DROP TABLE IF EXISTS `external_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `external_users` ( + `external_contact_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `foreign_id` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `host_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `contact_type` varchar(16) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'anonymous', + `name` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL, + `avatar_url` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `data` text COLLATE utf8mb4_unicode_ci, + `chdate` int(11) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + PRIMARY KEY (`external_contact_id`), + KEY `mail_identifier` (`foreign_id`), + KEY `contact_type` (`contact_type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `fach` -- @@ -1621,15 +1835,15 @@ DROP TABLE IF EXISTS `fach`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fach` ( - `fach_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `fach_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name_kurz` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `beschreibung` text COLLATE utf8mb4_unicode_ci, `schlagworte` text COLLATE utf8mb4_unicode_ci, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`fach_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1643,15 +1857,15 @@ DROP TABLE IF EXISTS `feedback`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `feedback` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `range_type` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `course_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `course_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `question` text COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `mode` int(11) unsigned NOT NULL, - `results_visible` tinyint(4) unsigned NOT NULL, - `commentable` tinyint(4) unsigned NOT NULL, + `results_visible` tinyint(1) unsigned NOT NULL, + `commentable` tinyint(1) unsigned NOT NULL, `mkdate` int(11) unsigned NOT NULL, `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`id`), @@ -1671,11 +1885,11 @@ DROP TABLE IF EXISTS `feedback_entries`; CREATE TABLE `feedback_entries` ( `id` int(11) NOT NULL AUTO_INCREMENT, `feedback_id` int(11) unsigned NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `comment` text COLLATE utf8mb4_unicode_ci NOT NULL, `rating` tinyint(3) unsigned NOT NULL, - `mkdate` int(10) unsigned NOT NULL, - `chdate` int(10) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `feedback_id` (`feedback_id`), KEY `user_id` (`user_id`) @@ -1690,16 +1904,16 @@ DROP TABLE IF EXISTS `file_refs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `file_refs` ( - `id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `file_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `folder_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `file_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `folder_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `downloads` int(10) unsigned NOT NULL DEFAULT '0', `description` text COLLATE utf8mb4_unicode_ci NOT NULL, - `content_terms_of_use_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `content_terms_of_use_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `mkdate` int(10) unsigned NOT NULL DEFAULT '0', - `chdate` int(10) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `file_id` (`file_id`), KEY `folder_id` (`folder_id`) @@ -1714,16 +1928,16 @@ DROP TABLE IF EXISTS `files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `files` ( - `id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `mime_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `filetype` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT 'StandardFile', `size` int(10) unsigned NOT NULL, `metadata` text COLLATE utf8mb4_unicode_ci, `author_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `mkdate` int(10) unsigned NOT NULL, - `chdate` int(10) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1738,15 +1952,15 @@ DROP TABLE IF EXISTS `files_search_attributes`; CREATE TABLE `files_search_attributes` ( `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `file_ref_user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `file_ref_mkdate` int(10) unsigned NOT NULL, - `file_ref_chdate` int(10) unsigned NOT NULL, + `file_ref_mkdate` int(11) unsigned NOT NULL, + `file_ref_chdate` int(11) unsigned NOT NULL, `folder_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `folder_range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `folder_range_type` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `folder_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `course_status` tinyint(4) unsigned DEFAULT NULL, - `semester_start` int(20) unsigned DEFAULT NULL, - `semester_end` int(20) unsigned DEFAULT NULL, + `semester_start` int(11) unsigned DEFAULT NULL, + `semester_end` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `folder_range_id` (`folder_range_id`), KEY `folder_range_type` (`folder_range_type`), @@ -1764,7 +1978,7 @@ DROP TABLE IF EXISTS `files_search_index`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `files_search_index` ( `FTS_DOC_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, - `file_ref_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `file_ref_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `text` text COLLATE utf8mb4_unicode_ci NOT NULL, `relevance` float NOT NULL, PRIMARY KEY (`FTS_DOC_ID`), @@ -1781,17 +1995,17 @@ DROP TABLE IF EXISTS `folders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `folders` ( - `id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `parent_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `parent_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `range_type` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `folder_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `data_content` text COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, - `mkdate` int(10) unsigned NOT NULL, - `chdate` int(10) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `range_id` (`range_id`), KEY `parent_id` (`parent_id`) @@ -1806,8 +2020,8 @@ DROP TABLE IF EXISTS `forum_abo_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `forum_abo_users` ( - `topic_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `topic_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, PRIMARY KEY (`topic_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1820,8 +2034,8 @@ DROP TABLE IF EXISTS `forum_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `forum_categories` ( - `category_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `category_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `entry_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pos` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`category_id`), @@ -1837,8 +2051,8 @@ DROP TABLE IF EXISTS `forum_categories_entries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `forum_categories_entries` ( - `category_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `topic_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `category_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `topic_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `pos` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`category_id`,`topic_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -1852,23 +2066,23 @@ DROP TABLE IF EXISTS `forum_entries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `forum_entries` ( - `topic_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `topic_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL, `area` tinyint(4) NOT NULL DEFAULT '0', - `mkdate` int(20) NOT NULL, - `latest_chdate` int(11) DEFAULT NULL, - `chdate` int(20) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `latest_chdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned NOT NULL, `author` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `author_host` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `lft` int(11) NOT NULL, `rgt` int(11) NOT NULL, `depth` int(11) NOT NULL, `anonymous` tinyint(4) NOT NULL DEFAULT '0', - `closed` tinyint(1) NOT NULL DEFAULT '0', - `sticky` int(1) NOT NULL DEFAULT '0', + `closed` tinyint(1) unsigned NOT NULL DEFAULT '0', + `sticky` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`topic_id`), KEY `seminar_id` (`seminar_id`,`lft`), KEY `seminar_id_2` (`seminar_id`,`rgt`), @@ -1884,8 +2098,8 @@ DROP TABLE IF EXISTS `forum_entries_issues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `forum_entries_issues` ( - `topic_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `issue_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `topic_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `issue_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, PRIMARY KEY (`topic_id`,`issue_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1898,8 +2112,8 @@ DROP TABLE IF EXISTS `forum_favorites`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `forum_favorites` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `topic_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `topic_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, PRIMARY KEY (`user_id`,`topic_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1912,8 +2126,8 @@ DROP TABLE IF EXISTS `forum_likes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `forum_likes` ( - `topic_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `topic_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, PRIMARY KEY (`topic_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1926,10 +2140,10 @@ DROP TABLE IF EXISTS `forum_visits`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `forum_visits` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `visitdate` int(11) NOT NULL, - `last_visitdate` int(11) NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `visitdate` int(11) unsigned NOT NULL, + `last_visitdate` int(11) unsigned NOT NULL, PRIMARY KEY (`user_id`,`seminar_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1942,11 +2156,11 @@ DROP TABLE IF EXISTS `global_resource_locks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `global_resource_locks` ( - `lock_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `lock_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `begin` int(11) unsigned NOT NULL DEFAULT '0', `end` int(11) unsigned NOT NULL DEFAULT '0', `type` varchar(15) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`lock_id`) @@ -1961,7 +2175,7 @@ DROP TABLE IF EXISTS `globalsearch_buzzwords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `globalsearch_buzzwords` ( - `id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `rights` enum('user','autor','tutor','dozent','admin','root') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'user', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `buzzwords` varchar(2048) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', @@ -1987,8 +2201,8 @@ CREATE TABLE `grading_definitions` ( `category` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `position` int(11) NOT NULL DEFAULT '0', `weight` float unsigned NOT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `course_id` (`course_id`), KEY `tool` (`tool`) @@ -2007,8 +2221,8 @@ CREATE TABLE `grading_instances` ( `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `rawgrade` decimal(6,5) unsigned NOT NULL, `feedback` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`definition_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2021,19 +2235,19 @@ DROP TABLE IF EXISTS `help_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_content` ( - `global_content_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `global_content_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `content_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `language` char(2) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'de', `content` text COLLATE utf8mb4_unicode_ci NOT NULL, `route` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `studip_version` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `position` tinyint(4) NOT NULL DEFAULT '1', - `custom` tinyint(4) NOT NULL DEFAULT '0', - `visible` tinyint(4) NOT NULL DEFAULT '1', + `custom` tinyint(1) unsigned NOT NULL DEFAULT '0', + `visible` tinyint(1) unsigned NOT NULL DEFAULT '1', `author_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `installation_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `mkdate` int(11) unsigned NOT NULL, - `chdate` int(11) NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`content_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2049,6 +2263,8 @@ CREATE TABLE `help_tour_audiences` ( `tour_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `type` enum('inst','sem','studiengang','abschluss','userdomain','tour') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`tour_id`,`range_id`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2061,9 +2277,11 @@ DROP TABLE IF EXISTS `help_tour_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_tour_settings` ( - `tour_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `active` tinyint(4) NOT NULL, + `tour_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `active` tinyint(1) unsigned NOT NULL, `access` enum('standard','link','autostart','autostart_once') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`tour_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2081,14 +2299,14 @@ CREATE TABLE `help_tour_steps` ( `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `tip` text COLLATE utf8mb4_unicode_ci NOT NULL, `orientation` enum('T','TL','TR','L','LT','LB','B','BL','BR','R','RT','RB') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'B', - `interactive` tinyint(4) NOT NULL, + `interactive` tinyint(1) unsigned NOT NULL, `css_selector` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `route` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `action_prev` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `action_next` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `author_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `mkdate` int(11) unsigned NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`tour_id`,`step`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2101,10 +2319,12 @@ DROP TABLE IF EXISTS `help_tour_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_tour_user` ( - `tour_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `tour_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `step_nr` int(11) NOT NULL, - `completed` tinyint(4) NOT NULL DEFAULT '0', + `completed` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`tour_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2117,7 +2337,7 @@ DROP TABLE IF EXISTS `help_tours`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `help_tours` ( - `global_tour_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `global_tour_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `tour_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, @@ -2129,7 +2349,7 @@ CREATE TABLE `help_tours` ( `installation_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'demo-installation', `author_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `mkdate` int(11) unsigned NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`tour_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2142,7 +2362,7 @@ DROP TABLE IF EXISTS `i18n`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `i18n` ( - `object_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `object_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `table` varchar(64) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `field` varchar(128) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `lang` varchar(5) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, @@ -2159,12 +2379,12 @@ DROP TABLE IF EXISTS `institute_plan_columns`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `institute_plan_columns` ( - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `column` int(4) NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, - `visible` tinyint(1) NOT NULL DEFAULT '1', - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `visible` tinyint(1) unsigned NOT NULL DEFAULT '1', + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`range_id`,`column`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2177,12 +2397,12 @@ DROP TABLE IF EXISTS `kategorien`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kategorien` ( - `kategorie_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `kategorie_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `content` text COLLATE utf8mb4_unicode_ci NOT NULL, - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `priority` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`kategorie_id`), KEY `priority` (`priority`), @@ -2190,6 +2410,26 @@ CREATE TABLE `kategorien` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `licenses` +-- + +DROP TABLE IF EXISTS `licenses`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `licenses` ( + `identifier` varchar(64) NOT NULL COMMENT 'According to SPDX standard if able.', + `name` varchar(128) DEFAULT NULL, + `link` varchar(256) DEFAULT NULL, + `default` tinyint(1) DEFAULT '0', + `description` text, + `chdate` int(11) DEFAULT NULL, + `mkdate` int(11) DEFAULT NULL, + PRIMARY KEY (`identifier`), + KEY `default` (`default`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `limitedadmissions` -- @@ -2198,13 +2438,13 @@ DROP TABLE IF EXISTS `limitedadmissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `limitedadmissions` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, - `start_time` int(11) NOT NULL DEFAULT '0', - `end_time` int(11) NOT NULL DEFAULT '0', + `start_time` int(11) unsigned NOT NULL DEFAULT '0', + `end_time` int(11) unsigned NOT NULL DEFAULT '0', `maxnumber` int(11) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2217,13 +2457,15 @@ DROP TABLE IF EXISTS `lock_rules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lock_rules` ( - `lock_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `lock_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `permission` enum('autor','tutor','dozent','admin','root') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'dozent', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `attributes` text COLLATE utf8mb4_unicode_ci NOT NULL, `object_type` enum('sem','inst','user') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'sem', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`lock_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2236,10 +2478,10 @@ DROP TABLE IF EXISTS `lockedadmissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lockedadmissions` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2252,15 +2494,17 @@ DROP TABLE IF EXISTS `log_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_actions` ( - `action_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `action_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `info_template` text COLLATE utf8mb4_unicode_ci, - `active` tinyint(1) NOT NULL DEFAULT '1', - `expires` int(20) NOT NULL DEFAULT '0', + `active` tinyint(1) unsigned NOT NULL DEFAULT '1', + `expires` int(11) unsigned NOT NULL DEFAULT '0', `filename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `class` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` enum('core','plugin','file') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`action_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2274,10 +2518,10 @@ DROP TABLE IF EXISTS `log_events`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_events` ( `event_id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `action_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `affected_range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `coaffected_range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `action_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `affected_range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `coaffected_range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `info` text COLLATE utf8mb4_unicode_ci, `dbg_info` text COLLATE utf8mb4_unicode_ci, `mkdate` int(11) unsigned NOT NULL, @@ -2296,9 +2540,11 @@ DROP TABLE IF EXISTS `loginbackgrounds`; CREATE TABLE `loginbackgrounds` ( `background_id` int(11) NOT NULL AUTO_INCREMENT, `filename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `mobile` tinyint(1) NOT NULL DEFAULT '1', - `desktop` tinyint(1) NOT NULL DEFAULT '1', - `in_release` tinyint(1) NOT NULL DEFAULT '0', + `mobile` tinyint(1) unsigned NOT NULL DEFAULT '1', + `desktop` tinyint(1) unsigned NOT NULL DEFAULT '1', + `in_release` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`background_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2318,8 +2564,8 @@ CREATE TABLE `lti_data` ( `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `tool_id` int(11) NOT NULL DEFAULT '0', `launch_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `options` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `course_id` (`course_id`) @@ -2337,8 +2583,8 @@ CREATE TABLE `lti_grade` ( `link_id` int(11) NOT NULL DEFAULT '0', `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `score` float NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`link_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2357,11 +2603,12 @@ CREATE TABLE `lti_tool` ( `consumer_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `consumer_secret` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `custom_parameters` text COLLATE utf8mb4_unicode_ci NOT NULL, - `allow_custom_url` tinyint(1) NOT NULL DEFAULT '0', - `deep_linking` tinyint(1) NOT NULL DEFAULT '0', - `send_lis_person` tinyint(1) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `allow_custom_url` tinyint(1) unsigned NOT NULL DEFAULT '0', + `deep_linking` tinyint(1) unsigned NOT NULL DEFAULT '0', + `send_lis_person` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', + `oauth_signature_method` varchar(10) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'sha1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2374,14 +2621,14 @@ DROP TABLE IF EXISTS `mail_queue_entries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mail_queue_entries` ( - `mail_queue_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mail_queue_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `mail` text COLLATE utf8mb4_unicode_ci NOT NULL, - `message_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `tries` int(11) NOT NULL, - `last_try` int(11) NOT NULL DEFAULT '0', - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) 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(11) unsigned NOT NULL, + `last_try` int(11) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`mail_queue_id`), KEY `message_id` (`message_id`), KEY `user_id` (`user_id`) @@ -2396,7 +2643,7 @@ DROP TABLE IF EXISTS `media_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `media_cache` ( - `id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `type` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `chdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `expires` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', @@ -2412,12 +2659,12 @@ DROP TABLE IF EXISTS `message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `message` ( - `message_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `autor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `message_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 '', `subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `message` text COLLATE utf8mb4_unicode_ci NOT NULL, - `show_adressees` tinyint(4) NOT NULL DEFAULT '0', - `mkdate` int(20) NOT NULL DEFAULT '0', + `show_adressees` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `priority` enum('normal','high') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'normal', PRIMARY KEY (`message_id`), KEY `autor_id` (`autor_id`) @@ -2432,11 +2679,11 @@ DROP TABLE IF EXISTS `message_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `message_tags` ( - `message_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `message_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `tag` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, - `chdate` bigint(20) NOT NULL, - `mkdate` bigint(20) NOT NULL, + `chdate` int(11) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`message_id`,`user_id`,`tag`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2451,11 +2698,11 @@ DROP TABLE IF EXISTS `message_user`; CREATE TABLE `message_user` ( `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `message_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `readed` tinyint(1) NOT NULL DEFAULT '0', - `deleted` tinyint(1) NOT NULL DEFAULT '0', + `readed` tinyint(1) unsigned NOT NULL DEFAULT '0', + `deleted` tinyint(1) unsigned NOT NULL DEFAULT '0', `snd_rec` enum('rec','snd') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'rec', - `answered` tinyint(1) NOT NULL DEFAULT '0', - `mkdate` int(10) unsigned NOT NULL DEFAULT '0', + `answered` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`message_id`,`snd_rec`,`user_id`), KEY `user_id` (`user_id`,`snd_rec`,`deleted`,`readed`,`mkdate`), KEY `user_id_2` (`user_id`,`snd_rec`,`deleted`,`mkdate`) @@ -2470,15 +2717,15 @@ DROP TABLE IF EXISTS `mvv_abschl_kategorie`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_abschl_kategorie` ( - `kategorie_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `kategorie_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name_kurz` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `beschreibung` text COLLATE utf8mb4_unicode_ci, `position` int(11) DEFAULT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`kategorie_id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -2492,13 +2739,13 @@ DROP TABLE IF EXISTS `mvv_abschl_zuord`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_abschl_zuord` ( - `abschluss_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `kategorie_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `abschluss_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `kategorie_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `position` int(4) NOT NULL DEFAULT '9999', - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`abschluss_id`), KEY `kategorie_id` (`kategorie_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -2519,8 +2766,8 @@ CREATE TABLE `mvv_aufbaustudiengang` ( `kommentar` text COLLATE utf8mb4_unicode_ci, `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `grund_stg_id` (`grund_stg_id`,`aufbau_stg_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -2534,13 +2781,13 @@ DROP TABLE IF EXISTS `mvv_contacts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_contacts` ( - `contact_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `contact_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `contact_status` enum('intern','extern','institution') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `alt_mail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`contact_id`), KEY `contact_status` (`contact_status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -2554,17 +2801,17 @@ DROP TABLE IF EXISTS `mvv_contacts_ranges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_contacts_ranges` ( - `contact_range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `contact_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `contact_range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `contact_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `range_type` enum('Modul','Studiengang','StudiengangTeil') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `category` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `position` int(10) DEFAULT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`contact_range_id`), KEY `range_id` (`range_id`), KEY `range_type` (`range_type`), @@ -2582,16 +2829,16 @@ DROP TABLE IF EXISTS `mvv_extern_contacts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_extern_contacts` ( - `extern_contact_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `extern_contact_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `vorname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `homepage` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `mail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`extern_contact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2604,13 +2851,13 @@ DROP TABLE IF EXISTS `mvv_fach_inst`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_fach_inst` ( - `fach_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `institut_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `fach_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `institut_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `position` int(11) NOT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`fach_id`,`institut_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2623,16 +2870,16 @@ DROP TABLE IF EXISTS `mvv_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_files` ( - `mvvfile_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mvvfile_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `year` int(10) DEFAULT NULL, `type` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category` text COLLATE utf8mb4_unicode_ci, `tags` text COLLATE utf8mb4_unicode_ci, - `extern_visible` tinyint(1) DEFAULT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `extern_visible` tinyint(1) unsigned DEFAULT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`mvvfile_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2645,14 +2892,14 @@ DROP TABLE IF EXISTS `mvv_files_filerefs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_files_filerefs` ( - `mvvfile_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mvvfile_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `file_language` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL, - `fileref_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `fileref_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`mvvfile_id`,`file_language`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2665,14 +2912,14 @@ DROP TABLE IF EXISTS `mvv_files_ranges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_files_ranges` ( - `mvvfile_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mvvfile_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `range_type` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `position` int(10) DEFAULT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`mvvfile_id`,`range_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2685,13 +2932,13 @@ DROP TABLE IF EXISTS `mvv_lvgruppe`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_lvgruppe` ( - `lvgruppe_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `lvgruppe_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `alttext` tinytext COLLATE utf8mb4_unicode_ci, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`lvgruppe_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2704,14 +2951,14 @@ DROP TABLE IF EXISTS `mvv_lvgruppe_modulteil`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_lvgruppe_modulteil` ( - `lvgruppe_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `modulteil_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `lvgruppe_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `modulteil_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `position` int(11) NOT NULL DEFAULT '9999', - `fn_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `fn_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`lvgruppe_id`,`modulteil_id`), KEY `fn_id` (`fn_id`), KEY `modulteil_id` (`modulteil_id`) @@ -2726,12 +2973,12 @@ DROP TABLE IF EXISTS `mvv_lvgruppe_seminar`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_lvgruppe_seminar` ( - `lvgruppe_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `lvgruppe_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`lvgruppe_id`,`seminar_id`), KEY `seminar_id` (`seminar_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -2745,14 +2992,14 @@ DROP TABLE IF EXISTS `mvv_modul`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_modul` ( - `modul_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `modul_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `quelle` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variante` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `flexnow_modul` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `end` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `beschlussdatum` int(11) DEFAULT NULL, + `beschlussdatum` int(11) unsigned DEFAULT NULL, `fassung_nr` int(2) DEFAULT NULL, `fassung_typ` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `version` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', @@ -2766,10 +3013,10 @@ CREATE TABLE `mvv_modul` ( `stat` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `kommentar_status` text COLLATE utf8mb4_unicode_ci, `verantwortlich` tinytext COLLATE utf8mb4_unicode_ci, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`modul_id`), KEY `stat` (`stat`), KEY `flexnow_modul` (`flexnow_modul`) @@ -2784,8 +3031,8 @@ DROP TABLE IF EXISTS `mvv_modul_deskriptor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_modul_deskriptor` ( - `deskriptor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `modul_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `deskriptor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `modul_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `verantwortlich` tinytext COLLATE utf8mb4_unicode_ci, `bezeichnung` tinytext COLLATE utf8mb4_unicode_ci, `voraussetzung` text COLLATE utf8mb4_unicode_ci, @@ -2804,10 +3051,10 @@ CREATE TABLE `mvv_modul_deskriptor` ( `pruef_leistung` text COLLATE utf8mb4_unicode_ci, `pruef_wiederholung` text COLLATE utf8mb4_unicode_ci, `ersatztext` text COLLATE utf8mb4_unicode_ci, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`deskriptor_id`), UNIQUE KEY `modul_id` (`modul_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -2821,14 +3068,14 @@ DROP TABLE IF EXISTS `mvv_modul_inst`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_modul_inst` ( - `modul_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `institut_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `modul_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `institut_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `gruppe` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `position` int(11) NOT NULL DEFAULT '9999', - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`modul_id`,`institut_id`), KEY `institut_id` (`institut_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -2842,13 +3089,13 @@ DROP TABLE IF EXISTS `mvv_modul_language`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_modul_language` ( - `modul_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `modul_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `lang` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `position` int(11) NOT NULL DEFAULT '9999', - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`modul_id`,`lang`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2861,8 +3108,8 @@ DROP TABLE IF EXISTS `mvv_modulteil`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_modulteil` ( - `modulteil_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `modul_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `modulteil_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `modul_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `position` int(11) NOT NULL DEFAULT '9999', `flexnow_modul` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `nummer` varchar(20) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, @@ -2877,12 +3124,12 @@ CREATE TABLE `mvv_modulteil` ( `wl_selbst` int(11) DEFAULT NULL, `wl_pruef` int(11) DEFAULT NULL, `anteil_note` int(11) DEFAULT NULL, - `ausgleichbar` int(1) NOT NULL DEFAULT '0', - `pflicht` int(2) NOT NULL DEFAULT '0', - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `ausgleichbar` tinyint(1) unsigned NOT NULL DEFAULT '0', + `pflicht` tinyint(1) unsigned NOT NULL DEFAULT '0', + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`modulteil_id`), KEY `modul_id` (`modul_id`), KEY `flexnow_modul` (`flexnow_modul`) @@ -2897,8 +3144,8 @@ DROP TABLE IF EXISTS `mvv_modulteil_deskriptor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_modulteil_deskriptor` ( - `deskriptor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `modulteil_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `deskriptor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `modulteil_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `bezeichnung` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `voraussetzung` text COLLATE utf8mb4_unicode_ci, `kommentar` text COLLATE utf8mb4_unicode_ci, @@ -2910,10 +3157,10 @@ CREATE TABLE `mvv_modulteil_deskriptor` ( `pruef_vorleistung` text COLLATE utf8mb4_unicode_ci, `pruef_leistung` text COLLATE utf8mb4_unicode_ci, `kommentar_pflicht` text COLLATE utf8mb4_unicode_ci, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`deskriptor_id`), KEY `modulteil_id` (`modulteil_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -2927,13 +3174,13 @@ DROP TABLE IF EXISTS `mvv_modulteil_language`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_modulteil_language` ( - `modulteil_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `modulteil_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `lang` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `position` int(11) NOT NULL DEFAULT '9999', - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`modulteil_id`,`lang`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2946,14 +3193,14 @@ DROP TABLE IF EXISTS `mvv_modulteil_stgteilabschnitt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_modulteil_stgteilabschnitt` ( - `modulteil_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `abschnitt_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `modulteil_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `abschnitt_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `fachsemester` int(2) NOT NULL, `differenzierung` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`modulteil_id`,`abschnitt_id`,`fachsemester`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2968,14 +3215,16 @@ DROP TABLE IF EXISTS `mvv_ovl_conflicts`; CREATE TABLE `mvv_ovl_conflicts` ( `conflict_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `selection_id` int(11) NOT NULL, - `base_abschnitt_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `base_modulteil_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `base_course_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `base_metadate_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `comp_abschnitt_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `comp_modulteil_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `comp_course_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `comp_metadate_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `base_abschnitt_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `base_modulteil_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `base_course_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `base_metadate_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `comp_abschnitt_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `comp_modulteil_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `comp_course_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `comp_metadate_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`conflict_id`), KEY `selection_id` (`selection_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -2989,8 +3238,10 @@ DROP TABLE IF EXISTS `mvv_ovl_excludes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_ovl_excludes` ( - `selection_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `course_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `selection_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `course_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`selection_id`,`course_id`), KEY `course_id` (`course_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -3005,15 +3256,15 @@ DROP TABLE IF EXISTS `mvv_ovl_selections`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_ovl_selections` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `selection_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `semester_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `base_version_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `comp_version_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `selection_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `semester_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `base_version_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `comp_version_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `fachsems` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `semtypes` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `show_excluded` int(1) unsigned NOT NULL DEFAULT '0', - `mkdate` bigint(20) NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `show_excluded` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `selection_id` (`selection_id`), KEY `user_id` (`user_id`) @@ -3028,14 +3279,14 @@ DROP TABLE IF EXISTS `mvv_stg_stgteil`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_stg_stgteil` ( - `studiengang_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `stgteil_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `stgteil_bez_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `studiengang_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `stgteil_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `stgteil_bez_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `position` int(11) NOT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`studiengang_id`,`stgteil_id`,`stgteil_bez_id`), KEY `stgteil_id` (`stgteil_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -3049,15 +3300,15 @@ DROP TABLE IF EXISTS `mvv_stgteil`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_stgteil` ( - `stgteil_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `fach_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `stgteil_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `fach_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `kp` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `semester` int(2) DEFAULT NULL, `zusatz` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`stgteil_id`), KEY `fach_id` (`fach_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -3071,14 +3322,14 @@ DROP TABLE IF EXISTS `mvv_stgteil_bez`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_stgteil_bez` ( - `stgteil_bez_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `stgteil_bez_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `name_kurz` varchar(20) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `position` int(4) NOT NULL DEFAULT '9999', - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`stgteil_bez_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -3091,17 +3342,17 @@ DROP TABLE IF EXISTS `mvv_stgteilabschnitt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_stgteilabschnitt` ( - `abschnitt_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `version_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `abschnitt_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `version_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `position` int(11) NOT NULL DEFAULT '9999', `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `kommentar` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `kp` double(5,2) DEFAULT NULL, `ueberschrift` tinytext COLLATE utf8mb4_unicode_ci, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`abschnitt_id`), KEY `version_id` (`version_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -3115,17 +3366,17 @@ DROP TABLE IF EXISTS `mvv_stgteilabschnitt_modul`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_stgteilabschnitt_modul` ( - `abschnitt_modul_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `abschnitt_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `modul_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `abschnitt_modul_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `abschnitt_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `modul_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `flexnow_modul` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `modulcode` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '9999', `bezeichnung` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`abschnitt_modul_id`), UNIQUE KEY `abschnitt_id` (`abschnitt_id`,`modul_id`) USING BTREE, KEY `flexnow_modul` (`flexnow_modul`) @@ -3140,21 +3391,21 @@ DROP TABLE IF EXISTS `mvv_stgteilversion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_stgteilversion` ( - `version_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `stgteil_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `start_sem` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `end_sem` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `version_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `stgteil_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `start_sem` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `end_sem` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `code` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `beschlussdatum` int(11) DEFAULT NULL, + `beschlussdatum` int(11) unsigned DEFAULT NULL, `fassung_nr` int(2) DEFAULT NULL, `fassung_typ` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `beschreibung` text COLLATE utf8mb4_unicode_ci, `stat` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `kommentar_status` text COLLATE utf8mb4_unicode_ci, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`version_id`), KEY `stgteil_id` (`stgteil_id`), KEY `stat` (`stat`) @@ -3169,16 +3420,16 @@ DROP TABLE IF EXISTS `mvv_studiengang`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mvv_studiengang` ( - `studiengang_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `abschluss_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `studiengang_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `abschluss_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `typ` enum('einfach','mehrfach') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name_kurz` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `beschreibung` text COLLATE utf8mb4_unicode_ci, - `institut_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `start` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `end` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `beschlussdatum` int(11) DEFAULT NULL, + `institut_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `start` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `end` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `beschlussdatum` int(11) unsigned DEFAULT NULL, `fassung_nr` int(2) DEFAULT NULL, `fassung_typ` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `stat` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, @@ -3188,10 +3439,10 @@ CREATE TABLE `mvv_studiengang` ( `studienplaetze` int(10) unsigned DEFAULT NULL, `abschlussgrad` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `enroll` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `editor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`studiengang_id`), KEY `abschluss_id` (`abschluss_id`), KEY `institut_id` (`institut_id`) @@ -3211,8 +3462,8 @@ CREATE TABLE `mvv_studycourse_language` ( `position` int(11) NOT NULL DEFAULT '9999', `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`studiengang_id`,`lang`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -3229,8 +3480,8 @@ CREATE TABLE `mvv_studycourse_type` ( `type` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `editor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `mkdate` int(11) NOT NULL, - `chdate` int(11) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`studiengang_id`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -3243,17 +3494,17 @@ DROP TABLE IF EXISTS `news`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `news` ( - `news_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `news_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `topic` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `body` text COLLATE utf8mb4_unicode_ci NOT NULL, `author` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `date` int(11) NOT NULL DEFAULT '0', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `expire` int(11) NOT NULL DEFAULT '0', - `allow_comments` tinyint(1) NOT NULL DEFAULT '0', - `chdate` int(10) unsigned NOT NULL DEFAULT '0', - `chdate_uid` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `mkdate` int(10) unsigned NOT NULL DEFAULT '0', + `date` int(11) unsigned NOT NULL DEFAULT '0', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `expire` int(11) unsigned NOT NULL DEFAULT '0', + `allow_comments` tinyint(1) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate_uid` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`news_id`), KEY `date` (`date`), KEY `chdate` (`chdate`) @@ -3268,8 +3519,10 @@ DROP TABLE IF EXISTS `news_range`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `news_range` ( - `news_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `news_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`news_id`,`range_id`), KEY `range_id` (`range_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -3422,82 +3675,294 @@ CREATE TABLE `oauth_server_registry` ( /*!40101 SET character_set_client = @saved_cs_client */; -- --- Table structure for table `oauth_server_token` +-- Table structure for table `oauth_server_token` +-- + +DROP TABLE IF EXISTS `oauth_server_token`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oauth_server_token` ( + `ost_id` int(11) NOT NULL AUTO_INCREMENT, + `ost_osr_id_ref` int(11) NOT NULL, + `ost_usa_id_ref` int(11) NOT NULL, + `ost_token` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, + `ost_token_secret` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, + `ost_token_type` enum('request','access') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `ost_authorized` tinyint(1) NOT NULL DEFAULT '0', + `ost_referrer_host` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ost_token_ttl` datetime NOT NULL DEFAULT '9999-12-31 00:00:00', + `ost_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `ost_verifier` char(10) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `ost_callback_url` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`ost_id`), + UNIQUE KEY `ost_token` (`ost_token`), + KEY `ost_osr_id_ref` (`ost_osr_id_ref`), + KEY `ost_token_ttl` (`ost_token_ttl`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `object_contentmodules` +-- + +DROP TABLE IF EXISTS `object_contentmodules`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `object_contentmodules` ( + `object_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `module_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `system_type` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `module_type` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`object_id`,`module_id`,`system_type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `object_user_visits` +-- + +DROP TABLE IF EXISTS `object_user_visits`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `object_user_visits` ( + `object_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `plugin_id` int(11) NOT NULL, + `visitdate` int(11) unsigned NOT NULL DEFAULT '0', + `last_visitdate` int(11) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`object_id`,`user_id`,`plugin_id`), + KEY `user_id` (`user_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 `object_views` +-- + +DROP TABLE IF EXISTS `object_views`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `object_views` ( + `object_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `views` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`object_id`), + KEY `views` (`views`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `oer_abo` +-- + +DROP TABLE IF EXISTS `oer_abo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oer_abo` ( + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `material_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + UNIQUE KEY `user_id` (`user_id`,`material_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `oer_comments` +-- + +DROP TABLE IF EXISTS `oer_comments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +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 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(20) NOT NULL, + `mkdate` bigint(20) NOT NULL, + PRIMARY KEY (`comment_id`), + KEY `review_id` (`review_id`), + KEY `foreign_comment_id` (`foreign_comment_id`), + KEY `host_id` (`host_id`), + KEY `user_id` (`user_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `oer_downloadcounter` +-- + +DROP TABLE IF EXISTS `oer_downloadcounter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oer_downloadcounter` ( + `counter_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `material_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `longitude` double DEFAULT NULL, + `latitude` double DEFAULT NULL, + `mkdate` int(11) DEFAULT NULL, + PRIMARY KEY (`counter_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `oer_hosts` +-- + +DROP TABLE IF EXISTS `oer_hosts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oer_hosts` ( + `host_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `name` varchar(64) NOT NULL, + `url` varchar(200) NOT NULL, + `public_key` text NOT NULL, + `private_key` text, + `active` tinyint(4) NOT NULL DEFAULT '1', + `index_server` tinyint(4) NOT NULL DEFAULT '0', + `allowed_as_index_server` tinyint(4) NOT NULL DEFAULT '1', + `last_updated` bigint(20) NOT NULL, + `chdate` bigint(20) NOT NULL, + `mkdate` bigint(20) NOT NULL, + PRIMARY KEY (`host_id`), + UNIQUE KEY `url` (`url`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `oer_material` +-- + +DROP TABLE IF EXISTS `oer_material`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +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) NOT NULL, + `category` varchar(64) NOT NULL DEFAULT '', + `draft` tinyint(1) NOT NULL DEFAULT '0', + `filename` varchar(64) NOT NULL, + `short_description` varchar(100) DEFAULT NULL, + `description` text NOT NULL, + `difficulty_start` tinyint(12) NOT NULL DEFAULT '1', + `difficulty_end` tinyint(12) NOT NULL DEFAULT '12', + `player_url` varchar(256) DEFAULT NULL, + `tool` varchar(128) DEFAULT NULL, + `content_type` varchar(64) NOT NULL, + `front_image_content_type` varchar(64) DEFAULT NULL, + `structure` text, + `rating` double DEFAULT NULL, + `license_identifier` varchar(64) NOT NULL DEFAULT 'CC BY SA 3.0', + `chdate` bigint(20) NOT NULL, + `mkdate` int(11) NOT NULL, + PRIMARY KEY (`material_id`), + KEY `host_id` (`host_id`), + KEY `category` (`category`), + KEY `foreign_material_id` (`foreign_material_id`), + KEY `license_identifier` (`license_identifier`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `oer_material_users` +-- + +DROP TABLE IF EXISTS `oer_material_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oer_material_users` ( + `material_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `external_contact` int(11) NOT NULL DEFAULT '0', + `position` int(11) NOT NULL DEFAULT '1', + `chdate` int(11) NOT NULL, + `mkdate` int(11) NOT NULL, + PRIMARY KEY (`material_id`,`user_id`,`external_contact`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `oer_reviews` -- -DROP TABLE IF EXISTS `oauth_server_token`; +DROP TABLE IF EXISTS `oer_reviews`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; -CREATE TABLE `oauth_server_token` ( - `ost_id` int(11) NOT NULL AUTO_INCREMENT, - `ost_osr_id_ref` int(11) NOT NULL, - `ost_usa_id_ref` int(11) NOT NULL, - `ost_token` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, - `ost_token_secret` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, - `ost_token_type` enum('request','access') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `ost_authorized` tinyint(1) NOT NULL DEFAULT '0', - `ost_referrer_host` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ost_token_ttl` datetime NOT NULL DEFAULT '9999-12-31 00:00:00', - `ost_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - `ost_verifier` char(10) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `ost_callback_url` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`ost_id`), - UNIQUE KEY `ost_token` (`ost_token`), - KEY `ost_osr_id_ref` (`ost_osr_id_ref`), - KEY `ost_token_ttl` (`ost_token_ttl`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +CREATE TABLE `oer_reviews` ( + `review_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `material_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `foreign_review_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `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(11) NOT NULL, + `review` text NOT NULL, + `chdate` int(11) NOT NULL, + `mkdate` int(11) NOT NULL, + PRIMARY KEY (`review_id`), + UNIQUE KEY `unique_users` (`user_id`,`host_id`,`material_id`), + KEY `material_id` (`material_id`), + KEY `foreign_review_id` (`foreign_review_id`), + KEY `user_id` (`user_id`), + KEY `host_id` (`host_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- --- Table structure for table `object_contentmodules` +-- Table structure for table `oer_tags` -- -DROP TABLE IF EXISTS `object_contentmodules`; +DROP TABLE IF EXISTS `oer_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; -CREATE TABLE `object_contentmodules` ( - `object_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `module_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `system_type` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `module_type` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', - PRIMARY KEY (`object_id`,`module_id`,`system_type`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +CREATE TABLE `oer_tags` ( + `tag_hash` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `name` varchar(64) NOT NULL, + PRIMARY KEY (`tag_hash`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- --- Table structure for table `object_user_visits` +-- Table structure for table `oer_tags_material` -- -DROP TABLE IF EXISTS `object_user_visits`; +DROP TABLE IF EXISTS `oer_tags_material`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; -CREATE TABLE `object_user_visits` ( - `object_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `type` enum('vote','documents','forum','literature','schedule','scm','sem','wiki','news','eval','inst','elearning_interface','ilias_interface','participants') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'vote', - `visitdate` int(20) NOT NULL DEFAULT '0', - `last_visitdate` int(20) NOT NULL DEFAULT '0', - PRIMARY KEY (`object_id`,`user_id`,`type`), - KEY `user_id` (`user_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +CREATE TABLE `oer_tags_material` ( + `material_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `tag_hash` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + UNIQUE KEY `unique_tags` (`material_id`,`tag_hash`), + KEY `tag_hash` (`tag_hash`), + KEY `material_id` (`material_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- --- Table structure for table `object_views` +-- Table structure for table `oer_user` -- -DROP TABLE IF EXISTS `object_views`; +DROP TABLE IF EXISTS `oer_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; -CREATE TABLE `object_views` ( - `object_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `views` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', - PRIMARY KEY (`object_id`), - KEY `views` (`views`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +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) NOT NULL, + `avatar` varchar(256) DEFAULT NULL, + `description` text, + `chdate` int(11) NOT NULL, + `mkdate` int(11) NOT NULL, + PRIMARY KEY (`user_id`), + UNIQUE KEY `unique_users` (`foreign_user_id`,`host_id`), + KEY `foreign_user_id` (`foreign_user_id`), + KEY `host_id` (`host_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -3511,15 +3976,15 @@ CREATE TABLE `opengraphdata` ( `opengraph_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `hash` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `url` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL, - `is_opengraph` tinyint(2) DEFAULT NULL, + `is_opengraph` tinyint(1) unsigned DEFAULT NULL, `title` text COLLATE utf8mb4_unicode_ci, `image` varchar(1024) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `data` text COLLATE utf8mb4_unicode_ci NOT NULL, - `last_update` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, - `mkdate` bigint(20) NOT NULL, + `last_update` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`opengraph_id`), UNIQUE KEY `hash` (`hash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -3533,11 +3998,11 @@ DROP TABLE IF EXISTS `participantrestrictedadmissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `participantrestrictedadmissions` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `message` text COLLATE utf8mb4_unicode_ci NOT NULL, - `distribution_time` int(11) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `distribution_time` int(11) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -3550,13 +4015,13 @@ DROP TABLE IF EXISTS `passwordadmissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `passwordadmissions` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `message` text COLLATE utf8mb4_unicode_ci, - `start_time` int(11) NOT NULL DEFAULT '0', - `end_time` int(11) NOT NULL DEFAULT '0', + `start_time` int(11) unsigned NOT NULL DEFAULT '0', + `end_time` int(11) unsigned NOT NULL DEFAULT '0', `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -3592,7 +4057,7 @@ DROP TABLE IF EXISTS `personal_notifications_user`; CREATE TABLE `personal_notifications_user` ( `personal_notification_id` int(10) unsigned NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `seen` tinyint(1) NOT NULL DEFAULT '0', + `seen` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`personal_notification_id`,`user_id`), KEY `user_id` (`user_id`,`seen`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -3651,7 +4116,7 @@ CREATE TABLE `plugins_activated` ( `pluginid` int(10) unsigned NOT NULL DEFAULT '0', `range_type` enum('sem','inst','user') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'sem', `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `state` tinyint(1) NOT NULL DEFAULT '1', + `state` tinyint(1) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`pluginid`,`range_type`,`range_id`), KEY `range` (`range_id`,`range_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -3666,7 +4131,7 @@ DROP TABLE IF EXISTS `plugins_default_activations`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `plugins_default_activations` ( `pluginid` int(10) unsigned NOT NULL DEFAULT '0', - `institutid` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `institutid` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`pluginid`,`institutid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -3679,10 +4144,10 @@ DROP TABLE IF EXISTS `prefadmission_condition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prefadmission_condition` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `condition_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `condition_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `chance` int(4) NOT NULL DEFAULT '1', - `mkdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`,`condition_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -3695,10 +4160,10 @@ DROP TABLE IF EXISTS `prefadmissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prefadmissions` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `favor_semester` tinyint(1) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `favor_semester` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -3711,12 +4176,12 @@ DROP TABLE IF EXISTS `priorities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `priorities` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `set_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `set_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `priority` int(11) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`user_id`,`set_id`,`seminar_id`), KEY `user_rule_priority` (`user_id`,`priority`,`set_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -3730,11 +4195,11 @@ DROP TABLE IF EXISTS `questionnaire_anonymous_answers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `questionnaire_anonymous_answers` ( - `anonymous_answer_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `questionnaire_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `chdate` bigint(20) NOT NULL, - `mkdate` int(11) NOT NULL, + `anonymous_answer_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `questionnaire_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `chdate` int(11) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`anonymous_answer_id`), UNIQUE KEY `questionnaire_id_user_id` (`questionnaire_id`,`user_id`), KEY `questionnaire_id` (`questionnaire_id`), @@ -3750,12 +4215,12 @@ DROP TABLE IF EXISTS `questionnaire_answers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `questionnaire_answers` ( - `answer_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `question_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `answer_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `question_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `answerdata` text COLLATE utf8mb4_unicode_ci NOT NULL, - `chdate` bigint(20) NOT NULL, - `mkdate` bigint(20) NOT NULL, + `chdate` int(11) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`answer_id`), KEY `question_id` (`question_id`), KEY `user_id` (`user_id`) @@ -3770,13 +4235,13 @@ DROP TABLE IF EXISTS `questionnaire_assignments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `questionnaire_assignments` ( - `assignment_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `questionnaire_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `assignment_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `questionnaire_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `range_type` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `chdate` bigint(20) NOT NULL, - `mkdate` int(11) NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `chdate` int(11) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`assignment_id`), KEY `questionnaire_id` (`questionnaire_id`), KEY `range_id_range_type` (`range_id`,`range_type`), @@ -3792,12 +4257,12 @@ DROP TABLE IF EXISTS `questionnaire_questions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `questionnaire_questions` ( - `question_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `questionnaire_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `question_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `questionnaire_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `etask_task_id` int(11) NOT NULL, `position` int(11) NOT NULL, - `chdate` bigint(20) NOT NULL, - `mkdate` bigint(20) NOT NULL, + `chdate` int(11) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`question_id`), KEY `questionnaire_id` (`questionnaire_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -3811,19 +4276,19 @@ DROP TABLE IF EXISTS `questionnaires`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `questionnaires` ( - `questionnaire_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `questionnaire_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `title` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `startdate` bigint(20) DEFAULT NULL, - `stopdate` bigint(20) DEFAULT NULL, - `visible` tinyint(1) NOT NULL DEFAULT '0', - `anonymous` tinyint(1) NOT NULL DEFAULT '0', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `startdate` int(11) unsigned DEFAULT NULL, + `stopdate` int(11) unsigned DEFAULT NULL, + `visible` tinyint(1) unsigned NOT NULL DEFAULT '0', + `anonymous` tinyint(1) unsigned NOT NULL DEFAULT '0', `resultvisibility` enum('always','never','afterending') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'always', - `editanswers` tinyint(1) NOT NULL DEFAULT '1', - `copyable` tinyint(4) NOT NULL DEFAULT '0', - `chdate` bigint(20) NOT NULL, - `mkdate` bigint(20) NOT NULL, + `editanswers` tinyint(1) unsigned NOT NULL DEFAULT '1', + `copyable` tinyint(1) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`questionnaire_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -3837,13 +4302,13 @@ DROP TABLE IF EXISTS `range_tree`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `range_tree` ( - `item_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `parent_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `item_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `parent_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `level` int(11) NOT NULL DEFAULT '0', `priority` int(11) NOT NULL DEFAULT '0', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `studip_object` varchar(10) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `studip_object_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `studip_object_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, PRIMARY KEY (`item_id`), KEY `parent_id` (`parent_id`), KEY `priority` (`priority`), @@ -3859,11 +4324,11 @@ DROP TABLE IF EXISTS `resource_booking_intervals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resource_booking_intervals` ( - `interval_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `interval_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `resource_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `booking_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `begin` int(20) NOT NULL DEFAULT '0', - `end` int(20) NOT NULL DEFAULT '0', + `booking_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `begin` int(11) unsigned NOT NULL DEFAULT '0', + `end` int(11) unsigned NOT NULL DEFAULT '0', `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `chdate` int(11) unsigned NOT NULL DEFAULT '0', `takes_place` tinyint(1) unsigned NOT NULL DEFAULT '1', @@ -3881,20 +4346,20 @@ DROP TABLE IF EXISTS `resource_bookings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resource_bookings` ( - `id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `resource_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `resource_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci, - `begin` int(20) NOT NULL DEFAULT '0', - `end` int(20) NOT NULL DEFAULT '0', - `repeat_end` int(20) DEFAULT NULL, + `begin` int(11) unsigned NOT NULL DEFAULT '0', + `end` int(11) unsigned NOT NULL DEFAULT '0', + `repeat_end` int(11) unsigned DEFAULT NULL, `repeat_quantity` int(2) DEFAULT NULL, - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `internal_comment` text COLLATE utf8mb4_unicode_ci, `preparation_time` int(4) NOT NULL DEFAULT '0', `booking_type` tinyint(2) NOT NULL DEFAULT '0', - `booking_user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `booking_user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `repetition_interval` varchar(24) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `assign_user_id` (`range_id`), @@ -3910,7 +4375,7 @@ DROP TABLE IF EXISTS `resource_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resource_categories` ( - `id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `system` tinyint(1) unsigned NOT NULL DEFAULT '0', @@ -3930,8 +4395,8 @@ DROP TABLE IF EXISTS `resource_category_properties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resource_category_properties` ( - `category_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `property_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `category_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `property_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `requestable` tinyint(1) unsigned NOT NULL DEFAULT '0', `protected` tinyint(1) unsigned NOT NULL DEFAULT '0', `system` tinyint(1) unsigned NOT NULL DEFAULT '0', @@ -3950,8 +4415,8 @@ DROP TABLE IF EXISTS `resource_permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resource_permissions` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `resource_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `resource_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `perms` varchar(10) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `chdate` int(11) unsigned NOT NULL DEFAULT '0', @@ -3968,8 +4433,8 @@ DROP TABLE IF EXISTS `resource_properties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resource_properties` ( - `resource_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `property_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `resource_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `property_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `state` text COLLATE utf8mb4_unicode_ci NOT NULL, `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `chdate` int(11) unsigned NOT NULL DEFAULT '0', @@ -3986,7 +4451,7 @@ DROP TABLE IF EXISTS `resource_property_definitions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resource_property_definitions` ( - `property_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `property_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci, `type` set('bool','text','num','select','user','institute','position','fileref','url','resource_ref_list') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, @@ -4016,8 +4481,8 @@ CREATE TABLE `resource_property_groups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `position` tinyint(4) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4031,8 +4496,8 @@ DROP TABLE IF EXISTS `resource_request_appointments`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resource_request_appointments` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `request_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `appointment_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `request_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `appointment_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) @@ -4047,11 +4512,11 @@ DROP TABLE IF EXISTS `resource_request_properties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resource_request_properties` ( - `request_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `property_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `request_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `property_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `state` text COLLATE utf8mb4_unicode_ci, - `mkdate` int(20) unsigned DEFAULT NULL, - `chdate` int(20) unsigned DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`request_id`,`property_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4064,20 +4529,20 @@ DROP TABLE IF EXISTS `resource_requests`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resource_requests` ( - `id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `course_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `termin_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `metadate_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `last_modified_by` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `resource_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `category_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT '', + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `course_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `termin_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `metadate_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `last_modified_by` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `resource_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `category_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT '', `comment` text COLLATE utf8mb4_unicode_ci, `reply_comment` text COLLATE utf8mb4_unicode_ci, `reply_recipients` enum('requester','lecturer') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'requester', `closed` tinyint(1) unsigned NOT NULL DEFAULT '0', - `mkdate` int(20) unsigned DEFAULT NULL, - `chdate` int(20) unsigned DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, `begin` int(11) unsigned NOT NULL DEFAULT '0', `end` int(11) unsigned NOT NULL DEFAULT '0', `preparation_time` int(4) NOT NULL DEFAULT '0', @@ -4102,7 +4567,7 @@ DROP TABLE IF EXISTS `resource_temporary_permissions`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resource_temporary_permissions` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `resource_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `resource_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `begin` int(11) unsigned NOT NULL DEFAULT '0', `end` int(11) unsigned NOT NULL DEFAULT '0', @@ -4123,15 +4588,15 @@ DROP TABLE IF EXISTS `resources`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `resources` ( - `id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `parent_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `category_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `parent_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `category_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `level` int(4) DEFAULT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci, `requestable` tinyint(1) unsigned NOT NULL DEFAULT '0', - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `sort_position` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `parent_id` (`parent_id`), @@ -4212,7 +4677,7 @@ CREATE TABLE `schedule` ( `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `content` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `color` tinyint(4) DEFAULT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4226,10 +4691,10 @@ DROP TABLE IF EXISTS `schedule_seminare`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `schedule_seminare` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `metadate_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `visible` tinyint(1) NOT NULL DEFAULT '1', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `metadate_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `visible` tinyint(1) unsigned NOT NULL DEFAULT '1', `color` tinyint(4) DEFAULT NULL, PRIMARY KEY (`user_id`,`seminar_id`,`metadate_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4257,13 +4722,13 @@ DROP TABLE IF EXISTS `scm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `scm` ( - `scm_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `scm_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `tab_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `position` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`scm_id`), KEY `chdate` (`chdate`), @@ -4281,32 +4746,20 @@ DROP TABLE IF EXISTS `sem_classes`; CREATE TABLE `sem_classes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, - `only_inst_user` tinyint(4) NOT NULL, + `only_inst_user` tinyint(1) unsigned NOT NULL, `default_read_level` int(11) NOT NULL, `default_write_level` int(11) NOT NULL, - `bereiche` tinyint(4) NOT NULL, - `module` tinyint(4) NOT NULL, - `show_browse` tinyint(4) NOT NULL, - `write_access_nobody` tinyint(4) NOT NULL, - `topic_create_autor` tinyint(4) NOT NULL, - `visible` tinyint(4) NOT NULL, - `course_creation_forbidden` tinyint(4) NOT NULL, - `overview` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `forum` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `admin` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `documents` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `schedule` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `participants` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `literature` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `scm` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `wiki` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `resources` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `calendar` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `elearning_interface` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `bereiche` tinyint(1) unsigned NOT NULL, + `module` tinyint(1) unsigned NOT NULL, + `show_browse` tinyint(1) unsigned NOT NULL, + `write_access_nobody` tinyint(1) unsigned NOT NULL, + `topic_create_autor` tinyint(1) unsigned NOT NULL, + `visible` tinyint(1) unsigned NOT NULL, + `course_creation_forbidden` tinyint(1) unsigned NOT NULL, `modules` text COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `create_description` text COLLATE utf8mb4_unicode_ci NOT NULL, - `studygroup_mode` tinyint(4) NOT NULL, + `studygroup_mode` tinyint(1) unsigned NOT NULL, `admission_prelim_default` tinyint(4) NOT NULL DEFAULT '0', `admission_type_default` tinyint(4) NOT NULL DEFAULT '0', `title_dozent` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, @@ -4315,10 +4768,10 @@ CREATE TABLE `sem_classes` ( `title_tutor_plural` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title_autor` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title_autor_plural` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `show_raumzeit` tinyint(4) NOT NULL DEFAULT '1', - `is_group` tinyint(1) NOT NULL DEFAULT '0', - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `show_raumzeit` tinyint(1) unsigned NOT NULL DEFAULT '1', + `is_group` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4332,13 +4785,15 @@ DROP TABLE IF EXISTS `sem_tree`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sem_tree` ( - `sem_tree_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `parent_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `sem_tree_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `parent_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `priority` tinyint(4) NOT NULL DEFAULT '0', `info` text COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `studip_object_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `studip_object_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `type` tinyint(3) unsigned NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`sem_tree_id`), KEY `parent_id` (`parent_id`), KEY `priority` (`priority`), @@ -4357,12 +4812,29 @@ CREATE TABLE `sem_types` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `class` int(11) NOT NULL, - `mkdate` bigint(20) NOT NULL, - `chdate` bigint(20) NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, 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 `semester_courses` +-- + +DROP TABLE IF EXISTS `semester_courses`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `semester_courses` ( + `semester_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `course_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `mkdate` int(10) NOT NULL DEFAULT '0', + `chdate` int(10) NOT NULL DEFAULT '0', + PRIMARY KEY (`semester_id`,`course_id`), + KEY `course_id` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `semester_data` -- @@ -4371,16 +4843,18 @@ DROP TABLE IF EXISTS `semester_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `semester_data` ( - `semester_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `semester_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `semester_token` varchar(10) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `beginn` int(20) unsigned DEFAULT NULL, - `ende` int(20) unsigned DEFAULT NULL, - `vorles_beginn` int(20) unsigned DEFAULT NULL, - `vorles_ende` int(20) unsigned DEFAULT NULL, - `visible` tinyint(2) unsigned NOT NULL DEFAULT '1', + `beginn` int(11) unsigned DEFAULT NULL, + `ende` int(11) unsigned DEFAULT NULL, + `vorles_beginn` int(11) unsigned DEFAULT NULL, + `vorles_ende` int(11) unsigned DEFAULT NULL, + `visible` tinyint(1) unsigned NOT NULL DEFAULT '1', `external_id` varchar(50) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`semester_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4393,12 +4867,14 @@ DROP TABLE IF EXISTS `semester_holiday`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `semester_holiday` ( - `holiday_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `semester_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `holiday_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `semester_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci NOT NULL, - `beginn` int(20) unsigned DEFAULT NULL, - `ende` int(20) unsigned NOT NULL DEFAULT '0', + `beginn` int(11) unsigned DEFAULT NULL, + `ende` int(11) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`holiday_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4411,9 +4887,9 @@ DROP TABLE IF EXISTS `seminar_courseset`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `seminar_courseset` ( - `set_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) NOT NULL DEFAULT '0', + `set_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`set_id`,`seminar_id`), KEY `seminar_id` (`seminar_id`,`set_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4427,8 +4903,8 @@ DROP TABLE IF EXISTS `seminar_cycle_dates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `seminar_cycle_dates` ( - `metadate_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `metadate_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `start_time` time NOT NULL, `end_time` time NOT NULL, `weekday` tinyint(3) unsigned NOT NULL, @@ -4438,8 +4914,8 @@ CREATE TABLE `seminar_cycle_dates` ( `week_offset` int(11) NOT NULL DEFAULT '0', `end_offset` int(11) DEFAULT NULL, `sorter` tinyint(3) unsigned NOT NULL DEFAULT '0', - `mkdate` int(10) unsigned NOT NULL, - `chdate` int(10) unsigned NOT NULL, + `mkdate` int(11) unsigned NOT NULL, + `chdate` int(11) unsigned NOT NULL, PRIMARY KEY (`metadate_id`), KEY `seminar_id` (`seminar_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4453,8 +4929,8 @@ DROP TABLE IF EXISTS `seminar_inst`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `seminar_inst` ( - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `institut_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `institut_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`seminar_id`,`institut_id`), KEY `institut_id` (`institut_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4468,8 +4944,8 @@ DROP TABLE IF EXISTS `seminar_sem_tree`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `seminar_sem_tree` ( - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `sem_tree_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `sem_tree_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`seminar_id`,`sem_tree_id`), KEY `sem_tree_id` (`sem_tree_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4483,23 +4959,39 @@ DROP TABLE IF EXISTS `seminar_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `seminar_user` ( - `Seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `Seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `status` enum('user','autor','tutor','dozent') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'user', `position` int(11) NOT NULL DEFAULT '0', `gruppe` tinyint(4) NOT NULL DEFAULT '0', - `notification` int(10) NOT NULL DEFAULT '0', - `mkdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `comment` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `visible` enum('yes','no','unknown') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'unknown', `label` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `bind_calendar` tinyint(1) NOT NULL DEFAULT '1', + `bind_calendar` tinyint(1) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`Seminar_id`,`user_id`), KEY `status` (`status`,`Seminar_id`), KEY `user_id` (`user_id`,`Seminar_id`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `seminar_user_notifications` +-- + +DROP TABLE IF EXISTS `seminar_user_notifications`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seminar_user_notifications` ( + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `notification_data` json DEFAULT NULL, + `chdate` int(10) unsigned NOT NULL, + `mkdate` int(10) unsigned NOT NULL, + PRIMARY KEY (`user_id`,`seminar_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `seminar_userdomains` -- @@ -4508,8 +5000,8 @@ DROP TABLE IF EXISTS `seminar_userdomains`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `seminar_userdomains` ( - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `userdomain_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `userdomain_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`seminar_id`,`userdomain_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4522,42 +5014,41 @@ DROP TABLE IF EXISTS `seminare`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `seminare` ( - `Seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '0', + `Seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '0', `VeranstaltungsNummer` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `Institut_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '0', + `Institut_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '0', `Name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `Untertitel` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `status` tinyint(4) unsigned NOT NULL DEFAULT '1', + `status` int(11) unsigned NOT NULL DEFAULT '1', `Beschreibung` text COLLATE utf8mb4_unicode_ci NOT NULL, `Ort` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `Sonstiges` text COLLATE utf8mb4_unicode_ci, `Lesezugriff` tinyint(4) NOT NULL DEFAULT '0', `Schreibzugriff` tinyint(4) NOT NULL DEFAULT '0', - `start_time` int(20) DEFAULT '0', - `duration_time` int(20) DEFAULT NULL, + `start_time` int(11) unsigned DEFAULT '0', + `duration_time` int(11) DEFAULT NULL, `art` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `teilnehmer` text COLLATE utf8mb4_unicode_ci, `vorrausetzungen` text COLLATE utf8mb4_unicode_ci, `lernorga` text COLLATE utf8mb4_unicode_ci, `leistungsnachweis` text COLLATE utf8mb4_unicode_ci, - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `ects` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `admission_turnout` int(5) DEFAULT NULL, `admission_binding` tinyint(4) DEFAULT NULL, `admission_prelim` tinyint(4) unsigned NOT NULL DEFAULT '0', `admission_prelim_txt` text COLLATE utf8mb4_unicode_ci, `admission_disable_waitlist` tinyint(3) unsigned NOT NULL DEFAULT '0', - `visible` tinyint(2) unsigned NOT NULL DEFAULT '1', + `visible` tinyint(1) unsigned NOT NULL DEFAULT '1', `showscore` tinyint(3) DEFAULT '0', - `modules` int(10) unsigned DEFAULT NULL, `aux_lock_rule` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `aux_lock_rule_forced` tinyint(4) NOT NULL DEFAULT '0', `lock_rule` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `admission_waitlist_max` int(10) unsigned NOT NULL DEFAULT '0', `admission_disable_waitlist_move` tinyint(3) unsigned NOT NULL DEFAULT '0', `completion` tinyint(1) unsigned NOT NULL DEFAULT '0', - `parent_course` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `parent_course` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, PRIMARY KEY (`Seminar_id`), KEY `Institut_id` (`Institut_id`), KEY `visible` (`visible`), @@ -4575,7 +5066,7 @@ DROP TABLE IF EXISTS `separable_room_parts`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `separable_room_parts` ( `separable_room_id` int(10) NOT NULL, - `room_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `room_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`separable_room_id`,`room_id`) @@ -4591,7 +5082,7 @@ DROP TABLE IF EXISTS `separable_rooms`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `separable_rooms` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `building_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `building_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `name` varchar(256) NOT NULL DEFAULT '', `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `chdate` int(11) unsigned NOT NULL DEFAULT '0', @@ -4663,8 +5154,8 @@ CREATE TABLE `smiley` ( `smiley_counter` int(11) unsigned NOT NULL DEFAULT '0', `short_counter` int(11) unsigned NOT NULL DEFAULT '0', `fav_counter` int(11) unsigned NOT NULL DEFAULT '0', - `mkdate` int(10) unsigned DEFAULT NULL, - `chdate` int(10) unsigned DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`smiley_id`), UNIQUE KEY `name` (`smiley_name`), KEY `short` (`short_name`) @@ -4679,11 +5170,11 @@ DROP TABLE IF EXISTS `statusgruppe_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `statusgruppe_user` ( - `statusgruppe_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `statusgruppe_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `position` int(11) NOT NULL DEFAULT '0', - `visible` tinyint(4) NOT NULL DEFAULT '1', - `inherit` tinyint(4) NOT NULL DEFAULT '1', + `visible` tinyint(1) unsigned NOT NULL DEFAULT '1', + `inherit` tinyint(1) unsigned NOT NULL DEFAULT '1', `mkdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`statusgruppe_id`,`user_id`), KEY `user_id` (`user_id`) @@ -4698,16 +5189,16 @@ DROP TABLE IF EXISTS `statusgruppen`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `statusgruppen` ( - `statusgruppe_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `statusgruppe_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `position` int(20) NOT NULL DEFAULT '0', `size` int(20) NOT NULL DEFAULT '0', - `selfassign` tinyint(4) NOT NULL DEFAULT '0', - `selfassign_start` int(11) NOT NULL DEFAULT '0', - `selfassign_end` int(11) NOT NULL DEFAULT '0', - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `selfassign` tinyint(1) unsigned NOT NULL DEFAULT '0', + `selfassign_start` int(11) unsigned NOT NULL DEFAULT '0', + `selfassign_end` int(11) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `calendar_group` tinyint(2) unsigned NOT NULL DEFAULT '0', `name_w` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name_m` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, @@ -4725,9 +5216,9 @@ DROP TABLE IF EXISTS `studygroup_invitations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `studygroup_invitations` ( - `sem_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(20) NOT NULL, + `sem_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL, PRIMARY KEY (`sem_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4740,8 +5231,8 @@ DROP TABLE IF EXISTS `termin_related_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `termin_related_groups` ( - `termin_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `statusgruppe_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `termin_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `statusgruppe_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, PRIMARY KEY (`termin_id`,`statusgruppe_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4754,8 +5245,8 @@ DROP TABLE IF EXISTS `termin_related_persons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `termin_related_persons` ( - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, PRIMARY KEY (`range_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4768,19 +5259,19 @@ DROP TABLE IF EXISTS `termine`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `termine` ( - `termin_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `autor_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `termin_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci, - `date` int(20) NOT NULL DEFAULT '0', - `end_time` int(20) NOT NULL DEFAULT '0', - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `date` int(11) unsigned NOT NULL DEFAULT '0', + `end_time` int(11) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `date_typ` tinyint(4) NOT NULL DEFAULT '0', - `topic_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `topic_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `raum` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `metadate_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `metadate_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, PRIMARY KEY (`termin_id`), KEY `metadate_id` (`metadate_id`,`date`), KEY `range_id` (`range_id`,`date`), @@ -4788,6 +5279,22 @@ CREATE TABLE `termine` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `termsadmissions` +-- + +DROP TABLE IF EXISTS `termsadmissions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `termsadmissions` ( + `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `terms` text COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int(11) NOT NULL DEFAULT '0', + `chdate` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`rule_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 `themen` -- @@ -4796,15 +5303,15 @@ DROP TABLE IF EXISTS `themen`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `themen` ( - `issue_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `seminar_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `author_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `issue_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `seminar_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `author_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `priority` smallint(5) unsigned NOT NULL DEFAULT '0', `paper_related` tinyint(1) unsigned NOT NULL DEFAULT '0', - `mkdate` int(10) unsigned NOT NULL DEFAULT '0', - `chdate` int(10) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`issue_id`), KEY `seminar_id` (`seminar_id`,`priority`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4818,8 +5325,8 @@ DROP TABLE IF EXISTS `themen_termine`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `themen_termine` ( - `issue_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `termin_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `issue_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `termin_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`issue_id`,`termin_id`), KEY `termin_id` (`termin_id`,`issue_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4833,12 +5340,12 @@ DROP TABLE IF EXISTS `timedadmissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `timedadmissions` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, - `start_time` int(11) NOT NULL DEFAULT '0', - `end_time` int(11) NOT NULL DEFAULT '0', - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `start_time` int(11) unsigned NOT NULL DEFAULT '0', + `end_time` int(11) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`rule_id`), KEY `start_time` (`start_time`), KEY `end_time` (`end_time`), @@ -4846,6 +5353,26 @@ CREATE TABLE `timedadmissions` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `tools_activated` +-- + +DROP TABLE IF EXISTS `tools_activated`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tools_activated` ( + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_type` enum('course','institute') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `plugin_id` int(10) unsigned NOT NULL, + `position` tinyint(3) unsigned NOT NULL, + `metadata` json DEFAULT NULL, + `mkdate` int(10) unsigned NOT NULL, + `chdate` int(10) unsigned NOT NULL, + PRIMARY KEY (`range_id`,`plugin_id`), + KEY `plugin_id` (`plugin_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `user_factorlist` -- @@ -4854,9 +5381,9 @@ DROP TABLE IF EXISTS `user_factorlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_factorlist` ( - `list_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `mkdate` int(11) DEFAULT NULL, + `list_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `mkdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`list_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4869,7 +5396,7 @@ DROP TABLE IF EXISTS `user_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_info` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `hobby` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `lebenslauf` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `publi` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, @@ -4880,17 +5407,18 @@ CREATE TABLE `user_info` ( `privadr` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `score` int(11) unsigned NOT NULL DEFAULT '0', `geschlecht` tinyint(4) NOT NULL DEFAULT '0', - `mkdate` int(20) NOT NULL DEFAULT '0', - `chdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', `title_front` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `title_rear` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `preferred_language` varchar(20) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `smsforward_copy` tinyint(1) NOT NULL DEFAULT '1', - `smsforward_rec` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `email_forward` tinyint(4) NOT NULL DEFAULT '0', + `smsforward_copy` tinyint(1) unsigned NOT NULL DEFAULT '1', + `smsforward_rec` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `email_forward` tinyint(1) unsigned NOT NULL DEFAULT '0', `smiley_favorite` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `motto` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `lock_rule` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `oercampus_description` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`user_id`), KEY `score` (`score`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4904,16 +5432,18 @@ DROP TABLE IF EXISTS `user_inst`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_inst` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '0', - `Institut_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '0', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '0', + `Institut_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '0', `inst_perms` enum('user','autor','tutor','dozent','admin') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'user', `sprechzeiten` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `raum` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `Telefon` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `Fax` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `externdefault` tinyint(3) unsigned NOT NULL DEFAULT '0', + `externdefault` tinyint(1) unsigned NOT NULL DEFAULT '0', `priority` tinyint(3) unsigned NOT NULL DEFAULT '0', - `visible` tinyint(3) unsigned NOT NULL DEFAULT '1', + `visible` tinyint(1) unsigned NOT NULL DEFAULT '1', + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`Institut_id`,`user_id`), KEY `inst_perms` (`inst_perms`,`Institut_id`), KEY `user_id` (`user_id`,`inst_perms`) @@ -4929,7 +5459,7 @@ DROP TABLE IF EXISTS `user_online`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_online` ( `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `last_lifesign` int(10) unsigned NOT NULL, + `last_lifesign` int(11) unsigned NOT NULL, PRIMARY KEY (`user_id`), KEY `last_lifesign` (`last_lifesign`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4943,11 +5473,13 @@ DROP TABLE IF EXISTS `user_studiengang`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_studiengang` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `fach_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `fach_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `semester` tinyint(2) DEFAULT '0', `abschluss_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '0', - `version_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `version_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`user_id`,`fach_id`,`abschluss_id`), KEY `studiengang_id` (`fach_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4964,6 +5496,7 @@ CREATE TABLE `user_token` ( `token` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `expiration` int(11) unsigned NOT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`token`), KEY `index_expiration` (`expiration`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; @@ -4977,8 +5510,8 @@ DROP TABLE IF EXISTS `user_userdomains`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_userdomains` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `userdomain_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `userdomain_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', PRIMARY KEY (`user_id`,`userdomain_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4991,13 +5524,13 @@ DROP TABLE IF EXISTS `user_visibility`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_visibility` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `online` tinyint(1) NOT NULL DEFAULT '1', - `search` tinyint(1) NOT NULL DEFAULT '1', - `email` tinyint(1) NOT NULL DEFAULT '1', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `online` tinyint(1) unsigned NOT NULL DEFAULT '1', + `search` tinyint(1) unsigned NOT NULL DEFAULT '1', + `email` tinyint(1) unsigned NOT NULL DEFAULT '1', `homepage` text COLLATE utf8mb4_unicode_ci NOT NULL, `default_homepage_visibility` int(11) NOT NULL DEFAULT '0', - `mkdate` int(20) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -5010,7 +5543,7 @@ DROP TABLE IF EXISTS `user_visibility_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user_visibility_settings` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `visibilityid` int(32) NOT NULL AUTO_INCREMENT, `parent_id` int(32) NOT NULL, `category` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, @@ -5033,9 +5566,9 @@ DROP TABLE IF EXISTS `userdomains`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userdomains` ( - `userdomain_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `userdomain_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `restricted_access` tinyint(1) NOT NULL DEFAULT '1', + `restricted_access` tinyint(1) unsigned NOT NULL DEFAULT '1', `mkdate` int(11) unsigned NOT NULL DEFAULT '0', `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`userdomain_id`) @@ -5050,9 +5583,9 @@ DROP TABLE IF EXISTS `userfilter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userfilter` ( - `filter_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `filter_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`filter_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -5065,13 +5598,13 @@ DROP TABLE IF EXISTS `userfilter_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userfilter_fields` ( - `field_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `filter_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `compare_op` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `mkdate` int(11) NOT NULL DEFAULT '0', - `chdate` int(11) NOT NULL DEFAULT '0', + `field_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `filter_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `type` varchar(255) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `value` varchar(255) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `compare_op` varchar(255) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `mkdate` int(11) unsigned NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`field_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -5084,11 +5617,11 @@ DROP TABLE IF EXISTS `userlimits`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userlimits` ( - `rule_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `rule_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `maxnumber` int(11) DEFAULT NULL, - `mkdate` int(11) DEFAULT NULL, - `chdate` int(11) DEFAULT NULL, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`rule_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -5139,6 +5672,8 @@ CREATE TABLE `webservice_access_rules` ( `ip_range` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `type` enum('allow','deny') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'allow', `id` int(11) NOT NULL AUTO_INCREMENT, + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -5170,7 +5705,7 @@ CREATE TABLE `widget_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pluginid` int(11) NOT NULL, `position` int(11) NOT NULL DEFAULT '0', - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `col` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `range_id` (`range_id`) @@ -5185,12 +5720,14 @@ DROP TABLE IF EXISTS `wiki`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wiki` ( - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `keyword` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `body` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, - `chdate` int(11) DEFAULT NULL, + `ancestor` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, `version` int(11) NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`range_id`,`keyword`,`version`), KEY `user_id` (`user_id`), KEY `chdate` (`chdate`) @@ -5220,10 +5757,10 @@ DROP TABLE IF EXISTS `wiki_locks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wiki_locks` ( - `user_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `range_id` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `keyword` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', - `chdate` int(11) NOT NULL DEFAULT '0', + `chdate` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`range_id`,`user_id`,`keyword`), KEY `user_id` (`user_id`), KEY `chdate` (`chdate`) @@ -5240,8 +5777,10 @@ DROP TABLE IF EXISTS `wiki_page_config`; CREATE TABLE `wiki_page_config` ( `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `keyword` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, - `read_restricted` tinyint(1) NOT NULL DEFAULT '0', - `edit_restricted` tinyint(1) NOT NULL DEFAULT '0', + `read_restricted` tinyint(1) unsigned NOT NULL DEFAULT '0', + `edit_restricted` tinyint(1) unsigned NOT NULL DEFAULT '0', + `mkdate` int(11) unsigned DEFAULT NULL, + `chdate` int(11) unsigned DEFAULT NULL, PRIMARY KEY (`range_id`,`keyword`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -5255,4 +5794,4 @@ CREATE TABLE `wiki_page_config` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2020-12-11 17:11:42 +-- Dump completed on 2021-12-29 18:12:44 diff --git a/db/studip_default_data.sql b/db/studip_default_data.sql index 6a050f7ede8..f5591b8b306 100644 --- a/db/studip_default_data.sql +++ b/db/studip_default_data.sql @@ -1,5 +1,5 @@ -- --- Dumping data for table `admissionrules` +-- Daten für Tabelle `admissionrules` -- INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(1, 'ConditionalAdmission', 1, 1388682201, 'lib/admissionrules/conditionaladmission'); @@ -10,9 +10,10 @@ INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALU INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(6, 'ParticipantRestrictedAdmission', 1, 1388682201, 'lib/admissionrules/participantrestrictedadmission'); INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(7, 'CourseMemberAdmission', 1, 1414584420, 'lib/admissionrules/coursememberadmission'); INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(8, 'PreferentialAdmission', 1, 1465458738, 'lib/admissionrules/preferentialadmission'); +INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(9, 'TermsAdmission', 1, 1640797278, 'lib/admissionrules/termsadmission'); -- --- Dumping data for table `admissionrule_compat` +-- Daten für Tabelle `admissionrule_compat` -- INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'ConditionalAdmission', 1483462780, 1483462780); @@ -21,6 +22,7 @@ INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, ` INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'ParticipantRestrictedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'PasswordAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'PreferentialAdmission', 1483462780, 1483462780); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'TermsAdmission', 1640797278, 1640797278); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'TimedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'ConditionalAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'CourseMemberAdmission', 1483462780, 1483462780); @@ -28,17 +30,20 @@ INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, ` INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'ParticipantRestrictedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'PasswordAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'PreferentialAdmission', 1483462780, 1483462780); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'TermsAdmission', 1640797278, 1640797278); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'TimedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'ConditionalAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'CourseMemberAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'ParticipantRestrictedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'PasswordAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'PreferentialAdmission', 1483462780, 1483462780); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'TermsAdmission', 1640797278, 1640797278); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'TimedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'ConditionalAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'CourseMemberAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'LimitedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'PreferentialAdmission', 1483462780, 1483462780); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'TermsAdmission', 1640797278, 1640797278); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'TimedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PasswordAdmission', 'ConditionalAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PasswordAdmission', 'CourseMemberAdmission', 1483462780, 1483462780); @@ -49,20 +54,30 @@ INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, ` INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'LimitedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'ParticipantRestrictedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'PasswordAdmission', 1483462780, 1483462780); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'TermsAdmission', 1640797278, 1640797278); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'TimedAdmission', 1483462780, 1483462780); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'ConditionalAdmission', 1640797278, 1640797278); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'CourseMemberAdmission', 1640797278, 1640797278); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'LimitedAdmission', 1640797278, 1640797278); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'ParticipantRestrictedAdmission', 1640797278, 1640797278); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'PreferentialAdmission', 1640797278, 1640797278); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'TimedAdmission', 1640797278, 1640797278); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'ConditionalAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'CourseMemberAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'LimitedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'ParticipantRestrictedAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'PasswordAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'PreferentialAdmission', 1483462780, 1483462780); +INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'TermsAdmission', 1640797278, 1640797278); -- --- Dumping data for table `api_consumer_permissions` +-- Daten für Tabelle `api_consumer_permissions` -- INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('0a7b7d4484a4cf534d5ba2290be9320c', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('1719f013b744742b79041672a78d3025', 'global', 'post', 1); +INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('1a2873fdd1da52004f1964dbcac07ba4', 'global', 'delete', 1); +INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('1a2873fdd1da52004f1964dbcac07ba4', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('2ef8a393e570cd8d237694cda9c72e5d', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('301b5d2469584236ce86d4b62e0320f6', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('301b5d2469584236ce86d4b62e0320f6', 'global', 'post', 1); @@ -70,6 +85,7 @@ INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `gr INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('38fb74fe58ac011b7cdc3c68542b5e05', 'global', 'post', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('414254fd6974daa494072850220280c7', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('4312a962eafc8bbbcf7aa125bef194a7', 'global', 'post', 1); +INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('4832a2091e2f3fc4ef22ea85661ee027', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('48ccd574ccada1eb5a3a41f7bbd5a24f', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('4d632ee9e14bcd156b1f677edd41dda8', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('4e34f3337a69a0d0f3f0f258a151ecb2', 'global', 'get', 1); @@ -88,20 +104,34 @@ INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `gr INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('8907f72c2e51a54bd6788f1dc0899fbe', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('923d7843e7721ce7cc824052402420ea', 'global', 'delete', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('923d7843e7721ce7cc824052402420ea', 'global', 'post', 1); +INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('92dda022d4a73d610eeffec9648b1a92', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('984a0b704424437c23473ddc9e68509e', 'global', 'delete', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('984a0b704424437c23473ddc9e68509e', 'global', 'put', 1); +INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('9d501f23929f676757dae63a54f74b07', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('a0965c027b918b129c78203bde642da5', 'global', 'get', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('b6bb75b2e5be7f8abfd0193fedcaf8d0', 'global', 'post', 1); INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('ba45b38123c5986fb4719334d0ba6e8b', 'global', 'delete', 1); +INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('d317cff7f6f6918e55aef92bf17d907a', 'global', 'delete', 1); +INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('d317cff7f6f6918e55aef92bf17d907a', 'global', 'get', 1); +INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('d317cff7f6f6918e55aef92bf17d907a', 'global', 'post', 1); -- --- Dumping data for table `blubber_threads` +-- Daten für Tabelle `blubber_threads` -- INSERT INTO `blubber_threads` (`thread_id`, `context_type`, `context_id`, `user_id`, `external_contact`, `content`, `display_class`, `visible_in_stream`, `commentable`, `metadata`, `chdate`, `mkdate`) VALUES('global', 'public', '', '', 0, NULL, 'BlubberGlobalThread', 1, 1, NULL, 1591717440, 1591717440); -- --- Dumping data for table `colour_values` +-- Daten für Tabelle `cache_types` +-- + +INSERT INTO `cache_types` (`cache_id`, `class_name`, `chdate`, `mkdate`) VALUES(1, 'StudipDbCache', 1640797278, 1640797278); +INSERT INTO `cache_types` (`cache_id`, `class_name`, `chdate`, `mkdate`) VALUES(2, 'StudipFileCache', 1640797278, 1640797278); +INSERT INTO `cache_types` (`cache_id`, `class_name`, `chdate`, `mkdate`) VALUES(3, 'StudipMemcachedCache', 1640797278, 1640797278); +INSERT INTO `cache_types` (`cache_id`, `class_name`, `chdate`, `mkdate`) VALUES(4, 'StudipRedisCache', 1640797278, 1640797278); + +-- +-- Daten für Tabelle `colour_values` -- INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.Booking.Bg', 'Die Farbe im Belegungsplan für gewöhnliche Buchungen.', '129c94ff', 1591630777, 1591630777); @@ -124,13 +154,14 @@ INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chd 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); -- --- Dumping data for table `config` +-- Daten für Tabelle `config` -- 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('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'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_ADMIN_USERACCESS', '1', 'boolean', 'global', 'permissions', 1240427632, 1240427632, 'Wenn eingeschaltet, dürfen Administratoren sensible persönliche Angaben wie z.B. Passwörter ändern.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_CHANGE_EMAIL', '1', 'boolean', 'global', 'permissions', 1510849314, 1510849314, 'If true, users are allowed to change their email'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_CHANGE_NAME', '1', 'boolean', 'global', 'permissions', 1510849314, 1510849314, 'If true, users are allowed to change their name'); @@ -148,18 +179,28 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('BANNER_ADS_ENABLE', '0', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob die Bannerwerbung global verfügbar ist.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('BLUBBER_DEFAULT_THREAD', '1', 'string', 'user', '', 1591630778, 1591630778, 'Dieses ist bei dem globalen Blubber-Messenger der vorausgewählte Blubber.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('BLUBBER_GLOBAL_MESSENGER_ACTIVATE', '1', 'boolean', 'global', 'global', 1591630778, 1591630778, 'Ist Blubber unter Community global aktiv? Blubber in Veranstaltungen wird über das Plugin Blubber aktiviert oder deaktiviert.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('BLUBBER_GLOBAL_THREAD_OPTOUT', '1', 'boolean', 'global', 'global', 1640797278, 1640797278, 'Gibt an, ob beim globalen Blubber Thread ein Opt-Out-Verfahren genutzt werden soll'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CALENDAR_ENABLE', '1', 'boolean', 'global', 'calendar', 1293118059, 1293118059, 'Schaltet ein oder aus, ob der Kalender global verfügbar ist.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CALENDAR_GRANT_ALL_INSERT', '0', 'boolean', 'global', 'calendar', 1462287762, 1462287762, 'Ermöglicht das Eintragen von Terminen in alle Nutzerkalender, ohne Beachtung des Rechtesystems.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CALENDAR_GROUP_ENABLE', '0', 'boolean', 'global', 'calendar', 1326799692, 1326799692, 'Schaltet die Gruppenterminkalender-Funktionen ein.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CALENDAR_SETTINGS', '{\"view\":\"week\",\"start\":\"9\",\"end\":\"20\",\"step_day\":\"900\",\"step_week\":\"1800\",\"type_week\":\"LONG\",\"step_week_group\":\"3600\",\"step_day_group\":\"3600\"}', 'array', 'user', '', 1403258015, 1403258015, 'persönliche Einstellungen des Kalenders'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_ALLOW_DOCENTS_RESERVING', '1', 'boolean', 'global', 'Sprechstunden', 1557244743, 1557244743, 'Lehrende können sich bei anderen Lehrenden anmelden'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_ENABLED', '1', 'boolean', 'global', 'Sprechstunden', 1557244743, 1557244743, 'Schaltet die Sprechstunden global ein'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_ALLOW_DOCENTS_RESERVING', '1', 'boolean', 'global', 'Terminvergabe', 1557244743, 1557244743, 'Lehrende können sich bei anderen Lehrenden anmelden'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_ENABLED', '1', 'boolean', 'global', 'Terminvergabe', 1557244743, 1557244743, 'Schaltet die Sprechstunden global ein'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_EXCLUDE_EXPIRED', '1', 'boolean', 'user', 'global', 1573236813, 1573236813, 'Sprechstunden: Sollen abgelaufene Blöcke ausgeblendet werden'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_REQUIRED_PERMISSION', 'tutor', 'string', 'global', 'Sprechstunden', 1557244743, 1557244743, 'Ab welcher Rechtestufe dürfen Nutzer Sprechstunden anlegen (user, autor, tutor, dozent, admin, root)'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_SEND_MESSAGES', '1', 'boolean', 'user', 'Sprechstunden', 1557244743, 1557244743, 'Nachrichten empfangen über Buchungen/Stornierungen'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_GARBAGE_COLLECT', '0', 'boolean', 'range', 'Terminvergabe', 1640797277, 1640797277, 'Sollen abgelaufene Termine automatisch abgeräumt werden?'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_REQUIRED_PERMISSION', 'tutor', 'string', 'global', 'Terminvergabe', 1557244743, 1557244743, 'Ab welcher Rechtestufe dürfen Nutzer Sprechstunden anlegen (user, autor, tutor, dozent, admin, root)'); +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('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_EDITING_PERMISSION', 'tutor', 'string', 'range', '', 1640797279, 1640797279, 'Mit dieser Konfigurationseinstellung wird für eine Courseware festgelegt, welche Rechtestufe Inhalte editieren dürfen.'); +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.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSEWARE_SEQUENTIAL_PROGRESSION', '0', 'boolean', 'range', '', 1640797279, 1640797279, 'Mit dieser Konfigurationseinstellung wird für eine Courseware festgelegt, ob Lernende sequentiell durch die Inhalte gehen müssen.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_ADMIN_NOTICE', '', 'string', 'course', '', 1640797279, 1640797279, 'Admins: Notiz zu einer Veranstaltung'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_CALENDAR_ENABLE', '0', 'boolean', 'global', 'calendar', 1326799692, 1326799692, 'Kalender als Inhaltselement in Veranstaltungen.'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_LIBRARY_CITATION_STYLE', '', 'string', 'course', 'Library', 1607702429, 1607702429, 'Der standardmäßig genutzte Zitationsstil innerhalb der Veranstaltung.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_MEMBERGROUPS_HIDE', '0', 'boolean', 'course', '', 1640797277, 1640797277, 'Ãœber diese Option können Sie die Teilnehmendengruppenliste für Studierende der Veranstaltung unsichtbar machen'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_MEMBERS_HIDE', '0', 'boolean', 'course', '', 1640797277, 1640797277, 'Ãœber diese Option können Sie die Teilnehmendenliste für Studierende der Veranstaltung unsichtbar machen'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_NUMBER_FORMAT', '', 'string', 'global', 'global', 1510849314, 1510849314, 'Erlaubt das Eintragen eines regulären Ausdrucks zur Validierung einer Veranstaltungsnummer. Im Kommentarfeld kann ein entsprechender Hilfetext hinterlegt werden.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_PUBLIC_TOPICS', '0', 'boolean', 'course', '', 1543856103, 1543856103, 'Ãœber diese Option können Sie die Themen einer Veranstaltung öffentlich einsehbar machen.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_SEARCH_IS_VISIBLE_NOBODY', '0', 'boolean', 'global', 'coursesearch', 1543856104, 1543856104, 'Soll die Veranstaltungssuche auch für nobody (ohne Anmeldung) sichtbar sein?'); @@ -210,6 +251,7 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('GLOBALSEARCH_MAX_RESULT_OF_TYPE', '5', 'integer', 'global', 'globalsearch', 1530289048, 1530289048, 'Wie viele Ergebnisse sollen in der globalen Schnellsuche pro Kategorie angezeigt werden?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('GLOBALSEARCH_MODULES', '{\"GlobalSearchBuzzwords\":{\"order\":1,\"active\":true,\"fulltext\":false},\"GlobalSearchMyCourses\":{\"order\":2,\"active\":true,\"fulltext\":false},\"GlobalSearchCourses\":{\"order\":3,\"active\":true,\"fulltext\":false},\"GlobalSearchUsers\":{\"order\":4,\"active\":true,\"fulltext\":false},\"GlobalSearchInstitutes\":{\"order\":5,\"active\":true,\"fulltext\":false},\"GlobalSearchFiles\":{\"order\":6,\"active\":true,\"fulltext\":false},\"GlobalSearchCalendar\":{\"order\":7,\"active\":true,\"fulltext\":false},\"GlobalSearchMessages\":{\"order\":8,\"active\":true,\"fulltext\":false},\"GlobalSearchForum\":{\"order\":9,\"active\":true,\"fulltext\":false},\"GlobalSearchResources\":{\"order\":10,\"active\":true,\"fulltext\":false},\"GlobalSearchRoomAssignments\":{\"order\":11,\"active\":true,\"fulltext\":false},\"GlobalSearchModules\":{\"order\":12,\"active\":true,\"fulltext\":false},\"GlobalSearchBlubber\":{\"order\":13,\"active\":true,\"fulltext\":true}}', 'array', 'global', 'globalsearch', 1530289048, 1530289048, 'Aktivierung und Reihenfolge der Module in der globalen Suche'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('HELP_CONTENT_CURRENT_VERSION', '3.1', 'string', 'global', 'global', 1416496271, 1416496271, 'Aktuelle Version der Helpbar-Einträge in Stud.IP'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('HIDE_STUDYGROUPS_FROM_PROFILE', '0', 'boolean', 'global', 'studygroups', 1640797277, 1640797277, 'Sollen Studiengruppen bei der Anzeige der Veranstaltungen auf dem Profil versteckt werden?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('HOMEPAGEPLUGIN_DEFAULT_ACTIVATION', '0', 'boolean', 'global', 'privacy', 1403258014, 1403258014, 'Sollen neu installierte Homepageplugins automatisch für Benutzer aktiviert sein?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('HOMEPAGE_VISIBILITY_DEFAULT', 'VISIBILITY_STUDIP', 'string', 'global', 'privacy', 1293118059, 1293118059, 'Standardsichtbarkeit für Homepageelemente, falls der Benutzer nichts anderes eingestellt hat. Gültige Werte sind: VISIBILITY_ME, VISIBILITY_BUDDIES, VISIBILITY_DOMAIN, VISIBILITY_STUDIP, VISIBILITY_EXTERN'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('HTTP_PROXY', '', 'string', 'global', 'global', 1607702429, 1607702429, 'externe http Anfragen über proxy'); @@ -225,7 +267,7 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('JSONAPI_CORS_ORIGIN', '[]', 'array', 'global', 'global', 1591630777, 1591630777, 'Diese Einstellung definiert URIs, die mittels CORS auf die JSONAPI zugreifen dürfen.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('JSONAPI_DANGEROUS_ROUTES_ALLOWED', '0', 'boolean', 'global', 'global', 1591630776, 1591630776, 'Wenn diese Einstellung gesetzt ist, dürfen auch potentiell gefährliche JSONAPI-Routen genutzt werden. (Zum Beispiel dürfen dann root-Nutzer auch andere Nutzer löschen.)'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LAST_LOGIN_TIMESTAMP', '0', 'integer', 'user', '', 1403258015, 1403258015, 'Zeitstempel des vorherigen Logins'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LIBRARY_ADD_ITEM_ACTION_DESCRIPTION', 'Sie können digitale Originaldokumente direkt aus der Bibliothek (ggf. Name) beziehen. Sie erhalten Materialien mit geklärten Rechten und in hochwertiger Qualität. Bei Bedarf kann die Bibliothek zur Bereitstellung eingebunden werden.', 'string', 'global', 'Library', 1607702429, 1607702429, 'Der Beschreibungstext für die Aktion zum Hinzufügen eines Bibliothekseintrags in den Dateibereich.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LIBRARY_ADD_ITEM_ACTION_DESCRIPTION', 'Sie können digitale Originaldokumente direkt aus der Bibliothek beziehen. Sie erhalten Materialien mit geklärten Rechten und in hochwertiger Qualität. Bei Bedarf kann die Bibliothek zur Bereitstellung eingebunden werden.', 'string', 'global', 'Library', 1607702429, 1607702429, 'Der Beschreibungstext für die Aktion zum Hinzufügen eines Bibliothekseintrags in den Dateibereich.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LITERATURE_ENABLE', '0', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob die Literaturverwaltung global verfügbar ist.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LOAD_EXTERNAL_MEDIA', 'deny', 'string', 'global', '', 1293118060, 1293118060, 'Sollen externe Medien über [img/flash/audio/video] eingebunden werden? deny=nicht erlaubt, allow=erlaubt, proxy=proxy benutzen.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LOCK_RULE_ADMIN_PERM', 'admin', 'string', 'global', 'permissions', 1240427632, 1240427632, 'mit welchem Status dürfen Sperrebenen angepasst werden (admin, root)'); @@ -245,12 +287,16 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MVV_ACCESS_ASSIGN_LVGRUPPEN', 'admin', 'string', 'global', 'mvv', 1483462780, 1483462780, 'Ab welchem Rechtestatus können Veranstaltungen Modulen (LV-Gruppen) zugeordnet werden. Bei Angabe von fakadmin darf nur dieser Zuordnungen vornehmen.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MVV_ALLOW_CREATE_LVGRUPPEN_INDEPENDENTLY', '0', 'boolean', 'global', 'mvv', 1573236812, 1573236812, 'Soll das Anlegen von LV-Gruppen unabhängig von bestehenden Modulteilen auf der Verwaltungsseite für LV-Gruppen möglich sein?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MVV_OVERLAPPING_SHOW_VERSIONS_INSIDE_MULTIPLE_STUDY_COURSES', '0', 'boolean', 'global', 'mvv', 1591630777, 1591630777, 'Zeigt als zweite Auswahl bei Mehrfachstudiengängen nur Versionen der dazugehörigen Teilstudiengänge an.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_ALLOW_TILED_DISPLAY', '1', 'boolean', 'global', 'MeineVeranstaltungen', 1640797277, 1640797277, 'Soll die Kachelansicht unter \"Meine Veranstaltungen\" aktiviert werden?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_DEFAULT_CYCLE', 'last', 'string', 'global', 'MeineVeranstaltungen', 1462287310, 1462287310, 'Standardeinstellung für den Semester-Filter, falls noch keine Auswahl getätigt wurde. (all, future, current, last)'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_ENABLE_ALL_SEMESTERS', '1', 'boolean', 'global', 'MeineVeranstaltungen', 1416496224, 1416496224, 'Ermöglicht die Anzeige von allen Semestern unter meine Veranstaltungen.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_ENABLE_STUDYGROUPS', '1', 'boolean', 'global', 'MeineVeranstaltungen', 1416496224, 1416496224, 'Sollen Studiengruppen in einem eigenen Bereich angezeigt werden (Neues Navigationelement in Meine Veranstaltungen)?.'); 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_INSTITUTES_DEFAULT', '', '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'); @@ -258,6 +304,10 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('NEWS_RSS_EXPORT_ENABLE', '1', 'boolean', 'global', '', 0, 0, 'Schaltet die Möglichkeit des rss-Export von privaten News global ein oder aus'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('NEW_INDICATOR_THRESHOLD', '90', 'integer', 'global', 'global', 1448561064, 1448561064, 'Gibt an, nach wieviel Tagen ein Eintrag als alt angesehen und nicht mehr rot markiert werden soll (0 angeben, um nur das tatsäcliche Alter) zu betrachten.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('NOTIFY_ON_WAITLIST_ADVANCE', '1', 'boolean', 'global', 'global', 1543856103, 1543856103, 'Versendet Nachrichten an Teilnehmer bei jeder Änderung der Position auf der Warteliste'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('OERCAMPUS_ENABLED', '1', 'boolean', 'global', 'OERCampus', 1640797278, 1640797278, 'Ist der OER Campus aktiviert?'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('OER_DISABLE_LICENSE', '0', 'boolean', 'global', 'OERCampus', 1640797278, 1640797278, 'Sollen die Lizenzen deaktiviert / nicht angezeigt werden?'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('OER_PUBLIC_STATUS', 'autor', 'string', 'global', 'OERCampus', 1640797278, 1640797278, 'Ab welchem Nutzerstatus (nobody, user, autor, tutor, dozent) darf man den Marktplatz sehen?'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('OER_TITLE', 'OER Campus', 'string', 'global', 'OERCampus', 1640797278, 1640797278, 'Name des OER Campus in Stud.IP'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ONLINE_NAME_FORMAT', 'full_rev', 'string', 'user', '', 1153814980, 1153814980, 'Default-Wert für wer-ist-online Namensformatierung'); 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.'); @@ -266,8 +316,8 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c 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'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PLUS_SETTINGS', '[]', 'array', 'user', '', 1436547919, 1436547919, 'Nutzer Konfiguration für Plusseite'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PRIVACY_CONTACT', 'root@studip', 'string', 'global', 'privacy', 1543856104, 1543856104, 'Username der Kontaktperson zum Datenschutz'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PRIVACY_PERM', 'root', 'string', 'global', 'privacy', 1543856104, 1543856104, 'Rechtestufe zum Datenzugriff'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PRIVACY_CONTACT', '', 'string', 'global', 'privacy', 1543856104, 1543856104, 'Username der Kontaktperson zum Datenschutz'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PRIVACY_PERM', 'autor', 'string', 'global', 'privacy', 1543856104, 1543856104, 'Rechtestufe zum Datenzugriff'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PRIVACY_URL', 'dispatch.php/siteinfo/show/1/7', 'string', 'global', 'privacy', 1543856104, 1543856104, 'URL zur Datenschutzerklärung'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PROFILE_LAST_VISIT', '0', 'integer', 'user', '', 1403258015, 1403258015, 'Zeitstempel des letzten Besuchs der Profilseite'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PROPOSED_TEACHER_LABELS', '', 'string', 'global', 'global', 1326799692, 1326799692, 'Write a list of comma separated possible labels for teachers and tutor here.'); @@ -317,7 +367,9 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDYGROUPS_INVISIBLE_ALLOWED', '0', 'boolean', 'global', 'studygroups', 1403258018, 1403258018, 'Ermöglicht unsichtbare Studiengruppen'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDYGROUP_ACCEPTANCE_TEXT', 'Die Moderatorinnen und Moderatoren der Studiengruppe können Ihren Aufnahmewunsch bestätigen oder ablehnen. Erst nach Bestätigung erhalten Sie vollen Zugriff auf die Gruppe.', 'string', 'global', 'studygroups', 1448561064, 1448561064, 'Text, der angezeigt wird, wenn man sich in eine zugriffsbeschränkte Studiengruppe eintragen möchte'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDYGROUP_DEFAULT_INST', '', 'string', 'global', 'studygroups', 1258042892, 1258042892, 'Die Standardeinrichtung für Studiengruppen kann hier gesetzt werden.'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDYGROUP_TERMS', 'Mir ist bekannt, dass ich die Gruppe nicht zu rechtswidrigen Zwecken nutzen darf. Dazu zählen u.a. Urheberrechtsverletzungen, Beleidigungen und andere Persönlichkeitsdelikte.\n\nIch erkläre mich damit einverstanden, dass Admins die Inhalte der Gruppe zu Kontrollzwecken einsehen dürfen.', 'string', 'global', 'studygroups', 1257956185, 1257956185, 'Hier werden die Nutzungsbedinungen der Studiengruppen hinterlegt.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDYGROUP_TERMS', 'Mir ist bekannt, dass ich die Gruppe nicht zu rechtswidrigen Zwecken nutzen darf. Dazu zählen u.a. Urheberrechtsverletzungen, Beleidigungen und andere Persönlichkeitsdelikte.\n\nIch erkläre mich damit einverstanden, daß Administratorinnen und Administratoren die Inhalte der Gruppe zu Kontrollzwecken einsehen dürfen.', 'string', 'global', 'studygroups', 1257956185, 1257956185, 'Hier werden die Nutzungsbedinungen der Studiengruppen hinterlegt.'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SYSTEMCACHE', '{\"type\":\"StudipDbCache\",\"config\":[]}', 'array', 'global', 'global', 1640797278, 1640797278, 'Typ und Konfiguration des zu verwendenden Systemcaches'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TERMS_ACCEPTED', '0', 'boolean', 'user', '', 1640797279, 1640797279, 'Die Nutzungsbedingungen wurden akzeptiert'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TERMS_CONFIG', '{\"compulsory\":false,\"denial_message\":\"\"}', 'array', 'global', 'global', 1607702429, 1607702429, 'In case the terms are not compulsory, user can deny them.if denial_message is not set, a default text is displayed.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TFA_MAX_TRIES', '3', 'integer', 'global', 'Zwei-Faktor-Authentifizierung', 1573236813, 1573236813, 'Maximale Anzahl fehlerhafter Versuche innerhalb eines Zeitraums'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TFA_MAX_TRIES_TIMESPAN', '300', 'integer', 'global', 'Zwei-Faktor-Authentifizierung', 1573236813, 1573236813, 'Zeitraum in Sekunden, nach dem fehlerhafte Versuche vergessen werden'); @@ -325,7 +377,6 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TOURS_ENABLE', '1', 'boolean', 'global', 'global', 1416496223, 1416496223, 'Aktiviert die Funktionen zum Anbieten von Touren in Stud.IP'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('UNI_NAME_CLEAN', 'Stud.IP', 'string', 'global', 'global', 1510849314, 1510849314, 'Name der Stud.IP-Installation bzw. Hochschule.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('USERNAME_REGULAR_EXPRESSION', '/^([a-zA-Z0-9_@.-]{4,})$/', 'string', 'global', 'global', 1510849314, 1510849314, 'Regex for allowed characters in usernames'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('USER_LIBRARY_CITATION_STYLE', '', 'string', 'user', 'Library', 1607702429, 1607702429, 'Der präferierte Zitationsstil einer Person.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('USER_VISIBILITY_CHECK', '1', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Enable presentation of visibility decision texts for users after first login. see lib/include/header.php and lib/user_visible.inc.php for further info'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('USER_VISIBILITY_UNKNOWN', '1', 'boolean', 'global', 'privacy', 1153815901, 1153815901, 'Sollen Nutzer mit Sichtbarkeit \"unknown\" wie sichtbare behandelt werden?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('VOTE_ENABLE', '1', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob die Umfragen global verfügbar sind.'); @@ -342,7 +393,7 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ZIP_UPLOAD_MAX_FILES', '100', 'integer', 'global', 'files', 1130840930, 1130840930, 'Die maximale Anzahl an Dateien, die bei einem Zipupload automatisch entpackt werden'); -- --- Dumping data for table `content_terms_of_use_entries` +-- Daten für Tabelle `content_terms_of_use_entries` -- INSERT INTO `content_terms_of_use_entries` (`id`, `name`, `position`, `description`, `student_description`, `download_condition`, `icon`, `is_default`, `mkdate`, `chdate`) VALUES('FREE_LICENSE', 'Werk mit freier Lizenz', 3, 'Werke, die unter einer freien Lizenz veröffentlich wurden, d.h. deren Weitergabe und zumeist auch Veränderung ohne Lizenzkosten gestattet ist, dürfen Sie ohne Einschränkungen für den Unterricht zugänglich machen. \n\nTypische Beispiele sind:\n- Open-Access-Publikationen \n- Open Educational Ressources (OER) \n- Werke unter Creative-Commons-Lizenzen (z.B. Wikipedia-Inhalte) \n\nAchtung: Vergewissern Sie sich im Einzelfall, welche Einschränkungen für die Verbreitung und Veränderung die jeweilige Lizenz ggf. enthält.', 'Das Dokument unterliegt einer freien Lizenz. Sie dürfen es weitergeben und unter Beachtung der Details der Lizenz (s. Angaben im Dokument) verändern und in eigene Werke übernehmen.', 0, 'cc', 0, 1499435049, 1499435049); @@ -352,7 +403,7 @@ INSERT INTO `content_terms_of_use_entries` (`id`, `name`, `position`, `descripti INSERT INTO `content_terms_of_use_entries` (`id`, `name`, `position`, `description`, `student_description`, `download_condition`, `icon`, `is_default`, `mkdate`, `chdate`) VALUES('WITH_LICENSE', 'Nutzungserlaubnis oder Lizenz liegt vor', 4, 'Wenn Sie urheberrechtlich geschützte Werke zugänglich machen wollen und keine der anderen Kategorien passt, benötigen Sie eine Erlaubnis oder kostenpflichtige Lizenz des Inhabers der Verwertungsrechte. Das ist bei publizierten Werken der Verlag, bei nicht publizierten Werken der Autor. \n\nTypische Beispiele sind: \n- Zustimmung von Kollegen oder Studierenden zur Weitergabe von Skripten, Seminararbeiten, Referatsfolien \n- Zustimmung eines Verlages zur Nutzung von Werkteilen für die Lehre \n- Verlags-Erlaubnis zur Nutzung eigener publizierter Werke für die Lehre \n- Erworbene Lizenz für die Weitergabe in Lehrveranstaltung (eine einzelne erworbene Kopie reicht nicht aus!) \n\nAchtung: Campus- oder Nationallizenzen erlauben es nicht, dass Sie ein Werk erneut hochladen und somit selbst verbreiten. Verlinken Sie in diesem Fall direkt auf das Angebot Ihrer Bibliothek o.ä.', 'Das Dokument wird zur Nutzung im Rahmen dieser Veranstaltung bereitgestellt. Sie dürfen es für private Zwecke herunterladen und archivieren, nicht jedoch ohne Erlaubnis weitergeben.', 0, 'license', 0, 1499435049, 1499435049); -- --- Dumping data for table `coursewizardsteps` +-- Daten für Tabelle `coursewizardsteps` -- INSERT INTO `coursewizardsteps` (`id`, `name`, `classname`, `number`, `enabled`, `mkdate`, `chdate`) VALUES('3780ba468183b5ed6d7c32fbd73edb02', 'Erweiterte Grunddaten', 'AdvancedBasicDataWizardStep', 1, 0, 1483462779, 1483462779); @@ -362,7 +413,7 @@ INSERT INTO `coursewizardsteps` (`id`, `name`, `classname`, `number`, `enabled`, INSERT INTO `coursewizardsteps` (`id`, `name`, `classname`, `number`, `enabled`, `mkdate`, `chdate`) VALUES('ec7b6671be2d47e03e5863e5e5b75e14', 'Studienbereich oder LV-Gruppe', 'StudyAreasLVGroupsCombinedWizardStep', 3, 0, 1607702429, 1607702429); -- --- Dumping data for table `cronjobs_schedules` +-- Daten für Tabelle `cronjobs_schedules` -- INSERT INTO `cronjobs_schedules` (`schedule_id`, `task_id`, `active`, `title`, `description`, `parameters`, `priority`, `type`, `minute`, `hour`, `day`, `month`, `day_of_week`, `next_execution`, `last_execution`, `last_result`, `execution_count`, `mkdate`, `chdate`) VALUES('3eb6cd006b1d27ab3dfd812c17d90f38', '532b3fe76447dd85e10949a6fc5f3aa8', 0, NULL, '', '{\"cronjobs\":\"1\",\"cronjobs-success\":\"7\",\"cronjobs-error\":\"14\"}', 'normal', 'periodic', 13, 2, NULL, NULL, NULL, 0, NULL, NULL, 0, 1403258015, 1403258107); @@ -374,23 +425,22 @@ INSERT INTO `cronjobs_schedules` (`schedule_id`, `task_id`, `active`, `title`, ` INSERT INTO `cronjobs_schedules` (`schedule_id`, `task_id`, `active`, `title`, `description`, `parameters`, `priority`, `type`, `minute`, `hour`, `day`, `month`, `day_of_week`, `next_execution`, `last_execution`, `last_result`, `execution_count`, `mkdate`, `chdate`) VALUES('dfd35e23a8256fee930e2e748cd53f1d', '3428a64935e8c6a5ab5dcf5bf95fe556', 0, NULL, NULL, 'null', 'normal', 'periodic', 13, 3, NULL, NULL, NULL, 1530321180, NULL, NULL, 0, 1403258015, 1530290420); INSERT INTO `cronjobs_schedules` (`schedule_id`, `task_id`, `active`, `title`, `description`, `parameters`, `priority`, `type`, `minute`, `hour`, `day`, `month`, `day_of_week`, `next_execution`, `last_execution`, `last_result`, `execution_count`, `mkdate`, `chdate`) VALUES('f048bf3c13bfdb2a2a17ce867903ca0e', 'd19f37c382fec524b4fd51b3c5a1ada3', 0, NULL, NULL, '[]', 'high', 'periodic', 7, 1, NULL, NULL, NULL, 0, NULL, NULL, 0, 1403258015, 1403258015); - -- --- Dumping data for table `cronjobs_tasks` +-- Daten für Tabelle `cronjobs_tasks` -- -INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`) VALUES('208619e89a59895771c2967076daf59e', 'lib/cronjobs/purge_cache.class.php', 'PurgeCacheJob', 1, 0, 0); -INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`) VALUES('2f2713671892bd9624fc27866cfd4630', 'lib/cronjobs/check_admission.class.php', 'CheckAdmissionJob', 1, 0, 0); -INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`) VALUES('3428a64935e8c6a5ab5dcf5bf95fe556', 'lib/cronjobs/session_gc.class.php', 'SessionGcJob', 1, 0, 0); -INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`) VALUES('43f9da3d9245d0f01b43f744e0b8cdce', 'lib/classes/FilesSearch/Cronjob.php', 'FilesSearch\\Cronjob', 1, 0, 2); -INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`) VALUES('532b3fe76447dd85e10949a6fc5f3aa8', 'lib/cronjobs/cleanup_log.class.php', 'CleanupLogJob', 1, 0, 0); -INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`) VALUES('823875ed4a4b2e87baca0e5137243d96', 'lib/cronjobs/garbage_collector.class.php', 'GarbageCollectorJob', 1, 0, 0); -INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`) VALUES('9c4ad2a8fe47d07e61475d25f5e539db', 'lib/cronjobs/send_mail_queue.class.php', 'SendMailQueueJob', 1, 0, 0); -INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`) VALUES('d0a556faa0bb93df823ccae8905b21d3', 'lib/cronjobs/clean_object_user_visits.php', 'CleanObjectUserVisits', 1, 0, 0); -INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`) VALUES('d19f37c382fec524b4fd51b3c5a1ada3', 'lib/cronjobs/send_mail_notifications.class.php', 'SendMailNotificationsJob', 1, 0, 0); +INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`, `mkdate`, `chdate`) VALUES('208619e89a59895771c2967076daf59e', 'lib/cronjobs/purge_cache.class.php', 'PurgeCacheJob', 1, 0, 0, NULL, NULL); +INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`, `mkdate`, `chdate`) VALUES('2f2713671892bd9624fc27866cfd4630', 'lib/cronjobs/check_admission.class.php', 'CheckAdmissionJob', 1, 0, 0, NULL, NULL); +INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`, `mkdate`, `chdate`) VALUES('3428a64935e8c6a5ab5dcf5bf95fe556', 'lib/cronjobs/session_gc.class.php', 'SessionGcJob', 1, 0, 0, NULL, NULL); +INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`, `mkdate`, `chdate`) VALUES('43f9da3d9245d0f01b43f744e0b8cdce', 'lib/classes/FilesSearch/Cronjob.php', 'FilesSearch\\Cronjob', 1, 0, 2, NULL, NULL); +INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`, `mkdate`, `chdate`) VALUES('532b3fe76447dd85e10949a6fc5f3aa8', 'lib/cronjobs/cleanup_log.class.php', 'CleanupLogJob', 1, 0, 0, NULL, NULL); +INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`, `mkdate`, `chdate`) VALUES('823875ed4a4b2e87baca0e5137243d96', 'lib/cronjobs/garbage_collector.class.php', 'GarbageCollectorJob', 1, 0, 0, NULL, NULL); +INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`, `mkdate`, `chdate`) VALUES('9c4ad2a8fe47d07e61475d25f5e539db', 'lib/cronjobs/send_mail_queue.class.php', 'SendMailQueueJob', 1, 0, 0, NULL, NULL); +INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`, `mkdate`, `chdate`) VALUES('d0a556faa0bb93df823ccae8905b21d3', 'lib/cronjobs/clean_object_user_visits.php', 'CleanObjectUserVisits', 1, 0, 0, NULL, NULL); +INSERT INTO `cronjobs_tasks` (`task_id`, `filename`, `class`, `active`, `execution_count`, `assigned_count`, `mkdate`, `chdate`) VALUES('d19f37c382fec524b4fd51b3c5a1ada3', 'lib/cronjobs/send_mail_notifications.class.php', 'SendMailNotificationsJob', 1, 0, 0, NULL, NULL); -- --- Dumping data for table `datafields` +-- Daten für Tabelle `datafields` -- INSERT INTO `datafields` (`datafield_id`, `name`, `object_type`, `object_class`, `edit_perms`, `view_perms`, `institut_id`, `priority`, `mkdate`, `chdate`, `type`, `typeparam`, `is_required`, `default_value`, `is_userfilter`, `description`, `system`) VALUES('0c63321a8e93b3ccc927611709248e07', 'default Planungsfarbe', 'inst', NULL, 'admin', 'root', NULL, 0, NULL, NULL, 'textline', '', 0, NULL, 0, 'Default Farben im Veranstaltungsplaner', 0); @@ -398,7 +448,7 @@ INSERT INTO `datafields` (`datafield_id`, `name`, `object_type`, `object_class`, INSERT INTO `datafields` (`datafield_id`, `name`, `object_type`, `object_class`, `edit_perms`, `view_perms`, `institut_id`, `priority`, `mkdate`, `chdate`, `type`, `typeparam`, `is_required`, `default_value`, `is_userfilter`, `description`, `system`) VALUES('69f6485f3c937766866a03d9d642ecbb', 'zugeordnete Planungsspalte', 'sem', NULL, 'admin', 'root', NULL, 0, NULL, NULL, 'textline', '', 0, NULL, 0, 'Gibt die zugeordnete Planungsspalte im Veranstaltungsplan an.', 0); -- --- Dumping data for table `evalanswer` +-- Daten für Tabelle `evalanswer` -- INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('087c734855c8a5b34d99c16ad09cd312', '6fddac14c1f2ac490b93681b3da5fc66', 1, 'Dienstag', 2, 0, 0, 0); @@ -433,7 +483,7 @@ INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `val INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('fa2bf667ba73ae74794df35171c2ad2e', '724244416b5d04a4d8f4eab8a86fdbf8', 3, 'Ausreichend', 4, 0, 0, 0); -- --- Dumping data for table `evalquestion` +-- Daten für Tabelle `evalquestion` -- INSERT INTO `evalquestion` (`evalquestion_id`, `parent_id`, `type`, `position`, `text`, `multiplechoice`) VALUES('12e508079c4770fb13c9fce028f40cac', '0', 'multiplechoice', 0, 'Werktage-mehrfach', 1); @@ -445,7 +495,7 @@ INSERT INTO `evalquestion` (`evalquestion_id`, `parent_id`, `type`, `position`, INSERT INTO `evalquestion` (`evalquestion_id`, `parent_id`, `type`, `position`, `text`, `multiplechoice`) VALUES('ef227e91618878835d52cfad3e6d816b', '0', 'polskala', 0, 'Wertung 1-5', 0); -- --- Dumping data for table `help_content` +-- Daten für Tabelle `help_content` -- INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('014a2106d384c0ca55d9311597029ca0', '014a2106d384c0ca55d9311597029ca0', 'de', 'Mit der Ressourcensuche können universitäre Ressourcen wie Räume, Gebäude etc. gefunden werden.', 'resources.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); @@ -620,141 +670,125 @@ INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `cont INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('fe23b56f4d691c0f5e2f872e37ce38b5', 'fe23b56f4d691c0f5e2f872e37ce38b5', 'en', 'Individual user data e.g. email address, can be changed on this page.', 'dispatch.php/settings/account', '4.4', 0, 0, 1, '', '', 1412942388, 0); -- --- Dumping data for table `help_tours` +-- Daten für Tabelle `help_tours` -- -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '05434e40601a9a2a7f5fa8208ae148c1', 'My documents', 'The personal document area will be presented in this tour.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427786336, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('e9959c638e0c2578cccee24702e886f4', '0b542c6c891af499763356f2c7218f7f', 'Was ist neu in Stud.IP 4.0?', 'Was ist neu in Stud.IP 4.0?', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '4.0', '', '', 1514883131, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', '154e711257d4d32d865fb8f5fb70ad72', 'Meine Dateien', 'In dieser Tour wird der persönliche Dateibereich vorgestellt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1405592618, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', '19ac063e8319310d059d28379139b1cf', 'Studiengruppe anlegen', 'In dieser Tour wird das Anlegen von Studiengruppen erklärt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1405684299, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '1badcf28ab5b206d9150b2b9683b4cb6', 'My courses (lecturers)', 'The most important functions of the site \"My courses\" are presented in this tour.', 'tour', 'tutor,dozent,admin,root', 1, 'en', '', '', '', 1427722642, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', '21f487fa74e3bfc7789886f40fe4131a', 'Forum nutzen', 'Die Inhalte dieser Tour stammen aus der alten Tour des Forums (Sidebar > Aktionen > Tour starten).', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1405415746, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('25e7421f286fc5bdf9e41beadb484ffa', '25e7421f286fc5bdf9e41beadb484ffa', 'Eigenes Bild hochladen', 'In der Tour wird erklärt, wie Nutzende ein eigenes Profilbild hochladen können.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1406722657, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', '05434e40601a9a2a7f5fa8208ae148c1', 'My documents', 'The personal document area will be presented in this tour.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', '', 1405592618, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', '154e711257d4d32d865fb8f5fb70ad72', 'Meine Dateien', 'In dieser Tour wird der persönliche Dateibereich vorgestellt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', '', 1405592618, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', '19ac063e8319310d059d28379139b1cf', 'Studiengruppe anlegen', 'In dieser Tour wird das Anlegen von Studiengruppen erklärt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', '', 1405684299, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', '1badcf28ab5b206d9150b2b9683b4cb6', 'My courses (lecturers)', 'The most important functions of the site \"My courses\" are presented in this tour.', 'tour', 'tutor,dozent,admin,root', 1, 'en', '5.0', '', '', 1406125685, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', '21f487fa74e3bfc7789886f40fe4131a', 'Forum nutzen', 'Die Inhalte dieser Tour stammen aus der alten Tour des Forums (Sidebar > Aktionen > Tour starten).', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', '', 1405415746, 0); INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', '3629493a16bf2680de64361f07cab096', 'Blubber', 'In der Tour wird die Nutzung von Blubber erklärt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1406709759, 0); INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', '3a717a468afb0822cb1455e0ae6b6fce', 'Blubber', 'In der Tour wird die Nutzung von Blubber erklärt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1406709041, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '3dbe7099f82dcdbba4580acb1105a0d6', 'Administering the forum', 'The administration of the forum is explained in this tour.', 'tour', 'tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427724314, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', '44f859c50648d3410c39207048ddd833', 'Forum verwalten', 'Die Inhalte dieser Tour stammen aus der alten Tour des Forums (Sidebar > Aktionen > Tour starten).', 'tour', 'tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1405417901, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', '49604a77654617a745e29ad6b253e491', 'Gestaltung der Startseite', 'In dieser Tour werden die Funktionen und Gestaltungsmöglichkeiten der Startseite vorgestellt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1405934780, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', '3dbe7099f82dcdbba4580acb1105a0d6', 'Administering the forum', 'The administration of the forum is explained in this tour.', 'tour', 'tutor,dozent,admin,root', 1, 'en', '5.0', '', 'root@localhost', 1405417901, 1631619331); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', '44f859c50648d3410c39207048ddd833', 'Forum verwalten', 'Die Inhalte dieser Tour stammen aus der alten Tour des Forums (Sidebar > Aktionen > Tour starten).', 'tour', 'tutor,dozent,admin,root', 1, 'de', '5.0', '', 'root@localhost', 1405417901, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', '49604a77654617a745e29ad6b253e491', 'Gestaltung der Startseite', 'In dieser Tour werden die Funktionen und Gestaltungsmöglichkeiten der Startseite vorgestellt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', 'root@localhost', 1405934780, 1631613451); INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '4d41c9760a3248313236af202275107a', 'Allgemeines zum Wiki', 'Die Tour gibt einen allgemeinen Ãœberblick über das Wiki.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1441276241, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '4d41c9760a3248313236af202275107b', 'Schreiben im Wiki', 'Die Tour erklärt, wie das Wiki bearbeitet werden kann.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1441276241, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '4d41c9760a3248313236af202275107c', 'Lesen im Wiki', 'Die Tour erklärt die verschiedenen Anzeige-Modalitäten zum Lesen des Wikis.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1441276241, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '4d41c9760a3248313236af202275107b', 'Schreiben im Wiki', 'Die Tour erklärt, wie das Wiki bearbeitet werden kann.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', 'root@localhost', 1441276241, 1631619212); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '4d41c9760a3248313236af202275107c', 'Lesen im Wiki', 'Die Tour erklärt die verschiedenen Anzeige-Modalitäten zum Lesen des Wikis.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', 'root@localhost', 1441276241, 1631619264); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('36821ce84e48f0bd68482f9f43099460', '55f3a548348dcbfdca67678588887ffd', 'Mein Arbeitsplatz', 'Einführung Mein Arbeitsplatz', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', 'demo-installation', 'root@localhost', 1631614324, 1631614324); INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '588effa83da976a889a68c152bcabc90', 'Blubber', 'This tour explains how to use \"Blubber\"', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427784693, 0); INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '5d41c9760a3248313236af202275107a', 'General information on the Wiki', 'This tour provides general information about the Wiki.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1441276241, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '5d41c9760a3248313236af202275107b', 'Editing the Wiki', 'This tour provides help for editing Wiki pages.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1441276241, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '5d41c9760a3248313236af202275107c', 'Reading the Wiki', 'This tour provides help for reading Wiki pages.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1441276241, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', '6849293baa05be5bef8ff438dc7c438b', 'Suche', 'In dieser Feature-Tour werden die wichtigsten Funktionen der Suche vorgestellt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1405519609, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '7af1e1fb7f53c910ba9f42f43a71c723', 'Search', 'In this feature tour the most important search functions are explained', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427720631, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', '7cccbe3b22dfa745c17cb776fb04537c', 'Meine Veranstaltungen (Dozierende)', 'In dieser Tour werden die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\" vorgestellt.', 'tour', 'tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1406125685, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '5d41c9760a3248313236af202275107b', 'Editing the Wiki', 'This tour provides help for editing Wiki pages.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', 'root@localhost', 1441276241, 1631619212); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '5d41c9760a3248313236af202275107c', 'Reading the Wiki', 'This tour provides help for reading Wiki pages.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', 'root@localhost', 1441276241, 1631619264); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', '6849293baa05be5bef8ff438dc7c438b', 'Suche', 'In dieser Feature-Tour werden die wichtigsten Funktionen der Suche vorgestellt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', '', 1405519609, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', '7af1e1fb7f53c910ba9f42f43a71c723', 'Search', 'In this feature tour the most important search functions are explained', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', '', 1405519609, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', '7cccbe3b22dfa745c17cb776fb04537c', 'Meine Veranstaltungen (Dozierende)', 'In dieser Tour werden die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\" vorgestellt.', 'tour', 'tutor,dozent,admin,root', 1, 'de', '5.0', '', '', 1406125685, 0); INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '83dc1d25e924f2748ee3293aaf0ede8e', 'Blubber', 'This tour explains how to use \"Blubber\"', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427784655, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '89786eac42f52ac316790825b4f5c0b2', 'Use forum', 'The content of this tour is from the old tour of the forum (Sidebar > actions > start tour).', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427783673, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', '96ea422f286fb5bbf9e41beadb484a9a', 'Profilseite', 'In dieser Tour werden die Grundfunktionen und Bereiche der Profilseite vorgestellt.', 'tour', 'autor,dozent,root', 1, 'de', '3.1', '', '', 1406722657, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('977f41c5c5239c4e86f04c3df27fae38', '977f41c5c5239c4e86f04c3df27fae38', 'Was ist neu in Stud.IP 3.1?', 'In dieser Tour werden die Neuerungen in Stud.IP 3.1 überblicksartig vorgestellt.', 'tour', 'autor,tutor,dozent,admin', 1, 'de', '3.1', '', '', 1405932260, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '9e9dca9b1214294b9605824bfe90fba1', 'Create study group', 'In this tour the creation of study groups is explained', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427724645, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 'b74f8459dce2437463096d56db7c73b9', 'Meine Veranstaltungen (Studierende)', 'In dieser Tour werden die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\" vorgestellt.', 'tour', 'autor,admin,root', 1, 'de', '3.1', '', '', 1405521073, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', 'c89ce8e097f212e75686f73cc5008711', 'Participant administration', 'The administration options of the participant administration are explained in this tour.', 'tour', 'tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427721030, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', '89786eac42f52ac316790825b4f5c0b2', 'Use Forum', 'The content of this tour is from the old tour of the forum (Sidebar > actions > start tour).', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', '', 1405415746, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', '96ea422f286fb5bbf9e41beadb484a9a', 'Profilseite', 'In dieser Tour werden die Grundfunktionen und Bereiche der Profilseite vorgestellt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', 'root@localhost', 1406722657, 1631617118); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', '9e9dca9b1214294b9605824bfe90fba1', 'Create study group', 'In this tour the creation of study groups is explained', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', '', 1405684299, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('0316ff46356293ef49d8e7db09485be0', 'a848744bde4dac47ec2e8b383155381d', 'Stud.IP 5', 'Einführung in Stud.IP 5', 'tour', 'tutor,dozent,admin,root', 1, 'de', '5.0', 'demo-installation', 'dozent@studip.de', 1631612143, 1631612143); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 'b74f8459dce2437463096d56db7c73b9', 'Meine Veranstaltungen (Studierende)', 'In dieser Tour werden die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\" vorgestellt.', 'tour', 'autor,admin,root', 1, 'de', '5.0', '', '', 1405521073, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 'c89ce8e097f212e75686f73cc5008711', 'Participant administration', 'The administration options of the participant administration are explained in this tour.', 'tour', 'tutor,dozent,admin,root', 1, 'en', '5.0', '', '', 1405688156, 0); INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', 'd9913517f9c81d2c0fa8362592ce5d0e', 'Blubber', 'This tour explains how to use \"Blubber\"', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427784720, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', 'de1fbce508d01cbd257f9904ff8c3b43', 'Profile page', 'The basic functions and areas of the profile page are presented in this tour.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427722058, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', 'e41611616675b218845fe9f55bc11cf6', 'Upload own picture', 'This tour explains how users can upload their own profile picture.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427784057, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 'edfcf78c614869724f93488c4ed09582', 'Teilnehmerverwaltung', 'In dieser Tour werden die Verwaltungsoptionen der Teilnehmerverwaltung erklärt.', 'tour', 'tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1405688156, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('8e7a9f6b86255bc9034b71d8318419e6', 'd9a066071e2be43b2b51c37a9d692026', 'OER Campus', 'Einführung in den OER Campus', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', 'demo-installation', 'root@localhost', 1631614324, 1631614324); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('0316ff46356293ef49d8e7db09485be0', 'dac47ec2e8a848744bde4b3881d31553', 'Stud.IP 5', 'Einführung in Stud.IP 5', 'tour', 'autor', 1, 'de', '5.0', 'demo-installation', 'dozent@studip.de', 1631612143, 1631612143); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 'de1fbce508d01cbd257f9904ff8c3b43', 'Profile page', 'The basic functions and areas of the profile page are presented in this tour.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', 'root@localhost', 1406722657, 1631617118); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 'edfcf78c614869724f93488c4ed09582', 'Teilnehmerverwaltung', 'In dieser Tour werden die Verwaltungsoptionen der Teilnehmerverwaltung erklärt.', 'tour', 'tutor,dozent,admin,root', 1, 'de', '5.0', '', '', 1405688156, 0); INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 'ef5092ba722c81c37a5a6bd703890bd9', 'Blubber', 'In der Tour wird die Nutzung von Blubber erklärt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1405507317, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', 'f0aeb0f6c4da3bd61f48b445d9b30dc1', 'Design of the start page', 'The functions and design possibilities of the start page are presented in this feature tour.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427723894, 0); -INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', 'fa963d2ca827b28e0082e98aafc88765', 'My courses (students)', 'The most important functions of the site \"My courses\" are presented in this tour.', 'tour', 'autor', 1, 'en', '3.1', '', '', 1427723231, 0); - --- --- Dumping data for table `help_tour_settings` --- - -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('0b542c6c891af499763356f2c7218f7f', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('19ac063e8319310d059d28379139b1cf', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('25e7421f286fc5bdf9e41beadb484ffa', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('3629493a16bf2680de64361f07cab096', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('44f859c50648d3410c39207048ddd833', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('49604a77654617a745e29ad6b253e491', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('4d41c9760a3248313236af202275107a', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('4d41c9760a3248313236af202275107b', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('4d41c9760a3248313236af202275107c', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('588effa83da976a889a68c152bcabc90', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('5d41c9760a3248313236af202275107a', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('5d41c9760a3248313236af202275107b', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('5d41c9760a3248313236af202275107c', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('6849293baa05be5bef8ff438dc7c438b', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('89786eac42f52ac316790825b4f5c0b2', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('977f41c5c5239c4e86f04c3df27fae38', 0, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('b74f8459dce2437463096d56db7c73b9', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('c89ce8e097f212e75686f73cc5008711', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('e41611616675b218845fe9f55bc11cf6', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('edfcf78c614869724f93488c4ed09582', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 1, 'autostart_once'); -INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`) VALUES('fa963d2ca827b28e0082e98aafc88765', 1, 'autostart_once'); - --- --- Dumping data for table `help_tour_steps` --- - -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 1, 'My documents', 'This tour provides an overview of the personal document manager.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'dispatch.php/document/files', '', '', '', 1405592884, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 2, 'Available storage space', 'The storage space of the personal document area is limited. It is displayed how much storage space is still available.', 'BR', 0, 'DIV.caption-actions', 'dispatch.php/document/files', '', '', '', 1405594184, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 3, 'New documents and indices', 'New documents can be uploaded from the computer into the personal document area and new indices can be created here.', 'TL', 0, '#layout-sidebar SECTION DIV DIV UL LI A :eq(0)', 'dispatch.php/document/files', '', '', '', 1405593409, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 4, 'Document overview', 'All documents and indices are listed in a tabular form. In addition to the name even more information is displayed such as the document type or the document size.', 'TL', 0, '#layout_content FORM TABLE THEAD TR TH :eq(3)', 'dispatch.php/document/files', '', '', '', 1405593089, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 5, 'Actions', 'Already uploaded documents and folders can be edited, downloaded, shifted, copied and deleted here.', 'TR', 0, '#layout_content FORM TABLE THEAD TR TH :eq(7)', 'dispatch.php/document/files', '', '', '', 1405594079, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 6, 'Export', 'Here you have the possibility to download individual folders or the full document area as a ZIP document. All documents and indices are contained therein.', 'TL', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(1)', 'dispatch.php/document/files', '', '', '', 1405593708, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('0b542c6c891af499763356f2c7218f7f', 1, 'Willkommen in Stud.IP 4!', 'Unter der Haube ist alles neu, auch an der Oberfläche hat sich einiges getan.', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1514883131, 1514883295); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('0b542c6c891af499763356f2c7218f7f', 2, '', 'Die wichtigsten Neuigkeiten im Schnelldurchlauf:', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1514883334, 1514883383); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('0b542c6c891af499763356f2c7218f7f', 3, '', 'Die Startseite lässt sich anpassen. Sie können selbst bestimmen, was angezeigt werden soll. Per Drag & Drop können sie die Position der Elemente auf der Startseite verändern.', 'R', 0, '.sidebar-widget:eq(1) A:eq(0)', 'dispatch.php/start', '', '', 'root@localhost', 1514883313, 1516748869); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('0b542c6c891af499763356f2c7218f7f', 4, '', 'Alle persönlichen Funktionen sind in diesem Menü zusammengefasst. Der persönliche Dateibereich ist nun immer standardmäßig eingeschaltet.', 'B', 0, '#avatar-arrow', 'dispatch.php/start', '', '', 'root@localhost', 1514883360, 1516749166); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('0b542c6c891af499763356f2c7218f7f', 5, '', 'Alle Dateibereiche wurden in Stud.IP 4 komplett überarbeitet. Im persönlichen Dateibereich finden sich u.a. Nachrichtenanhänge. Sie können aber auch eigene Ordner erstellen und diese auf ihrer Profilseite anderen zugänglich machen. In Veranstaltungen gibt es weitere Typen von Dateiordnern, wie den Hausaufgabenordner.', 'B', 0, '', 'dispatch.php/files', '', '', 'root@localhost', 1514883588, 1514883588); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('0b542c6c891af499763356f2c7218f7f', 6, '', 'Falls von der Hochschule gestattet, können Sie hier Owncloud/Nextcloud oder Powerfolder für die Dateiverwaltung koppeln.', 'R', 0, '.sidebar-widget:eq(0) A:eq(0)', 'dispatch.php/files', '', '', 'root@localhost', 1514883641, 1516749255); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('0b542c6c891af499763356f2c7218f7f', 7, '', 'Weniger häufig benötigte Funktionen sind in Stud.IP 4 hinter dem Aktionsmenü mit den drei Punkten zu finden.', 'LT', 0, 'table.documents nav.action-menu', 'dispatch.php/files', '', '', 'root@localhost', 1514883706, 1516749543); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('0b542c6c891af499763356f2c7218f7f', 8, '', 'Ebenfalls neu ist die dezente Navigationszeile. Der gerade aktive Bereich wird durch eine Linie angezeigt.', 'B', 0, '#tabs', 'dispatch.php/files', '', '', 'root@localhost', 1514883773, 1514883781); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('0b542c6c891af499763356f2c7218f7f', 9, '', 'Das waren die allerwichtigsten Dinge im Ãœberblick. In Stud.IP 4 hat sich aber noch viel mehr getan. Jedes Detail wurde durchdacht und verbessert . Damit ist Stud.IP 4 das modernste Open-Source-LMS auf dem Markt.', 'B', 0, '', 'dispatch.php/files', '', '', 'root@localhost', 1514883871, 1514883871); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('0b542c6c891af499763356f2c7218f7f', 10, 'Das Stud.IP-Team wünscht viel Erfolg bei der Arbeit mit Stud.IP 4!', '', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1514883886, 1514883946); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 1, 'Meine Dateien', 'Meine Dateien ist der persönliche Dateibereich. Hier können Dateien auf Stud.IP gespeichert werden, um sie von dort auf andere Rechner herunterladen zu können.\r\n\r\nAndere Studierende oder Dozierende erhalten keinen Zugriff auf Dateien, die in den persönlichen Dateibereich hochgeladen werden.\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'dispatch.php/document/files', '', '', '', 1405592884, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 2, 'Verfügbarer Speicherplatz', 'Der Speicherplatz des persönlichen Dateibereichs ist begrenzt. Es wird angezeigt, wie viel Speicherplatz noch verfügbar ist.', 'BR', 0, 'DIV.caption-actions', 'dispatch.php/document/files', '', '', '', 1405594184, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 3, 'Neue Dateien und Verzeichnisse', 'Hier können neue Dateien von dem Computer in den persönlichen Dateibereich hochgeladen und neue Verzeichnisse erstellt werden.', 'TL', 0, '#layout-sidebar SECTION DIV DIV UL LI A :eq(0)', 'dispatch.php/document/files', '', '', '', 1405593409, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 4, 'Dateiübersicht', 'Alle Dateien und Verzeichnisse werden tabellarisch aufgelistet. Neben dem Namen werden noch weitere Informationen wie der Dateityp oder die Dateigröße angezeigt.', 'TL', 0, '#layout_content FORM TABLE THEAD TR TH :eq(3)', 'dispatch.php/document/files', '', '', '', 1405593089, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 5, 'Aktionen', 'Bereits hochgeladene Dateien und Ordner können hier bearbeitet, heruntergeladen, verschoben, kopiert und gelöscht werden.', 'TR', 0, '#layout_content FORM TABLE THEAD TR TH :eq(7)', 'dispatch.php/document/files', '', '', '', 1405594079, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 6, 'Export', 'Hier besteht die Möglichkeit einzelne Ordner oder den vollständigen Dateibereich als ZIP-Datei herunterzuladen. Darin sind alle Dateien und Verzeichnisse enthalten.', 'TL', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(1)', 'dispatch.php/document/files', '', '', '', 1405593708, 0); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 'f0aeb0f6c4da3bd61f48b445d9b30dc1', 'Design of the start page', 'The functions and design possibilities of the start page are presented in this feature tour.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', 'root@localhost', 1405934780, 1631613451); +INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 'fa963d2ca827b28e0082e98aafc88765', 'My courses (students)', 'The most important functions of the site \"My courses\" are presented in this tour.', 'tour', 'autor,admin,root', 1, 'en', '5.0', '', '', 1405521073, 0); + +-- +-- Daten für Tabelle `help_tour_settings` +-- + +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 1, 'autostart_once', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 1, 'autostart_once', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 1, 'standard', NULL, 1631619331); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 1, 'standard', NULL, 1631619331); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 1, 'standard', NULL, 1631613451); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 1, 'autostart_once', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 1, 'standard', NULL, 1631619212); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 1, 'standard', NULL, 1631619264); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 1, 'autostart_once', 1631612143, 1631612143); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 1, 'autostart_once', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107a', 1, 'autostart_once', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 1, 'standard', NULL, 1631619212); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 1, 'standard', NULL, 1631619264); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 1, 'autostart_once', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 1, 'autostart_once', 1631612143, 1631612143); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 1, 'autostart_once', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 1, 'autostart_once', 1631612143, 1631612143); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 1, 'autostart_once', 1631612143, 1631612143); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 1, 'standard', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 1, 'autostart_once', NULL, NULL); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 1, 'standard', NULL, 1631613451); +INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 1, 'standard', NULL, NULL); + +-- +-- Daten für Tabelle `help_tour_steps` +-- + +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 1, 'My documents', 'This tour provides an overview of the personal document manager.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'B', 0, '', 'dispatch.php/files', '', '', 'root@localhost', 1405592884, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 2, 'New documents and indices', 'New documents can be uploaded from the computer into the personal document area and new indices can be created here.', 'TL', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/files', '', '', '', 1405593409, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 3, 'Document overview', 'All documents and indices are listed in a tabular form. In addition to the name even more information is displayed such as the document type or the document size.', 'TL', 0, '#files_table_form TABLE:eq(0) CAPTION:eq(0) DIV:eq(0)', 'dispatch.php/files', '', '', '', 1405593089, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 4, '', 'Already uploaded documents and folders can be edited, downloaded, shifted, copied and deleted here.', 'TL', 0, 'table.documents tfoot .footer-items', 'dispatch.php/files', '', '', '', 1405594079, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 5, 'Export', 'Here you have the possibility to download individual folders or the full document area as a ZIP document. All documents and indices are contained therein.', 'LT', 0, 'table.documents .action-menu-icon', 'dispatch.php/files', '', '', 'dozent@studip.de', 1405593708, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 1, 'Dateien', 'Dies ist der persönliche Dateibereich. Hier können Dateien in Stud.IP gespeichert werden, um sie von dort auf andere Rechner herunterladen zu können.\n\nAndere Studierende oder Dozierende erhalten keinen Zugriff auf Dateien, die in den persönlichen Dateibereich hochgeladen werden.\n\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'B', 0, '', 'dispatch.php/files', '', '', 'root@localhost', 1405592884, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 2, 'Neue Dateien und Verzeichnisse', 'Hier können neue Dateien von dem Computer in den persönlichen Dateibereich hochgeladen und neue Verzeichnisse erstellt werden.', 'TL', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/files', '', '', '', 1405593409, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 3, 'Dateiübersicht', 'Alle Dateien und Verzeichnisse werden tabellarisch aufgelistet. Neben dem Namen werden noch weitere Informationen wie der Dateityp oder die Dateigröße angezeigt.', 'TL', 0, '#files_table_form TABLE:eq(0) CAPTION:eq(0) DIV:eq(0)', 'dispatch.php/files', '', '', '', 1405593089, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 4, '', 'Bereits hochgeladene Dateien und Ordner können hier bearbeitet, heruntergeladen, verschoben, kopiert und gelöscht werden.', 'TL', 0, 'table.documents tfoot .footer-items', 'dispatch.php/files', '', '', '', 1405594079, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 5, 'Export', 'Hier besteht die Möglichkeit einzelne Ordner oder den vollständigen Dateibereich als ZIP-Datei herunterzuladen. Darin sind alle Dateien und Verzeichnisse enthalten.', 'LT', 0, 'table.documents .action-menu-icon', 'dispatch.php/files', '', '', 'dozent@studip.de', 1405593708, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 1, 'Studiengruppe anlegen', 'Studiengruppen ermöglichen die Zusammenarbeit mit KommilitonInnen oder KolegInnen. Diese Tour gibt Ihnen einen Ãœberblick darüber wie Sie Studiengruppen anlegen können.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'R', 0, '', 'dispatch.php/my_studygroups', '', '', '', 1405684423, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 2, 'Studiengruppe anlegen', 'Mit Klick auf \"Neue Studiengruppe anlegen\" kann eine neue Studiengruppe angelegt werden.', 'R', 0, 'A#nav_browse_new', 'dispatch.php/my_studygroups', '', '', '', 1406017730, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 3, 'Studiengruppe benennen', 'Der Name einer Studiengruppe sollte aussagekräftig sein und einmalig im gesamten Stud.IP.', 'R', 0, 'INPUT#groupname', 'dispatch.php/course/studygroup/new', '', '', '', 1405684720, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 4, 'Beschreibung hinzufügen', 'Die Beschreibung ermöglicht es weitere Informationen anzuzeigen und somit das Auffinden der Gruppe zu erleichtern.', 'R', 0, 'TEXTAREA#groupdescription', 'dispatch.php/course/studygroup/new', '', '', '', 1405684806, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 5, 'Inhaltselemente zuordnen', 'Hier können Inhaltselemente aktiviert werden, welche innerhalb der Studiengruppe zur Verfügung stehen sollen. Das Fragezeichen gibt nähere Informationen zur Bedeutung der einzelnen Inhaltselemente.', 'L', 0, '#layout_content FORM TABLE TBODY TR TD :eq(5)', 'dispatch.php/course/studygroup/new', '', '', '', 1405685093, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 6, 'Zugang festlegen', 'Mit diesem Drop-down-Menü kann der Zugang zur Studiengruppe eingeschränkt werden.\r\n\r\nBeim Zugang \"offen für alle\" können sich alle Studierenden frei eintragen und an der Gruppe beteiligen.\r\n\r\nBeim Zugang \"Auf Anfrage\" müssen Teilnehmer durch den Gruppengründer hinzugefügt werden.', 'R', 0, 'SELECT#groupaccess', 'dispatch.php/course/studygroup/new', '', '', '', 1405685334, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 7, 'Nutzungsbedingungen akzeptieren', 'Bei der Erstellung einer Studiengruppe müssen die Nutzungsbedingungen akzeptiert werden.', 'R', 0, 'P LABEL', 'dispatch.php/course/studygroup/new', '', '', '', 1405685652, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 8, 'Studiengruppe speichern', 'Nach dem Speichern einer Studiengruppe erscheint diese unter \"Veranstaltungen > Meine Studiengruppen\".', 'L', 0, '#layout_content FORM TABLE TBODY TR TD :eq(14)', 'dispatch.php/course/studygroup/new', '', '', '', 1405686068, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 1, 'Help tour \"My event\"', 'This tour provides an overview of the functionality of \"My courses\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1406125847, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 2, 'Overview of events', 'The courses of the current and past semester are displayed here. New courses initially appear in red.', 'TL', 0, '#my_seminars TABLE THEAD TR TH :eq(2)', 'dispatch.php/my_courses', '', '', '', 1406125908, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 3, 'Event details', 'With a click on the \"i\" a window appears with the most important facts of the courses.', 'T', 0, '#my_seminars TABLE THEAD TR TH :eq(3)', 'dispatch.php/my_courses', '', '', '', 1406125992, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 4, 'Course contents', 'All contents (such as e.g. a forum) are displayed by corresponding symbols here.\n\nIf there were any news since the last login these will appear in red.', 'LT', 0, '#my_seminars TABLE THEAD TR TH :eq(4)', 'dispatch.php/my_courses', '', '', '', 1406126049, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 5, 'Editing or deletion of an event', 'A click on the cog wheel enables you to edit a course.\n\nIf you have participant status in a course, you can sign out by clicking on the door icon.', 'TR', 0, '#my_seminars TABLE THEAD TR TH :eq(5)', 'dispatch.php/my_courses', '', '', '', 1406126134, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 6, 'Adjustment to the event view', 'In order to adjust the course overview you can order your courses according to certain criteria (such as e.g. fields of study, lecturers, or colours).', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(2)', 'dispatch.php/my_courses', '', '', '', 1406126281, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 7, 'Access to an event of past and future semesters', 'For example, by clicking on the drop-down menu, courses from past semesters can be displayed.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(3)', 'dispatch.php/my_courses', '', '', '', 1406126316, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 8, 'Further possible actions', 'Here you can mark all news as read, change colour groups as you please, and also adjust the notifications about activities in the individual courses.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(1)', 'dispatch.php/my_courses', '', '', '', 1406126374, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 2, 'Studiengruppe anlegen', 'Mit Klick auf \"Neue Studiengruppe anlegen\" kann eine neue Studiengruppe angelegt werden.', 'BL', 0, '.sidebar-widget:eq(1) A:eq(0)', 'dispatch.php/my_studygroups', '', '.sidebar-widget:eq(1) li:eq(0) a:eq(0)', 'dozent@studip.de', 1406017730, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 3, 'Studiengruppe benennen', 'Der Name einer Studiengruppe sollte aussagekräftig sein und einmalig im gesamten Stud.IP.', 'R', 0, '#wizard-name', 'dispatch.php/my_studygroups', '', '', '', 1405684720, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 4, 'Beschreibung hinzufügen', 'Die Beschreibung ermöglicht es weitere Informationen anzuzeigen und somit das Auffinden der Gruppe zu erleichtern.', 'L', 0, '#wizard-description', 'dispatch.php/my_studygroups', '', '', 'dozent@studip.de', 1405684806, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 5, 'Inhaltselemente zuordnen', 'Hier können Inhaltselemente aktiviert werden, welche innerhalb der Studiengruppe zur Verfügung stehen sollen. Das Fragezeichen gibt nähere Informationen zur Bedeutung der einzelnen Inhaltselemente.', 'R', 0, '#wizard-access', 'dispatch.php/my_studygroups', '', '', 'dozent@studip.de', 1405685093, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 6, 'Zugang festlegen', 'Mit diesem Drop-down-Menü kann der Zugang zur Studiengruppe eingeschränkt werden.\r\n\r\nBeim Zugang \"offen für alle\" können sich alle Studierenden frei eintragen und an der Gruppe beteiligen.\r\n\r\nBeim Zugang \"Auf Anfrage\" müssen Teilnehmer durch den Gruppengründer hinzugefügt werden.', 'R', 0, '#wizard-access', 'dispatch.php/my_studygroups', '', '', 'root@localhost', 1405685334, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 7, 'Nutzungsbedingungen akzeptieren', 'Bei der Erstellung einer Studiengruppe müssen die Nutzungsbedingungen akzeptiert werden.', 'R', 0, '#ui-id-1 FORM:eq(0) FIELDSET:eq(0) LABEL:eq(4)', 'dispatch.php/my_studygroups', '', '', 'root@localhost', 1405685652, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 8, 'Studiengruppe speichern', 'Nach dem Speichern einer Studiengruppe erscheint diese unter \"Veranstaltungen > Meine Studiengruppen\".', 'L', 0, '#layout_content FORM TABLE TBODY TR TD :eq(14)', 'dispatch.php/my_studygroups', '', 'BUTTON.cancel:eq(0)', 'root@localhost', 1405686068, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 1, 'My courses', 'This tour provides an overview of the functionality of \"My courses\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1406125847, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 2, 'Overview of courses', 'The courses of the current and past semester are displayed here. New courses initially appear in red.', 'BL', 0, '#my_seminars TABLE:eq(0) CAPTION:eq(0)', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406125908, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 3, 'Course details', 'With a click on the \"i\" a window appears with the most important facts of the courses.', 'BR', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '#my_seminars TABLE:eq(0) TBODY:eq(0) TR:eq(1) TD:eq(5) NAV:eq(0)', 'dozent@studip.de', 1406125992, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 4, 'Course contents', 'All contents (such as e.g. a forum) are displayed by corresponding symbols here.\n\nIf there were any news since the last login these will appear in red.', 'B', 0, '#my_seminars .my-courses-navigation-item', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406126049, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 5, 'Editing or deletion of a course', 'A click on the cog wheel enables you to edit a course.\n\nIf you have participant status in a course, you can sign out by clicking on the door icon.', 'BR', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406126134, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 6, 'Adjustment to the event view', 'In order to adjust the course overview you can order your courses according to certain criteria (such as e.g. fields of study, lecturers, or colours).', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(11) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1406126281, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 7, 'Access to an event of past and future semesters', 'For example, by clicking on the drop-down menu, courses from past semesters can be displayed.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(1)', 'dispatch.php/my_courses', '', '', '', 1406126316, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 8, 'Further possible actions', 'Here you can mark all news as read, change colour groups as you please, and also adjust the notifications about activities in the individual courses.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1406126374, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 9, 'Study groups and facilities', 'There is moreover the possibility to access personal study groups or facilities.', 'R', 0, '#nav_browse_my_institutes A', 'dispatch.php/my_courses', '', '', '', 1406126415, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 1, 'Forum', 'Diese Tour gibt einen Ãœberblick über die Elemente und Interaktionsmöglichkeiten des Forums.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'BL', 0, '', 'plugins.php/coreforum', '', '', '', 1405415772, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 2, 'Sie befinden sich hier:...', 'An dieser Stelle wird angezeigt, welcher Bereich des Forums gerade betrachtet wird.', 'BL', 0, 'DIV#tutorBreadcrumb', 'plugins.php/coreforum', '', '', '', 1405415875, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 3, 'Kategorie', 'Das Forum ist unterteilt in Kategorien, Themen und Beiträge. Eine Kategorie fasst Forumsbereiche in größere Sinneinheiten zusammen.', 'BL', 0, '#layout_content #forum #sortable_areas TABLE CAPTION .category_name :eq(0)', 'plugins.php/coreforum', '', '', '', 1405416611, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 4, 'Bereich', 'Das ist ein Bereich innerhalb einer Kategorie. Bereiche beinhalten die Diskussionstränge. Bereiche können mit per drag & drop in ihrer Reihenfolge verschoben werden.', 'BL', 0, '#layout_content #forum TABLE THEAD TR TH :eq(0)', 'plugins.php/coreforum', '', '', '', 1405416664, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 5, 'Info-Icon', 'Dieses Icon färbt sich rot, sobald es etwas neues in diesem Bereich gibt.', 'B', 0, 'IMG#tutorNotificationIcon', 'plugins.php/coreforum', '', '', '', 1405416705, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 6, 'Suchen', 'Hier können sämtliche Inhalte dieses Forums durchsucht werden.\r\nUnterstützt werden auch Mehrwortsuchen. Außerdem kann die Suche auf eine beliebige Kombination aus Titel, Inhalt und Autor eingeschränkt werden.', 'BL', 0, '#layout-sidebar SECTION #tutorSearchInfobox DIV #tutorSearchInfobox UL LI INPUT :eq(1)', 'plugins.php/coreforum', '', '', '', 1405417134, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 7, 'Forum abonnieren', 'Das gesamte Forum, oder einzelne Themen können abonniert werden. Dann wird bei jedem neuen Beitrag in diesem Forum eine Benachrichtigung angezeigt und eine Nachricht versendet.', 'B', 0, '#layout-sidebar SECTION DIV DIV UL LI A :eq(5)', 'plugins.php/coreforum', '', '', '', 1405416795, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('25e7421f286fc5bdf9e41beadb484ffa', 1, 'Profil', 'Diese Tour gibt Ihnen einen Ãœberblick über die wichtigsten Funktionen des \"Profils\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'B', 0, '', 'dispatch.php/profile', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('25e7421f286fc5bdf9e41beadb484ffa', 2, 'Bild hochladen', 'Auf dieser Seite lässt sich ein Profilbild hochladen.', 'BL', 0, '#nav_profile_avatar A SPAN', 'dispatch.php/settings/avatar', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('25e7421f286fc5bdf9e41beadb484ffa', 3, 'Bild auswählen', 'Dafür kann eine beliebige Bilddatei hochgeladen werden.', 'L', 0, 'input[name=imgfile]', 'dispatch.php/settings/avatar', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('25e7421f286fc5bdf9e41beadb484ffa', 4, 'Voraussetzungen', 'Eine Bilddatei muss im **.jpg**, **.png** oder **.gif** Format vorliegen.\r\nDie Dateigröße darf 700 KB nicht überschreiten.', 'L', 0, '#layout_content #edit_avatar TBODY TR TD FORM B :eq(2)', 'dispatch.php/settings/avatar', '', '', '', 1406722657, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 3, 'Kategorie', 'Das Forum ist unterteilt in Kategorien, Themen und Beiträge. Eine Kategorie fasst Forumsbereiche in größere Sinneinheiten zusammen.', 'BL', 0, '#tutorCategory', 'plugins.php/coreforum', '', '', '', 1405416611, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 4, 'Bereich', 'Das ist ein Bereich innerhalb einer Kategorie. Bereiche beinhalten die Diskussionstränge. Bereiche können mit per drag & drop in ihrer Reihenfolge verschoben werden.', 'BL', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(1) DIV:eq(0) SPAN:eq(0) A:eq(0) SPAN:eq(0)', 'plugins.php/coreforum', '', '', '', 1405416664, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 5, 'Info-Icon', 'Dieses Icon färbt sich rot, sobald es etwas neues in diesem Bereich gibt.', 'B', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) A:eq(0) IMG:eq(0)', 'plugins.php/coreforum', '', '', '', 1405416705, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 6, 'Suchen', 'Hier können sämtliche Inhalte dieses Forums durchsucht werden.\r\nUnterstützt werden auch Mehrwortsuchen. Außerdem kann die Suche auf eine beliebige Kombination aus Titel, Inhalt und Autor eingeschränkt werden.', 'BL', 0, '#tutorSearchInfobox DIV:eq(0)', 'plugins.php/coreforum', '', '', '', 1405417134, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 7, 'Forum abonnieren', 'Das gesamte Forum, oder einzelne Themen können abonniert werden. Dann wird bei jedem neuen Beitrag in diesem Forum eine Benachrichtigung angezeigt und eine Nachricht versendet.', 'RT', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(9) DIV:eq(0)', 'plugins.php/coreforum', '', '', 'dozent@studip.de', 1405416795, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 1, 'Was ist Blubbern?', 'Diese Tour gibt Ihnen einen Ãœberblick über die wichtigsten Funktionen von \"Blubber\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'plugins.php/blubber/streams/forum', '', '', '', 1405507364, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 2, 'Beitrag erstellen', 'Hier kann eine Diskussion durch Schreiben von Text begonnen werden. Absätze lassen sich durch Drücken von Umschalt+Eingabe erzeugen. Der Text wird durch Drücken von Eingabe abgeschickt.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405507478, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 3, 'Text gestalten', 'Der Text kann formatiert und mit Smileys versehen werden.\r\nEs können die üblichen Formatierungen verwendet werden, wie z. B. **fett** oder %%kursiv%%.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405508371, 0); @@ -774,23 +808,23 @@ INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 8, 'Beitrag ändern', 'Wird der Mauszeiger auf einem beliebigen Beitrag positioniert, erscheint dessen Datum. Bei eigenen Beiträgen erscheint außerdem rechts neben dem Datum ein Icon, mit dem der Beitrag nachträglich geändert werden kann.', 'BR', 0, 'DIV DIV A SPAN.time', 'plugins.php/blubber/streams/profile', '', '', '', 1405507901, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 9, 'Beitrag verlinken', 'Wird der Mauszeiger auf dem ersten Diskussionsbeitrag positioniert, erscheint links neben dem Datum ein Link-Icon. Wenn dieses mit der rechten Maustaste angeklickt wird, kann der Link auf diesen Beitrag kopiert werden, um ihn an anderer Stelle einfügen zu können.', 'BR', 0, 'DIV DIV A.permalink', 'plugins.php/blubber/streams/profile', '', '', '', 1405508281, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 1, 'Administering the forum', 'This tour provides an overview of the forum\'s administration.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'plugins.php/coreforum', '', '', '', 1405418008, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 2, 'Edit category', 'The name of the category can be changed or, however, the whole category deleted with these icons. The sectors will in this case be shifted into the category \"General\" and are thus retained.\n\nThe category \"General\" cannot be deleted and is therefore included in each forum.', 'BR', 0, '#forum #sortable_areas TABLE CAPTION #tutorCategoryIcons', 'plugins.php/coreforum', '', '', '', 1405424216, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 3, 'Edit area', 'Action icons will appear, if the cursor is positioned on an area\n\nYou can use the icons to change the name and description of an area, or to delete the whole area.\nThe deletion of an area causes all contained topics to be deleted.', 'B', 0, 'IMG.edit-area', 'plugins.php/coreforum', '', '', '', 1405424346, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 4, 'Sort area', 'With this hatched surface areas can be sorted in at any place by clicking and dragging. This can, on one hand, be used in order to sort areas within a category, and on the other hand, areas can be shifted into other categories.', 'BR', 0, 'HTML #plugins #layout_wrapper #layout_page #layout_container #layout_content #forum #sortable_areas TABLE TBODY #tutorArea TD IMG#tutorMoveArea.handle.js :eq(1)', 'plugins.php/coreforum', '', '', '', 1405424379, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 2, 'Edit category', 'The name of the category can be changed or, however, the whole category deleted with these icons. The sectors will in this case be shifted into the category \"General\" and are thus retained.\n\nThe category \"General\" cannot be deleted and is therefore included in each forum.', 'L', 0, '#forum #sortable_areas TABLE CAPTION #tutorCategoryIcons', 'plugins.php/coreforum', '', '', 'dozent@studip.de', 1405424216, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 3, 'Edit area', 'Action icons will appear, if the cursor is positioned on an area\n\nYou can use the icons to change the name and description of an area, or to delete the whole area.\nThe deletion of an area causes all contained topics to be deleted.', 'L', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(4)', 'plugins.php/coreforum', '', '', 'dozent@studip.de', 1405424346, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 4, 'Sort area', 'With this hatched surface areas can be sorted in at any place by clicking and dragging. This can, on one hand, be used in order to sort areas within a category, and on the other hand, areas can be shifted into other categories.', 'R', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) IMG:eq(0)', 'plugins.php/coreforum', '', '', 'dozent@studip.de', 1405424379, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 5, 'Add new area', 'New areas can be added to a category here.', 'BR', 0, 'TFOOT TR TD A SPAN', 'plugins.php/coreforum', '', '', '', 1405424421, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 6, 'Create new category', 'A new category in the forum can be created here. Enter the title of the new category for this purpose.', 'TL', 0, '#tutorAddCategory H2', 'plugins.php/coreforum', '', '', '', 1405424458, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 6, 'Create new category', 'A new category in the forum can be created here. Enter the title of the new category for this purpose.', 'TL', 0, '#tutorAddCategory FIELDSET:eq(0) LEGEND:eq(0)', 'plugins.php/coreforum', '', '', '', 1405424458, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 1, 'Forum verwalten', 'Sie haben die Möglichkeit sich eine Tour zur Verwaltung des Forums anzuschauen.\r\n\r\nUm die Tour zu beginnen, klicken Sie bitte unten rechts auf \"Weiter\".', 'TL', 0, '', 'plugins.php/coreforum', '', '', '', 1405418008, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 2, 'Kategorie bearbeiten', 'Mit diesen Icons kann der Name der Kategorie geändert oder aber die gesamte Kategorie gelöscht werden. Die Bereiche werden in diesem Fall in die Kategorie \"Allgemein\" verschoben und bleiben somit erhalten.\r\n\r\nDie Kategorie \"Allgemein\" kann nicht gelöscht werden und ist daher in jedem Forum enthalten.', 'BR', 0, '#forum #sortable_areas TABLE CAPTION #tutorCategoryIcons', 'plugins.php/coreforum', '', '', '', 1405424216, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 3, 'Bereich bearbeiten', 'Wird der Mauszeiger auf einem Bereich positioniert, erscheinen Aktions-Icons.\r\nMit diesen Icons kann der Name und die Beschreibung eines Bereiches geändert oder auch der gesamte Bereich gelöscht werden.\r\nDas Löschen eines Bereichs, führt dazu, dass alle enthaltenen Themen gelöscht werden.', 'B', 0, 'IMG.edit-area', 'plugins.php/coreforum', '', '', '', 1405424346, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 4, 'Bereiche sortieren', 'Mit dieser schraffierten Fläche können Bereiche an einer beliebigen Stelle durch Klicken-und-Ziehen einsortiert werden. Dies kann einerseits dazu verwendet werden, um Bereiche innerhalb einer Kategorie zu sortieren, andererseits können Bereiche in andere Kategorien verschoben werden.', 'BR', 0, 'HTML #plugins #layout_wrapper #layout_page #layout_container #layout_content #forum #sortable_areas TABLE TBODY #tutorArea TD IMG#tutorMoveArea.handle.js :eq(1)', 'plugins.php/coreforum', '', '', '', 1405424379, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 2, 'Kategorie bearbeiten', 'Mit diesen Icons kann der Name der Kategorie geändert oder aber die gesamte Kategorie gelöscht werden. Die Bereiche werden in diesem Fall in die Kategorie \"Allgemein\" verschoben und bleiben somit erhalten.\r\n\r\nDie Kategorie \"Allgemein\" kann nicht gelöscht werden und ist daher in jedem Forum enthalten.', 'L', 0, '#forum #sortable_areas TABLE CAPTION #tutorCategoryIcons', 'plugins.php/coreforum', '', '', 'dozent@studip.de', 1405424216, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 3, 'Bereich bearbeiten', 'Wird der Mauszeiger auf einem Bereich positioniert, erscheinen Aktions-Icons.\r\nMit diesen Icons kann der Name und die Beschreibung eines Bereiches geändert oder auch der gesamte Bereich gelöscht werden.\r\nDas Löschen eines Bereichs, führt dazu, dass alle enthaltenen Themen gelöscht werden.', 'L', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(4)', 'plugins.php/coreforum', '', '', 'dozent@studip.de', 1405424346, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 4, 'Bereiche sortieren', 'Mit dieser schraffierten Fläche können Bereiche an einer beliebigen Stelle durch Klicken-und-Ziehen einsortiert werden. Dies kann einerseits dazu verwendet werden, um Bereiche innerhalb einer Kategorie zu sortieren, andererseits können Bereiche in andere Kategorien verschoben werden.', 'R', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) IMG:eq(0)', 'plugins.php/coreforum', '', '', 'dozent@studip.de', 1405424379, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 5, 'Neuen Bereich hinzufügen', 'Hier können neue Bereiche zu einer Kategorie hinzugefügt werden.', 'BR', 0, 'TFOOT TR TD A SPAN', 'plugins.php/coreforum', '', '', '', 1405424421, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 6, 'Neue Kategorie erstellen', 'Hier kann eine neue Kategorie im Forum erstellt werden. Geben Sie hierfür den Titel der neuen Kategorie ein.', 'TL', 0, '#tutorAddCategory H2', 'plugins.php/coreforum', '', '', '', 1405424458, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 1, 'Funktionen und Gestaltungs-möglichkeiten der Startseite', '\r\nDiese Tour gibt Ihnen einen Ãœberblick über die wichtigsten Funktionen der \"Startseite\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'dispatch.php/start', '', '', '', 1405934926, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 6, 'Neue Kategorie erstellen', 'Hier kann eine neue Kategorie im Forum erstellt werden. Geben Sie hierfür den Titel der neuen Kategorie ein.', 'TL', 0, '#tutorAddCategory FIELDSET:eq(0) LEGEND:eq(0)', 'plugins.php/coreforum', '', '', '', 1405424458, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 1, 'Funktionen und Gestaltungsmöglichkeiten der Startseite', 'Diese Tour gibt Ihnen einen Ãœberblick über die wichtigsten Funktionen der \"Startseite\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1405934926, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 2, 'Individuelle Gestaltung der Startseite', 'Die Startseite ist standardmäßig so konfiguriert, dass die Elemente \"Schnellzugriff\", \"Ankündigungen\", \"Meine aktuellen Termine\" und \"Umfragen\" angezeigt werden. Die Elemente werden Widgets genannt und können entfernt, hinzugefügt und verschoben werde.n Jedes Widget kann individuell hinzugefügt, entfernt und verschoben werden.', 'TL', 0, '', 'dispatch.php/start', '', '', '', 1405934970, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 3, 'Widget hinzufügen', 'Hier können Widgets hinzugefügt werden. Zusätzlich zu den Standard-Widgets kann beispielsweise der persönliche Stundenplan auf der Startseite anzeigt werden. Neu hinzugefügte Widgets erscheinen ganz unten auf der Startseite. Darüber hinaus kann in der Sidebar direkt zu jedem Widget gesprungen werden.', 'R', 0, '#layout-sidebar SECTION DIV DIV UL LI :eq(4)', 'dispatch.php/start', '', '', '', 1405935192, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 4, 'Sprungmarken', 'Darüber hinaus kann mit Sprungmarken direkt zu jedem Widget gesprungen werden.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(0)', 'dispatch.php/start', '', '', '', 1406623464, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 3, 'Widget hinzufügen', 'Hier können Widgets hinzugefügt werden. Zusätzlich zu den Standard-Widgets kann beispielsweise der persönliche Stundenplan auf der Startseite anzeigt werden. Neu hinzugefügte Widgets erscheinen ganz unten auf der Startseite. Darüber hinaus kann in der Sidebar direkt zu jedem Widget gesprungen werden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0)', 'dispatch.php/start', '', '', '', 1405935192, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 4, 'Sprungmarken', 'Darüber hinaus kann mit Sprungmarken direkt zu jedem Widget gesprungen werden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(2) DIV:eq(0)', 'dispatch.php/start', '', '', '', 1406623464, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 5, 'Widget positionieren', 'Ein Widget kann per Drag&Drop an die gewünschte Position verschoben werden: Dazu wird in die Titelzeile eines Widgets geklickt, die Maustaste gedrückt gehalten und das Widget an die gewünschte Position gezogen.', 'B', 0, '.widget-header', 'dispatch.php/start', '', '', '', 1405935687, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 6, 'Widget bearbeiten', 'Bei einigen Widgets wird neben dem X zum Schließen noch ein weiteres Symbol angezeigt. Der Schnellzugriff bspw. kann durch Klick auf diesen Button individuell angepasst, die Ankündigungen können abonniert und bei den aktuellen Terminen bzw. Stundenplan können Termine hinzugefügt werden.', 'L', 0, '#layout_content DIV UL DIV SPAN A IMG :eq(0)', 'dispatch.php/start', '', '', '', 1405935792, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 6, 'Widget bearbeiten', 'Bei einigen Widgets wird neben dem X zum Schließen noch ein weiteres Symbol angezeigt. Der Schnellzugriff bspw. kann durch Klick auf diesen Button individuell angepasst, die Ankündigungen können abonniert und bei den aktuellen Terminen bzw. Stundenplan können Termine hinzugefügt werden.', 'L', 0, '#widget-8', 'dispatch.php/start', '', '', '', 1405935792, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 7, 'Widget entfernen', 'Jedes Widget kann durch Klicken auf das X in der rechten oberen Ecke entfernt werden. Bei Bedarf kann es jederzeit wieder hinzugefügt werden.', 'R', 0, '.widget-header', 'dispatch.php/start', '', '', '', 1405935376, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 1, 'Allgemeines zum Wiki', 'Diese Tour gibt einen allgemeinen Ãœberblick über das Wiki.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'T', 0, '', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 2, 'Kooperative Textarbeit', 'Das Wiki ist ein Tool für kooperative Textarbeit. Alle Teilnehmenden einer Veranstaltung haben das Recht, Texte zu erstellen, zu ändern und zu löschen.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0); @@ -799,23 +833,29 @@ INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 5, 'Neue Version einer Wiki-Seite', 'Wird eine Wiki-Seite bearbeitet, so erfolgt die Ãœbernahme der Textänderungen sofort beim Speichern. Eine neue Version der Seite wird dreißig Minuten nach der Speicherung erstellt.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 6, 'Kein synchrones Schreiben', 'Das Wiki ist nicht zum synchronen Schreiben geeignet. Es kann immer nur eine Person an einer Seite gleichzeitig arbeiten. Sobald eine zweite Person die Seite im Editor öffnet, erscheint eine Warnmeldung.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 1, 'Schreiben im Wiki', 'Diese Tour gibt einen Ãœberblick über die Erstellung und Bearbeitung von Wiki-Seiten.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'T', 0, '', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 2, 'WikiWikiWeb', 'Zeigt die Basis-Seite des Wikis an. Sie bildet die strukturelle Grundlage des gesamten Wikis.', 'R', 0, '#nav_wiki_show', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 2, 'Wiki-Startseite', 'Zeigt die Basis-Seite des Wikis an. Sie bildet die strukturelle Grundlage des gesamten Wikis.', 'R', 0, '#nav_wiki_start', 'wiki.php', '', '', 'dozent@studip.de', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 3, 'Neue Seiten', 'Zeigt eine tabellarische Ãœbersicht neu erstellter und neu bearbeiteter Wiki-Seiten an.', 'R', 0, '#nav_wiki_listnew', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 4, 'Alle Seiten', 'Zeigt eine tabellarische Ãœbersicht aller Wiki-Seiten an.', 'R', 0, '#nav_wiki_listall', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 5, 'Wiki-Seite bearbeiten', 'Durch einen Klick auf die Schaltfläche \"Bearbeiten\" öffnet sich ein Editor, über den eine Wiki-Seite mit Inhalt gefüllt werden kann.\r\n\r\nDie Eingabe eines Namens in doppelten eckigen Klammern erzeugt eine neue Wiki-Seite und vernetzt sie mit der angezeigten Seite.', 'B', 0, '#main_content TABLE:eq(1) TBODY:eq(0) TR:eq(0) TD:eq(0) DIV:eq(0) A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 6, 'Inhalt einer Wiki-Seite löschen', 'Der Inhalt einer Wiki-Seite lässt sich mit Hilfe eines Klicks auf die Schaltfläche \"Löschen\" entfernen. Die Wiki-Seite bleibt dabei erhalten.', 'B', 0, '#main_content TABLE:eq(1) TBODY:eq(0) TR:eq(0) TD:eq(0) DIV:eq(0) A:eq(1)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 7, 'QuickLinks', 'Dieser Bildschirmbereich zeigt eine Liste von QuickLinks (Verweisen) auf Wiki-Seiten. Ein Klick auf einen QuickLink öffnet die korrelierende Wiki-Seite. Deren Inhalt lässt sich mit Hilfe der Schaltflächen \"Bearbeiten\" und \"Löschen\" gestalten.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 8, 'QuickLinks bearbeiten', 'Ein Klick auf dieses Icon öffnet einen Editor, der zur Bearbeitung der QuickLinks dient.\r\n\r\nNeue QuickLinks lassen sich mit doppelten eckigen Klammern erstellen: [[Name]]. Das Löschen eines QuickLinks entfernt die korrelierende Seite aus der Liste.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0) DIV:eq(0) A:eq(0) IMG:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 7, 'QuickLinks', 'Dieser Bildschirmbereich zeigt eine Liste von QuickLinks (Verweisen) auf Wiki-Seiten. Ein Klick auf einen QuickLink öffnet die korrelierende Wiki-Seite. Deren Inhalt lässt sich mit Hilfe der Schaltflächen \"Bearbeiten\" und \"Löschen\" gestalten.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 8, 'QuickLinks bearbeiten', 'Ãœber das Icon zum Bearbeiten von QuickLinks öffnet sich ein Editor.\r\n\r\nNeue QuickLinks lassen sich mit doppelten eckigen Klammern erstellen: [[Name]]. Das Löschen eines QuickLinks entfernt die korrelierende Seite aus der Liste.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'wiki.php', '', '', 'root@localhost', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 1, 'Lesen im Wiki', 'Diese Tour gibt einen Ãœberblick über die Anzeige von Wiki-Seiten.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'T', 0, '', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 2, 'WikiWikiWeb', 'Zeigt die Basis-Seite des Wikis an.', 'R', 0, '#nav_wiki_show', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 2, 'Wiki-Startseite', 'Zeigt die Basis-Seite des Wikis an.', 'R', 0, '#nav_wiki_show', 'wiki.php', '', '', 'dozent@studip.de', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 3, 'Neue Seiten', 'Zeigt eine tabellarische Ãœbersicht neu erstellter und neu bearbeiteter Wiki-Seiten an.', 'R', 0, '#nav_wiki_listnew', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 4, 'Alle Seiten', 'Zeigt eine tabellarische Ãœbersicht aller Wiki-Seiten an.', 'R', 0, '#nav_wiki_listall', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 5, 'Ansichten', 'Wenn eine Textänderung in einer Wiki-Seite vorgenommen wurde, stehen drei Anzeigemodi zur Auswahl:\r\n- Standard: Ohne Zusatzinformation\r\n- Textänderungen anzeigen: Welche Textpassagen wurden geändert?\r\n- Text mit AutorInnenzuordnung anzeigen: Wer hat hat etwas geändert?', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(11) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 6, 'Suche', 'Zeigt die Wiki-Seiten an, in denen der eingegebene Suchbegriff vorkommt. Die Suche steht nur in der Standard-Ansicht zur Verfügung.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(14) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 7, 'Kommentare', 'Stellt verschiedene Modalitäten zur Anzeige von Kommentaren bereit, die in einer Wiki-Seite eingetragen wurden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(20) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 8, 'Kommentare einblenden', 'Alle Kommentare werden als Textblock an der Textposition angezeigt, an der sie in die Wiki-Seite eingefügt wurden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(20) DIV:eq(1) UL:eq(0) LI:eq(0) A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 9, 'Kommentare als Icon einblenden', 'Für jeden Kommentar wird an der Stelle, wo er in die Wiki-Seite eingefügt wurde, ein Icon angezeigt. Ein Klick auf das Icon öffnet den Kommentar.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(20) DIV:eq(1) UL:eq(0) LI:eq(1) A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 10, 'Kommentare ausblenden', 'Die in einer Wiki-Seite eingefügten Kommentare werden nicht angezeigt.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(20) DIV:eq(1) UL:eq(0) LI:eq(2) A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 5, 'Ansichten', 'Wenn eine Textänderung in einer Wiki-Seite vorgenommen wurde, stehen drei Anzeigemodi zur Auswahl:\r\n- Standard: Ohne Zusatzinformation\r\n- Textänderungen anzeigen: Welche Textpassagen wurden geändert?\r\n- Text mit AutorInnenzuordnung anzeigen: Wer hat hat etwas geändert?', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(16) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 6, 'Suche', 'Zeigt die Wiki-Seiten an, in denen der eingegebene Suchbegriff vorkommt. Die Suche steht nur in der Standard-Ansicht zur Verfügung.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(13) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 7, 'Kommentare', 'Stellt verschiedene Modalitäten zur Anzeige von Kommentaren bereit, die in einer Wiki-Seite eingetragen wurden.', 'R', 0, '#link-76d39424649110401006432124ea88a2 A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 8, 'Kommentare einblenden', 'Alle Kommentare werden als Textblock an der Textposition angezeigt, an der sie in die Wiki-Seite eingefügt wurden.', 'R', 0, '#link-76d39424649110401006432124ea88a2 A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 9, 'Kommentare ausblenden', 'Die in einer Wiki-Seite eingefügten Kommentare werden nicht angezeigt.', 'R', 0, '#link-b7e236be73b877f765813669fba3d56e A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 1, '', 'Dies ist Ihr persönlicher Arbeitsplatz in Stud.IP. Hier sind Funktionen, die früher unter \"Tools\" zu finden waren, sowie neue Werkzeuge gesammelt.', 'B', 0, '', 'dispatch.php/contents/overview', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 2, '', 'Courseware dient zum Erstellen von Lerninhalten. Texte, Dateien, Videos, Test und vieles mehr lassen sich einfach zu komplexen Lerninhalten kombinieren.', 'RT', 0, '#layout_content UL:eq(0) LI:eq(0) A:eq(0) DIV:eq(0) IMG:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 3, '', 'Dateien zeigt Ihren persönlichen, geschützten Dateibereich sowie eine Ãœbersichtsseite über alle Dateien, auf die Sie in Stud.IP Zugriff haben.', 'RT', 0, '#layout_content UL:eq(0) LI:eq(1) A:eq(0) DIV:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 4, '', 'Ankündigungen ermöglicht das Einstellen von News auf Ihrer Profilseite, in Veranstaltungen in denen Sie lehren oder Einrichtungen, die Sie administrieren.', 'LT', 0, '#layout_content UL:eq(0) LI:eq(2) A:eq(0) DIV:eq(0) IMG:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 5, '', 'Fragebögen zeigt alle Fragebögen die Sie erstellt haben und die sich im persönlichen, Veranstaltungs- oder Einrichungskontext nutzen lassen.', 'LT', 0, '#layout_content UL:eq(0) LI:eq(3) A:eq(0) DIV:eq(0) IMG:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 6, '', 'Evaluationen bietet einen Baukasten zum Erstellen komplexer Umfragen sowie deren Nutzung im persönlichen, Veranstaltungs- oder Einrichungskontext.', 'T', 0, '#layout_content UL:eq(0) LI:eq(4) A:eq(0) DIV:eq(0) IMG:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 7, '', 'Lernmodule/ILIAS bietet je nach Standort Zugriff auf die Accountverwaltung von Plattformen und Werkzeugen, die an Stud.IP angedockt sind.', 'T', 0, '#layout_content UL:eq(0) LI:eq(5) A:eq(0) DIV:eq(0) IMG:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 1, 'What is Blubber?', 'This tour provides an overview of the functionality of \"Blubber\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'plugins.php/blubber/streams/profile', '', '', '', 1405507364, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 2, 'Create contribution', 'A discussion can be started here by writing a text. Paragraphs can be created by pressing shift+enter. The text will be sent by pressing enter.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405507478, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 3, 'Design text', 'The text can be formatted and smileys can be used.\n\nThe customary formatting such as e.g. **bold** or %%italics%% can be used.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405508371, 0); @@ -832,45 +872,42 @@ INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107a', 5, 'Undo changes', 'All changes can be undone by restoring a previous version of text.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107a', 6, 'No support of synchronous editing', 'The editor is not designed for synchronous writing. Only one person may edit a page at the same time. If a second person links up to edit the same page, a warning message appears.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 1, 'Editing the Wiki', 'This tour provides a general overview of how to create and edit Wiki pages.\r\n\r\nTo proceed, please click \"Continue\" on the lower-right button.', 'T', 0, '', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 2, 'WikiWikiWeb', 'Displays the basic Wiki page, which is the foundation of all further Wiki pages.', 'R', 0, '#nav_wiki_show', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 2, 'WikiWikiWeb', 'Displays the basic Wiki page, which is the foundation of all further Wiki pages.', 'R', 0, '#nav_wiki_start', 'wiki.php', '', '', 'dozent@studip.de', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 3, 'New pages', 'Displays a survey of all recently created or edited Wiki pages in table form.', 'R', 0, '#nav_wiki_listnew', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 4, 'All pages', 'Displays a survey of all Wiki pages in table form.', 'R', 0, '#nav_wiki_listall', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 5, 'Editing the a Wiki page', 'Clicking here will open an editor, allowing to fill a Wiki page with content.', 'B', 0, '#main_content TABLE:eq(1) TBODY:eq(0) TR:eq(0) TD:eq(0) DIV:eq(0) A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 6, 'Deleting the content of a Wiki page', 'Clicking here will delete all content and links of a Wiki page leaving it blank.', 'B', 0, '#main_content TABLE:eq(1) TBODY:eq(0) TR:eq(0) TD:eq(0) DIV:eq(0) A:eq(1)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 7, 'QuickLinks', 'This box displays links, leading to other Wiki pages. Selecting a link will forward to the related page. The content there may be edited the same way as described in step 5 and six.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 8, 'Editing QuickLinks', 'A click on this icon will open an editor to edit the QuickLinks.\r\n\r\nEntering a name within double square brackets like [[name]] in the editor will create a new QuickLink leading to a correlating page. Deleting a QuickLink will cause its deletion in the QuickLink box.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0) DIV:eq(0) A:eq(0) IMG:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 7, 'QuickLinks', 'This box displays links, leading to other Wiki pages. Selecting a link will forward to the related page.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 8, 'Editing QuickLinks', 'A click on this icon will open an editor to edit the QuickLinks.\r\n\r\nEntering a name within double square brackets like [[name]] in the editor will create a new QuickLink leading to a correlating page. Deleting a QuickLink will cause its deletion in the QuickLink box.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'wiki.php', '', '', 'root@localhost', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 1, 'Reading the Wiki', 'This tour gives a general overview of the different modes to read Wiki pages.\r\n\r\nTo proceed, please click \"Continue\" on the lower-right button.', 'T', 0, '', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 2, 'WikiWikiWeb', 'Displays the basic Wiki page, which is the foundation of all further Wiki pages.', 'R', 0, '#nav_wiki_show', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 2, 'WikiWikiWeb', 'Displays the basic Wiki page, which is the foundation of all further Wiki pages.', 'R', 0, '#nav_wiki_show', 'wiki.php', '', '', 'dozent@studip.de', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 3, 'New pages', 'Displays a survey of all recently created or edited Wiki pages in table form.', 'R', 0, '#nav_wiki_listnew', 'wiki.php', '', '', '', 1441276241, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 4, 'All pages', 'Displays a survey of all Wiki pages in table form.', 'R', 0, '#nav_wiki_listall', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 5, 'Views', 'If a Wiki page has been edited, the user may choose between three modes of viewing content:\r\n- Standard: Without extra information\r\n- Show text changes: Which parts of text have been edited?\r\n- Show text changes and associated author: Who was editing a part of text?', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(11) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 6, 'Search', 'Shows all Wiki pages which contain the entered search term. The search is supported in Standard-View only.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(14) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 7, 'Comments', 'Supports three modes of showing comments added to a Wiki page.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(20) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 8, 'Show comments', 'All comments are shown as a block of text exactly in that position, in which they were added.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(20) DIV:eq(1) UL:eq(0) LI:eq(0) A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 9, 'Show comments as icon', 'All comments are represented by an icon exactly in that position, in which a comment was added. A click on an icon shows the correlating comment.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(20) DIV:eq(1) UL:eq(0) LI:eq(1) A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 10, 'Hide comments', 'All added comments are hidden while displaying a page.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(20) DIV:eq(1) UL:eq(0) LI:eq(2) A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 1, 'Suche', 'Diese Tour gibt Ihnen einen Ãœberblick über die wichtigsten Funktionen der \"Suche\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'dispatch.php/search/courses', '', '', '', 1405519865, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 2, 'Suchbegriff eingeben', 'In dieses Eingabefeld kann ein Suchbegriff (wie z.B. der Veranstaltungsname, Lehrperson) eingegeben werden.', 'B', 0, 'INPUT#search_sem_quick_search_1.ui-autocomplete-input', 'dispatch.php/search/courses', '', '', '', 1405520106, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 3, 'Semesterauswahl', 'Durch einen Klick auf das Drop-Down Menü kann bestimmt werden, auf welches Semester sich der Suchbegriff beziehen soll. \r\n\r\nStandardgemäß ist das aktuelle Semester eingestellt.', 'TL', 0, 'SELECT#search_sem_sem', 'dispatch.php/search/courses', '', '', '', 1405520208, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 4, 'Navigation', 'Falls nur in einem bestimmten Bereich (wie z.B. Lehre) gesucht werden soll, kann dieser hier ausgewählt werden.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(0)', 'dispatch.php/search/courses', '', '', '', 1406121826, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 5, 'Erweiterte Suche', 'Mit der Erweiterten Suche kann die Suche um weitere Optionen erweitert werden.', 'R', 0, 'A.options-checkbox.options-unchecked', 'dispatch.php/search/courses', '', '', '', 1405520436, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 6, 'Schnellsuche', 'Die Schnellsuche ist auch auf anderen Seiten von Stud.IP jederzeit verfügbar. Nach der Eingabe eines Stichwortes, wird mit \"Enter\" bestätigt, oder auf die Lupe rechts neben dem Feld geklickt.', 'B', 0, 'INPUT#search_sem_quick_search_2.quicksearchbox.ui-autocomplete-input', 'dispatch.php/search/courses', '', '', '', 1405520634, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 7, 'Weitere Suchmöglichkeiten', 'Neben Veranstaltungen besteht auch die Möglichkeit, im Archiv, nach Personen, nach Einrichtungen oder nach Ressourcen zu suchen.', 'R', 0, '#nav_search_resources A SPAN', 'dispatch.php/search/courses', '', '', '', 1405520751, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 1, 'Search', 'This tour provides an overview of the supplied search options.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'dispatch.php/search/courses', '', '', '', 1405519865, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 2, 'Enter search term', 'A search term (such as event name, lecturer) can be entered in this input field.', 'B', 0, 'INPUT#search_sem_quick_search_1.ui-autocomplete-input', 'dispatch.php/search/courses', '', '', '', 1405520106, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 3, 'Semester selection', 'With a click on the drop-down menu you can choose to which semester the search term should refer. \n\nThe current semester is set as standard.', 'TL', 0, 'SELECT#search_sem_sem', 'dispatch.php/search/courses', '', '', '', 1405520208, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 4, 'Navigation', 'If you want to search only one particular area, you can select one here.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(0)', 'dispatch.php/search/courses', '', '', '', 1406121826, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 5, 'Extended search', 'The search can be extended by further options with the extended search.', 'R', 0, 'A.options-checkbox.options-unchecked', 'dispatch.php/search/courses', '', '', '', 1405520436, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 6, 'Quick search', 'The quick search is also available on other sites of Stud.IP at all times. After entering a key word it is confirmed with \"Enter\" or by clicking the magnifying glass on the right next to the field.', 'B', 0, 'INPUT#search_sem_quick_search_2.quicksearchbox.ui-autocomplete-input', 'dispatch.php/search/courses', '', '', '', 1405520634, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 7, 'Further search possibilities', 'In addition to searching for events there is also the possibility to search the archive for persons, facilities, or resources.', 'R', 0, '#nav_search_resources A SPAN', 'dispatch.php/search/courses', '', '', '', 1405520751, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 1, 'Hilfe-Tour \"Meine Veranstaltung\"', 'Diese Tour gibt einen Ãœberblick über die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1406125847, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 2, 'Veranstaltungsüberblick', 'Hier werden die Veranstaltungen des aktuellen und vergangenen Semesters angezeigt. Neue Veranstaltungen erscheinen zunächst in rot.', 'TL', 0, '#my_seminars TABLE THEAD TR TH :eq(2)', 'dispatch.php/my_courses', '', '', '', 1406125908, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 3, 'Veranstaltungsdetails', 'Mit Klick auf das \"i\" erscheint ein Fenster mit den wichtigsten Eckdaten der Veranstaltung.', 'T', 0, '#my_seminars TABLE THEAD TR TH :eq(3)', 'dispatch.php/my_courses', '', '', '', 1406125992, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 4, 'Veranstaltungsinhalte', 'Hier werden alle Inhalte (wie z.B. ein Forum) durch entsprechende Symbole angezeigt.\r\nFalls es seit dem letzten Login Neuigkeiten gab, erscheinen diese in rot.', 'LT', 0, '#my_seminars TABLE THEAD TR TH :eq(4)', 'dispatch.php/my_courses', '', '', '', 1406126049, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 5, 'Bearbeitung oder Löschung einer Veranstaltung', 'Der Klick auf das Zahnrad ermöglicht die Bearbeitung einer Veranstaltung.\r\nFalls bei einer Veranstaltung Teilnehmerstatus besteht, kann hier eine Austragung, durch Klick auf dasTür-Icon, vorgenommen werden.', 'TR', 0, '#my_seminars TABLE THEAD TR TH :eq(5)', 'dispatch.php/my_courses', '', '', '', 1406126134, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 6, 'Anpassung der Veranstaltungsansicht', 'Zur Anpassung der Veranstaltungsübersicht, kann man die Veranstaltungen nach bestimmten Kriterien (wie z.B. Studienbereiche, Lehrende oder Farben) gliedern.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(2)', 'dispatch.php/my_courses', '', '', '', 1406126281, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 7, 'Zugriff auf Veranstaltung vergangener und zukünftiger Semester', 'Durch Klick auf das Drop-Down Menü können beispielsweise Veranstaltung aus vergangenen Semestern angezeigt werden.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(3)', 'dispatch.php/my_courses', '', '', '', 1406126316, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 8, 'Weitere mögliche Aktionen', 'Hier können Sie alle Neuigkeiten als gelesen markieren, Farbgruppierungen nach Belieben ändern oder\r\nauch die Benachrichtigungen über Aktivitäten in den einzelnen Veranstaltungen anpassen.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(1)', 'dispatch.php/my_courses', '', '', '', 1406126374, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 5, 'Views', 'If a Wiki page has been edited, the user may choose between three modes of viewing content:\r\n- Standard: Without extra information\r\n- Show text changes: Which parts of text have been edited?\r\n- Show text changes and associated author: Who was editing a part of text?', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(16) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 6, 'Search', 'Shows all Wiki pages which contain the entered search term. The search is supported in Standard-View only.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(13) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 7, 'Comments', 'Supports three modes of showing comments added to a Wiki page.', 'R', 0, '#link-76d39424649110401006432124ea88a2 A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 8, 'Show comments', 'All comments are shown as a block of text exactly in that position, in which they were added.', 'R', 0, '#link-76d39424649110401006432124ea88a2 A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 9, 'Hide comments', 'All added comments are hidden while displaying a page.', 'R', 0, '#link-b7e236be73b877f765813669fba3d56e A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 1, 'Suche', 'Diese Tour gibt Ihnen einen Ãœberblick über die wichtigsten Funktionen der \"Suche\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'B', 0, '', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405519865, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 2, 'Suchbegriff eingeben', 'In dieses Eingabefeld kann ein Suchbegriff (wie z.B. der Veranstaltungsname, Lehrperson) eingegeben werden.', 'B', 0, '#search-input', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520106, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 3, 'Semesterauswahl', 'Durch einen Klick auf das Drop-Down Menü kann bestimmt werden, auf welches Semester sich der Suchbegriff beziehen soll. \r\n\r\nStandardgemäß ist das aktuelle Semester eingestellt.', 'TL', 0, '#semester_filter DIV:eq(0)', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520208, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 4, 'Navigation', 'Falls nur in einem bestimmten Bereich (wie z.B. Lehre) gesucht werden soll, kann dieser hier ausgewählt werden.', 'BL', 0, '#tabs', 'dispatch.php/search/globalsearch', '', '', 'dozent@studip.de', 1406121826, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 5, 'Schnellsuche', 'Die Schnellsuche ist auch auf anderen Seiten von Stud.IP jederzeit verfügbar. Nach der Eingabe eines Stichwortes, wird mit \"Enter\" bestätigt, oder auf die Lupe rechts neben dem Feld geklickt.', 'B', 0, '#globalsearch-input', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520634, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 6, 'Weitere Suchmöglichkeiten', 'Neben Veranstaltungen besteht auch die Möglichkeit, im Archiv, nach Personen, nach Einrichtungen oder nach Ressourcen zu suchen.', 'R', 0, '#nav_search_resources A SPAN', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520751, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 1, 'Search', 'This tour provides an overview of the supplied search options.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'B', 0, '', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405519865, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 2, 'Enter search term', 'A search term (such as event name, lecturer) can be entered in this input field.', 'B', 0, '#search-input', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520106, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 3, 'Semester selection', 'With a click on the drop-down menu you can choose to which semester the search term should refer. \n\nThe current semester is set as standard.', 'TL', 0, '#semester_filter DIV:eq(0)', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520208, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 4, 'Navigation', 'If you want to search only one particular area, you can select one here.', 'BL', 0, '#tabs', 'dispatch.php/search/globalsearch', '', '', 'dozent@studip.de', 1406121826, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 5, 'Quick search', 'The quick search is also available on other sites of Stud.IP at all times. After entering a key word it is confirmed with \"Enter\" or by clicking the magnifying glass on the right next to the field.', 'B', 0, '#globalsearch-input', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520634, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 6, 'Further search possibilities', 'In addition to searching for events there is also the possibility to search the archive for persons, facilities, or resources.', 'R', 0, '#nav_search_resources A SPAN', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520751, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 1, 'Meine Veranstaltungen', 'Diese Tour gibt einen Ãœberblick über die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1406125847, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 2, 'Veranstaltungsüberblick', 'Hier werden die Veranstaltungen des aktuellen und vergangenen Semesters angezeigt. Neue Veranstaltungen erscheinen zunächst in rot.', 'BL', 0, '#my_seminars TABLE:eq(0) CAPTION:eq(0)', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406125908, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 3, 'Veranstaltungsdetails', 'Mit Klick auf das \"i\" erscheint ein Fenster mit den wichtigsten Eckdaten der Veranstaltung.', 'BR', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '#my_seminars TABLE:eq(0) TBODY:eq(0) TR:eq(1) TD:eq(5) NAV:eq(0)', 'dozent@studip.de', 1406125992, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 4, 'Veranstaltungsinhalte', 'Hier werden alle Inhalte (wie z.B. ein Forum) durch entsprechende Symbole angezeigt.\r\nFalls es seit dem letzten Login Neuigkeiten gab, erscheinen diese in rot.', 'B', 0, '#my_seminars .my-courses-navigation-item', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406126049, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 5, 'Bearbeitung oder Löschung einer Veranstaltung', 'Der Klick auf das Zahnrad ermöglicht die Bearbeitung einer Veranstaltung.\r\nFalls bei einer Veranstaltung Teilnehmerstatus besteht, kann hier eine Austragung, durch Klick auf das Tür-Icon, vorgenommen werden.', 'BR', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406126134, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 6, 'Anpassung der Veranstaltungsansicht', 'Zur Anpassung der Veranstaltungsübersicht, kann man die Veranstaltungen nach bestimmten Kriterien (wie z.B. Studienbereiche, Lehrende oder Farben) gliedern.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(11) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1406126281, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 7, 'Zugriff auf Veranstaltung vergangener und zukünftiger Semester', 'Durch Klick auf das Drop-Down Menü können beispielsweise Veranstaltung aus vergangenen Semestern angezeigt werden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(1)', 'dispatch.php/my_courses', '', '', '', 1406126316, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 8, 'Weitere mögliche Aktionen', 'Hier können Sie alle Neuigkeiten als gelesen markieren, Farbgruppierungen nach Belieben ändern oder\r\nauch die Benachrichtigungen über Aktivitäten in den einzelnen Veranstaltungen anpassen.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1406126374, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 9, 'Studiengruppen und Einrichtungen', 'Es besteht zudem die Möglichkeit auf persönliche Studiengruppen oder Einrichtungen zuzugreifen.', 'R', 0, '#nav_browse_my_institutes A', 'dispatch.php/my_courses', '', '', '', 1406126415, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 1, 'What is Blubber?', 'This tour provides an overview of the functionality of \"Blubber\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'plugins.php/blubber/streams/forum', '', '', '', 1405507364, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 2, 'Create contribution', 'A discussion can be started here by writing a text. Paragraphs can be created by pressing shift+enter. The text will be sent by pressing enter.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405507478, 0); @@ -883,53 +920,46 @@ INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 9, 'Link contribution', 'If the cursor is positioned on the first contribution to the discussion a link icon will appear on the left next to the date. If this is clicked using the right mouse button the link can be copied on this contribution in order to be able to insert it in another place.', 'BR', 0, 'DIV DIV A.permalink', 'plugins.php/blubber/streams/forum', '', '', '', 1405508281, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 1, 'Forum', 'This tour provides an overview of the forum\'s elements and options of interaction.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'BL', 0, '', 'plugins.php/coreforum', '', '', '', 1405415772, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 2, 'You are here:...', 'Here you can see which sector of the forum you are currently looking at.', 'BL', 0, 'DIV#tutorBreadcrumb', 'plugins.php/coreforum', '', '', '', 1405415875, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 3, 'Category', 'The forum is divided into categories, topics and posts. A category summarises forum areas into larger units of meaning.', 'BL', 0, '#layout_content #forum #sortable_areas TABLE CAPTION .category_name :eq(0)', 'plugins.php/coreforum', '', '', '', 1405416611, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 4, 'Area', 'This is an area within a category. Areas contain threads. The order of areas can be altered using drag&drop', 'BL', 0, '#layout_content #forum TABLE THEAD TR TH :eq(0)', 'plugins.php/coreforum', '', '', '', 1405416664, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 5, 'Info-Icon', 'This icon turns red as soon as there is something new in this sector.', 'B', 0, 'IMG#tutorNotificationIcon', 'plugins.php/coreforum', '', '', '', 1405416705, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 6, 'Search', 'All contents of this forum can be browsed here. Multiple word searches are also supported. In addition, the search can be limited to any combination of title, content and author.', 'BL', 0, '#layout-sidebar SECTION #tutorSearchInfobox DIV #tutorSearchInfobox UL LI INPUT :eq(1)', 'plugins.php/coreforum', '', '', '', 1405417134, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 7, 'Subscribe to forum', 'You can subscribe to the whole forum or individual topics . In this case a notification will be generated and you receive a meassage for each new post in this forum.', 'B', 0, '#layout-sidebar SECTION DIV DIV UL LI A :eq(5)', 'plugins.php/coreforum', '', '', '', 1405416795, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 3, 'Category', 'The forum is divided into categories, topics and posts. A category summarises forum areas into larger units of meaning.', 'BL', 0, '#tutorCategory', 'plugins.php/coreforum', '', '', '', 1405416611, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 4, 'Area', 'This is an area within a category. Areas contain threads. The order of areas can be altered using drag&drop', 'BL', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(1) DIV:eq(0) SPAN:eq(0) A:eq(0) SPAN:eq(0)', 'plugins.php/coreforum', '', '', '', 1405416664, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 5, 'Info-Icon', 'This icon turns red as soon as there is something new in this sector.', 'B', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) A:eq(0) IMG:eq(0)', 'plugins.php/coreforum', '', '', '', 1405416705, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 6, 'Search', 'All contents of this forum can be browsed here. Multiple word searches are also supported. In addition, the search can be limited to any combination of title, content and author.', 'BL', 0, '#tutorSearchInfobox DIV:eq(0)', 'plugins.php/coreforum', '', '', '', 1405417134, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 7, 'Subscribe to forum', 'You can subscribe to the whole forum or individual topics . In this case a notification will be generated and you receive a meassage for each new post in this forum.', 'RT', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(9) DIV:eq(0)', 'plugins.php/coreforum', '', '', 'dozent@studip.de', 1405416795, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 1, 'Profil-Tour', 'Diese Tour gibt Ihnen einen Ãœberblick über die wichtigsten Funktionen des \"Profils\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'T', 0, '', 'dispatch.php/profile', '', '', '', 1406722657, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 2, 'Persönliches Bild', 'Wenn ein Bild hochgeladen wurde, wird es hier angezeigt. Dieses kann jederzeit geändert werden.', 'RT', 0, '.avatar-normal', 'dispatch.php/profile', '', '', '', 1406722657, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 3, 'Stud.IP-Score', 'Der Stud.IP-Score wächst mit den Aktivitäten in Stud.IP und repräsentiert so die Erfahrung mit Stud.IP.', 'BL', 0, '#layout_content TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) A:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 4, 'Ankündigungen', 'Sie können auf dieser Seite persönliche Ankündigungen veröffentlichen.', 'B', 0, '#layout_content SECTION HEADER H1 :eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 5, 'Neue Ankündigung', 'Klicken Sie auf das Plus-Zeichen, wenn Sie eine Ankündigung erstellen möchten.', 'BR', 0, '.contentbox:eq(0) header img:eq(1)', 'dispatch.php/profile', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 6, 'Persönliche Daten', 'Das Bild sowie weitere persönliche Angaben können über diese Seiten geändert werden.', 'BL', 0, '#tabs li:eq(2)', 'dispatch.php/profile', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('977f41c5c5239c4e86f04c3df27fae38', 1, 'Willkommen im neuen Stud.IP 3.1', 'Dies ist eine Hilfe-Tour, die die wichtigsten Neuerungen in Stud.IP vorstellt. \r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\". Eine Hilfe-Tour kann jederzeit durch einen Klick auf \"Beenden\" beendet werden.', 'TL', 0, '', 'dispatch.php/start', '', '', '', 1405932373, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('977f41c5c5239c4e86f04c3df27fae38', 2, 'Hilfelasche', 'Auf jeder Seite findet sich die Hilfe von nun an in der sogenannten Hilfelasche. Diese öffnet sich mit einem Klick auf das Fragezeichen. \r\n\r\nHier findet sich kurz und knapp zu jeder Seite die wichtigsten Informationen, Links zur ausführlichen Hilfeseite mit Anleitungsvideos und gegebenenfalls Hilfe-Touren.', 'BR', 0, 'DIV.helpbar-container .helpbar-title', 'dispatch.php/start', '', '', '', 1405932475, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('977f41c5c5239c4e86f04c3df27fae38', 3, 'Gliederung der Startseite', 'Die Startseite im neuen Stud.IP ist standardmäßig so gegliedert wie die alte Version. Neu ist, dass jedes Element (\"Widget\") individuell entfernt und verschoben werden kann. Darüber hinaus können noch weitere Widgets hinzugefügt werden. Hierzu gibt es eine separate Hilfe-Tour und die Hinweise in der Hilfe.', 'TL', 0, '', 'dispatch.php/start', '', '', '', 1405932516, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('977f41c5c5239c4e86f04c3df27fae38', 4, 'Sidebar', 'Auf allen Seiten ist nun links die Sidebar positioniert. Sie enthält Funktionen für die aktuelle Seite.\r\nIm alten Stud.IP gab es mit der Infobox auf der rechten Seite etwas Ähnliches.', 'R', 0, 'SECTION.sidebar', 'dispatch.php/start', '', '', '', 1405932633, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('977f41c5c5239c4e86f04c3df27fae38', 5, 'Änderung der Navigation', 'Häufig ist die Reiternavigation vom alten Stud.IP nun in der Sidebar zu finden. Auf dieser Seite sind das zum Beispiel die Punkte \"Neue Nachricht schreiben\" und der Gesendet-Ordner.', 'R', 0, 'SECTION.sidebar ', 'dispatch.php/messages/overview', '', '', '', 1405932671, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('977f41c5c5239c4e86f04c3df27fae38', 6, 'Studiengruppen und Einrichtungen', 'Die Einrichtungen, die früher unter den Veranstaltungen standen und die Studiengruppen, die früher zwischen den Veranstaltungen standen, finden sich nun in eigenen Reitern wieder.', 'R', 0, '#nav_browse_my_institutes A SPAN', 'dispatch.php/my_courses', '', '', '', 1405932830, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('977f41c5c5239c4e86f04c3df27fae38', 7, 'Hinweise zu den Anmeldeverfahren', 'Im neuen Stud.IP haben sich die Zugangsberechtigungen und Anmeldeverfahren geändert. Das betrifft sowohl Studierende als auch Dozierende. Hierzu gibt es separate Feature-Touren und die Hinweise in der Hilfe.', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1405932890, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('977f41c5c5239c4e86f04c3df27fae38', 8, 'Ende der Feature-Tour', 'Durch Klick auf \"Beenden\" in der Box rechts unten wird diese Tour beendet. Ãœber die Hilfelasche lässt sich diese Tour jederzeit wieder starten.', 'TL', 0, '', 'dispatch.php/start', '', '', '', 1406539532, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 4, 'Ankündigungen', 'Sie können auf dieser Seite persönliche Ankündigungen veröffentlichen.', 'B', 0, '#layout_content ARTICLE:eq(0) HEADER:eq(0) H1:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 5, 'Neue Ankündigung', 'Klicken Sie auf das Plus-Zeichen, wenn Sie eine Ankündigung erstellen möchten.', 'BR', 0, '#layout_content ARTICLE:eq(0) HEADER:eq(0) NAV:eq(0) A:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 6, 'Persönliche Angaben', 'Weitere persönliche Angaben und Einstellungen können über diese Seiten geändert werden.', 'B', 0, '#tabs li:eq(2)', 'dispatch.php/profile', '', '', 'dozent@studip.de', 1406722657, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 1, 'Create study group', 'This tour provides an overview of the creation of study groups to cooperate with fellow students.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'R', 0, '', 'dispatch.php/my_studygroups', '', '', '', 1405684423, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 2, 'Create study group', 'A new study group can be created with a click on \"create new study group\".', 'R', 0, 'A#nav_browse_new', 'dispatch.php/my_studygroups', '', '', '', 1406017730, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 3, 'Name a study group', 'The name of a study group should be meaningful and unique in the whole Stud.IP.', 'R', 0, 'INPUT#groupname', 'dispatch.php/course/studygroup/new', '', '', '', 1405684720, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 4, 'Add description', 'The description makes it possible to display additional information that makes it easier to find the group.', 'R', 0, 'TEXTAREA#groupdescription', 'dispatch.php/course/studygroup/new', '', '', '', 1405684806, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 5, 'Allocate content elements', 'Content elements can be activated here, which are to be available within the study group. The question mark provides more detailed information on the meaning of the individual content elements', 'L', 0, '#layout_content FORM TABLE TBODY TR TD :eq(5)', 'dispatch.php/course/studygroup/new', '', '', '', 1405685093, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 6, 'Stipulate access', 'The access to the study group can be restricted with this drop down menu.\n\nAll students can register freely and participate in the group with the access \"open for everyone\".\n\nWith the access \"upon request\" participants must be added by the group founder.', 'R', 0, 'SELECT#groupaccess', 'dispatch.php/course/studygroup/new', '', '', '', 1405685334, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 7, 'Accept terms of use', 'The terms of use have to be accepted before you can create a study group.', 'R', 0, 'P LABEL', 'dispatch.php/course/studygroup/new', '', '', '', 1405685652, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 8, 'Save study group', 'After you saved a study group it will appear under \"My courses\" > \"My study groups\".', 'L', 0, '#layout_content FORM TABLE TBODY TR TD :eq(14)', 'dispatch.php/course/studygroup/new', '', '', '', 1405686068, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 1, 'Hilfe-Tour \"Meine Veranstaltungen\"', 'Diese Tour gibt einen Ãœberblick über die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1405521184, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 2, 'Veranstaltungsüberblick', 'Hier werden die Veranstaltungen des aktuellen und vergangenen Semesters angezeigt. Neue Veranstaltungen erscheinen zunächst in rot.', 'T', 0, '#my_seminars TABLE THEAD TR TH :eq(2)', 'dispatch.php/my_courses', '', '', '', 1405521244, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 3, 'Veranstaltungsdetails', 'Mit Klick auf das \"i\" erscheint ein Fenster mit den wichtigsten Eckdaten der Veranstaltung.', 'T', 0, '#my_seminars TABLE THEAD TR TH :eq(3)', 'dispatch.php/my_courses', '', '', '', 1405931069, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 4, 'Veranstaltungsinhalte', 'Hier werden alle Inhalte (wie z.B. ein Forum) durch entsprechende Symbole angezeigt.\r\nFalls es seit dem letzten Login Neuigkeiten gab, erscheinen diese in rot.', 'LT', 0, '#my_seminars TABLE THEAD TR TH :eq(4)', 'dispatch.php/my_courses', '', '', '', 1405931225, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 5, 'Verlassen der Veranstaltung', 'Ein Klick auf das Tür-Icon ermöglicht eine direkte Austragung aus der Veranstaltung.', 'TR', 0, '#my_seminars TABLE THEAD TR TH :eq(5)', 'dispatch.php/my_courses', '', '', '', 1405931272, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 6, 'Zugriff auf archivierte Veranstaltungen', 'Falls Veranstaltungen archiviert sind, kann hier auf diese zugegriffen werden.', 'RT', 0, 'A#nav_browse_archive', 'dispatch.php/my_courses', '', '', '', 1405931431, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 7, 'Anpassung der Veranstaltungsansicht', 'Zur Anpassung der Veranstaltungsübersicht, kann man die Veranstaltungen nach bestimmten Kriterien (wie z.B. Studienbereiche, Lehrende oder Farben) gliedern.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(2)', 'dispatch.php/my_courses', '', '', '', 1405932131, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 8, 'Zugriff auf Veranstaltung vergangener und zukünftiger Semester', 'Durch Klick auf das Drop-Down Menü können beispielsweise Veranstaltung aus vergangenen Semestern angezeigt werden.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(3)', 'dispatch.php/my_courses', '', '', '', 1405932230, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 9, 'Weitere mögliche Aktionen', 'Hier können Sie alle Neuigkeiten als gelesen markieren, Farbgruppierungen nach Belieben ändern oder\r\nauch die Benachrichtigungen über Aktivitäten in den einzelnen Veranstaltungen anpassen.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(1)', 'dispatch.php/my_courses', '', '', '', 1405932320, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 10, 'Studiengruppen und Einrichtungen', 'Es besteht zudem die Möglichkeit auf persönliche Studiengruppen oder Einrichtungen zuzugreifen.', 'R', 0, '#nav_browse_my_institutes A', 'dispatch.php/my_courses', '', '', '', 1405932519, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 2, 'Create study group', 'A new study group can be created with a click on \"create new study group\".', 'BL', 0, '.sidebar-widget:eq(1) A:eq(0)', 'dispatch.php/my_studygroups', '', '.sidebar-widget:eq(1) li:eq(0) a:eq(0)', 'dozent@studip.de', 1406017730, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 3, 'Name a study group', 'The name of a study group should be meaningful and unique in the whole Stud.IP.', 'R', 0, '#wizard-name', 'dispatch.php/my_studygroups', '', '', '', 1405684720, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 4, 'Add description', 'The description makes it possible to display additional information that makes it easier to find the group.', 'L', 0, '#wizard-description', 'dispatch.php/my_studygroups', '', '', 'dozent@studip.de', 1405684806, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 5, 'Allocate content elements', 'Content elements can be activated here, which are to be available within the study group. The question mark provides more detailed information on the meaning of the individual content elements', 'R', 0, '#wizard-access', 'dispatch.php/my_studygroups', '', '', 'dozent@studip.de', 1405685093, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 6, 'Stipulate access', 'The access to the study group can be restricted with this drop down menu.\n\nAll students can register freely and participate in the group with the access \"open for everyone\".\n\nWith the access \"upon request\" participants must be added by the group founder.', 'R', 0, '#wizard-access', 'dispatch.php/my_studygroups', '', '', 'root@localhost', 1405685334, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 7, 'Accept terms of use', 'The terms of use have to be accepted before you can create a study group.', 'R', 0, '#ui-id-1 FORM:eq(0) FIELDSET:eq(0) LABEL:eq(4)', 'dispatch.php/my_studygroups', '', '', 'root@localhost', 1405685652, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 8, 'Save study group', 'After you saved a study group it will appear under \"My courses\" > \"My study groups\".', 'L', 0, '#layout_content FORM TABLE TBODY TR TD :eq(14)', 'dispatch.php/my_studygroups', '', 'BUTTON.cancel:eq(0)', 'root@localhost', 1405686068, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 1, 'Möchten Sie sehen was in Stud.IP 5 neu ist?', '', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 2, '', 'Der OER Campus ermöglicht das Teilen und Finden von freien Lehr- und Lernmaterialien.', 'B', 0, '#nav_oer A:eq(0) IMG:eq(0)', 'dispatch.php/start', '', '', 'dozent@studip.de', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 3, '', '\"Mein Arbeitsplatz\" ersetzt und erweitert den Punkt \"Tools\" der früheren Stud.IP-Versionen. Hier finden Sie jetzt Ihre Fragebögen, Ankündigungen, Evaluationen und Dateien sowie Courseware und ggf. Zugang zu ILIAS.', 'B', 0, '#nav_contents A:eq(0) IMG:eq(0)', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 4, '', 'Sie können sich Ihre belegten Veranstaltungen jetzt auch in einer übersichtlichen Kacheldarstellung anzeigen lassen. Die ist besonders gut für Smartphones geeignet.', 'B', 0, '.sidebar-views:eq(1)', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 5, '', 'In Veranstaltungen finden Sie Optionen für Literatur nun im Dateibereich. Nachrichten lassen sich gleichzeitig an mehrere Gruppen versenden.', 'B', 0, '', 'dispatch.php/my_courses', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 6, '', 'Ãœber die Terminvergabe können Sie freie Termine auf ihrer Profilseite veröffentlichen, die dann von anderen gebucht werden können, z.B. als Sprechstunde. Falls unterstützt, können Sie zu jedem Termin Videofunktionen einschalten.', 'B', 0, '', 'dispatch.php/profilemodules', '', '', 'dozent@studip.de', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 7, '', 'Das waren nur die wichtigsten Änderungen. Stud.IP 5 enthält noch zahlreiche weitere Verbesserungen, die Ihnen die Arbeit hoffentlich etwas erleichtern. Schreiben Sie Feedback gerne an die Entwicklungscommunity unter feedback@studip.de', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 1, 'Meine Veranstaltungen', 'Diese Tour gibt einen Ãœberblick über die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1405521184, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 2, 'Veranstaltungsüberblick', 'Hier werden die Veranstaltungen des aktuellen und vergangenen Semesters angezeigt. Neue Veranstaltungen erscheinen zunächst in rot.', 'BL', 0, '#my_seminars TABLE:eq(0) CAPTION:eq(0)', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405521244, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 3, 'Veranstaltungsdetails', 'Mit Klick auf das \"i\" erscheint ein Fenster mit den wichtigsten Eckdaten der Veranstaltung.', 'L', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405931069, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 4, 'Veranstaltungsinhalte', 'Hier werden alle Inhalte (wie z.B. ein Forum) durch entsprechende Symbole angezeigt.\r\nFalls es seit dem letzten Login Neuigkeiten gab, erscheinen diese in rot.', 'LT', 0, '#my_seminars .my-courses-navigation-item', 'dispatch.php/my_courses', '', '', '', 1405931225, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 5, 'Verlassen der Veranstaltung', 'Ein Klick auf das Tür-Icon ermöglicht eine direkte Austragung aus der Veranstaltung.', 'L', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405931272, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 6, 'Anpassung der Veranstaltungsansicht', 'Zur Anpassung der Veranstaltungsübersicht können die Veranstaltungen nach bestimmten Kriterien (wie z.B. Studienbereiche, Lehrende oder Farben) gruppiert werden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(11) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932131, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 7, 'Zugriff auf Veranstaltung vergangener und zukünftiger Semester', 'Durch Klick auf das Drop-Down Menü können beispielsweise Veranstaltung aus vergangenen Semestern angezeigt werden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932230, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 8, 'Weitere mögliche Aktionen', 'Hier können Sie alle Neuigkeiten als gelesen markieren, Farbgruppierungen nach Belieben ändern oder\r\nauch die Benachrichtigungen über Aktivitäten in den einzelnen Veranstaltungen anpassen.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932320, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 9, 'Studiengruppen und Einrichtungen', 'Es besteht zudem die Möglichkeit auf persönliche Studiengruppen oder Einrichtungen zuzugreifen.', 'R', 0, '#nav_browse_my_institutes A', 'dispatch.php/my_courses', '', '', '', 1405932519, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 1, 'Participant administration', 'This tour provides an overview of the participant administration\'s options.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'B', 0, '', 'dispatch.php/course/members', '', '', '', 1405688399, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 2, 'Add persons', 'With these functions you can search for individual persons in Stud.IP and directly select them as lecturer, tutor or author. It is also possible to insert a list of participants in order to allocate several persons as a tutor of the event at the same time.', 'R', 0, '#layout-sidebar SECTION DIV.sidebar-widget :eq(1)', 'dispatch.php/course/members', '', '', '', 1405688707, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 2, 'Add persons', 'With these functions you can search for individual persons in Stud.IP and directly select them as lecturer, tutor or author. It is also possible to insert a list of participants in order to allocate several persons as a tutor of the event at the same time.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'dispatch.php/course/members', '', '', '', 1405688707, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 3, 'Upgrade/ downgrade', 'In order to upgrade an already enroled person to a tutor, or to downgrade them to a reader select this person in the list and carry out the requested action by using the dropdown menu.', 'T', 0, '#autor CAPTION', 'dispatch.php/course/members', '', '', '', 1405690324, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 4, 'Send circular e-mail', 'A circular e-mail can be sent to all participants of the event here.', 'R', 0, '#layout-sidebar SECTION DIV DIV UL LI A :eq(3)', 'dispatch.php/course/members', '', '', '', 1406636964, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 5, 'Send circular e-mail to user group', 'There is further the possibility to send a circular e-mail to individual user groups.', 'BR', 0, '#layout_container #layout_content TABLE CAPTION SPAN A IMG :eq(0)', 'dispatch.php/course/members', '', '', '', 1406637123, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 6, 'Create groups', 'The participants of the event can be divided into groups here.', 'R', 0, 'A#nav_course_edit_groups', 'dispatch.php/course/members', '', '', '', 1405689311, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 7, 'Name group', 'You can search for a suitable group name in the templates and select it using the yellow double arrow. As an alternative you also have the possibility to determine a new group name by directly entering the name in the right field.', 'B', 0, 'SELECT', 'admin_statusgruppe.php', '', '', '', 1405689541, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 8, 'Group size', 'With the field \"group size\" you can set the maximum number of participants of a group. If you do not require this, simply leave the field empty.', 'B', 0, 'INPUT#role_size', 'admin_statusgruppe.php', '', '', '', 1405689763, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 9, 'Self-entry', 'If you activate the function \"self-entry\", the participants of the event can enter themselves in the groups.', 'B', 0, 'INPUT#self_assign', 'admin_statusgruppe.php', '', '', '', 1405689852, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 10, 'Document folder', 'If you activate the function \"document folder\", an additional document folder will be created per group. Group-specific documents can be uploaded to this folder.', 'B', 0, 'INPUT#group_folder', 'admin_statusgruppe.php', '', '', '', 1405689936, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 4, 'Send circular e-mail', 'A circular e-mail can be sent to all participants of the event here.', 'R', 0, '#link-71a939b1cddd28322f902cdfbc330250 A:eq(0)', 'dispatch.php/course/members', '', '', 'dozent@studip.de', 1406636964, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 5, 'Send circular e-mail to user group', 'There is further the possibility to send a circular e-mail to individual user groups.', 'BR', 0, '#autor CAPTION:eq(0) SPAN:eq(0) A:eq(0) IMG:eq(0)', 'dispatch.php/course/members', '', '', '', 1406637123, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 1, 'What is Blubber?', 'This tour provides an overview of the functionality of \"Blubber\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'plugins.php/blubber/streams/global', '', '', '', 1405507364, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 2, 'Create contribution', 'A discussion can be started here by writing a text. Paragraphs can be created by pressing shift+enter. The text will be sent by pressing enter.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405507478, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 3, 'Design text', 'The text can be formatted and smileys can be used.\n\nThe customary formatting such as e.g. **bold** or %%italics%% can be used.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405508371, 0); @@ -939,26 +969,30 @@ INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 7, 'Hashtag cloud', 'By clicking on a hashtag, all posts containing this hashtag will be displayed.', 'RT', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(1)', 'plugins.php/blubber/streams/global', '', '', '', 1405508505, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 8, 'Change contribution', 'If the cursor is positioned on a post, its date will appear. For your own posts an additional icon will appear on the right next to the date. This icon allow you to subsequently edit your post.', 'BR', 0, 'DIV DIV A SPAN.time', 'plugins.php/blubber/streams/global', '', '', '', 1405507901, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 9, 'Link contribution', 'If the cursor is positioned on the first contribution to the discussion a link icon will appear on the left next to the date. If this is clicked using the right mouse button the link can be copied on this contribution in order to be able to insert it in another place.', 'BR', 0, 'DIV DIV A.permalink', 'plugins.php/blubber/streams/global', '', '', '', 1405508281, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 1, 'OER Campus', 'Der OER Campus ist neu in Stud.IP 5. Hier können Lernmaterialien gesucht, verwaltet und mit anderen geteilt werden.', 'B', 0, '', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 2, '', 'Lernmaterialien aus dem OER Campus können von hier aus direkt im Dateibereich einer Veranstaltung bereitgestellt werden.', 'B', 0, '', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 3, '', 'Um gezielt Lernmaterialien zu suchen, können Sie hier einen Suchbegriff eingeben.', 'B', 0, 'INPUT[name=search]', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 4, '', 'Ãœber die Filterfunktion können Sie die angezeigten Lernmaterialien weiter eingrenzen.', 'B', 0, '#layout_content FORM:eq(0) DIV:eq(0) DIV:eq(0) DIV:eq(0) BUTTON:eq(0)', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 5, '', 'Im Entdeckermodus finden Sie Lernmaterial nach Schlagwörtern und Themen geordnet.', 'L', 0, '#layout_content FORM:eq(0) DIV:eq(3) DIV:eq(0) DIV:eq(0) DIV:eq(1)', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 6, '', 'Wenn Sie selbst Lernmaterial erstellt haben, das Sie anderen zur Verfügung stellen möchten, können Sie es hier hochladen.', 'R', 0, 'div.sidebar-widget A:eq(0)', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 7, '', 'Ihr hochgeladenes Lernmaterial können Sie im Bereich \"Meine Materialien\" verwalten. Nutzen Sie den Entwurfsmodus, wenn Sie Ihr Material noch nicht veröffentlichen wollen.', 'B', 0, '#nav_oer_mymaterial A:eq(0)', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 1, 'Möchten Sie sehen was in Stud.IP 5 neu ist?', '', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 2, '', 'Der OER Campus ermöglicht das Teilen und Finden von freien Lehr- und Lernmaterialien.', 'B', 0, '#nav_oer A:eq(0) IMG:eq(0)', 'dispatch.php/start', '', '', 'dozent@studip.de', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 3, '', '\"Mein Arbeitsplatz\" ersetzt und erweitert den Punkt \"Tools\" der früheren Stud.IP-Versionen. Hier finden Sie jetzt Ihre Fragebögen, Ankündigungen, Evaluationen und Dateien sowie Courseware und ggf. Zugang zu ILIAS.', 'B', 0, '#nav_contents A:eq(0) IMG:eq(0)', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 4, '', 'Sie können sich Ihre belegten Veranstaltungen jetzt auch in einer übersichtlichen Kacheldarstellung anzeigen lassen. Die ist besonders gut für Smartphones geeignet.', 'B', 0, '.sidebar-views:eq(1)', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 5, '', 'In Veranstaltungen finden Sie Optionen für Literatur nun im Dateibereich. Nachrichten lassen sich gleichzeitig an mehrere Gruppen versenden.', 'B', 0, '', 'dispatch.php/my_courses', '', '', 'root@localhost', 1630577268, 1630577268); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 6, '', 'Das waren nur die wichtigsten Änderungen. Stud.IP 5 enthält noch zahlreiche weitere Verbesserungen, die Ihnen die Arbeit hoffentlich etwas erleichtern. Schreiben Sie Feedback gerne an die Entwicklungscommunity unter feedback@studip.de', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 1, 'Profile tour', 'This tour provides a general overview of the profile page\'s structure.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'T', 0, '', 'dispatch.php/profile', '', '', '', 1406722657, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 2, 'Personal picture', 'If you uploaded a picture, it will be displayed here. You can change it at all times.', 'RT', 0, '.avatar-normal', 'dispatch.php/profile', '', '', '', 1406722657, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 3, 'Stud.IP-Score', 'The Stud.IP-Score increases with the activities in Stud.IP and thus represents the experience with Stud.IP.', 'BL', 0, '#layout_content TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) A:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 4, 'Announcements', 'You can publish personal announcements on this site.', 'B', 0, '#layout_content SECTION HEADER H1 :eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 5, 'New announcement', 'Click on the plus sign, if you would like to create an announcement.', 'BR', 0, '#layout_content SECTION HEADER NAV A :eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 6, 'Personal details', 'Your picture and additional user data can be changed on these sites.', 'BL', 0, '#tabs li:eq(2)', 'dispatch.php/profile', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('e41611616675b218845fe9f55bc11cf6', 1, 'Profile', 'This tour shows how to upload a picture in the profile page.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'B', 0, '', 'dispatch.php/profile', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('e41611616675b218845fe9f55bc11cf6', 2, 'Upload a picture', 'A profile picture can be uploaded on this site.', 'BL', 0, '#nav_profile_avatar A SPAN', 'dispatch.php/settings/avatar', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('e41611616675b218845fe9f55bc11cf6', 3, 'Select picture', 'A image file can be uploaded for this purpose.', 'L', 0, 'input[name=imgfile]', 'dispatch.php/settings/avatar', '', '', '', 1406722657, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('e41611616675b218845fe9f55bc11cf6', 4, 'Requirements', 'The image file must be available in **.jpg**, **.png** or **.gif** format.\n\nThe document size must not exceed 700 KB.', 'L', 0, '#layout_content #edit_avatar TBODY TR TD FORM B :eq(2)', 'dispatch.php/settings/avatar', '', '', '', 1406722657, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 4, 'Announcements', 'You can publish personal announcements on this site.', 'B', 0, '#layout_content ARTICLE:eq(0) HEADER:eq(0) H1:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 5, 'New announcement', 'Click on the plus sign, if you would like to create an announcement.', 'BR', 0, '#layout_content ARTICLE:eq(0) HEADER:eq(0) NAV:eq(0) A:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 6, 'Personal details', 'Your picture and additional user data can be changed on these sites.', 'B', 0, '#tabs li:eq(2)', 'dispatch.php/profile', '', '', 'dozent@studip.de', 1406722657, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 1, 'Teilnehmerverwaltung', 'Diese Tour gibt einen Ãœberblick über die Teilnehmerverwaltung einer Veranstaltung.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'B', 0, '', 'dispatch.php/course/members', '', '', '', 1405688399, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 2, 'Personen eintragen', 'Mit diesen Funktionen können entweder einzelne Personen in Stud.IP gesucht und direkt mit dem Status Dozent, Tutor oder Autor eintragen werden. Es ist auch möglich eine Teilnehmerliste einzugeben, um viele Personen auf einmal als TutorIn der Veranstaltung zuzuordnen.', 'R', 0, '#layout-sidebar SECTION DIV.sidebar-widget :eq(1)', 'dispatch.php/course/members', '', '', '', 1405688707, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 2, 'Personen eintragen', 'Mit diesen Funktionen können entweder einzelne Personen in Stud.IP gesucht und direkt mit dem Status Dozent, Tutor oder Autor eintragen werden. Es ist auch möglich eine Teilnehmerliste einzugeben, um viele Personen auf einmal als TutorIn der Veranstaltung zuzuordnen.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'dispatch.php/course/members', '', '', '', 1405688707, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 3, 'Hochstufen / Herabstufen', 'Um eine bereits eingetragene Person zum/zur TutorIn hochzustufen oder zum/zur LeserIn herabzustufen, wählen Sie diese Person in der Liste aus und führen Sie mit Hilfe des Dropdown-Menü die gewünschte Aktion aus.', 'T', 0, '#autor CAPTION', 'dispatch.php/course/members', '', '', '', 1405690324, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 4, 'Rundmail verschicken', 'Hier kann eine Rundmail an alle Teilnehmende der Veranstaltung verschickt werden.', 'R', 0, '#layout-sidebar SECTION DIV DIV UL LI A :eq(3)', 'dispatch.php/course/members', '', '', '', 1406636964, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 5, 'Rundmail an Nutzergruppe versenden', 'Weiterhin besteht die Möglichkeit eine Rundmail an einzelne Nutzergruppen zu versenden.', 'BR', 0, '#layout_container #layout_content TABLE CAPTION SPAN A IMG :eq(0)', 'dispatch.php/course/members', '', '', '', 1406637123, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 6, 'Gruppen erstellen', 'Hier können die TeilnehmerInnen der Veranstaltung in Gruppen eingeteilt werden.', 'R', 0, 'A#nav_course_edit_groups', 'dispatch.php/course/members', '', '', '', 1405689311, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 7, 'Gruppe benennen', 'Sie können in den Vorlagen nach einem passenden Gruppennamen suchen und ihn mit dem gelben Doppelpfeil auswählen. Alternativ haben Sie auch die Möglichkeit, einen neuen Gruppennamen zu bestimmen, indem Sie im rechten Feld den Namen direkt eintragen.', 'B', 0, 'SELECT', 'admin_statusgruppe.php', '', '', '', 1405689541, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 8, 'Gruppengröße', 'Mit dem Feld \"Gruppengröße\" können Sie die maximale Anzahl der Teilnehmer einer Gruppe festlegen. Wenn Sie dies nicht benötigen, lassen Sie das Feld einfach leer.', 'B', 0, 'INPUT#role_size', 'admin_statusgruppe.php', '', '', '', 1405689763, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 9, 'Selbsteintrag', 'Wenn Sie die Funktion \"Selbsteintrag\" aktivieren, können sich die Teilnehmenden der Veranstaltung selbst in die Gruppen eintragen.', 'B', 0, 'INPUT#self_assign', 'admin_statusgruppe.php', '', '', '', 1405689852, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 10, 'Dateiordner', 'Wenn Sie die Funktion \"Dateiordner\" aktivieren, wird zusätzlich ein Dateiordner pro Gruppe neu angelegt. In diesen Ordner können gruppenspezifische Dateien hochgeladen werden.', 'B', 0, 'INPUT#group_folder', 'admin_statusgruppe.php', '', '', '', 1405689936, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 4, 'Rundmail verschicken', 'Hier kann eine Rundmail an alle Teilnehmende der Veranstaltung verschickt werden.', 'R', 0, '#link-71a939b1cddd28322f902cdfbc330250 A:eq(0)', 'dispatch.php/course/members', '', '', 'dozent@studip.de', 1406636964, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 5, 'Rundmail an Nutzergruppe versenden', 'Weiterhin besteht die Möglichkeit eine Rundmail an einzelne Nutzergruppen zu versenden.', 'BR', 0, '#autor CAPTION:eq(0) SPAN:eq(0) A:eq(0) IMG:eq(0)', 'dispatch.php/course/members', '', '', '', 1406637123, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 1, 'Was ist Blubbern?', 'Diese Tour gibt Ihnen einen Ãœberblick über die wichtigsten Funktionen von \"Blubber\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'plugins.php/blubber/streams/global', '', '', '', 1405507364, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 2, 'Beitrag erstellen', 'Hier kann eine Diskussion durch Schreiben von Text begonnen werden. Absätze lassen sich durch Drücken von Umschalt+Eingabe erzeugen. Der Text wird durch Drücken von Eingabe abgeschickt.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405507478, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 3, 'Text gestalten', 'Der Text kann formatiert und mit Smileys versehen werden.\r\nEs können die üblichen Formatierungen verwendet werden, wie z. B. **fett** oder %%kursiv%%.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405508371, 0); @@ -968,194 +1002,227 @@ INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 7, 'Schlagwortwolke', 'Durch Anklicken eines Schlagwortes werden alle Beiträge aufgelistet, die dieses Schlagwort enthalten.', 'RT', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(1)', 'plugins.php/blubber/streams/global', '', '', '', 1405508505, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 8, 'Beitrag ändern', 'Wird der Mauszeiger auf einem beliebigen Beitrag positioniert, erscheint dessen Datum. Bei eigenen Beiträgen erscheint außerdem rechts neben dem Datum ein Icon, mit dem der Beitrag nachträglich geändert werden kann.', 'BR', 0, 'DIV DIV A SPAN.time', 'plugins.php/blubber/streams/global', '', '', '', 1405507901, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 9, 'Beitrag verlinken', 'Wird der Mauszeiger auf dem ersten Diskussionsbeitrag positioniert, erscheint links neben dem Datum ein Link-Icon. Wenn dieses mit der rechten Maustaste angeklickt wird, kann der Link auf diesen Beitrag kopiert werden, um ihn an anderer Stelle einfügen zu können.', 'BR', 0, 'DIV DIV A.permalink', 'plugins.php/blubber/streams/global', '', '', '', 1405508281, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 1, 'Functions and design possibilities of the start page', 'This tour provides an overview of the start page\'s features and functions.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'dispatch.php/start', '', '', '', 1405934926, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 1, 'Functions and design possibilities of the start page', 'This tour provides an overview of the start page\'s features and functions.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1405934926, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 2, 'Individual design of the start page', 'The default configuration of the start page is that the elements \"Quicklinks\", \"announcements\", \"my current appointments\" and \"surveys\" are displayed. The elements are called widgets and can be deleted, added and moved. Each widget can be individually added, deleted and moved.', 'TL', 0, '', 'dispatch.php/start', '', '', '', 1405934970, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 3, 'Add widget', 'Widgets can be added here. In addition to the standard widgets the personal timetable can, for example, be displayed on the start page. Newly added widgets appear right at the bottom on the start page. In addition, it is possible to jump directly to each widget in the sidebar.', 'R', 0, '#layout-sidebar SECTION DIV DIV UL LI :eq(4)', 'dispatch.php/start', '', '', '', 1405935192, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 4, 'Jump labels', 'In addition, it is possible to jump directly to each widget using jump labels.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(0)', 'dispatch.php/start', '', '', '', 1406623464, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 3, 'Add widget', 'Widgets can be added here. In addition to the standard widgets the personal timetable can, for example, be displayed on the start page. Newly added widgets appear right at the bottom on the start page. In addition, it is possible to jump directly to each widget in the sidebar.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0)', 'dispatch.php/start', '', '', '', 1405935192, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 4, 'Jump labels', 'In addition, it is possible to jump directly to each widget using jump labels.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(2) DIV:eq(0)', 'dispatch.php/start', '', '', '', 1406623464, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 5, 'Position widget', 'A widget can be moved to the desired position using drag&drop: For this purpose you click into the headline of a widget, hold down the mouse button, and drag the widget to the desired position.', 'B', 0, '.widget-header', 'dispatch.php/start', '', '', '', 1405935687, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 6, 'Edit widget', 'With several widgets a further symbol is displayed in addition to the X for closing. The widget \"Quicklinks\", for example, can be adjusted individually by clicking on this button, the announcements can be subscribed to and appointments can be added with the actual appointments or timetable.', 'L', 0, '#layout_content DIV UL DIV SPAN A IMG :eq(0)', 'dispatch.php/start', '', '', '', 1405935792, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 6, 'Edit widget', 'With several widgets a further symbol is displayed in addition to the X for closing. The widget \"Quicklinks\", for example, can be adjusted individually by clicking on this button, the announcements can be subscribed to and appointments can be added with the actual appointments or timetable.', 'L', 0, '#widget-8', 'dispatch.php/start', '', '', '', 1405935792, 0); INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 7, 'Remove widget', 'Each widget can be removed by clicking on the X in the right upper corner. If required, it can be added again at all times.', 'R', 0, '.widget-header', 'dispatch.php/start', '', '', '', 1405935376, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 1, 'Help tour \"My courses\"', 'This tour provides an overview of the functionality of \"My courses\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1405521184, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 2, 'Overview of courses', 'The courses of the current and past semester are displayed here. New courses initially appear in red.', 'T', 0, '#my_seminars TABLE THEAD TR TH :eq(2)', 'dispatch.php/my_courses', '', '', '', 1405521244, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 3, 'Course details', 'With a click on the \"i\" a window appears with the most important benchmark data of the course.', 'T', 0, '#my_seminars TABLE THEAD TR TH :eq(3)', 'dispatch.php/my_courses', '', '', '', 1405931069, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 4, 'Course contents', 'All contents (such as e.g. a forum) are displayed by corresponding symbols here.\n\nIf there were any news since the last login these will appear in red.', 'LT', 0, '#my_seminars TABLE THEAD TR TH :eq(4)', 'dispatch.php/my_courses', '', '', '', 1405931225, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 5, 'Leaving the course', 'A click on the door icon enables a direct removal from the course', 'TR', 0, '#my_seminars TABLE THEAD TR TH :eq(5)', 'dispatch.php/my_courses', '', '', '', 1405931272, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 6, 'Access to archived courses', 'If courses have been archived, they can be accessed here.', 'RT', 0, 'A#nav_browse_archive', 'dispatch.php/my_courses', '', '', '', 1405931431, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 7, 'Adjustment to the course view', 'In order to adjust the course overview you can arrange your courses according to certain criteria (such as e.g. fields of study, lecturers or colours).', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(2)', 'dispatch.php/my_courses', '', '', '', 1405932131, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 8, 'Access to an course of past and future semesters', 'By clicking on the drop-down menu courses from past semesters can be displayed for example.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(3)', 'dispatch.php/my_courses', '', '', '', 1405932230, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 9, 'Further possible actions', 'Here you can mark all news as read, change colour groups as you please, or\n\nalso adjust the notifications about activities in the individual events.', 'R', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(1)', 'dispatch.php/my_courses', '', '', '', 1405932320, 0); -INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 10, 'Study groups and institutes', 'There is moreover the possibility to access personal study groups or institutes.', 'R', 0, '#nav_browse_my_institutes A', 'dispatch.php/my_courses', '', '', '', 1405932519, 0); - --- --- Dumping data for table `loginbackgrounds` --- - -INSERT INTO `loginbackgrounds` (`background_id`, `filename`, `mobile`, `desktop`, `in_release`) VALUES(1, 'Login-Hintergrund.jpg', 0, 1, 1); -INSERT INTO `loginbackgrounds` (`background_id`, `filename`, `mobile`, `desktop`, `in_release`) VALUES(2, 'Login-Hintergrund-mobil.jpg', 1, 0, 1); - --- --- Dumping data for table `log_actions` --- - -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('005df8d5eb23c66214b28b3c9792680b', 'SEM_CHANGED_ACCESS', 'Zugangsberechtigungen geändert', '%user ändert die Zugangsberechtigungen der Veranstaltung %sem(%affected).', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('00af9c41fc56b617097bdef1e7dca397', 'MVV_FACHINST_NEW', 'MVV: Fach-Einrichtung Zuweisung erstellen', '%user weist das Fach %fach(%affected) der Einrichtung %inst(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('04061e4d13b416e10d6094679e7c9d9c', 'MVV_MODULTEIL_DEL', 'MVV: Modulteil löschen', '%user löscht Modulteil %modulteil(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('060390e972f9580ab92c7febb99fb2fa', 'MVV_LVSEMINAR_NEW', 'MVV: LV-Gruppe zu Veranstaltung Zuweisung erstellen', '%user weist der LV-Gruppe %lvgruppe(%affected) der Veranstaltung %sem(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('07c384b8328f56a33b4edb2570e85a48', 'MVV_MODULTEIL_DESK_NEW', 'MVV: Modulteil Deskriptor erstellen', '%user erstellt neuen Modulteil Deskriptor %modulteildesk(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('08a643645ddb5d3df5826d9fa863f665', 'MVV_STGTEILABS_NEW', 'MVV: Studiengangteilabschnitt erstellen', '%user erstellt neuen Studiengangteilabschnitt %stgteilabs(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('0966a73e85ac73c64818cc6eae4be09e', 'MVV_MODUL_USER_DEL', 'MVV: Person zu Modul Zuweisung löschen', '%user löscht die Zuweisung von %user(%coaffected) als %gruppe zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('0a3d58fbc0964ed9d85950e4d729715d', 'MVV_STUDIENGANG_NEW', 'MVV: Studiengang erstellen', '%user erstellt neuen Studiengang %stg(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('0d87c25b624b16fb9b8cdaf9f4e96e53', 'INST_CREATE', 'Einrichtung anlegen', '%user legt Einrichtung %inst(%affected) an.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('0e46eec26da0b0217280e8be4b26227b', 'MVV_ABS_ZUORD_DEL', 'MVV: Abschluss-Kategorien Zuweisung löschen', '%user löscht die Zuweisung des Abschlusses %abschluss(%affected) zur Kategorie %abskategorie(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('0ee290df95f0547caafa163c4d533991', 'SEM_VISIBLE', 'Veranstaltung sichtbar schalten', '%user schaltet %sem(%affected) sichtbar.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('0ef58f0b0a97d83616efc6e9479c522e', 'MVV_FACHBERATER_DEL', 'MVV: Person zu Fach Zuweisung löschen', '%user löscht die Zuweisung von %user(%coaffected) zum Studiengangteil %stgteil(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('10916a5a08ca16bfd055e4823311377a', 'MVV_DOK_ZUORD_DEL', 'MVV: Dokumentzuordnung löschen', '%user löscht die Zuweisung des Dokumentes %dokument(%affected) zu %object_type(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('10c31be1aec819c03b0dc299d0111576', 'CHANGE_BASIC_DATA', 'Basisdaten geändert', '%user hat in Veranstaltung %sem(%affected) die Daten %info geändert.', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('10c320bc80022f1ff1381857af46f474', 'SEM_DEL_FROM_GROUP', 'Veranstaltung aus Gruppe entfernen', '%user entfernt Veranstaltung %sem(%affected) aus der Gruppe %sem(%coaffected).', 1, 0, NULL, NULL, 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('13b5297079e1600ccc3ca6f49081099f', 'MVV_STG_STGTEIL_DEL', 'MVV: Studiengang zu Studiengangteil Zuweisung löschen', '%user löscht die Zuweisung des Studienganges %stg(%affected) zum Studiengangteil %stgteil(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('157f75beb242c7de8ff790d4005a259e', 'MVV_FACH_DEL', 'MVV: Fach löschen', '%user löscht Fach %fach(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('1585bb70e5e403fd818e59bb622db4a3', 'STATUSGROUP_ADD_USER', 'Nutzer wird zu einer Statusgruppe hinzugefügt', '%user fügt %user(%affected) zur %group(%coaffected) hinzu.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('17f0a527e9db7dec09687a70681559cf', 'RES_ASSIGN_DEL_SINGLE', 'Direktbuchung löschen', '%user löscht Direktbuchung für %res(%affected) (%info).', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('1a1e8c9c3125ea8d2c58c875a41226d6', 'INST_DEL', 'Einrichtung löschen', '%user löscht Einrichtung %info (%affected).', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('1a27a101df926fafce35635f0dd72522', 'MVV_MODULTEIL_NEW', 'MVV: Modulteil erstellen', '%user erstellt neuen Modulteil %modulteil(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('1e6debdbfd7a7aeef2dcb61fa65beddd', 'MVV_ABSCHLUSS_DEL', 'MVV: Abschluss löschen', '%user löscht Abschluss %abschluss(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('1eb6597264fc19da6b48f519c3e47078', 'MVV_MODUL_DESK_DEL', 'MVV: Modul Deskriptor löschen', '%user löscht Modul Deskriptor %moduldesk(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('23f50ebeab22138bc959f27111ae5ab0', 'MVV_STG_STGTEIL_NEW', 'MVV: Studiengang zu Studiengangteil Zuweisung erstellen', '%user weist den Studiengang %stg(%affected) dem Studiengangteil %stgteil(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('23f7a87368df1132df137e7d320fa698', 'MVV_LVMODULTEIL_NEW', 'MVV: LV-Gruppe zu Modulteil Zuweisung erstellen', '%user weist der LV-Gruppe %lv(%affected) den Modulteil %modulteil(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('2420da2946df66a5ad96c6d45e97d5b9', 'SEM_ADD_STUDYAREA', 'Studienbereich zu Veranst. hinzufügen', '%user fügt Studienbereich \"%studyarea(%coaffected)\" zu %sem(%affected) hinzu.', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('248f54105b7102e5cbcc36e9439504fb', 'STUDYAREA_ADD', 'Studienbereich hinzufügen', '%user legt Studienbereich %studyarea(%affected) an.', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('292b1cf6c0b46d7038baa75e0b273299', 'MVV_MODUL_DEL', 'MV: Modul löschen', '%user löscht Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('293a742d791a1edbaaa738f8991aeb7b', 'MVV_LVSEMINAR_UPDATE', 'MVV: LV-Gruppe zu Veranstaltung Zuweisung ändern', '%user ändert die Zuweisung der LV-Gruppe %lvgruppe(%affected) zur Veranstaltung %sem(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('2dd254c28cac83c59856fe89500e3bc3', 'MVV_STGTEILABS_MODUL_DEL', 'MVV: Stgteilabschnitt-Modul Zuweisung löschen', '%user löscht die Zuweisung des Studiengangteilabschnitts %stgteilabs(%affected) zum Modul %modul(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('2e816bfd792e4a99913f11c04ad49198', 'SEM_UNDELETE_SINGLEDATE', 'Einzeltermin wiederherstellen', '%user stellt Einzeltermin %singledate(%affected) in %sem(%coaffected) wieder her.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('30dfb509cb1a8e228af3bd17dd6c8d1d', 'RES_ASSIGN_SEM', 'Buchen einer Ressource (VA)', '%user bucht %res(%affected) für %sem(%coaffected) (%info).', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('31fd4549853915608facb8c3e2b101d6', 'MVV_STGTEIL_DEL', 'MVV: Studiengangteil löschen', '%user löscht Studiengangteil %stgteil(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('347738302758bea951248b255409fa85', 'MVV_KATEGORIE_UPDATE', 'MVV: Abschluss-Kategorie ändern', '%user ändert Abschluss-Kategorie %abskategorie(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) 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); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('3861d5249b8fe7f2be57adfda8944f4d', 'MVV_LVGRUPPE_UPDATE', 'MVV: LV-Gruppe ändern', '%user ändert LV-Gruppe %lvgruppe(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) 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'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) 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); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) 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'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('40455e06f6a679cd87c68c375c9dfa5a', 'MVV_STGTEILBEZ_DEL', 'MVV: Studiengangteil-Bezeichnung löschen', '%user löscht Studiengangteil-Bezeichnung %stgteilbez(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('428c09d5a31b1057b08ca5e3b3877109', 'MVV_FACHBERATER_UPDATE', 'MVV: Person zu Fach Zuweisung ändern', '%user ändert die Zuweisung von %user(%coaffected) zum Studiengangteil %stgteil(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('42b01c873e3066a840ab3237e3aa0911', 'RES_PERM_CHANGE', 'Änderung der Berechtigungsstufe an einer Ressource.', NULL, 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('447d6ae1b51b97b04f7ae290c6b002d7', 'MVV_DOKUMENT_DEL', 'MVV: Dokument löschen', '%user löscht Dokument %dokument(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('4490aa3d29644e716440fada68f54032', 'LOG_ERROR', 'Allgemeiner Log-Fehler', 'Allgemeiner Logging-Fehler, Details siehe Debug-Info.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('46bc7faabfc73864998b561b1011e3fe', 'RES_REQUEST_UPDATE', 'Geänderte Raumanfrage', '%user ändert Raumanfrage für %sem(%affected), gewünschter Raum: %res(%coaffected), %info', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('4765700be65e3fe1c12e7d74a2579bed', 'MVV_MODULINST_UPDATE', 'MVV: Modul-Einrichtung Beziehung ändern', '%user ändert die Zuweisung der Einrichtungen %inst(%coaffected) zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('47c4f06ce3de71213b69d8d0f8d24f8e', 'MVV_MODUL_LANG_NEW', 'MVV: Sprache zu Modul Zuweisung erstellen', '%user weist dem Modul %modul(%affected) die Unterrichtssprache %language(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('4869cd69f20d4d7ed4207e027d763a73', 'INST_USER_STATUS', 'Einrichtungsnutzerstatus ändern', '%user ändert Status für %user(%coaffected) in Einrichtung %inst(%affected): %info.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('494b5df89948da383d087107d4c0bbec', 'MVV_LVSEMINAR_DEL', 'MVV: LV-Gruppe zu Veranstaltung Zuweisung löschen', '%user löscht die Zuweisung der LV-Gruppe %lvgruppe(%affected) zur Veranstaltung %sem(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('499a15daf534b3d810e6b9bac9a00d3e', 'MVV_MODUL_USER_NEW', 'MVV: Person zu Modul Zuweisung erstellen', '%user weist dem Modul %modul(%affected) %user(%coaffected) als %gruppe zu.', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('49d58ac93d608d731696eb75b29a1836', 'MVV_FACH_NEW', 'MVV: Fach erstellen', '%user erstellt neues Fach %fach(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('4b08c6b8539466a1f1968b44ec2996ed', 'MVV_LVMODULTEIL_DEL', 'MVV: LV-Gruppe zu Modulteil Zuweisung löschen', '%user löscht die Zuweisung der LV-Gruppe %lv(%affected) zum Modulteil %modulteil(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('4dd6b4101f7bf3bd7fe8374042da95e9', 'USER_NEWPWD', 'Neues Passwort', '%user generiert neues Passwort für %user(%affected)', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) 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'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) 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); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('566a614092e9f502d9340467ecef59d1', 'MVV_STGTEILVERSION_UPDATE', 'MVV: Studiengangteilversion ändern', '%user ändert Studiengangteilversion %version(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('5a34b0ea6a824f96c0117a035d1cf9e9', 'MVV_DOKUMENT_UPDATE', 'MVV: Dokument ändern', '%user ändert Dokument %dokument(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('5b96f2fe994637253ba0fe4a94ad1b98', 'SEM_ARCHIVE', 'Veranstaltung archivieren', '%user archiviert %info (ID: %affected).', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) 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); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) 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'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) 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); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('65c495cf5d5fcd7af862106bf13cff23', 'MVV_STGTEIL_UPDATE', 'MVV: Studiengangteil ändern', '%user ändert Studiengangteil %stgteil(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('687433f4cf1b36cb93ad417738236484', 'MVV_STGTEILABS_UPDATE', 'MVV: Studiengangteilabschnitt ändern', '%user ändert Studiengangteilabschnitt %stgteilabs(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('6be59dcd70197c59d7bf3bcd3fec616f', 'INST_USER_DEL', 'Benutzer aus Einrichtung löschen', '%user löscht %user(%coaffected) aus Einrichtung %inst(%affected).', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('6c5d5ed836c464be1c5547adcec3eae0', 'MVV_MODULTEIL_LANG_UPDATE', 'MVV: Sprache zu Modulteil Zuweisung ändern', '%user ändert die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modulteil %modulteil(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('6e2b789a57b9125af59c0273f5b47cb1', 'SEM_USER_DEL', 'Aus Veranstaltung ausgetragen', '%user hat %user(%coaffected) aus %sem(%affected) ausgetragen. (%info)', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('6f4bb66c1caf89879d89f3b1921a93dd', 'SEM_DELETE_CYCLE', 'Regelmäßige Zeit gelöscht', '%user hat in %sem(%affected) die regelmäßige Zeit %info gelöscht.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('71bfea5eb0d9a85d1247b83383ac5b7e', 'MVV_MODUL_DESK_NEW', 'MVV: Modul Deskriptor erstellen', '%user erstellt neuen Modul Deskriptor %moduldesk(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('754708c8c0c61a916855c5031014acbb', 'SEM_DELETE_STUDYAREA', 'Studienbereich aus Veranst. löschen', '%user entfernt Studienbereich \"%studyarea(%coaffected)\" aus %sem(%affected).', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('770f76504dcbbfa6bdc51a8c0f6df4b2', 'MVV_STGTEILABS_DEL', 'MVV: Studiengangteilabschnitt löschen', '%user löscht Studiengangteilabschnitt %stgteilabs(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('7d26ffbf73103601966f7517e40d7e66', 'RES_REQUEST_NEW', 'Neue Raumanfrage', '%user stellt neue Raumanfrage für %sem(%affected), gewünschter Raum: %res(%coaffected), %info', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('7d37d874592eea50eef5239fb7b8e3d7', 'MVV_MODULTEIL_LANG_DEL', 'MVV: Sprache zu Modulteil Zuweisung löschen', '%user löscht die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modulteil %modulteil(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('7f2ec1cbf988eee849de7cfa031b68f9', 'MVV_STGTEILVERSION_DEL', 'MVV: Studiengangteilversion löschen', '%user löscht Studiengangteilversion %version(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('7f335b5d0d9f8d37652718cb89937b38', 'MVV_STGTEIL_NEW', 'MVV: Studiengangteil erstellen', '%user erstellt neuen Studiengangteil %stgteil(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('8216cba6119cf4a4de82ec3ce8ac51b7', 'MVV_MODUL_USER_UPDATE', 'MVV: Person zu Modul Zuweisung ändern', '%user ändert die Zuweisung von %user(%coaffected) als %gruppe zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('89114dcd6f02dd7f94488a616c21a7c3', 'PLUGIN_ENABLE', 'Plugin einschalten', '%user hat in Veranstaltung %sem(%affected) das Plugin %plugin(%coaffected) aktiviert.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('897207a36c411d736947052219624b72', 'USER_CHANGE_PASSWORD', 'Nutzerpasswort geändert', '%user ändert/setzt das Passwort für %user(%affected)', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('8aad296e52423452fc75cabaf2bee384', 'USER_CHANGE_USERNAME', 'Benutzernamen ändern', '%user ändert/setzt Benutzernamen für %user(%affected): %info.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('8f87cf1a8546e9671244fba1ac51e805', 'MVV_LVGRUPPE_DEL', 'MVV: LV-Gruppe löschen', '%user löscht LV-Gruppe %lvgruppe(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('9123d360316ba28ddb32c0ed1a0320f2', 'STUDYAREA_DELETE', 'Studienbereich löschen', '%user entfernt Studienbereich %studyarea(%affected).', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('91251b5768b312ca23d6721cdc99a005', 'MVV_KATEGORIE_NEW', 'MVV: Abschluss-Kategorie erstellen', '%user erstellt neue Abschluss-Kategorie %abskategorie(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('9179d3cf4e0353f9874bcde072d12b30', 'RES_REQUEST_DENY', 'Abgelehnte Raumanfrage', '%user lehnt Raumanfrage für %sem(%coaffected), Raum %sem(%affected) ab.', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('95935c7997427ea42a3dd6be05b51e81', 'MVV_MODULTEIL_UPDATE', 'MVV: Modulteil ändern', '%user ändert Modulteil %modulteil(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('997cf01328d4d9f36b9f50ac9b6ace47', 'SEM_DELETE_SINGLEDATE', 'Einzeltermin löschen', '%user löscht Einzeltermin %singledate(%affected) in %sem(%coaffected).', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('9a7a5112de76fa0b8bd8910174d5f107', 'MVV_STGTEILBEZ_UPDATE', 'MVV: Studiengangteil-Bezeichnung ändern', '%user ändert Studiengangteil-Bezeichnung %stgteilbez(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('9d13643a1833c061dc3d10b4fb227f12', 'SEM_SET_ENDSEMESTER', 'Semesterlaufzeit ändern', '%user hat in %sem(%affected) die Laufzeit auf %semester(%coaffected) geändert', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('9d642dc93540580d42ba2ea502c3fbf6', 'SINGLEDATE_CHANGE_TIME', 'Einzeltermin bearbeiten', '%user hat in %sem(%affected) den Einzeltermin %coaffected geändert.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('9ed46a3ca3d4f43e17f91e314224dcae', 'SEM_CHANGE_CYCLE', 'Regelmäßige Zeit geändert', '%user hat in %sem(%affected) die regelmäßige Zeit %info geändert', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('9eea9c8ec3fa6916fae974559f3a6e64', 'MVV_STGTEILABS_MODUL_UPDATE', 'MVV: Stgteilabschnitt-Modul Zuweisung ändern', '%user ändert die Zuweisung des Studiengangteilabschnitts %stgteilabs(%affected) zum Modul %modul(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('a06bd1ca1b5eec038c079042eb25acb0', 'MVV_DOKUMENT_NEW', 'MVV: Dokument erstellen', '%user erstellt neues Dokument %dokument(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('a0928e74639fd2a55f5d4d2a3c5a8e71', 'RES_REQUEST_DEL', 'Raumanfrage löschen', '%user löscht Raumanfrage für %sem(%affected).', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('a0b8799fa671e0ce6069483e0c4b5123', 'MVV_ABS_ZUORD_NEW', 'MVV: Abschluss-Kategorien Zuweisung erstellen', '%user weist den Abschluss %abschluss(%affected) der Kategorie %abskategorie(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('a3856b6531e2f79d158b5ebfb998e5db', 'RES_ASSIGN_DEL_SEM', 'VA-Buchung löschen', '%user löscht Ressourcenbelegung für %res(%affected) in Veranstaltung %sem(%coaffected), %info.', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('a3db2d066861fd1cf1d532d2a736d495', 'MVV_STUDIENGANG_DEL', 'MVV: Studiengang löschen', '%user löscht Studiengang %stg(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('a66c9e04e9c41bf5cc4d23fa509a8667', 'PLUGIN_DISABLE', 'Plugin ausschalten', '%user hat in Veranstaltung %sem(%affected) das Plugin %plugin(%coaffected) deaktiviert.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('a92afa63584cc2a62d2dd2996727b2c5', 'USER_CREATE', 'Nutzer anlegen', '%user legt Nutzer %user(%affected) an.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('a94706b41493e32f8336194262418c01', 'SEM_INVISIBLE', 'Veranstaltung unsichtbar schalten', '%user versteckt %sem(%affected).', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('aa12de984598c527bfb8b118affaf34a', 'MVV_STG_STGTEIL_UPDATE', 'MVV: Studiengang zu Studiengangteil Zuweisung ändern', '%user ändert die Zuweisung des Studienganges %stg(%affected) zum Studiengangteil %stgteil(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('ad405d21c2e0df758ee8a61ed39901fe', 'MVV_LVMODULTEIL_UPDATE', 'MVV: LV-Gruppe zu Modulteil Zuweisung ändern', '%user ändert die Zuweisung der LV-Gruppe %lv(%affected) zum Modulteil %modulteil(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('b035ea1a197edc6271fafa4094f87a57', 'MVV_DOK_ZUORD_NEW', 'MVV: Dokumentzuordnung erstellen', '%user weist das Dokument %dokument(%affected) %object_type(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('b19d01e45715df05f4b060cd56dc204f', 'MVV_MODULTEIL_DESK_UPDATE', 'MVV: Modulteil Deskriptor ändern', '%user ändert Modulteil Deskriptor %modulteildesk(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('b205bde204b5607e036c10557a6ce149', 'SEM_SET_STARTSEMESTER', 'Startsemester ändern', '%user hat in %sem(%affected) das Startsemester auf %semester(%coaffected) geändert.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('b38ecbb1fddf6c3868a6a9a75bab8ef8', 'MVV_KATEGORIE_DEL', 'MVV: Abschluss-Kategorie löschen', '%user löscht Abschluss-Kategorie %abskategorie(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('b5e3e8401e7e92051c13ba7b46e28f75', 'MVV_STGTEILVERSION_NEW', 'MVV: Studiengangteilversion erstellen', '%user erstellt neue Studiengangteilversion %version(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('b8e940588cd8d5181774377586b85202', 'MVV_STGTEILBEZ_NEW', 'MVV: Studiengangteil-Bezeichnung erstellen', '%user erstellt neue Studiengangteil-Bezeichnung %stgteilbez(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('bace236af595612b77943bcb47a0a7fe', 'MVV_STUDIENGANG_UPDATE', 'MVV: Studiengang ändern', '%user ändert Studiengang %stg(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('bd2103035a8021942390a78a431ba0c4', 'DUMMY', 'Dummy-Aktion', '%user tut etwas.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('bd78090961a15a8010a566a6cd1355f2', 'MVV_DOK_ZUORD_UPDATE', 'MVV: Dokumentzuordnung ändern', '%user ändert die Zuweisung des Dokumentes %dokument(%affected) zu %object_type(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('bf192518a9c3587129ed2fdb9ea56f73', 'SEM_DELETE_FROM_ARCHIVE', 'Veranstaltung aus Archiv löschen', '%user löscht %info aus dem Archiv (ID: %affected).', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('c1d980ac5c5de271bd1471a11a3e37af', 'MVV_MODULINST_DEL', 'MVV: Modul-Einrichtung Beziehung löschen', '%user löscht die Zuweisung der Einrichtungen %inst(%coaffected) zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('c36fa0f804cde78a6dcb1c30c2ee47ba', 'SEM_DELETE_REQUEST', 'Raumanfrage gelöscht', '%user hat in %sem(%affected) die Raumanfrage für die gesamte Veranstaltung gelöscht.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('c4b1d3305d017935c8b6946996594172', 'MVV_FACH_UPDATE', 'MVV: Fach ändern', '%user ändert Fach %fach(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('c6a23a780aa2a219ddd0bb2445c19bf8', 'MVV_MODULTEIL_LANG_NEW', 'MVV: Sprache zu Modulteil Zuweisung erstellen', '%user weist dem Modulteil %modulteil(%affected) die Unterrichtssprache %language(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('ca216ccdf753f59ba7fd621f7b22f7bd', 'USER_CHANGE_NAME', 'Personennamen ändern', '%user ändert/setzt Name für %user(%affected) - %info.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('cbf93b2a248642289c2ad4b3d59b9d55', 'MVV_FACHINST_DEL', 'MVV: Fach-Einrichtung Zuweisung löschen', '%user löscht die Zuweisung des Faches %fach(%affected) zur Einrichtung %inst(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('cf8986a67e67ca273e15fd9230f6e872', 'USER_CHANGE_TITLE', 'Akademische Titel ändern', '%user ändert/setzt akademischen Titel für %user(%affected) - %info.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('d07c8b37c6d3e206cd012d07ba8028b1', 'SEM_CHANGED_RIGHTS', 'Veranstaltungsrechte geändert', '%user hat %user(%coaffected) in %sem(%affected) als %info eingetragen. (%dbg_info)', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('d18d750fb2c166e1c425976e8bca96e7', 'USER_CHANGE_EMAIL', 'E-Mail-Adresse ändern', '%user ändert/setzt E-Mail-Adresse für %user(%affected): %info.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('d1989a21fc77ffc34e705bb3dc215ebb', 'STATUSGROUP_REMOVE_USER', 'Nutzer wird aus einer Statusgruppe gelöscht', '%user entfernt %user(%affected) aus %group(%coaffected).', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('d4e99ffb6ffb32a20c0d9075bb73889d', 'MVV_ABS_ZUORD_UPDATE', 'MVV: Abschluss-Kategorien Zuweisung ändern', '%user ändert die Zuweisung des Abschlusses %abschluss(%affected) zur Kategorie %abskategorie(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('d8e863ca143ff87cce89f17b2e3b409e', 'MVV_ABSCHLUSS_UPDATE', 'MVV: Abschluss ändern', '%user ändert Abschluss %abschluss(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('dcd16239a49c367e37faf8ffe9ae0081', 'SEM_ADD_TO_GROUP', 'Veranstaltung zu Gruppe hinzufügen', '%user ordnet Veranstaltung %sem(%affected) der Gruppe %sem(%coaffected) zu.', 1, 0, NULL, NULL, 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('df41cc74f6fd857b1690e36dafa070a9', 'MVV_MODUL_LANG_DEL', 'MVV: Sprache zu Modul Zuweisung löschen', '%user löscht die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('e2c703a9167804463112284853b9545b', 'MVV_MODUL_UPDATE', 'MVV: Modul ändern', '%user ändert Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('e406e407501c8418f752e977182cd782', 'USER_CHANGE_PERMS', 'Globalen Nutzerstatus ändern', '%user ändert/setzt globalen Status von %user(%affected): %info', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('e5c0ecfea7d12ed95ea485d4ec18c9ae', 'MVV_MODUL_LANG_UPDATE', 'MVV: Sprache zu Modul Zuweisung ändern', '%user ändert die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('e694e86b2ec50bc0b99864acc947ed78', 'MVV_LVGRUPPE_NEW', 'MVV: LV-Gruppe erstellen', '%user erstellt neue LV-Gruppe %lvgruppe(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('e7449d98b8ca69d16f13c0a342a8db41', 'MVV_ABSCHLUSS_NEW', 'MVV: Abschluss erstellen', '%user erstellt neuen Abschluss %abschluss(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('e8423589894e5df742804e57f54fa5aa', 'MVV_MODULTEIL_STGTEILABS_UPDATE', 'MVV: Studiengangteilabschnitt zu Modulteil Zuweisung ändern', '%user ändert die Zuweisung des Modulteils %modulteil(%affected) im %fachsem. des Studiengangteilabschnitt %stgteilabs(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('e8646729e5e04970954c8b9679af389b', 'USER_DEL', 'Benutzer löschen', '%user löscht %user(%affected) (%info)', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('e8b1105ca4f2305ef0db6c961d2fbe4c', 'RES_ASSIGN_SINGLE', 'Buchen einer Ressource (Einzel)', '%user bucht %res(%affected) direkt (%info).', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('eac0850398466b86ec6af4068cff74ab', 'MVV_MODULTEIL_DESK_DEL', 'MVV: Modulteil Deskriptor löschen', '%user löscht Modulteil Deskriptor %modulteildesk(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('f363c6db07203dfcec893b1b8fc0eaee', 'MVV_FACHINST_UPDATE', 'MVV: Fach-Einrichtung Zuweisung ändern', '%user ändert die Zuweisung des Faches %fach(%affected) zur Einrichtung %inst(%coaffected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('f858b05c11f5faa2198a109a783087a8', 'SEM_CREATE', 'Veranstaltung anlegen', '%user legt %sem(%affected) an.', 1, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('f97335d7f45fd87a4e5e2c1d17f38dc0', 'MVV_MODUL_DESK_UPDATE', 'MVV: Modul Deskriptor ändern', '%user ändert Modul Deskriptor %moduldesk(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('fb550711e786f5d7d6a9ef8b4eb915f6', 'MVV_MODULINST_NEW', 'MVV: Modul-Einrichtung Beziehung erstellen', '%user weist dem Modul %modul(%affected) die Einrichtungen %inst(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('fc72d34ddb15a9819919fc42716830b3', 'MVV_MODUL_NEW', 'MVV: Modul erstellen', '%user erstellt neues Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core'); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('fd74339a9ea038d084569e33e2655b6a', 'CHANGE_INSTITUTE_DATA', 'Beteiligte Einrichtungen geändert', '%user hat in Veranstaltung %sem(%affected) die Daten geändert. %info', 0, 0, NULL, NULL, NULL); -INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`) VALUES('ff806b4b26f8bc8c3e65e29d14176cd9', 'RES_REQUEST_RESOLVE', 'Aufgelöste Raumanfrage', '%user löst Raumanfrage für %sem(%affected), Raum %res(%coaffected) auf.', 0, 0, NULL, NULL, NULL); - --- --- Dumping data for table `plugins` --- - -INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(1, 'Blubber', 'core/Blubber', 'Blubber', 'StandardPlugin,SystemPlugin', 'yes', 1, NULL, NULL, NULL); -INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(2, 'CoreForum', 'core/Forum', 'Forum', 'ForumModule,StandardPlugin,StudipModule', 'yes', 2, NULL, NULL, NULL); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 1, 'My courses', 'This tour provides an overview of the functionality of \"My courses\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1405521184, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 2, 'Overview of courses', 'The courses of the current and past semester are displayed here. New courses initially appear in red.', 'BL', 0, '#my_seminars TABLE:eq(0) CAPTION:eq(0)', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405521244, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 3, 'Course details', 'With a click on the \"i\" a window appears with the most important benchmark data of the course.', 'L', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405931069, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 4, 'Course contents', 'All contents (such as e.g. a forum) are displayed by corresponding symbols here.\n\nIf there were any news since the last login these will appear in red.', 'LT', 0, '#my_seminars .my-courses-navigation-item', 'dispatch.php/my_courses', '', '', '', 1405931225, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 5, 'Leaving the course', 'A click on the door icon enables a direct removal from the course', 'L', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405931272, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 6, 'Adjustment to the course view', 'In order to adjust the course overview you can arrange your courses according to certain criteria (such as e.g. fields of study, lecturers or colours).', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(11) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932131, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 7, 'Access to an course of past and future semesters', 'By clicking on the drop-down menu courses from past semesters can be displayed for example.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932230, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 8, 'Further possible actions', 'Here you can mark all news as read, change colour groups as you please, or\n\nalso adjust the notifications about activities in the individual events.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932320, 0); +INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 9, 'Study groups and institutes', 'There is moreover the possibility to access personal study groups or institutes.', 'R', 0, '#nav_browse_my_institutes A', 'dispatch.php/my_courses', '', '', '', 1405932519, 0); + +-- +-- Daten für Tabelle `licenses` +-- + +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC-BY-1.0', 'Creative Commons Attribution 1.0 Generic', 'https://creativecommons.org/licenses/by/1.0/legalcode', 0, NULL, 1640797278, 1640797278); +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC-BY-2.0', 'Creative Commons Attribution 2.0 Generic', 'https://creativecommons.org/licenses/by/2.0/legalcode', 0, NULL, 1640797278, 1640797278); +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC-BY-2.5', 'Creative Commons Attribution 2.5 Generic', 'https://creativecommons.org/licenses/by/2.5/legalcode', 0, NULL, 1640797278, 1640797278); +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC-BY-3.0', 'Creative Commons Attribution 3.0 Unported', 'https://creativecommons.org/licenses/by/3.0/legalcode', 0, NULL, 1640797278, 1640797278); +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC-BY-4.0', 'Creative Commons Attribution 4.0 International', 'https://creativecommons.org/licenses/by/4.0/legalcode', 0, NULL, 1640797278, 1640797278); +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC-BY-SA-1.0', 'Creative Commons Attribution Share Alike 1.0 Generic', 'https://creativecommons.org/licenses/by-sa/1.0/legalcode', 0, NULL, 1640797278, 1640797278); +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC-BY-SA-2.0', 'Creative Commons Attribution Share Alike 2.0 Generic', 'https://creativecommons.org/licenses/by-sa/2.0/legalcode', 0, NULL, 1640797278, 1640797278); +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC-BY-SA-2.5', 'Creative Commons Attribution Share Alike 2.5 Generic', 'https://creativecommons.org/licenses/by-sa/2.5/legalcode', 0, NULL, 1640797278, 1640797278); +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC-BY-SA-3.0', 'Creative Commons Attribution Share Alike 3.0 Unported', 'https://creativecommons.org/licenses/by-sa/3.0/legalcode', 0, NULL, 1640797278, 1640797278); +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC-BY-SA-4.0', 'Creative Commons Attribution Share Alike 4.0 International', 'https://creativecommons.org/licenses/by-sa/4.0/legalcode', 1, NULL, 1640797278, 1640797278); +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC-PDDC', 'Creative Commons Public Domain Dedication and Certification', 'https://creativecommons.org/licenses/publicdomain/', 0, 'Diese Lizenz ist nur sinnvoll, wenn Sie Material eintragen, das gemeinfrei ist. Gemeinfreie Materialien stammen von Autoren, die mindetens 80 Jahre tot sind, oder von Autoren, die im Ausland leben und ihre Werke unter die sogenannte Public Domain gestellt haben. Diese Lizenz ist nicht sinnvoll für Werke, bei denen ein Copyright besteht.', 1640797278, 1640797278); +INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `chdate`, `mkdate`) VALUES('CC0-1.0', 'Creative Commons Zero v1.0 Universal', 'https://creativecommons.org/publicdomain/zero/1.0/legalcode', 0, NULL, 1640797278, 1640797278); + +-- +-- Daten für Tabelle `loginbackgrounds` +-- + +INSERT INTO `loginbackgrounds` (`background_id`, `filename`, `mobile`, `desktop`, `in_release`, `mkdate`, `chdate`) VALUES(1, 'Login-Hintergrund.jpg', 0, 1, 1, NULL, NULL); +INSERT INTO `loginbackgrounds` (`background_id`, `filename`, `mobile`, `desktop`, `in_release`, `mkdate`, `chdate`) VALUES(2, 'Login-Hintergrund-mobil.jpg', 1, 0, 1, NULL, NULL); + +-- +-- Daten für Tabelle `log_actions` +-- + +INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('005df8d5eb23c66214b28b3c9792680b', 'SEM_CHANGED_ACCESS', 'Zugangsberechtigungen geändert', '%user ändert die Zugangsberechtigungen der Veranstaltung %sem(%affected).', 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('00af9c41fc56b617097bdef1e7dca397', 'MVV_FACHINST_NEW', 'MVV: Fach-Einrichtung Zuweisung erstellen', '%user weist das Fach %fach(%affected) der Einrichtung %inst(%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('04061e4d13b416e10d6094679e7c9d9c', 'MVV_MODULTEIL_DEL', 'MVV: Modulteil löschen', '%user löscht Modulteil %modulteil(%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('060390e972f9580ab92c7febb99fb2fa', 'MVV_LVSEMINAR_NEW', 'MVV: LV-Gruppe zu Veranstaltung Zuweisung erstellen', '%user weist der LV-Gruppe %lvgruppe(%affected) der Veranstaltung %sem(%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('07c384b8328f56a33b4edb2570e85a48', 'MVV_MODULTEIL_DESK_NEW', 'MVV: Modulteil Deskriptor erstellen', '%user erstellt neuen Modulteil Deskriptor %modulteildesk(%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('08a643645ddb5d3df5826d9fa863f665', 'MVV_STGTEILABS_NEW', 'MVV: Studiengangteilabschnitt erstellen', '%user erstellt neuen 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('0966a73e85ac73c64818cc6eae4be09e', 'MVV_MODUL_USER_DEL', 'MVV: Person zu Modul Zuweisung löschen', '%user löscht die Zuweisung von %user(%coaffected) als %gruppe zum Modul %modul(%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('0a3d58fbc0964ed9d85950e4d729715d', 'MVV_STUDIENGANG_NEW', 'MVV: Studiengang erstellen', '%user erstellt neuen Studiengang %stg(%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('0d87c25b624b16fb9b8cdaf9f4e96e53', 'INST_CREATE', 'Einrichtung anlegen', '%user legt Einrichtung %inst(%affected) an.', 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('0e46eec26da0b0217280e8be4b26227b', 'MVV_ABS_ZUORD_DEL', 'MVV: Abschluss-Kategorien Zuweisung löschen', '%user löscht die Zuweisung des Abschlusses %abschluss(%affected) zur Kategorie %abskategorie(%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('0ee290df95f0547caafa163c4d533991', 'SEM_VISIBLE', 'Veranstaltung sichtbar schalten', '%user schaltet %sem(%affected) sichtbar.', 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('0ef58f0b0a97d83616efc6e9479c522e', 'MVV_FACHBERATER_DEL', 'MVV: Person zu Fach Zuweisung löschen', '%user löscht die Zuweisung von %user(%coaffected) zum 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('10916a5a08ca16bfd055e4823311377a', 'MVV_DOK_ZUORD_DEL', 'MVV: Dokumentzuordnung löschen', '%user löscht die Zuweisung des Dokumentes %dokument(%affected) zu %object_type(%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('10c31be1aec819c03b0dc299d0111576', 'CHANGE_BASIC_DATA', 'Basisdaten geändert', '%user hat in Veranstaltung %sem(%affected) die Daten %info geändert.', 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('10c320bc80022f1ff1381857af46f474', 'SEM_DEL_FROM_GROUP', 'Veranstaltung aus Gruppe entfernen', '%user entfernt Veranstaltung %sem(%affected) aus der Gruppe %sem(%coaffected).', 1, 0, NULL, NULL, 'core', NULL, NULL); +INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('13b5297079e1600ccc3ca6f49081099f', 'MVV_STG_STGTEIL_DEL', 'MVV: Studiengang zu Studiengangteil Zuweisung löschen', '%user löscht die Zuweisung des Studienganges %stg(%affected) zum Studiengangteil %stgteil(%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('157f75beb242c7de8ff790d4005a259e', 'MVV_FACH_DEL', 'MVV: Fach löschen', '%user löscht Fach %fach(%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('1585bb70e5e403fd818e59bb622db4a3', 'STATUSGROUP_ADD_USER', 'Nutzer wird zu einer Statusgruppe hinzugefügt', '%user fügt %user(%affected) zur %group(%coaffected) 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('17f0a527e9db7dec09687a70681559cf', 'RES_ASSIGN_DEL_SINGLE', 'Direktbuchung löschen', '%user löscht Direktbuchung für %res(%affected) (%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('1a1e8c9c3125ea8d2c58c875a41226d6', 'INST_DEL', 'Einrichtung löschen', '%user löscht Einrichtung %info (%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('1a27a101df926fafce35635f0dd72522', 'MVV_MODULTEIL_NEW', 'MVV: Modulteil erstellen', '%user erstellt neuen Modulteil %modulteil(%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('1e6debdbfd7a7aeef2dcb61fa65beddd', 'MVV_ABSCHLUSS_DEL', 'MVV: Abschluss löschen', '%user löscht Abschluss %abschluss(%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('1eb6597264fc19da6b48f519c3e47078', 'MVV_MODUL_DESK_DEL', 'MVV: Modul Deskriptor löschen', '%user löscht Modul Deskriptor %moduldesk(%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('23f50ebeab22138bc959f27111ae5ab0', 'MVV_STG_STGTEIL_NEW', 'MVV: Studiengang zu Studiengangteil Zuweisung erstellen', '%user weist den Studiengang %stg(%affected) dem Studiengangteil %stgteil(%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('23f7a87368df1132df137e7d320fa698', 'MVV_LVMODULTEIL_NEW', 'MVV: LV-Gruppe zu Modulteil Zuweisung erstellen', '%user weist der LV-Gruppe %lv(%affected) den Modulteil %modulteil(%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('2420da2946df66a5ad96c6d45e97d5b9', 'SEM_ADD_STUDYAREA', 'Studienbereich zu Veranst. hinzufügen', '%user fügt Studienbereich \"%studyarea(%coaffected)\" zu %sem(%affected) hinzu.', 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('248f54105b7102e5cbcc36e9439504fb', 'STUDYAREA_ADD', 'Studienbereich hinzufügen', '%user legt Studienbereich %studyarea(%affected) an.', 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('292b1cf6c0b46d7038baa75e0b273299', 'MVV_MODUL_DEL', 'MV: Modul löschen', '%user löscht Modul %modul(%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('293a742d791a1edbaaa738f8991aeb7b', 'MVV_LVSEMINAR_UPDATE', 'MVV: LV-Gruppe zu Veranstaltung Zuweisung ändern', '%user ändert die Zuweisung der LV-Gruppe %lvgruppe(%affected) zur Veranstaltung %sem(%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('2dd254c28cac83c59856fe89500e3bc3', 'MVV_STGTEILABS_MODUL_DEL', 'MVV: Stgteilabschnitt-Modul Zuweisung löschen', '%user löscht die Zuweisung des Studiengangteilabschnitts %stgteilabs(%affected) zum Modul %modul(%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('2e816bfd792e4a99913f11c04ad49198', 'SEM_UNDELETE_SINGLEDATE', 'Einzeltermin wiederherstellen', '%user stellt Einzeltermin %singledate(%affected) in %sem(%coaffected) wieder her.', 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('30dfb509cb1a8e228af3bd17dd6c8d1d', 'RES_ASSIGN_SEM', 'Buchen einer Ressource (VA)', '%user bucht %res(%affected) für %sem(%coaffected) (%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('31fd4549853915608facb8c3e2b101d6', 'MVV_STGTEIL_DEL', 'MVV: Studiengangteil löschen', '%user löscht 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('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('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); +INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('40455e06f6a679cd87c68c375c9dfa5a', 'MVV_STGTEILBEZ_DEL', 'MVV: Studiengangteil-Bezeichnung löschen', '%user löscht Studiengangteil-Bezeichnung %stgteilbez(%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('428c09d5a31b1057b08ca5e3b3877109', 'MVV_FACHBERATER_UPDATE', 'MVV: Person zu Fach Zuweisung ändern', '%user ändert die Zuweisung von %user(%coaffected) zum 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('42b01c873e3066a840ab3237e3aa0911', 'RES_PERM_CHANGE', 'Änderung der Berechtigungsstufe an einer Ressource.', NULL, 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('447d6ae1b51b97b04f7ae290c6b002d7', 'MVV_DOKUMENT_DEL', 'MVV: Dokument löschen', '%user löscht 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('4490aa3d29644e716440fada68f54032', 'LOG_ERROR', 'Allgemeiner Log-Fehler', 'Allgemeiner Logging-Fehler, Details siehe Debug-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('46bc7faabfc73864998b561b1011e3fe', 'RES_REQUEST_UPDATE', 'Geänderte Raumanfrage', '%user ändert Raumanfrage für %sem(%affected), gewünschter Raum: %res(%coaffected), %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('4765700be65e3fe1c12e7d74a2579bed', 'MVV_MODULINST_UPDATE', 'MVV: Modul-Einrichtung Beziehung ändern', '%user ändert die Zuweisung der Einrichtungen %inst(%coaffected) zum Modul %modul(%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('47c4f06ce3de71213b69d8d0f8d24f8e', 'MVV_MODUL_LANG_NEW', 'MVV: Sprache zu Modul Zuweisung erstellen', '%user weist dem Modul %modul(%affected) die Unterrichtssprache %language(%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('4869cd69f20d4d7ed4207e027d763a73', 'INST_USER_STATUS', 'Einrichtungsnutzerstatus ändern', '%user ändert Status für %user(%coaffected) in Einrichtung %inst(%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('494b5df89948da383d087107d4c0bbec', 'MVV_LVSEMINAR_DEL', 'MVV: LV-Gruppe zu Veranstaltung Zuweisung löschen', '%user löscht die Zuweisung der LV-Gruppe %lvgruppe(%affected) zur Veranstaltung %sem(%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('499a15daf534b3d810e6b9bac9a00d3e', 'MVV_MODUL_USER_NEW', 'MVV: Person zu Modul Zuweisung erstellen', '%user weist dem Modul %modul(%affected) %user(%coaffected) als %gruppe 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('49d58ac93d608d731696eb75b29a1836', 'MVV_FACH_NEW', 'MVV: Fach erstellen', '%user erstellt neues Fach %fach(%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('4b08c6b8539466a1f1968b44ec2996ed', 'MVV_LVMODULTEIL_DEL', 'MVV: LV-Gruppe zu Modulteil Zuweisung löschen', '%user löscht die Zuweisung der LV-Gruppe %lv(%affected) zum Modulteil %modulteil(%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('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('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('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('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); +INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('6be59dcd70197c59d7bf3bcd3fec616f', 'INST_USER_DEL', 'Benutzer aus Einrichtung löschen', '%user löscht %user(%coaffected) aus Einrichtung %inst(%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('6c5d5ed836c464be1c5547adcec3eae0', 'MVV_MODULTEIL_LANG_UPDATE', 'MVV: Sprache zu Modulteil Zuweisung ändern', '%user ändert die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modulteil %modulteil(%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('6e2b789a57b9125af59c0273f5b47cb1', 'SEM_USER_DEL', 'Aus Veranstaltung ausgetragen', '%user hat %user(%coaffected) aus %sem(%affected) ausgetragen. (%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('6f4bb66c1caf89879d89f3b1921a93dd', 'SEM_DELETE_CYCLE', 'Regelmäßige Zeit gelöscht', '%user hat in %sem(%affected) die regelmäßige Zeit %info 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('71bfea5eb0d9a85d1247b83383ac5b7e', 'MVV_MODUL_DESK_NEW', 'MVV: Modul Deskriptor erstellen', '%user erstellt neuen Modul Deskriptor %moduldesk(%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('754708c8c0c61a916855c5031014acbb', 'SEM_DELETE_STUDYAREA', 'Studienbereich aus Veranst. löschen', '%user entfernt Studienbereich \"%studyarea(%coaffected)\" aus %sem(%affected).', 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('770f76504dcbbfa6bdc51a8c0f6df4b2', 'MVV_STGTEILABS_DEL', 'MVV: Studiengangteilabschnitt löschen', '%user löscht 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('77df7d29c7a5cde1dff72a4a37f85414', 'MIGRATE_UP', 'Migration wird durchgeführt', '%user hat Migration %affected ausgeführt (Domain: %coaffected)', 1, 0, NULL, NULL, NULL, 1640797279, 1640797279); +INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('7d26ffbf73103601966f7517e40d7e66', 'RES_REQUEST_NEW', 'Neue Raumanfrage', '%user stellt neue Raumanfrage für %sem(%affected), gewünschter Raum: %res(%coaffected), %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('7d37d874592eea50eef5239fb7b8e3d7', 'MVV_MODULTEIL_LANG_DEL', 'MVV: Sprache zu Modulteil Zuweisung löschen', '%user löscht die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modulteil %modulteil(%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('7f2ec1cbf988eee849de7cfa031b68f9', 'MVV_STGTEILVERSION_DEL', 'MVV: Studiengangteilversion löschen', '%user löscht 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('7f335b5d0d9f8d37652718cb89937b38', 'MVV_STGTEIL_NEW', 'MVV: Studiengangteil erstellen', '%user erstellt neuen 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('8216cba6119cf4a4de82ec3ce8ac51b7', 'MVV_MODUL_USER_UPDATE', 'MVV: Person zu Modul Zuweisung ändern', '%user ändert die Zuweisung von %user(%coaffected) als %gruppe zum Modul %modul(%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('89114dcd6f02dd7f94488a616c21a7c3', 'PLUGIN_ENABLE', 'Plugin einschalten', '%user hat in Veranstaltung %sem(%affected) das Plugin %plugin(%coaffected) aktiviert.', 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('897207a36c411d736947052219624b72', 'USER_CHANGE_PASSWORD', 'Nutzerpasswort geändert', '%user ändert/setzt das Passwort für %user(%affected)', 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('8aad296e52423452fc75cabaf2bee384', 'USER_CHANGE_USERNAME', 'Benutzernamen ändern', '%user ändert/setzt Benutzernamen für %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('8f87cf1a8546e9671244fba1ac51e805', 'MVV_LVGRUPPE_DEL', 'MVV: LV-Gruppe löschen', '%user löscht 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('9123d360316ba28ddb32c0ed1a0320f2', 'STUDYAREA_DELETE', 'Studienbereich löschen', '%user entfernt Studienbereich %studyarea(%affected).', 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('91251b5768b312ca23d6721cdc99a005', 'MVV_KATEGORIE_NEW', 'MVV: Abschluss-Kategorie erstellen', '%user erstellt neue 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('9179d3cf4e0353f9874bcde072d12b30', 'RES_REQUEST_DENY', 'Abgelehnte Raumanfrage', '%user lehnt Raumanfrage für %sem(%affected), Raum: %res(%coaffected) ab. %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('95935c7997427ea42a3dd6be05b51e81', 'MVV_MODULTEIL_UPDATE', 'MVV: Modulteil ändern', '%user ändert Modulteil %modulteil(%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('997cf01328d4d9f36b9f50ac9b6ace47', 'SEM_DELETE_SINGLEDATE', 'Einzeltermin löschen', '%user löscht Einzeltermin %singledate(%affected) in %sem(%coaffected).', 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('9a7a5112de76fa0b8bd8910174d5f107', 'MVV_STGTEILBEZ_UPDATE', 'MVV: Studiengangteil-Bezeichnung ändern', '%user ändert Studiengangteil-Bezeichnung %stgteilbez(%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('9d13643a1833c061dc3d10b4fb227f12', 'SEM_SET_ENDSEMESTER', 'Semesterlaufzeit ändern', '%user hat in %sem(%affected) die Laufzeit auf %semester(%coaffected) geändert', 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('9d642dc93540580d42ba2ea502c3fbf6', 'SINGLEDATE_CHANGE_TIME', 'Einzeltermin bearbeiten', '%user hat in %sem(%affected) den Einzeltermin %coaffected geändert.', 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('9ed46a3ca3d4f43e17f91e314224dcae', 'SEM_CHANGE_CYCLE', 'Regelmäßige Zeit geändert', '%user hat in %sem(%affected) die regelmäßige Zeit %info geändert', 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('9eea9c8ec3fa6916fae974559f3a6e64', 'MVV_STGTEILABS_MODUL_UPDATE', 'MVV: Stgteilabschnitt-Modul Zuweisung ändern', '%user ändert die Zuweisung des Studiengangteilabschnitts %stgteilabs(%affected) zum Modul %modul(%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('a06bd1ca1b5eec038c079042eb25acb0', 'MVV_DOKUMENT_NEW', 'MVV: Dokument erstellen', '%user erstellt neues 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('a0928e74639fd2a55f5d4d2a3c5a8e71', 'RES_REQUEST_DEL', 'Raumanfrage löschen', '%user löscht Raumanfrage für %sem(%affected).', 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('a0b8799fa671e0ce6069483e0c4b5123', 'MVV_ABS_ZUORD_NEW', 'MVV: Abschluss-Kategorien Zuweisung erstellen', '%user weist den Abschluss %abschluss(%affected) der Kategorie %abskategorie(%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('a3856b6531e2f79d158b5ebfb998e5db', 'RES_ASSIGN_DEL_SEM', 'VA-Buchung löschen', '%user löscht Ressourcenbelegung für %res(%affected) in Veranstaltung %sem(%coaffected), %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('a3db2d066861fd1cf1d532d2a736d495', 'MVV_STUDIENGANG_DEL', 'MVV: Studiengang löschen', '%user löscht Studiengang %stg(%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('a66c9e04e9c41bf5cc4d23fa509a8667', 'PLUGIN_DISABLE', 'Plugin ausschalten', '%user hat in Veranstaltung %sem(%affected) das Plugin %plugin(%coaffected) deaktiviert.', 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('a92afa63584cc2a62d2dd2996727b2c5', 'USER_CREATE', 'Nutzer anlegen', '%user legt Nutzer %user(%affected) an.', 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('a94706b41493e32f8336194262418c01', 'SEM_INVISIBLE', 'Veranstaltung unsichtbar schalten', '%user versteckt %sem(%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('aa12de984598c527bfb8b118affaf34a', 'MVV_STG_STGTEIL_UPDATE', 'MVV: Studiengang zu Studiengangteil Zuweisung ändern', '%user ändert die Zuweisung des Studienganges %stg(%affected) zum Studiengangteil %stgteil(%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('ad405d21c2e0df758ee8a61ed39901fe', 'MVV_LVMODULTEIL_UPDATE', 'MVV: LV-Gruppe zu Modulteil Zuweisung ändern', '%user ändert die Zuweisung der LV-Gruppe %lv(%affected) zum Modulteil %modulteil(%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('b035ea1a197edc6271fafa4094f87a57', 'MVV_DOK_ZUORD_NEW', 'MVV: Dokumentzuordnung erstellen', '%user weist das Dokument %dokument(%affected) %object_type(%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('b19d01e45715df05f4b060cd56dc204f', 'MVV_MODULTEIL_DESK_UPDATE', 'MVV: Modulteil Deskriptor ändern', '%user ändert Modulteil Deskriptor %modulteildesk(%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('b205bde204b5607e036c10557a6ce149', 'SEM_SET_STARTSEMESTER', 'Startsemester ändern', '%user hat in %sem(%affected) das Startsemester auf %semester(%coaffected) geändert.', 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('b38ecbb1fddf6c3868a6a9a75bab8ef8', 'MVV_KATEGORIE_DEL', 'MVV: Abschluss-Kategorie löschen', '%user löscht 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('b5e3e8401e7e92051c13ba7b46e28f75', 'MVV_STGTEILVERSION_NEW', 'MVV: Studiengangteilversion erstellen', '%user erstellt neue 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('b8e940588cd8d5181774377586b85202', 'MVV_STGTEILBEZ_NEW', 'MVV: Studiengangteil-Bezeichnung erstellen', '%user erstellt neue Studiengangteil-Bezeichnung %stgteilbez(%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('bace236af595612b77943bcb47a0a7fe', 'MVV_STUDIENGANG_UPDATE', 'MVV: Studiengang ändern', '%user ändert Studiengang %stg(%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('bd2103035a8021942390a78a431ba0c4', 'DUMMY', 'Dummy-Aktion', '%user tut etwas.', 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('bd78090961a15a8010a566a6cd1355f2', 'MVV_DOK_ZUORD_UPDATE', 'MVV: Dokumentzuordnung ändern', '%user ändert die Zuweisung des Dokumentes %dokument(%affected) zu %object_type(%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('bf192518a9c3587129ed2fdb9ea56f73', 'SEM_DELETE_FROM_ARCHIVE', 'Veranstaltung aus Archiv löschen', '%user löscht %info aus dem Archiv (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('c1d980ac5c5de271bd1471a11a3e37af', 'MVV_MODULINST_DEL', 'MVV: Modul-Einrichtung Beziehung löschen', '%user löscht die Zuweisung der Einrichtungen %inst(%coaffected) zum Modul %modul(%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('c36fa0f804cde78a6dcb1c30c2ee47ba', 'SEM_DELETE_REQUEST', 'Raumanfrage gelöscht', '%user hat in %sem(%affected) die Raumanfrage für die gesamte Veranstaltung 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('c4b1d3305d017935c8b6946996594172', 'MVV_FACH_UPDATE', 'MVV: Fach ändern', '%user ändert Fach %fach(%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('c6a23a780aa2a219ddd0bb2445c19bf8', 'MVV_MODULTEIL_LANG_NEW', 'MVV: Sprache zu Modulteil Zuweisung erstellen', '%user weist dem Modulteil %modulteil(%affected) die Unterrichtssprache %language(%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('ca216ccdf753f59ba7fd621f7b22f7bd', 'USER_CHANGE_NAME', 'Personennamen ändern', '%user ändert/setzt Name für %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('cbf93b2a248642289c2ad4b3d59b9d55', 'MVV_FACHINST_DEL', 'MVV: Fach-Einrichtung Zuweisung löschen', '%user löscht die Zuweisung des Faches %fach(%affected) zur Einrichtung %inst(%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('cf8986a67e67ca273e15fd9230f6e872', 'USER_CHANGE_TITLE', 'Akademische Titel ändern', '%user ändert/setzt akademischen Titel für %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('d07c8b37c6d3e206cd012d07ba8028b1', 'SEM_CHANGED_RIGHTS', 'Veranstaltungsrechte geändert', '%user hat %user(%coaffected) in %sem(%affected) als %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('d18d750fb2c166e1c425976e8bca96e7', 'USER_CHANGE_EMAIL', 'E-Mail-Adresse ändern', '%user ändert/setzt E-Mail-Adresse für %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('d1989a21fc77ffc34e705bb3dc215ebb', 'STATUSGROUP_REMOVE_USER', 'Nutzer wird aus einer Statusgruppe gelöscht', '%user entfernt %user(%affected) aus %group(%coaffected).', 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('d4e99ffb6ffb32a20c0d9075bb73889d', 'MVV_ABS_ZUORD_UPDATE', 'MVV: Abschluss-Kategorien Zuweisung ändern', '%user ändert die Zuweisung des Abschlusses %abschluss(%affected) zur Kategorie %abskategorie(%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('d8e863ca143ff87cce89f17b2e3b409e', 'MVV_ABSCHLUSS_UPDATE', 'MVV: Abschluss ändern', '%user ändert Abschluss %abschluss(%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('dcd16239a49c367e37faf8ffe9ae0081', 'SEM_ADD_TO_GROUP', 'Veranstaltung zu Gruppe hinzufügen', '%user ordnet Veranstaltung %sem(%affected) der Gruppe %sem(%coaffected) zu.', 1, 0, NULL, NULL, 'core', NULL, NULL); +INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('df41cc74f6fd857b1690e36dafa070a9', 'MVV_MODUL_LANG_DEL', 'MVV: Sprache zu Modul Zuweisung löschen', '%user löscht die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modul %modul(%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('e2c703a9167804463112284853b9545b', 'MVV_MODUL_UPDATE', 'MVV: Modul ändern', '%user ändert Modul %modul(%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('e406e407501c8418f752e977182cd782', 'USER_CHANGE_PERMS', 'Globalen Nutzerstatus ändern', '%user ändert/setzt globalen Status von %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('e5c0ecfea7d12ed95ea485d4ec18c9ae', 'MVV_MODUL_LANG_UPDATE', 'MVV: Sprache zu Modul Zuweisung ändern', '%user ändert die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modul %modul(%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('e694e86b2ec50bc0b99864acc947ed78', 'MVV_LVGRUPPE_NEW', 'MVV: LV-Gruppe erstellen', '%user erstellt neue 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('e7449d98b8ca69d16f13c0a342a8db41', 'MVV_ABSCHLUSS_NEW', 'MVV: Abschluss erstellen', '%user erstellt neuen Abschluss %abschluss(%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('e8423589894e5df742804e57f54fa5aa', 'MVV_MODULTEIL_STGTEILABS_UPDATE', 'MVV: Studiengangteilabschnitt zu Modulteil Zuweisung ändern', '%user ändert 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('e8646729e5e04970954c8b9679af389b', 'USER_DEL', 'Benutzer löschen', '%user löscht %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('e8b1105ca4f2305ef0db6c961d2fbe4c', 'RES_ASSIGN_SINGLE', 'Buchen einer Ressource (Einzel)', '%user bucht %res(%affected) direkt (%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('eac0850398466b86ec6af4068cff74ab', 'MVV_MODULTEIL_DESK_DEL', 'MVV: Modulteil Deskriptor löschen', '%user löscht Modulteil Deskriptor %modulteildesk(%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('f363c6db07203dfcec893b1b8fc0eaee', 'MVV_FACHINST_UPDATE', 'MVV: Fach-Einrichtung Zuweisung ändern', '%user ändert die Zuweisung des Faches %fach(%affected) zur Einrichtung %inst(%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('f858b05c11f5faa2198a109a783087a8', 'SEM_CREATE', 'Veranstaltung anlegen', '%user legt %sem(%affected) an.', 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('f97335d7f45fd87a4e5e2c1d17f38dc0', 'MVV_MODUL_DESK_UPDATE', 'MVV: Modul Deskriptor ändern', '%user ändert Modul Deskriptor %moduldesk(%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('fb550711e786f5d7d6a9ef8b4eb915f6', 'MVV_MODULINST_NEW', 'MVV: Modul-Einrichtung Beziehung erstellen', '%user weist dem Modul %modul(%affected) die Einrichtungen %inst(%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('fc72d34ddb15a9819919fc42716830b3', 'MVV_MODUL_NEW', 'MVV: Modul erstellen', '%user erstellt neues Modul %modul(%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('fd74339a9ea038d084569e33e2655b6a', 'CHANGE_INSTITUTE_DATA', 'Beteiligte Einrichtungen geändert', '%user hat in Veranstaltung %sem(%affected) die Daten geändert. %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('ff806b4b26f8bc8c3e65e29d14176cd9', 'RES_REQUEST_RESOLVE', 'Aufgelöste Raumanfrage', '%user löst Raumanfrage für %sem(%affected), Raum %res(%coaffected) auf.', 0, 0, NULL, NULL, NULL, NULL, NULL); + +-- +-- Daten für Tabelle `plugins` +-- + +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(1, 'Blubber', 'core/Blubber', 'Blubber', 'CorePlugin,StandardPlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(2, 'CoreForum', 'core/Forum', 'Forum', 'CorePlugin,ForumModule,StudipModule,StandardPlugin', 'yes', 2, NULL, NULL, NULL); INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(3, 'EvaluationsWidget', 'core/EvaluationsWidget', 'EvaluationsWidget', 'PortalPlugin', 'yes', 3, NULL, NULL, NULL); INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(4, 'NewsWidget', 'core/NewsWidget', 'NewsWidget', 'PortalPlugin', 'yes', 4, NULL, NULL, NULL); INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(5, 'QuickSelection', 'core/QuickSelection', 'QuickSelection', 'PortalPlugin', 'yes', 5, NULL, NULL, NULL); INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(6, 'ScheduleWidget', 'core/ScheduleWidget', 'ScheduleWidget', 'PortalPlugin', 'yes', 6, NULL, NULL, NULL); INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(7, 'TerminWidget', 'core/TerminWidget', 'TerminWidget', 'PortalPlugin', 'yes', 7, NULL, NULL, NULL); INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(8, 'ActivityFeed', 'core/ActivityFeed', 'ActivityFeed', 'PortalPlugin', 'yes', 8, NULL, NULL, NULL); -INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(9, 'IliasInterfaceModule', '', 'Ilias-Interface', 'StandardPlugin,SystemPlugin', 'yes', 1, NULL, NULL, NULL); -INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(10, 'LtiToolModule', '', 'LTI-Tool', 'StandardPlugin,SystemPlugin,PrivacyPlugin', 'yes', 1, NULL, NULL, NULL); -INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(11, 'GradebookModule', '', 'Gradebook', 'StandardPlugin,SystemPlugin', 'yes', 1, NULL, NULL, NULL); -INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(12, 'FeedbackModule', '', 'Feedback', 'StandardPlugin,SystemPlugin', 'yes', 1, NULL, NULL, NULL); - --- --- Dumping data for table `roles` +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(9, 'IliasInterfaceModule', '', 'Ilias-Interface', 'CorePlugin,StudipModule,SystemPlugin', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(10, 'LtiToolModule', '', 'LTI-Tool', 'CorePlugin,StudipModule,SystemPlugin,PrivacyPlugin', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(11, 'GradebookModule', '', 'Gradebook', 'CorePlugin,SystemPlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(12, 'FeedbackModule', '', 'Feedback', 'CorePlugin,StudipModule,SystemPlugin', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(13, 'ConsultationModule', '', 'Terminvergabe', 'CorePlugin,StudipModule,SystemPlugin,PrivacyPlugin,HomepagePlugin', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(14, 'CoreOverview', '', 'CoreOverview', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(15, 'CoreAdmin', '', 'CoreAdmin', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(16, 'CoreStudygroupAdmin', '', 'CoreStudygroupAdmin', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(17, 'CoreDocuments', '', 'CoreDocuments', 'CorePlugin,StudipModule,OERModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(18, 'CoreParticipants', '', 'CoreParticipants', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(19, 'CoreStudygroupParticipants', '', 'CoreStudygroupParticipants', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(20, 'CoreSchedule', '', 'CoreSchedule', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(21, 'CoreScm', '', 'CoreScm', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(22, 'CoreWiki', '', 'CoreWiki', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(23, 'CoreCalendar', '', 'CoreCalendar', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(24, 'CoreElearningInterface', '', 'CoreElearningInterface', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(25, 'CorePersonal', '', 'CorePersonal', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(26, 'CoursewareModule', '', 'Courseware', 'CorePlugin,StudipModule,SystemPlugin', 'yes', 1, NULL, NULL, NULL); +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(27, 'ContentsWidget', 'core/ContentsWidget', 'ContentsWidget', 'PortalPlugin', 'yes', 9, NULL, NULL, NULL); + +-- +-- Daten für Tabelle `roles` -- INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(1, 'Root-Administrator(in)', 'y'); @@ -1174,7 +1241,7 @@ INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(13, 'MVVTranslator', INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(14, 'MVVLvGruppenAdmin', 'n'); -- --- Dumping data for table `roles_plugins` +-- Daten für Tabelle `roles_plugins` -- INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 1); @@ -1189,6 +1256,21 @@ INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 9); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 10); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 11); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 12); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 13); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 14); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 15); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 16); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 17); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 18); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 19); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 20); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 21); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 22); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 23); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 24); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 25); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 26); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 27); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 1); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 2); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 3); @@ -1201,6 +1283,21 @@ INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 9); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 10); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 11); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 12); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 13); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 14); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 15); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 16); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 17); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 18); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 19); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 20); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 21); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 22); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 23); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 24); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 25); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 26); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 27); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 1); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 2); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 3); @@ -1213,6 +1310,21 @@ INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 9); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 10); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 11); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 12); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 13); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 14); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 15); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 16); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 17); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 18); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 19); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 20); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 21); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 22); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 23); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 24); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 25); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 26); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 27); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 1); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 2); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 3); @@ -1225,6 +1337,21 @@ INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 9); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 10); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 11); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 12); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 13); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 14); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 15); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 16); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 17); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 18); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 19); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 20); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 21); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 22); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 23); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 24); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 25); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 26); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 27); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 1); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 2); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 3); @@ -1237,6 +1364,21 @@ INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 9); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 10); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 11); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 12); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 13); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 14); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 15); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 16); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 17); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 18); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 19); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 20); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 21); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 22); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 23); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 24); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 25); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 26); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 27); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 1); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 2); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 3); @@ -1249,14 +1391,43 @@ INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 9); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 10); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 11); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 12); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 13); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 14); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 15); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 16); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 17); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 18); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 19); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 20); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 21); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 22); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 23); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 24); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 25); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 26); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 27); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 1); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 2); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 10); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 11); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 12); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 13); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 14); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 15); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 16); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 17); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 18); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 19); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 20); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 21); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 22); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 23); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 24); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 25); +INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 26); -- --- Dumping data for table `roles_studipperms` +-- Daten für Tabelle `roles_studipperms` -- INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(1, 'root'); @@ -1269,13 +1440,13 @@ INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(5, 'tutor'); INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(6, 'tutor'); -- --- Dumping data for table `roles_user` +-- Daten für Tabelle `roles_user` -- INSERT INTO `roles_user` (`roleid`, `userid`, `institut_id`) VALUES(7, 'nobody', ''); -- --- Dumping data for table `schema_versions` +-- Daten für Tabelle `schema_versions` -- INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 1); @@ -1563,43 +1734,78 @@ INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20200423); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20200514); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20200515); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20200522); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20200709); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20200713); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20200811); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20200909); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20200910); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201002); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201005); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201007); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201023); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201024); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201025); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201103); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201108); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201110); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201113); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201114); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201115); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201116); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201203); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201211); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20201212); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210104); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210108); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210201); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210204); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210212); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210226); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210317); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210322); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210406); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210422); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210425); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210503); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210505); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20210511); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20211015); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20211108); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20211115); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 20211117); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 201908014); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 201908015); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 201908016); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 201908017); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 202001291); INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 202011031); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 202102161); +INSERT INTO `schema_versions` (`domain`, `version`) VALUES('studip', 202106231); -- --- Dumping data for table `semester_data` +-- Daten für Tabelle `semester_data` -- -INSERT INTO `semester_data` (`semester_id`, `name`, `description`, `semester_token`, `beginn`, `ende`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`) VALUES('322f640f3f4643ebe514df65f1163eb1', 'SS 2021', '', '', 1617228000, 1633039199, 1618178400, 1626472799, 1, ''); -INSERT INTO `semester_data` (`semester_id`, `name`, `description`, `semester_token`, `beginn`, `ende`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`) VALUES('4967f0a483e36554b77e3dc47aa58941', 'WS 2020/2021', '', '', 1601503200, 1617227999, 1603666800, 1613170799, 1, ''); +INSERT INTO `semester_data` (`semester_id`, `name`, `description`, `semester_token`, `beginn`, `ende`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`, `mkdate`, `chdate`) VALUES('322f640f3f4643ebe514df65f1163eb1', 'SS 2022', '', '', 1648764000, 1664575199, 1650319200, 1658527199, 1, '', NULL, NULL); +INSERT INTO `semester_data` (`semester_id`, `name`, `description`, `semester_token`, `beginn`, `ende`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`, `mkdate`, `chdate`) VALUES('4967f0a483e36554b77e3dc47aa58941', 'WS 2020/2021', '', '', 1601503200, 1617227999, 1603666800, 1613170799, 1, '', NULL, NULL); -- --- Dumping data for table `semester_holiday` +-- Daten für Tabelle `semester_holiday` -- -INSERT INTO `semester_holiday` (`holiday_id`, `semester_id`, `name`, `description`, `beginn`, `ende`) VALUES('704038f0cb3ea0a285ba0a453788ebed', '', 'Unterbrechung', '', 1608764400, 1610146799); +INSERT INTO `semester_holiday` (`holiday_id`, `semester_id`, `name`, `description`, `beginn`, `ende`, `mkdate`, `chdate`) VALUES('704038f0cb3ea0a285ba0a453788ebed', '', 'Unterbrechung', '', 1608764400, 1610146799, NULL, NULL); -- --- Dumping data for table `sem_classes` +-- Daten für Tabelle `sem_classes` -- -INSERT INTO `sem_classes` (`id`, `name`, `only_inst_user`, `default_read_level`, `default_write_level`, `bereiche`, `module`, `show_browse`, `write_access_nobody`, `topic_create_autor`, `visible`, `course_creation_forbidden`, `overview`, `forum`, `admin`, `documents`, `schedule`, `participants`, `literature`, `scm`, `wiki`, `resources`, `calendar`, `elearning_interface`, `modules`, `description`, `create_description`, `studygroup_mode`, `admission_prelim_default`, `admission_type_default`, `title_dozent`, `title_dozent_plural`, `title_tutor`, `title_tutor_plural`, `title_autor`, `title_autor_plural`, `show_raumzeit`, `is_group`, `mkdate`, `chdate`) VALUES(1, 'Lehre', 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 'CoreOverview', 'Blubber', 'CoreAdmin', 'CoreDocuments', 'CoreSchedule', 'CoreParticipants', 'CoreLiterature', 'CoreScm', 'CoreWiki', 'CoreResources', 'CoreCalendar', 'CoreElearningInterface', '{\"CoreOverview\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreAdmin\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreForum\":{\"activated\":0,\"sticky\":\"0\"},\"CoreParticipants\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreDocuments\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreSchedule\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreLiterature\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreScm\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreWiki\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreResources\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreCalendar\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreElearningInterface\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreStudygroupAdmin\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreStudygroupParticipants\":{\"activated\":\"0\",\"sticky\":\"1\"},\"Blubber\":{\"activated\":1}}', 'Hier finden Sie alle in Stud.IP registrierten Lehrveranstaltungen', '', 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1366882120, 1366882169); -INSERT INTO `sem_classes` (`id`, `name`, `only_inst_user`, `default_read_level`, `default_write_level`, `bereiche`, `module`, `show_browse`, `write_access_nobody`, `topic_create_autor`, `visible`, `course_creation_forbidden`, `overview`, `forum`, `admin`, `documents`, `schedule`, `participants`, `literature`, `scm`, `wiki`, `resources`, `calendar`, `elearning_interface`, `modules`, `description`, `create_description`, `studygroup_mode`, `admission_prelim_default`, `admission_type_default`, `title_dozent`, `title_dozent_plural`, `title_tutor`, `title_tutor_plural`, `title_autor`, `title_autor_plural`, `show_raumzeit`, `is_group`, `mkdate`, `chdate`) VALUES(2, 'Organisation', 0, 2, 2, 0, 0, 1, 0, 0, 1, 0, 'CoreOverview', 'Blubber', 'CoreAdmin', 'CoreDocuments', 'CoreSchedule', 'CoreParticipants', NULL, NULL, 'CoreWiki', 'CoreResources', NULL, NULL, '{\"CoreOverview\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreAdmin\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreForum\":{\"activated\":0,\"sticky\":\"0\"},\"CoreParticipants\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreDocuments\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreSchedule\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreWiki\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreResources\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreStudygroupAdmin\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreStudygroupParticipants\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreScm\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreLiterature\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreCalendar\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreElearningInterface\":{\"activated\":\"0\",\"sticky\":\"1\"},\"Blubber\":{\"activated\":1}}', 'Hier finden Sie virtuelle Veranstaltungen zu verschiedenen Gremien an der Universität', '', 0, 0, 0, 'LeiterIn', 'LeiterInnen', 'Mitglied', 'Mitglieder', NULL, NULL, 1, 0, 1366882120, 1366882198); -INSERT INTO `sem_classes` (`id`, `name`, `only_inst_user`, `default_read_level`, `default_write_level`, `bereiche`, `module`, `show_browse`, `write_access_nobody`, `topic_create_autor`, `visible`, `course_creation_forbidden`, `overview`, `forum`, `admin`, `documents`, `schedule`, `participants`, `literature`, `scm`, `wiki`, `resources`, `calendar`, `elearning_interface`, `modules`, `description`, `create_description`, `studygroup_mode`, `admission_prelim_default`, `admission_type_default`, `title_dozent`, `title_dozent_plural`, `title_tutor`, `title_tutor_plural`, `title_autor`, `title_autor_plural`, `show_raumzeit`, `is_group`, `mkdate`, `chdate`) VALUES(3, 'Community', 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 'CoreOverview', 'Blubber', 'CoreAdmin', 'CoreDocuments', 'CoreSchedule', 'CoreParticipants', 'CoreLiterature', NULL, 'CoreWiki', 'CoreResources', NULL, NULL, '{\"CoreOverview\":{\"activated\":1,\"sticky\":1},\"CoreAdmin\":{\"activated\":1,\"sticky\":1},\"CoreForum\":{\"activated\":0},\"Blubber\":{\"activated\":1}}', 'Hier finden Sie virtuelle Veranstaltungen zu unterschiedlichen Themen', '', 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1366882120, 1366882120); -INSERT INTO `sem_classes` (`id`, `name`, `only_inst_user`, `default_read_level`, `default_write_level`, `bereiche`, `module`, `show_browse`, `write_access_nobody`, `topic_create_autor`, `visible`, `course_creation_forbidden`, `overview`, `forum`, `admin`, `documents`, `schedule`, `participants`, `literature`, `scm`, `wiki`, `resources`, `calendar`, `elearning_interface`, `modules`, `description`, `create_description`, `studygroup_mode`, `admission_prelim_default`, `admission_type_default`, `title_dozent`, `title_dozent_plural`, `title_tutor`, `title_tutor_plural`, `title_autor`, `title_autor_plural`, `show_raumzeit`, `is_group`, `mkdate`, `chdate`) VALUES(99, 'Studiengruppen', 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 'CoreOverview', 'Blubber', 'CoreStudygroupAdmin', 'CoreDocuments', 'CoreSchedule', 'CoreStudygroupParticipants', NULL, 'CoreScm', 'CoreWiki', NULL, NULL, NULL, '{\"CoreOverview\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreStudygroupAdmin\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreForum\":{\"activated\":0,\"sticky\":\"0\"},\"CoreStudygroupParticipants\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreDocuments\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreScm\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreWiki\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreAdmin\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreSchedule\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreParticipants\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreLiterature\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreCalendar\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreElearningInterface\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreResources\":{\"activated\":\"0\",\"sticky\":\"1\"},\"Blubber\":{\"activated\":1}}', '', '', 1, 0, 0, 'GruppengründerIn', 'GruppengründerInnen', 'ModeratorIn', 'ModeratorInnen', 'Mitglied', 'Mitglieder', 0, 0, 1366882120, 1462287763); +INSERT INTO `sem_classes` (`id`, `name`, `only_inst_user`, `default_read_level`, `default_write_level`, `bereiche`, `module`, `show_browse`, `write_access_nobody`, `topic_create_autor`, `visible`, `course_creation_forbidden`, `modules`, `description`, `create_description`, `studygroup_mode`, `admission_prelim_default`, `admission_type_default`, `title_dozent`, `title_dozent_plural`, `title_tutor`, `title_tutor_plural`, `title_autor`, `title_autor_plural`, `show_raumzeit`, `is_group`, `mkdate`, `chdate`) VALUES(1, 'Lehre', 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, '{\"CoreOverview\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreAdmin\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreForum\":{\"activated\":0,\"sticky\":\"0\"},\"CoreParticipants\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreDocuments\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreSchedule\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreLiterature\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreScm\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreWiki\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreResources\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreCalendar\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreElearningInterface\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreStudygroupAdmin\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreStudygroupParticipants\":{\"activated\":\"0\",\"sticky\":\"1\"},\"Blubber\":{\"activated\":1}}', 'Hier finden Sie alle in Stud.IP registrierten Lehrveranstaltungen', '', 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1366882120, 1366882169); +INSERT INTO `sem_classes` (`id`, `name`, `only_inst_user`, `default_read_level`, `default_write_level`, `bereiche`, `module`, `show_browse`, `write_access_nobody`, `topic_create_autor`, `visible`, `course_creation_forbidden`, `modules`, `description`, `create_description`, `studygroup_mode`, `admission_prelim_default`, `admission_type_default`, `title_dozent`, `title_dozent_plural`, `title_tutor`, `title_tutor_plural`, `title_autor`, `title_autor_plural`, `show_raumzeit`, `is_group`, `mkdate`, `chdate`) VALUES(2, 'Organisation', 0, 2, 2, 0, 0, 1, 0, 0, 1, 0, '{\"CoreOverview\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreAdmin\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreForum\":{\"activated\":0,\"sticky\":\"0\"},\"CoreParticipants\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreDocuments\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreSchedule\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreWiki\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreResources\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreStudygroupAdmin\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreStudygroupParticipants\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreScm\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreLiterature\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreCalendar\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreElearningInterface\":{\"activated\":\"0\",\"sticky\":\"1\"},\"Blubber\":{\"activated\":1}}', 'Hier finden Sie virtuelle Veranstaltungen zu verschiedenen Gremien an der Universität', '', 0, 0, 0, 'LeiterIn', 'LeiterInnen', 'Mitglied', 'Mitglieder', NULL, NULL, 1, 0, 1366882120, 1366882198); +INSERT INTO `sem_classes` (`id`, `name`, `only_inst_user`, `default_read_level`, `default_write_level`, `bereiche`, `module`, `show_browse`, `write_access_nobody`, `topic_create_autor`, `visible`, `course_creation_forbidden`, `modules`, `description`, `create_description`, `studygroup_mode`, `admission_prelim_default`, `admission_type_default`, `title_dozent`, `title_dozent_plural`, `title_tutor`, `title_tutor_plural`, `title_autor`, `title_autor_plural`, `show_raumzeit`, `is_group`, `mkdate`, `chdate`) VALUES(3, 'Community', 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, '{\"CoreOverview\":{\"activated\":1,\"sticky\":1},\"CoreAdmin\":{\"activated\":1,\"sticky\":1},\"CoreForum\":{\"activated\":0},\"Blubber\":{\"activated\":1}}', 'Hier finden Sie virtuelle Veranstaltungen zu unterschiedlichen Themen', '', 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1366882120, 1366882120); +INSERT INTO `sem_classes` (`id`, `name`, `only_inst_user`, `default_read_level`, `default_write_level`, `bereiche`, `module`, `show_browse`, `write_access_nobody`, `topic_create_autor`, `visible`, `course_creation_forbidden`, `modules`, `description`, `create_description`, `studygroup_mode`, `admission_prelim_default`, `admission_type_default`, `title_dozent`, `title_dozent_plural`, `title_tutor`, `title_tutor_plural`, `title_autor`, `title_autor_plural`, `show_raumzeit`, `is_group`, `mkdate`, `chdate`) VALUES(99, 'Studiengruppen', 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, '{\"CoreOverview\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreStudygroupAdmin\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreForum\":{\"activated\":0,\"sticky\":\"0\"},\"CoreStudygroupParticipants\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreDocuments\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreScm\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreWiki\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreAdmin\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreSchedule\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreParticipants\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreLiterature\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreCalendar\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreElearningInterface\":{\"activated\":\"0\",\"sticky\":\"1\"},\"CoreResources\":{\"activated\":\"0\",\"sticky\":\"1\"},\"Blubber\":{\"activated\":1}}', '', '', 1, 0, 0, 'GruppengründerIn', 'GruppengründerInnen', 'ModeratorIn', 'ModeratorInnen', 'Mitglied', 'Mitglieder', 0, 0, 1366882120, 1462287763); -- --- Dumping data for table `sem_types` +-- Daten für Tabelle `sem_types` -- INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(1, 'Vorlesung', 1, 1366882120, 1366882120); @@ -1617,8 +1823,9 @@ 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); + -- --- Dumping data for table `siteinfo_details` +-- Daten für Tabelle `siteinfo_details` -- 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]\n[img]http://www.studip.de/images/studipanim.gif\n**Version:** (:version:)\n[/style]\n[lang=de]Für diese Stud.IP-Installation ((:uniname:)) sind folgende Administratoren zuständig:[/lang]\n[lang=en]The following administrators are responsible for this Stud.IP installation ((:uniname:)):[/lang]\n(:rootlist:)\n[lang=de]allgemeine Anfragen wie Passwort-Anforderungen u.a. richten Sie bitte an:[/lang]\n[lang=en]General queries e.g., password queries, please contact:[/lang]\n(:unicontact:)\n[lang=de]Folgende Einrichtungen sind beteiligt:\n(Genannt werden die jeweiligen Administratoren der Einrichtungen für entsprechende Anfragen)[/lang]\n[lang=en]The following institutes participate:\n(Named are the institutes administrators responsible for the corresponding query areas)[/lang]\n(:adminlist:)'); @@ -1630,40 +1837,47 @@ INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `c 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'); -- --- Dumping data for table `siteinfo_rubrics` +-- Daten für Tabelle `siteinfo_rubrics` -- 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]'); -- --- Dumping data for table `widget_default` +-- Daten für Tabelle `widget_default` -- -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 2, 'user'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'user'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'user'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'user'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 1, 'user'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 2, 'autor'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'user'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'user'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'autor'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'autor'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'autor'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(6, 0, 3, 'autor'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 1, 'autor'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 2, 'tutor'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(6, 0, 4, 'autor'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'autor'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'autor'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'tutor'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'tutor'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'tutor'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(6, 0, 3, 'tutor'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 1, 'tutor'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 2, 'dozent'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(6, 0, 4, 'tutor'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'tutor'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'tutor'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'dozent'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'dozent'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'dozent'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(6, 0, 3, 'dozent'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 1, 'dozent'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 2, 'admin'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(6, 0, 4, 'dozent'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'dozent'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'dozent'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'admin'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'admin'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'admin'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 1, 'admin'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 2, 'root'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'admin'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'admin'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'root'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'root'); INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'root'); -INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 1, 'root'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'root'); +INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'root'); + diff --git a/db/studip_root_user.sql b/db/studip_root_user.sql index d4344b442a2..3c8b80019f2 100644 --- a/db/studip_root_user.sql +++ b/db/studip_root_user.sql @@ -9,7 +9,7 @@ INSERT IGNORE INTO `user_info` (`user_id`, `hobby`, `lebenslauf`, `publi`, `schw # INSERT IGNORE INTO `news` (`news_id`, `topic`, `body`, `author`, `date`, `user_id`, `expire`, `allow_comments`, `chdate`, `chdate_uid`, `mkdate`) VALUES ('29f2932ce32be989022c6f43b866e744', 'Herzlich Willkommen!', '<!--HTML--> -Das Stud.IP-Team heisst sie herzlich willkommen.<br /> +Das Stud.IP-Team heißt Sie herzlich willkommen.<br /> Bitte schauen Sie sich ruhig um!<br /><br /> Wenn Sie das System selbst installiert haben und diese News sehen, haben Sie die Demonstrationsdaten in die Datenbank eingefügt. Wenn Sie produktiv mit dem System arbeiten wollen, sollten Sie diese Daten später wieder löschen, <strong>da die Passwörter der Accounts öffentlich bekannt sind</strong>.<br />  @@ -20,6 +20,6 @@ Wenn Sie das System selbst installiert haben und diese News sehen, haben Sie die # Daten für Tabelle `news_range` # -INSERT IGNORE INTO news_range VALUES ('29f2932ce32be989022c6f43b866e744', '76ed43ef286fb55cf9e41beadb484a9f'); -INSERT IGNORE INTO news_range VALUES ('29f2932ce32be989022c6f43b866e744', 'studip'); +INSERT IGNORE INTO news_range VALUES ('29f2932ce32be989022c6f43b866e744', '76ed43ef286fb55cf9e41beadb484a9f', UNIX_TIMESTAMP(), UNIX_TIMESTAMP()); +INSERT IGNORE INTO news_range VALUES ('29f2932ce32be989022c6f43b866e744', 'studip', UNIX_TIMESTAMP(), UNIX_TIMESTAMP()); -- GitLab