diff --git a/db/studip.sql b/db/studip.sql index a486ebe75713cb8bcb23d0393962a62dd8973a7e..ff8f11d1162873ec264ec4831befbaac86983b4b 100644 --- a/db/studip.sql +++ b/db/studip.sql @@ -1,8 +1,8 @@ --- MySQL dump 10.13 Distrib 8.0.31, for Linux (x86_64) +-- MySQL dump 10.13 Distrib 8.0.33, for Linux (x86_64) -- --- Host: localhost Database: studip_52 +-- Host: localhost Database: studip_53 -- ------------------------------------------------------ --- Server version 8.0.31-0ubuntu0.22.04.1 +-- Server version 8.0.33-0ubuntu0.22.04.2 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; @@ -190,7 +190,7 @@ CREATE TABLE `admissionrules` ( `path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ruletype` (`ruletype`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -351,9 +351,9 @@ CREATE TABLE `auth_user_md5` ( `username` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `password` varbinary(64) NOT NULL DEFAULT '', `perms` enum('user','autor','tutor','dozent','admin','root') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'user', - `Vorname` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `Nachname` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `Email` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `Vorname` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `Nachname` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `Email` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `validation_key` varchar(10) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `auth_plugin` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'standard', `locked` tinyint unsigned NOT NULL DEFAULT '0', @@ -492,22 +492,6 @@ CREATE TABLE `blubber_events_queue` ( ) 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` --- - -DROP TABLE IF EXISTS `blubber_follower`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `blubber_follower` ( - `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 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; -/*!40101 SET character_set_client = @saved_cs_client */; - -- -- Table structure for table `blubber_mentions` -- @@ -632,7 +616,7 @@ CREATE TABLE `cache_types` ( `mkdate` int DEFAULT NULL, PRIMARY KEY (`cache_id`), UNIQUE KEY `class_name` (`class_name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -699,7 +683,7 @@ DROP TABLE IF EXISTS `clipboards`; CREATE TABLE `clipboards` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `name` varchar(256) NOT NULL DEFAULT '', + `name` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `handler` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'Clipboard', `allowed_item_class` varchar(64) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'StudipItem', `mkdate` int unsigned NOT NULL DEFAULT '0', @@ -718,7 +702,7 @@ DROP TABLE IF EXISTS `colour_values`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `colour_values` ( `colour_id` varchar(128) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `description` varchar(256) NOT NULL DEFAULT '', + `description` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `value` varchar(8) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'ffffffff', `mkdate` int unsigned NOT NULL DEFAULT '0', `chdate` int unsigned NOT NULL DEFAULT '0', @@ -825,6 +809,7 @@ CREATE TABLE `consultation_blocks` ( `confirmation_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `size` tinyint unsigned NOT NULL DEFAULT '1' COMMENT 'How many people may book a slot', + `lock_time` int unsigned DEFAULT NULL, `mkdate` int unsigned NOT NULL, `chdate` int unsigned NOT NULL, PRIMARY KEY (`block_id`), @@ -1206,6 +1191,25 @@ CREATE TABLE `cw_bookmarks` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `cw_certificates` +-- + +DROP TABLE IF EXISTS `cw_certificates`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cw_certificates` ( + `id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `course_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `unit_id` int NOT NULL, + `mkdate` int NOT NULL, + PRIMARY KEY (`id`), + KEY `index_user_id` (`user_id`), + KEY `index_unit_id` (`unit_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `cw_containers` -- @@ -1263,7 +1267,7 @@ CREATE TABLE `cw_structural_element_comments` ( `id` int NOT NULL AUTO_INCREMENT, `structural_element_id` int NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `comment` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `comment` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `mkdate` int NOT NULL, `chdate` int NOT NULL, PRIMARY KEY (`id`), @@ -1283,7 +1287,7 @@ CREATE TABLE `cw_structural_element_feedbacks` ( `id` int NOT NULL AUTO_INCREMENT, `structural_element_id` int NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `feedback` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `feedback` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `mkdate` int NOT NULL, `chdate` int NOT NULL, PRIMARY KEY (`id`), @@ -1340,7 +1344,7 @@ CREATE TABLE `cw_task_feedbacks` ( `id` int NOT NULL AUTO_INCREMENT, `task_id` int NOT NULL, `lecturer_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `content` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `mkdate` int NOT NULL, `chdate` int NOT NULL, PRIMARY KEY (`id`), @@ -1363,7 +1367,7 @@ CREATE TABLE `cw_task_groups` ( `target_id` int NOT NULL, `task_template_id` int NOT NULL, `solver_may_add_blocks` tinyint(1) NOT NULL, - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, + `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `mkdate` int NOT NULL, `chdate` int NOT NULL, PRIMARY KEY (`id`), @@ -1408,15 +1412,41 @@ DROP TABLE IF EXISTS `cw_templates`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cw_templates` ( `id` int NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, + `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `purpose` enum('content','template','oer','portfolio','draft','other') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `structure` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, + `structure` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `mkdate` int NOT NULL, `chdate` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `cw_units` +-- + +DROP TABLE IF EXISTS `cw_units`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cw_units` ( + `id` int NOT NULL AUTO_INCREMENT, + `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `range_type` enum('course','user') CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `structural_element_id` int NOT NULL, + `content_type` enum('courseware') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `public` tinyint NOT NULL DEFAULT '1', + `creator_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, + `release_date` int unsigned DEFAULT NULL, + `withdraw_date` int unsigned DEFAULT NULL, + `config` text COLLATE utf8mb4_unicode_ci NOT NULL, + `mkdate` int unsigned NOT NULL, + `chdate` int unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `index_range_id` (`range_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_user_data_fields` -- @@ -1952,7 +1982,7 @@ CREATE TABLE `ex_termine` ( `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `autor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date` int unsigned NOT NULL DEFAULT '0', `end_time` int unsigned NOT NULL DEFAULT '0', `mkdate` int unsigned NOT NULL DEFAULT '0', @@ -2121,6 +2151,7 @@ CREATE TABLE `files` ( `size` int unsigned NOT NULL, `metadata` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `author_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `is_accessible` tinyint(1) DEFAULT NULL, `mkdate` int unsigned NOT NULL, `chdate` int unsigned NOT NULL, PRIMARY KEY (`id`) @@ -2433,7 +2464,7 @@ CREATE TABLE `help_content` ( `installation_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `mkdate` int unsigned NOT NULL, `chdate` int unsigned NOT NULL, - `comment` text COLLATE utf8mb4_unicode_ci, + `comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`content_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -2604,13 +2635,13 @@ DROP TABLE IF EXISTS `licenses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `licenses` ( - `identifier` varchar(64) NOT NULL COMMENT 'According to SPDX standard if able.', - `name` varchar(128) DEFAULT NULL, - `link` varchar(256) DEFAULT NULL, + `identifier` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'According to SPDX standard if able.', + `name` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `link` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default` tinyint(1) DEFAULT '0', - `description` text, - `twillo_licensekey` varchar(16) DEFAULT NULL, - `twillo_cclicenseversion` varchar(8) DEFAULT NULL, + `description` text COLLATE utf8mb4_unicode_ci, + `twillo_licensekey` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `twillo_cclicenseversion` varchar(8) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `chdate` int DEFAULT NULL, `mkdate` int DEFAULT NULL, PRIMARY KEY (`identifier`), @@ -2715,7 +2746,7 @@ CREATE TABLE `log_events` ( `mkdate` int unsigned NOT NULL, PRIMARY KEY (`event_id`), KEY `action_id` (`action_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -2734,7 +2765,7 @@ CREATE TABLE `loginbackgrounds` ( `mkdate` int unsigned DEFAULT NULL, `chdate` int unsigned DEFAULT NULL, PRIMARY KEY (`background_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -3757,10 +3788,10 @@ DROP TABLE IF EXISTS `oauth2_access_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oauth2_access_tokens` ( - `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `client_id` bigint unsigned NOT NULL, - `scopes` text COLLATE utf8mb4_unicode_ci, + `scopes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL DEFAULT '0', `expires_at` int DEFAULT NULL, `mkdate` int NOT NULL, @@ -3778,10 +3809,10 @@ DROP TABLE IF EXISTS `oauth2_auth_codes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oauth2_auth_codes` ( - `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `client_id` bigint unsigned NOT NULL, - `scopes` text COLLATE utf8mb4_unicode_ci, + `scopes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL DEFAULT '0', `expires_at` int DEFAULT NULL, `mkdate` int NOT NULL, @@ -3800,14 +3831,14 @@ DROP TABLE IF EXISTS `oauth2_clients`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oauth2_clients` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `secret` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, + `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `secret` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `redirect` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL DEFAULT '0', - `description` text COLLATE utf8mb4_unicode_ci, - `owner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `homepage` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `admin_notes` text COLLATE utf8mb4_unicode_ci, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `owner` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `homepage` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `admin_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `mkdate` int NOT NULL, `chdate` int NOT NULL, PRIMARY KEY (`id`) @@ -3822,8 +3853,8 @@ DROP TABLE IF EXISTS `oauth2_refresh_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oauth2_refresh_tokens` ( - `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, - `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `access_token_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL DEFAULT '0', `expires_at` int DEFAULT NULL, PRIMARY KEY (`id`), @@ -4065,7 +4096,7 @@ CREATE TABLE `oer_comments` ( `comment_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `review_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `foreign_comment_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `comment` text NOT NULL, + `comment` text COLLATE utf8mb4_unicode_ci NOT NULL, `host_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `chdate` bigint NOT NULL, @@ -4104,11 +4135,11 @@ DROP TABLE IF EXISTS `oer_hosts`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oer_hosts` ( `host_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `sorm_class` varchar(50) NOT NULL DEFAULT 'OERHost', - `name` varchar(64) NOT NULL, - `url` varchar(200) NOT NULL, - `public_key` text NOT NULL, - `private_key` text, + `sorm_class` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'OERHost', + `name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, + `url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, + `public_key` text COLLATE utf8mb4_unicode_ci NOT NULL, + `private_key` text COLLATE utf8mb4_unicode_ci, `active` tinyint NOT NULL DEFAULT '1', `index_server` tinyint NOT NULL DEFAULT '0', `allowed_as_index_server` tinyint NOT NULL DEFAULT '1', @@ -4131,26 +4162,26 @@ CREATE TABLE `oer_material` ( `material_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `foreign_material_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `host_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, - `name` varchar(64) NOT NULL, - `category` varchar(64) NOT NULL DEFAULT '', + `name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, + `category` varchar(64) COLLATE utf8mb4_unicode_ci 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, + `filename` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, + `short_description` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `difficulty_start` tinyint NOT NULL DEFAULT '1', `difficulty_end` tinyint NOT NULL DEFAULT '12', - `player_url` varchar(256) DEFAULT NULL, - `tool` varchar(128) DEFAULT NULL, + `player_url` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `tool` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content_type` varchar(256) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `front_image_content_type` varchar(64) DEFAULT NULL, - `structure` text, + `front_image_content_type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `structure` text COLLATE utf8mb4_unicode_ci, `rating` double DEFAULT NULL, - `license_identifier` varchar(64) NOT NULL DEFAULT 'CC BY SA 3.0', - `uri` varchar(1000) NOT NULL DEFAULT '', - `uri_hash` char(32) NOT NULL DEFAULT '', - `published_id_on_twillo` varchar(50) DEFAULT NULL, - `source_url` varchar(256) DEFAULT NULL, - `data` text, + `license_identifier` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'CC BY SA 3.0', + `uri` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `uri_hash` char(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `published_id_on_twillo` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `source_url` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `data` text COLLATE utf8mb4_unicode_ci, `chdate` bigint NOT NULL, `mkdate` int NOT NULL, PRIMARY KEY (`material_id`), @@ -4180,6 +4211,23 @@ CREATE TABLE `oer_material_users` ( ) 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_post_upload` +-- + +DROP TABLE IF EXISTS `oer_post_upload`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `oer_post_upload` ( + `file_ref_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, + `reminder_date` int unsigned DEFAULT NULL, + `mkdate` int NOT NULL, + `chdate` int NOT NULL, + PRIMARY KEY (`user_id`,`file_ref_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `oer_reviews` -- @@ -4194,7 +4242,7 @@ CREATE TABLE `oer_reviews` ( `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `host_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, `rating` int NOT NULL, - `review` text NOT NULL, + `review` text COLLATE utf8mb4_unicode_ci NOT NULL, `chdate` int NOT NULL, `mkdate` int NOT NULL, PRIMARY KEY (`review_id`), @@ -4215,7 +4263,7 @@ DROP TABLE IF EXISTS `oer_tags`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `oer_tags` ( `tag_hash` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `name` varchar(64) NOT NULL, + `name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`tag_hash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; @@ -4247,9 +4295,9 @@ CREATE TABLE `oer_user` ( `user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `foreign_user_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `host_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `name` varchar(100) NOT NULL, - `avatar` varchar(256) DEFAULT NULL, - `description` text, + `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `avatar` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text COLLATE utf8mb4_unicode_ci, `chdate` int NOT NULL, `mkdate` int NOT NULL, PRIMARY KEY (`user_id`), @@ -4396,7 +4444,7 @@ CREATE TABLE `plugins` ( `automatic_update_url` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `automatic_update_secret` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL, PRIMARY KEY (`pluginid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -4539,7 +4587,9 @@ DROP TABLE IF EXISTS `questionnaire_questions`; CREATE TABLE `questionnaire_questions` ( `question_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `questionnaire_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `etask_task_id` int NOT NULL, + `questiontype` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `internal_name` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `questiondata` text COLLATE utf8mb4_unicode_ci NOT NULL, `position` int NOT NULL, `chdate` int unsigned NOT NULL, `mkdate` int unsigned NOT NULL, @@ -4564,7 +4614,7 @@ CREATE TABLE `questionnaires` ( `stopdate` int unsigned DEFAULT NULL, `visible` tinyint unsigned NOT NULL DEFAULT '0', `anonymous` tinyint unsigned NOT NULL DEFAULT '0', - `resultvisibility` enum('always','never','afterending') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'always', + `resultvisibility` enum('always','never','afterending','afterparticipation') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'always', `editanswers` tinyint unsigned NOT NULL DEFAULT '1', `copyable` tinyint unsigned NOT NULL DEFAULT '0', `chdate` int unsigned NOT NULL, @@ -4633,7 +4683,6 @@ CREATE TABLE `resource_bookings` ( `begin` int unsigned NOT NULL DEFAULT '0', `end` int unsigned NOT NULL DEFAULT '0', `repeat_end` int unsigned DEFAULT NULL, - `repeat_quantity` int DEFAULT NULL, `mkdate` int unsigned NOT NULL DEFAULT '0', `chdate` int unsigned NOT NULL DEFAULT '0', `internal_comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, @@ -4734,7 +4783,7 @@ CREATE TABLE `resource_property_definitions` ( `property_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text CHARACTER SET utf8mb4 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, + `type` enum('bool','text','num','select','user','institute','position','fileref','url') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, `options` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `system` tinyint unsigned NOT NULL DEFAULT '0', `info_label` tinyint NOT NULL DEFAULT '0', @@ -4759,7 +4808,7 @@ DROP TABLE IF EXISTS `resource_property_groups`; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `resource_property_groups` ( `id` int NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL DEFAULT '', + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `position` tinyint NOT NULL DEFAULT '0', `mkdate` int unsigned NOT NULL DEFAULT '0', `chdate` int unsigned NOT NULL DEFAULT '0', @@ -4897,7 +4946,7 @@ CREATE TABLE `roles` ( `rolename` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `system` enum('y','n') CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT 'n', PRIMARY KEY (`roleid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5056,7 +5105,7 @@ CREATE TABLE `sem_classes` ( `chdate` int unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5097,7 +5146,7 @@ CREATE TABLE `sem_types` ( `mkdate` int unsigned NOT NULL, `chdate` int unsigned NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5127,7 +5176,7 @@ DROP TABLE IF EXISTS `semester_data`; CREATE TABLE `semester_data` ( `semester_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `semester_token` varchar(10) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `beginn` int unsigned DEFAULT NULL, `ende` int unsigned DEFAULT NULL, @@ -5366,7 +5415,7 @@ DROP TABLE IF EXISTS `separable_rooms`; CREATE TABLE `separable_rooms` ( `id` int NOT NULL AUTO_INCREMENT, `building_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, - `name` varchar(256) NOT NULL DEFAULT '', + `name` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `mkdate` int unsigned NOT NULL DEFAULT '0', `chdate` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) @@ -5403,7 +5452,7 @@ CREATE TABLE `siteinfo_details` ( `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`detail_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5418,7 +5467,7 @@ CREATE TABLE `siteinfo_rubrics` ( `position` tinyint unsigned DEFAULT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`rubric_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -5474,7 +5523,7 @@ DROP TABLE IF EXISTS `statusgruppen`; CREATE TABLE `statusgruppen` ( `statusgruppe_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` text COLLATE utf8mb4_unicode_ci, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `position` int NOT NULL DEFAULT '0', `size` int NOT NULL DEFAULT '0', @@ -5547,7 +5596,7 @@ CREATE TABLE `termine` ( `range_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `autor_id` char(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date` int unsigned NOT NULL DEFAULT '0', `end_time` int unsigned NOT NULL DEFAULT '0', `mkdate` int unsigned NOT NULL DEFAULT '0', @@ -6079,4 +6128,4 @@ CREATE TABLE `wiki_page_config` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2022-11-21 15:24:29 +-- Dump completed on 2023-06-07 17:12:29 diff --git a/db/studip_default_data.sql b/db/studip_default_data.sql index de2338a71951e3e5cb23ea7ecfdcbfaefadcdf98..811b1dd0745b2234a491b40179d6039d38313597 100644 --- a/db/studip_default_data.sql +++ b/db/studip_default_data.sql @@ -1,6 +1,3 @@ --- --- Daten für Tabelle `admissionrules` --- INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(1, 'ConditionalAdmission', 1, 1388682201, 'lib/admissionrules/conditionaladmission'); INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(2, 'LimitedAdmission', 1, 1388682201, 'lib/admissionrules/limitedadmission'); @@ -12,10 +9,6 @@ INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALU 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'); --- --- Daten für Tabelle `admissionrule_compat` --- - INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'ConditionalAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'CourseMemberAdmission', 1483462780, 1483462780); INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'LimitedAdmission', 1483462780, 1483462780); @@ -70,10 +63,6 @@ INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, ` 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); --- --- 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); @@ -115,25 +104,13 @@ INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `gr 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); --- --- 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); --- --- 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); INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.Booking.Fg', 'Die Textfarbe im Belegungsplan für gewöhnliche Buchungen.', 'ffffffff', 1591630777, 1591630777); INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.CourseBooking.Bg', 'Die Farbe im Belegungsplan für veranstaltungsbezogene Buchungen.', '682c8bff', 1591630777, 1591630777); @@ -153,10 +130,8 @@ INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chd INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.SimpleBookingWithExceptions.Bg', 'Die Farbe im Belegungsplan für einfache Buchungen mit Wiederholungen, bei denen es Ausfalltermine gibt.', '70c3bfff', 1591630777, 1591630777); INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.SimpleBookingWithExceptions.Fg', 'Die Textfarbe im Belegungsplan für einfache Buchungen mit Wiederholungen, bei denen es Ausfalltermine gibt.', 'ffffffff', 1591630777, 1591630777); --- --- Daten für Tabelle `config` --- - +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACCESSIBILITY_INFO_TEXT', '', 'i18n', 'global', 'accessibility', 1686150733, 1686150733, 'Diese Konfiguration bitte unter Admin -> Standort -> Infotext zu barrierefreien Dateien anpassen!'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACCESSIBILITY_RECEIVER_EMAIL', '', 'array', 'global', 'accessibility', 1686150733, 1686150733, 'Die E-Mail-Adressen der Personen, die beim Melden einer Barriere benachrichtigt werden sollen.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACTION_MENU_THRESHOLD', '1', 'integer', 'global', 'global', 1669041528, 1669041528, 'Obergrenze an Einträgen, bis zu der ein Aktionsmenü als Icons dargestellt wird'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMIN_COURSES_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.'); @@ -195,12 +170,11 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c 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_MANAGEMENT_SELECTOR_ORDER_BY', 'name', 'string', 'user', '', 1686150733, 1686150733, 'Gibt an, nach welchem Kriterium die Veranstaltungsschnellwauswahl innerhalb der Veranstaltungsverwaltung sortiert werden soll'); 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.'); @@ -234,6 +208,7 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ENTRIES_PER_PAGE', '20', 'integer', 'global', 'global', 1311411856, 1311411856, 'Anzahl von Einträgen pro Seite'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('EVAL_AUSWERTUNG_CONFIG_ENABLE', '1', 'boolean', 'global', 'evaluation', 1141225624, 1141225624, 'Ermöglicht es dem Nutzer, die grafische Darstellung der Evaluationsauswertung zu konfigurieren'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('EVAL_AUSWERTUNG_GRAPH_FORMAT', 'png', 'string', 'global', 'evaluation', 1141225624, 1141225624, 'Das Format, in dem die Diagramme der grafischen Evaluationsauswertung erstellt werden (jpg, png, gif).'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('EVAL_ENABLE', '1', 'boolean', 'global', 'evaluation', 1686150733, 1686150733, 'Sollen die alten Evaluationen weiterhin eingeschaltet bleiben? Achtung, die alten Evaluationen werden in einem zukünftigen Stud.IP-Release entfernt.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('EXPORT_ENABLE', '1', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob der Export global verfügbar ist.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('EXTERN_ALLOW_ACCESS_WITHOUT_CONFIG', '0', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Free access to external pages (without the need of a configuration), independent of SRI settings above'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('EXTERN_ENABLE', '1', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob die externen Seiten global verfügbar sind.'); @@ -283,7 +258,6 @@ 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)?.'); @@ -306,10 +280,10 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('OERCAMPUS_TWILLO_APPID', '', 'string', 'global', 'OERCampus', 1656513810, 1656513810, 'Welche ID hat dieses Stud.IP, wenn es mit twillo.de kommuniziert?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('OERCAMPUS_TWILLO_DFNAAIID_DATAFIELD', '', 'string', 'global', 'OERCampus', 1656513810, 1656513810, 'Welches Datenfeld eines Nutzers trägt dessen DFN-AAI-ID?'); 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_ENABLE_POST_UPLOAD', '1', 'boolean', 'global', 'OERCampus', 1686150733, 1686150733, 'Post-Upload-Dialog nach Hochladen einer Datei erlauben?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('OER_ENABLE_SUGGESTIONS', '1', 'boolean', 'global', 'OERCampus', 1669041528, 1669041528, 'Studierendenvorschläge erlauben?'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('OER_OERSI_ONLY_DOWNLOADABLE', '1', 'boolean', 'global', 'OERCampus', 1669041528, 1669041528, 'Should the search in OERSI only find downloadable OERs?'); 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.'); @@ -336,6 +310,7 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_DIRECT_ROOM_REQUESTS_ONLY', '0', 'boolean', 'global', 'resources', 1591630777, 1591630777, 'Restricts room requests so that only specific rooms can be requested.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_DISPLAY_CURRENT_REQUESTS_IN_OVERVIEW', '1', 'boolean', 'global', 'resources', 1591630777, 1591630777, 'Whether to display the list with current requests in the room management overview (true) or not (false).'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ENABLE', '0', 'boolean', 'global', '', 0, 0, 'Enable the Stud.IP resource management module'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ENABLE_BOOKINGSTATUS_COLORING', '1', 'boolean', 'global', 'resources', 1686150732, 1686150732, 'Enable the colored presentation of the room booking status of a date'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_EXPORT_BOOKINGTYPES_DEFAULT', '[0,1,2]', 'array', 'global', 'resources', 1656513808, 1656513808, 'Standardmäßig zu exportierende Belegungstypen'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_MAP_SERVICE_URL', 'https://www.openstreetmap.org/#map=19/LATITUDE/LONGITUDE', 'string', 'global', 'resources', 1591630777, 1591630777, 'The URL for a map service if you wish to use another service instead of OpenStreetMap. The default is: https://www.openstreetmap.org/#map=17/LATITUDE/LONGITUDE (LATITUDE and LONGITUDE are placeholders!)'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_MAX_PREPARATION_TIME', '120', 'integer', 'global', 'resources', 1591630777, 1591630777, 'The maximum amount of time that can be used for preparation before the actual booking begins. The value represents minutes, not hours!'); @@ -360,8 +335,8 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SENDFILE_LINK_MODE', 'normal', 'string', 'global', 'files', 1141212096, 1141212096, 'Format der Downloadlinks: normal=sendfile.php?parameter=x, old=sendfile.php?/parameter=x, rewrite=download/parameter/file.txt'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SHOWSEM_ENABLE', '1', 'boolean', 'user', '', 1122461027, 1122461027, 'Einstellung für Nutzer, ob Semesterangaben in der Ãœbersicht \"Meine Veranstaltung\" nach dem Titel der Veranstaltung gemacht werden; Systemdefault'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SHOW_ADRESSEES_LIMIT', '20', 'string', 'global', 'global', 1530289048, 1530289048, 'Ab wievielen Adressaten dürfen diese aus datenschutzgründen nicht mehr angezeigt werden in einer empfangenen Nachricht?'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SHOW_FOLDER_SIZE', '1', 'boolean', 'global', 'files', 1686150733, 1686150733, 'SHOW_FOLDER_SIZE gibt an, ob die Anzahl der Objekte (Dateien und Unterordner) in einem Ordner angezeigt werden sollen.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SHOW_TERMS_ON_FIRST_LOGIN', '1', 'boolean', 'global', 'global', 1510849314, 1510849314, 'If true, the user has to accept the terms on his first login (this feature makes only sense, if you use disable ENABLE_SELF_REGISTRATION).'); -INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SKIPLINKS_ENABLE', '', 'boolean', 'user', 'privacy', 1311411856, 1311411856, 'Wählen Sie diese Option, um Skiplinks beim ersten Drücken der Tab-Taste anzuzeigen (Systemdefault).'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SMILEYADMIN_ENABLE', '1', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob die Administration der Smileys verfügbar ist.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SOAP_ENABLE', '0', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Schaltet die SOAP-Schnittstelle an.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SOAP_USE_PHP5', '0', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Sollen PHP-Bibliotheken für SOAP verwendet werden?'); @@ -388,6 +363,11 @@ INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `c INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('USER_HIGH_CONTRAST', '0', 'boolean', 'user', 'accessibility', 1669041528, 1669041528, 'Schaltet ein barrierefreies Stylesheet mit hohem Kontrast ein oder aus.'); 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('VIRUSSCAN_HOST', '127.0.0.1', 'string', 'global', 'files', 1686150733, 1686150733, 'Host des Virenscanners (wird nur verwendet, falls kein Socket eingetragen ist)'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('VIRUSSCAN_MAX_STREAMLENGTH', '26214400', 'integer', 'global', 'files', 1686150733, 1686150733, 'Maximale Streamlänge in Bytes, die beim Virenscanner erlaubt ist'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('VIRUSSCAN_ON_UPLOAD', '0', 'boolean', 'global', 'files', 1686150733, 1686150733, 'Sollen Dateien beim Upload mit ClamAV auf Viren überprüft werden?'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('VIRUSSCAN_PORT', '3310', 'integer', 'global', 'files', 1686150733, 1686150733, 'Port des Virenscanners (wird nur verwendet, falls kein Socket eingetragen ist)'); +INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('VIRUSSCAN_SOCKET', '/var/run/clamav/clamd.ctl', 'string', 'global', 'files', 1686150733, 1686150733, 'Pfad zum Unix Socket (wird statt TCP verwendet, falls etwas eingetragen ist)'); 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.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('WEBSERVICES_ENABLE', '0', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Schaltet die Webservice-Schnittstelle an.'); INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('WIKI_COMMENTS_ENABLE', '0', 'boolean', 'user', '', 1591630778, 1591630778, 'Einstellung für die Anzeige von Kommentaren in Wiki als Icon'); @@ -401,32 +381,21 @@ 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_DIRS', '10', 'integer', 'global', 'files', 1130840962, 1130840962, 'Die maximale Anzahl an Verzeichnissen, die bei einem Zipupload automatisch entpackt werden'); 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'); - --- --- 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); INSERT INTO `content_terms_of_use_entries` (`id`, `name`, `position`, `description`, `student_description`, `download_condition`, `icon`, `is_default`, `mkdate`, `chdate`) VALUES('NO_LICENSE', 'Veröffentlichte Werke ohne erworbene Lizenz oder gesonderte Erlaubnis', 5, 'Veröffentlichte Werke, für die keine Lizenz erworben wurde und für die keine gesonderte Erlaubnis vorliegt, dürfen unter den Erlaubnissen des § 60a UrhG für Unterrichtsteilnehmende zugänglich gemacht werden.\n\nEs muss sich dabei um kleine Teile des Gesamtwerkes handeln (z.B. max. 15% eines Buches oder Bildbandes, 5 Minuten bei Musikstücken oder Filmen, Kinofilme erst nach 2 Jahren). Einzelne Abbildungen, Photos oder Artikel aus wissenschaftlichen Zeitschriften dürfen ganz zugänglich gemacht werden, Artikel aus Zeitungen und anderen Zeitschriften allerdings ebenfalls nur zu 10%.\n\nZum Hintergrund: Diese Regelung gilt wegen der Befristung des § 60a UrhG zunächst bis März 2023, eine Einzelmeldung oder Abrechnung über die Hochschule o.ä. ist nicht erforderlich.', '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, '60a', 0, 1544006590, 1544006609); INSERT INTO `content_terms_of_use_entries` (`id`, `name`, `position`, `description`, `student_description`, `download_condition`, `icon`, `is_default`, `mkdate`, `chdate`) VALUES('SELFMADE_NONPUB', 'Selbst verfasstes, nicht publiziertes Werk', 2, 'Selbst verfasste Werke dürfen Sie ohne Einschränkungen zugänglich machen, wenn Sie die Verwertungsrechte nicht an einen Verlag abgetreten haben. \nTypische Beispiele sind selbst verfasste:\n - Präsentationsfolien, auch mit Text- und Bildzitaten aus fremden Quellen \n- Ãœbungsaufgaben, Musterlösungen \n- Computer-Programme \n- Literaturlisten, Seminarpläne\n - Vorlesungsskripte \n\nWichtig ist die Beachtung des Zitatrechtes: \nWenn Sie Teile fremder Quellen übernehmen, ist das zulässig, solange diese Teile mit Quelle gekennzeicht werden und Gegenstand einer wissenschaftlichen Auseinandersetzung sind.', 'Das Dokument wird von den Autor/-innen zur Nutzung im Rahmen dieser Veranstaltung bereitgestellt. Sie dürfen es für private Zwecke herunterladen und archivieren, nicht jedoch ohne Erlaubnis weitergeben. Für darüber hinaus gehende Erlaubnisse (Weitergabe, Veränderung) wenden Sie sich an die Autor/-innen oder beachten Sie die Hinweise im Dokument.', 0, 'own-license', 0, 1499435049, 1499435049); INSERT INTO `content_terms_of_use_entries` (`id`, `name`, `position`, `description`, `student_description`, `download_condition`, `icon`, `is_default`, `mkdate`, `chdate`) VALUES('UNDEF_LICENSE', 'Ungeklärte Lizenz', 1, 'Bitte geben Sie an, welcher Lizenz das hochgeladene Material unterliegt bzw. auf welcher Grundlage Sie es zugänglich machen. Unterbleibt diese Angabe, wird beim Herunterladen auf den ungeklärten Lizenzstatus hingewiesen.', 'Diese Datei enthält Material mit einer ungeklärten Lizenz. Zu Fragen der Nutzung und Weitergabe wenden Sie sich an die Person, die diese Datei hochgeladen hat.', 0, 'question-circle', 1, 1499435049, 1516978561); 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); --- --- Daten für Tabelle `coursewizardsteps` --- - INSERT INTO `coursewizardsteps` (`id`, `name`, `classname`, `number`, `enabled`, `mkdate`, `chdate`) VALUES('3780ba468183b5ed6d7c32fbd73edb02', 'Erweiterte Grunddaten', 'AdvancedBasicDataWizardStep', 1, 0, 1483462779, 1483462779); INSERT INTO `coursewizardsteps` (`id`, `name`, `classname`, `number`, `enabled`, `mkdate`, `chdate`) VALUES('59405e754a753a21588d63eac75f0ccd', 'Studienbereiche', 'StudyAreasWizardStep', 2, 1, 1448561064, 1448561064); INSERT INTO `coursewizardsteps` (`id`, `name`, `classname`, `number`, `enabled`, `mkdate`, `chdate`) VALUES('6a7f6dfa33738438d332a85aaeadf230', 'LVGruppen', 'LVGroupsWizardStep', 3, 1, 1483462781, 1483462781); INSERT INTO `coursewizardsteps` (`id`, `name`, `classname`, `number`, `enabled`, `mkdate`, `chdate`) VALUES('e455df8d296d7dc46a5a27cb9bcc40b0', 'Grunddaten', 'BasicDataWizardStep', 1, 1, 1448561064, 1448561064); INSERT INTO `coursewizardsteps` (`id`, `name`, `classname`, `number`, `enabled`, `mkdate`, `chdate`) VALUES('ec7b6671be2d47e03e5863e5e5b75e14', 'Studienbereich oder LV-Gruppe', 'StudyAreasLVGroupsCombinedWizardStep', 3, 0, 1607702429, 1607702429); --- --- 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); +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('5e8536eda6d60e42c1068195b812b021', 'ca6df41746dbd2077d993d3bfddbf10c', 1, NULL, NULL, '[]', 'normal', 'periodic', 0, 1, NULL, NULL, NULL, 0, NULL, NULL, 0, 1686150733, 1686150733); +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('69f3cf620a3ee6a3e77a554163685520', '81f150b1a22210a1d6fac70220faa831', 1, NULL, NULL, '{\"verbose\":false}', 'normal', 'periodic', 41, 1, NULL, NULL, NULL, 1686181260, NULL, NULL, 0, 1686150733, 1686150733); 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('6eef46d414b104b153402be299e16515', '2f2713671892bd9624fc27866cfd4630', 0, NULL, '', '{\"verbose\":\"1\",\"send_messages\":\"1\"}', 'normal', 'periodic', -30, NULL, NULL, NULL, NULL, 0, NULL, NULL, 0, 1403258015, 1403258130); 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('81411d712690ab3a82032439dbcdc8c1', '9c4ad2a8fe47d07e61475d25f5e539db', 0, NULL, NULL, '[]', 'normal', 'periodic', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 0, 1403258017, 1403258017); 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('b6e232acce27674e496bd2182aab5aaa', '43f9da3d9245d0f01b43f744e0b8cdce', 0, NULL, NULL, 'null', 'normal', 'periodic', 55, 0, NULL, NULL, NULL, 1530312900, NULL, NULL, 0, 1530289049, 1530290418); @@ -435,32 +404,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); --- --- Daten für Tabelle `cronjobs_tasks` --- - 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('81f150b1a22210a1d6fac70220faa831', 'lib/cronjobs/courseware.php', 'CoursewareCronjob', 1, 0, 1, 1686150733, 1686150733); 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('ca6df41746dbd2077d993d3bfddbf10c', 'lib/cronjobs/remind_oer_upload.class.php', 'RemindOerUpload', 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); --- --- 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); 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('41cda2be71fe9efd6e28b853fc0681f3', 'zugeordnete Planungsfarbe', 'sem', NULL, 'admin', 'root', NULL, 0, NULL, NULL, 'textline', '', 0, NULL, 0, 'Zugewiesene Farbe im Veranstaltungsplaner', 0); 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); --- --- 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); INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('0be387b9379a05c5578afce64b0c688f', '724244416b5d04a4d8f4eab8a86fdbf8', 4, 'Mangelhaft', 5, 0, 0, 0); INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('21b3f7cf2de5cbb098d800f344d399ee', '12e508079c4770fb13c9fce028f40cac', 0, 'Montag', 1, 0, 0, 0); @@ -492,10 +451,6 @@ INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `val INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('f0016e918b5bc5c4cf3cc62bf06fa2e9', '12e508079c4770fb13c9fce028f40cac', 1, 'Dienstag', 2, 0, 0, 0); INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('fa2bf667ba73ae74794df35171c2ad2e', '724244416b5d04a4d8f4eab8a86fdbf8', 3, 'Ausreichend', 4, 0, 0, 0); --- --- Daten für Tabelle `evalquestion` --- - INSERT INTO `evalquestion` (`evalquestion_id`, `parent_id`, `type`, `position`, `text`, `multiplechoice`) VALUES('12e508079c4770fb13c9fce028f40cac', '0', 'multiplechoice', 0, 'Werktage-mehrfach', 1); INSERT INTO `evalquestion` (`evalquestion_id`, `parent_id`, `type`, `position`, `text`, `multiplechoice`) VALUES('442e1e464e12498bd238a7767215a5a2', '0', 'multiplechoice', 0, 'Freitext-Einzeilig', 0); INSERT INTO `evalquestion` (`evalquestion_id`, `parent_id`, `type`, `position`, `text`, `multiplechoice`) VALUES('6fddac14c1f2ac490b93681b3da5fc66', '0', 'multiplechoice', 0, 'Werktage', 0); @@ -504,184 +459,176 @@ INSERT INTO `evalquestion` (`evalquestion_id`, `parent_id`, `type`, `position`, INSERT INTO `evalquestion` (`evalquestion_id`, `parent_id`, `type`, `position`, `text`, `multiplechoice`) VALUES('a68bd711902f23bd5c55a29f1ecaa095', '0', 'multiplechoice', 0, 'Freitext-Mehrzeilig', 0); INSERT INTO `evalquestion` (`evalquestion_id`, `parent_id`, `type`, `position`, `text`, `multiplechoice`) VALUES('ef227e91618878835d52cfad3e6d816b', '0', 'polskala', 0, 'Wertung 1-5', 0); --- --- 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); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('01ad8998268101ad186babf43dac30a4', '01ad8998268101ad186babf43dac30a4', 'de', 'In den Standard-Vertretungseinstellungen können Dozierende eine Standard-Vertretung festlegen, die alle Veranstaltungen des Dozierenden verwalten und ändern kann.', 'dispatch.php/settings/deputies', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('0237ea35a203be81e44c979d82ef5ee6', '0237ea35a203be81e44c979d82ef5ee6', 'en', 'Archived courses to which the user is assigned appear here. Content can no longer be changed, but stored files can be downloaded as zip files.', 'dispatch.php/my_courses/archive', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('02b4e3ce7b8fe6b3e6a3586d410a51a1', '02b4e3ce7b8fe6b3e6a3586d410a51a1', 'en', 'This page shows the study groups to which the user is assigned. Study groups are an easy way to collaborate with fellow students, colleagues and others. Each user can create study groups or search for them. The colour coding can be adjusted individually.', 'dispatch.php/my_studygroups', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('04457f9a66eab07618fe502d470a9711', '04457f9a66eab07618fe502d470a9711', 'de', 'In der Ãœbersicht finden sich veranstaltungsbezogene Kurz- und Detail-Informationen, Ankündigungen, Termine und Umfragen.', 'dispatch.php/course/overview', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('0838a96b5678e2fc26be0ee38ae67619', '0838a96b5678e2fc26be0ee38ae67619', 'en', 'In DoIT!, lecturers have the ability to set different types of tasks, including file uploads, multiple-choice questions, and peer reviewing. The task processing can be limited in time and can be done in groups.', 'plugins.php/reloadedplugin/show', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('0ad754cc62d1e86e97c1a28dd68ac40c', '0ad754cc62d1e86e97c1a28dd68ac40c', 'en', 'Here you can find an overview of the dates that have been booked by students.', 'plugins.php/homepageterminvergabeplugin/show_bookings', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('0c055cc6ae418a96ff3afa9db13098df', '0c055cc6ae418a96ff3afa9db13098df', 'en', 'You can use the administration features to change the properties of the course at a later date. Under Actions a simulation of the student\'s view is possible.', 'dispatch.php/course/management', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('0d83ce036f2870f873446230c0118bb7', '0d83ce036f2870f873446230c0118bb7', 'en', 'The learning module interface makes it possible to provide study units or tests from external programs such as ILIAS and LON-CAPA in Stud.IP.', 'dispatch.php/course/elearning/show', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('0e816d9428a3bc8a73fb0042fb2da540', '0e816d9428a3bc8a73fb0042fb2da540', 'en', 'Here the affiliation to user domains can be viewed, but not changed.', 'dispatch.php/settings/userdomains', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('1058f03da5b6fc6a5ff3a08c9c1fa5f7', '1058f03da5b6fc6a5ff3a08c9c1fa5f7', 'de', 'Hier können der Veranstaltung weitere Funktionen hinzugefügt werden.', 'dispatch.php/course/plus', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('1289e991a93dce5a0b4edd678514325e', '1289e991a93dce5a0b4edd678514325e', 'de', 'Hier können einzelne Inhaltselemente nachträglich aktiviert oder deaktiviert werden. Aktivierte Inhaltselemente fügen neue Funktionen zu Ihrem Profil oder Ihren Einstellungen hinzu. Diese werden meist als neuer Reiter im Menü erscheinen. Wenn Funktionalitäten nicht benötigt werden, können diese hier deaktiviert werden. Die entsprechenden Menüpunkte werden dann ausgeblendet.', 'dispatch.php/profilemodules', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('142482b4b06a376b2eb4c91d38559a15', '142482b4b06a376b2eb4c91d38559a15', 'de', 'Freie Gestaltung von Reiternamen und Inhalten durch Lehrende. Es gibt Raum für eigene Informationen, der Name des Reiters ist frei definierbar. Es können beliebig viele Einträge (\"neue Einträge\") hinzugefügt werden.', 'dispatch.php/course/scm', '4.0', 1, 0, 1, '', '', 0, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('14b77e9e0b7773c92db9e7344a23fcfc', '14b77e9e0b7773c92db9e7344a23fcfc', 'de', 'Mit der Personensuche können NutzerInnen gefunden werden, solange deren Privatsphäre-Einstellung dies nicht verhindert. Die Suche kann auf bestimmte Veranstaltungen oder Einrichtungen begrenzt werden.', 'browse.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('164f77ab2cb7d38fd1ea20ed725834fd', '164f77ab2cb7d38fd1ea20ed725834fd', 'de', 'Hier findet sich eine Ãœbersicht über die Termine, die von Studierenden gebucht wurden.', 'plugins.php/homepageterminvergabeplugin/show_bookings', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('1804e526c2f6794b877a4b2096eaa67a', '1804e526c2f6794b877a4b2096eaa67a', 'en', 'Blubber is a mixed version of forum and chat where participants\' posts are displayed in real time. Others can be informed about a post by mentioning them in the post by @username or @\'first name last name\'.', 'plugins.php/blubber/streams/forum', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('194874212676ced8d45e1883da1ad456', '194874212676ced8d45e1883da1ad456', 'de', 'Das Forum ist eine textbasierte, zeit- und ortsunabhängige Möglichkeit zum Austausch von Fragen, Meinungen und Erfahrungen. Beiträge können abonniert, exportiert, als Favoriten gekennzeichnet und editiert werden. Ãœber die Navigation links können unterschieldiche Ansichten (z.B. Neue Beiträge seit letztem LogIn) gewählt werden.', 'dispatch.php/course/forum', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('19c2bc232075602bd39efd4b6623d576', '19c2bc232075602bd39efd4b6623d576', 'de', 'Mit der Studienbereiche-Funktion kann die Veranstaltung einem Studienbereich zugeordnet werden. Die Bearbeitung kann gesperrt sein, wenn Daten aus anderen Systemen (z.B. LSF/ UniVZ) übernommen werden.', 'dispatch.php/course/study_areas/show', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('19d47b782ac5c8b8b21bd1f94858a0fa', '19d47b782ac5c8b8b21bd1f94858a0fa', 'de', 'Mit Zugangsberechtigungen (Anmeldeverfahren) lässt sich z.B. durch Passwörter, Zeitsteuerung und TeilnehmerInnenbeschränkung der Zugang zu einer Veranstaltung regulieren.', 'dispatch.php/course/admission', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('1c61657979ce22a9af023248a617f6b2', '1c61657979ce22a9af023248a617f6b2', 'de', 'Die Startseite wird nach dem Einloggen angezeigt und kann an persönliche Bedürfnisse mit Hilfe von Widgets angepasst werden.', 'dispatch.php/start', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('1cb8fd77427ebc092d751eea95454b0a', '1cb8fd77427ebc092d751eea95454b0a', 'en', 'Here you can edit reference lists and make them visible in the course (by clicking on the \"eye\").', 'dispatch.php/literature/edit_list', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('1d1323471cf21637f51284f4e6f2d135', '1d1323471cf21637f51284f4e6f2d135', 'de', 'Detaillierte Informationen über die Veranstaltung werden angezeigt, wie z.B. die Veranstaltungsnummer, Zuordnungen, Lehrende, Tutorinnen und Tutoren etc. In den Detail-Informationen ist unter Aktionen das Eintragen in eine Veranstaltung möglich.', 'dispatch.php/course/details', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('1da144f3c6f52af0566c343151a6a6ff', '1da144f3c6f52af0566c343151a6a6ff', 'de', 'In den Benachrichtigungseinstellungen kann ausgewählt werden, bei welchen Änderungen innerhalb einer Veranstaltung eine Benachrichtigung erfolgen soll.', 'dispatch.php/settings/notification', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('1dca5b0b83f7bca92ec4add50d34b8c5', '1dca5b0b83f7bca92ec4add50d34b8c5', 'de', 'Hier können der Studiengruppe Mitglieder hinzugefügt und Nachrichten an diese versendet werden.', 'dispatch.php/course/studygroup/members', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('1ea099717ceb1b401aedcedc89814d9c', '1ea099717ceb1b401aedcedc89814d9c', 'en', 'The study diary supports the autonomous studying process of the students and is managed independently by them. Inquiries to the lecturers regarding work steps are possible, certain data can be released individually.', 'plugins.php/lerntagebuchplugin/overview', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('1f216fe42d879c3fcbb582d67e9ad5a2', '1f216fe42d879c3fcbb582d67e9ad5a2', 'en', 'Here, appointments can be assigned topics or previously entered topics can be taken over and edited.', 'dispatch.php/course/topics', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('1f6e2f98affbffb1d12904355e9313e5', '1f6e2f98affbffb1d12904355e9313e5', 'de', 'Diese Seite zeigt die Einrichtungen an, denen die/der NutzerIn zugeordnet ist.', 'dispatch.php/my_institutes', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('2075fe42f56207fbd153a810188f1beb', '2075fe42f56207fbd153a810188f1beb', 'en', 'Configuration of the study diary for students and creation of a study diary for lecturers.', 'plugins.php/lerntagebuchplugin/admin_settings', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('233564d01b8301ebec7ef2fe918d1290', '233564d01b8301ebec7ef2fe918d1290', 'de', 'Ansicht über die der/ dem Stud.IP-NutzerIn zugeordneten Einrichtungen.', 'dispatch.php/settings/statusgruppen', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('245ce01d7a0175ab0b977ae822821e9e', '245ce01d7a0175ab0b977ae822821e9e', 'de', 'Diese Seite bietet die Möglichkeit Stud.IP-Nutzende in das eigene Adressbuch einzutragen und alle bereits im Adressbuch befindlichen Kontakte aufzulisten.', 'contact.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('25255dc15fd0d6260bc1abd1f10aecc5', '25255dc15fd0d6260bc1abd1f10aecc5', 'de', 'Individuelle persönliche Angaben, wie bspw. E-Mail-Adresse, können auf dieser Seite verändert und angepasst werden. ', 'dispatch.php/settings/account', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('260ee12fdc7dccb30eca2cc075ef0096', '260ee12fdc7dccb30eca2cc075ef0096', 'en', 'The schedule settings offer the possibility to be adapted to your own needs.', 'dispatch.php/settings/calendar', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('2689cecba24e021f05fcece5e4c96057', '2689cecba24e021f05fcece5e4c96057', 'de', 'Mit der Evaluationen-Funktion lassen sich Befragungen mit Multiple-Choice, Likert- und Freitextfragen für Veranstaltungen, Studiengruppen, das eigene Profil oder Einrichtungen erstellen. Dabei können auch öffentliche Vorlagen anderer Personen verwendet werden. Es werden alle zukünftigen, laufenden und beendeten Evaluationen angezeigt.', 'admin_evaluation.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('27c4d9837cfb1a9a40c079e16daac902', '27c4d9837cfb1a9a40c079e16daac902', 'en', 'This page offers the possibility to enter Stud.IP users in your own address book and to list all contacts already in the address book.', 'contact.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('29c3bfa01ddbaaa998094d3ee975a06a', '29c3bfa01ddbaaa998094d3ee975a06a', 'de', 'Der Ablaufplan zeigt Termine, Themen und Räume der Veranstaltung an. Einzelne Termine können bearbeitet werden, z.B. können Themen zu Terminen hinzugefügt werden.', 'dispatch.php/course/dates', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('2a389c2472656121a76ca4f3b0e137d4', '2a389c2472656121a76ca4f3b0e137d4', 'en', 'Here you can upload a profile picture.', 'dispatch.php/settings/avatar', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('2c55eab1f52d6f7d1021880836906f5b', '2c55eab1f52d6f7d1021880836906f5b', 'de', 'Hier lassen sich Literaturlisten bearbeiten und in der Veranstaltung sichtbar schalten (mit Klick auf das \"Auge\").', 'dispatch.php/literature/edit_list.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('2f1602394a4e31c2e30706f0a0b3112f', '2f1602394a4e31c2e30706f0a0b3112f', 'en', 'On this page you can see which contacts are currently online. A message can be sent to these people. Clicking on a person\'s name will take you to their profile.', 'dispatch.php/online', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('2fcc672d91f2627ab5ca48499e8b1617', '2fcc672d91f2627ab5ca48499e8b1617', 'de', 'Möglichkeit zur Bereitstellung von Vorlesungsaufzeichnungen und Podcasts für Studierende der Veranstaltung (durch Verlinkung auf die Dateien auf dem Medienserver). ', 'plugins.php/mediacastsplugin/show', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('3318ee99a062079b463e902348ad520e', '3318ee99a062079b463e902348ad520e', 'en', 'Here, lecturers can create and display announcements for their courses, institutions, and profile page, with the ability to filter the display.', 'dispatch.php/news/admin_news', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('357bbf06015b2738aae15837f581a07d', '357bbf06015b2738aae15837f581a07d', 'en', 'Detailed information about the course, e.g. the course number, assignments, lecturers, tutors, etc. is displayed. In the detail information, you can enter a course under Actions.', 'dispatch.php/course/details', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('35b1860b95854a2533b6ecfbbf04ab71', '35b1860b95854a2533b6ecfbbf04ab71', 'de', 'Der Stundenplan besteht aus abonnierten Veranstaltungen, die ein- und ausgeblendet sowie in Darstellungsgröße und -form angepasst werden können.', 'dispatch.php/calendar/schedule', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('3607d6daea679dcd7003e076fdd1660a', '3607d6daea679dcd7003e076fdd1660a', 'en', 'The list of participants shows a list of the participants of the course. Additional participants can be added, removed, downgraded, promoted or assigned to self-defined groups by lecturers.', 'dispatch.php/course/members', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('362a67fff2ef7af8cca9f8e20583c9f2', '362a67fff2ef7af8cca9f8e20583c9f2', 'en', 'Contacts from the address book can be displayed sorted according to the groups here.', '???', '3.1', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('38d1a86517eb6cc195b2e921270c3035', '38d1a86517eb6cc195b2e921270c3035', 'en', 'The group calendar provides an overview of course dates and personalized additional dates for that course.', 'plugins.php/gruppenkalenderplugin/show', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('394a45f94e1d84d3744027a5a69d9e3e', '394a45f94e1d84d3744027a5a69d9e3e', 'de', 'Auf dieser Seite lässt sich einsehen, welche Kontakte gerade online sind. Diesen Personen kann eine Nachricht geschickt werden. Das Klicken auf den Namen einer Person leitet zu deren Profil weiter.', 'dispatch.php/online', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('3b7a4c04017fef2984ee029610194f26', '3b7a4c04017fef2984ee029610194f26', 'en', 'The settings of the messaging system offer the possibility to forward the messages received in Stud.IP to your email address.', 'dispatch.php/settings/messaging', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('3d040e95a8c29e733a8d5439ee9f5b59', '3d040e95a8c29e733a8d5439ee9f5b59', 'en', 'The name, function and access restriction of the study group can be edited here.', 'dispatch.php/course/studygroup/edit', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('4151003175042b71bea3529e5adc5a9e', '4151003175042b71bea3529e5adc5a9e', 'de', 'Mit der Terminvergabe können Termine für Sprechstunden, Prüfungen usw. angelegt werden, in die sich Studierende selbst eintragen können.', 'plugins.php/homepageterminvergabeplugin/showadmin', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('42060187921376807f90e52fad5f9822', '42060187921376807f90e52fad5f9822', 'en', 'With the Surveys and Tests function, you can create (time-controlled) surveys or individual multiple/single-choice questions for courses, study groups or the profile.', 'admin_vote.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('437c83a27473ef8139b47198101067fb', '437c83a27473ef8139b47198101067fb', 'de', 'Hier erscheinen archivierte Veranstaltungen, denen der Nutzer zugeordnet ist. Inhalte können nicht mehr verändert, jedoch hinterlegte Dateien als zip-Datei heruntergeladen werden.', 'dispatch.php/my_courses/archive', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('438c4456f85afec29fd9f47c111136c1', '438c4456f85afec29fd9f47c111136c1', 'en', 'This page shows the institutions that the user is assigned to.', 'dispatch.php/my_institutes', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('43df8e33145c25eb6d941e4e845ada24', '43df8e33145c25eb6d941e4e845ada24', 'en', 'In the notification settings you can select which changes within a course you want to be notified for.', 'dispatch.php/settings/notification', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('440e50f7fcc825368aa9026273d2cd0d', '440e50f7fcc825368aa9026273d2cd0d', 'en', 'The timetable consists of courses you have subscribed to, which can be shown and hidden as well as adjusted in display size and form.', 'dispatch.php/calendar/schedule', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('44edb997707d1458cbf8a3f8f316b908', '44edb997707d1458cbf8a3f8f316b908', 'en', 'The reference page offers teachers the possibility to create reference lists or to import them from reference management programs. These lists can be copied into courses and made visible. Depending on the connection, the actual book inventory of the university can be searched.', 'dispatch.php/course/literature', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('462f1447b1a8a93ab7bdb2524f968b1a', '462f1447b1a8a93ab7bdb2524f968b1a', 'de', 'Hier kann die Zugehörigkeit zu Nutzerdomänen eingesehen, aber nicht geändert werden.', 'dispatch.php/settings/userdomains', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('4698cafeb9823735c50fd3a1745950ba', '4698cafeb9823735c50fd3a1745950ba', 'de', 'In den Grunddaten können Titel, Beschreibung, Dozierende etc. geändert werden. Die Bearbeitung kann teilweise gesperrt sein, wenn Daten aus anderen Systemen (z.B. LSF/ UniVZ) übernommen werden.', 'dispatch.php/course/basicdata/view', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('4e14c94cda99e2ef6462f7fef06d9c91', '4e14c94cda99e2ef6462f7fef06d9c91', 'en', 'With access authorisation (enrolment procedure), access to a course can be regulated e.g. by means of passwords, time control and participant restrictions.', 'dispatch.php/course/admission', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('4e60dd9635f3d3fddecc78e0d1f646c7', '4e60dd9635f3d3fddecc78e0d1f646c7', 'de', 'Unter \"Studiendaten\" können manuell zusätzliche Studiengänge und Einrichtungen hinzugefügt werden, wenn sie nicht automatisch aus einem externen System (z.B. LSF/ UniVZ) übernommen wurden.', 'dispatch.php/settings/studies', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('4f9d79fe88e81486b8c1f192d70232d5', '4f9d79fe88e81486b8c1f192d70232d5', 'de', 'Mit der Einrichtungssuche können Einrichtungen über ein freies Suchfeld oder den Einrichtungsbaum gefunden werden.', 'institut_browse.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('51a0399250de6365619c961ec3669ad3', '51a0399250de6365619c961ec3669ad3', 'en', 'Blubber is a mixture of forum and chat. Messages are displayed in the public stream. Other users can be informed about a post by mentioning them by @username or @\'firstname surname\' in the post.', 'plugins.php/blubber/streams/profile', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('51b98d659590e1e37dae5e5e5cc028bb', '51b98d659590e1e37dae5e5e5cc028bb', 'en', 'File management provides the ability to upload, manage, and download personal files that are not visible to others.', 'dispatch.php/document/files', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('5475d65b07fdaf5f234bf6eed3d5e4a9', '5475d65b07fdaf5f234bf6eed3d5e4a9', 'en', 'The evaluation function can be used to create surveys with multiple-choice, and free text questions for courses, study groups, your own profile or institutions. Other people\'s public templates can also be used. All future, current and completed evaluations are displayed.', 'admin_evaluation.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('55499281ce1a4757f17aaf73faa072ea', '55499281ce1a4757f17aaf73faa072ea', 'de', 'Auf dieser Seite können sie sich vor dem Archivieren vergewissern, das die richtige(n) Veranstaltunge(n) zum Archivieren ausgewählt wurden.', 'dispatch.php/course/archive/confirm', '4.0', 1, 0, 1, '', '', 0, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('57f1b29d3c1a558f5cc799c1aade7f14', '57f1b29d3c1a558f5cc799c1aade7f14', 'en', 'Here, contact groups or the entire address book can be exported in order to import them into an external program.', 'contact_export.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('595c46d86f681f7da4bd2fae780db618', '595c46d86f681f7da4bd2fae780db618', 'de', 'Wählen Sie das gewünschte System und anschließend das Lernmodul/ den Test aus. Schreibrechte bestimmen, wer zukünftig das Lernmodul bearbeiten darf. In der Sidebar befindet sich die Option \"Zuordnungen aktualisieren\", um geänderte Inhalte z.B. im ILIAS Kurs zu Stud.IP zu übertragen.', 'dispatch.php/course/elearning/edit', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('5a90d1219dbeb07c124156592fb5d877', '5a90d1219dbeb07c124156592fb5d877', 'de', 'In den allgemeinen Einstellungen können verschiedene Anzeigeoptionen und Benachrichtigungsfunktionen ausgewählt und verändert werden.', 'dispatch.php/settings/general', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('5ae72abc0822570bfe839e3ee24f0c81', '5ae72abc0822570bfe839e3ee24f0c81', 'en', 'Date allocation can be used to create appointments for consultation hours, exams, etc. in which students can enter themselves.', 'plugins.php/homepageterminvergabeplugin/showadmin', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('5fab81bbd1e19949f304df08ea21ca1b', '5fab81bbd1e19949f304df08ea21ca1b', 'de', 'Mit der Bild-Hochladen-Funktion lässt sich das Bild der Veranstaltung ändern, was Studierenden bei der Unterscheidung von Veranstaltungen auf der Meine-Veranstaltungen-Seite helfen kann.', 'dispatch.php/course/avatar/update', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('60b6caf75d0004dfdb0a1adfd66027ed', '60b6caf75d0004dfdb0a1adfd66027ed', 'de', 'Hier können Dozierende Ankündigungen für ihre Veranstaltungen, Einrichtungen und ihre Profilseite erstellen und anzeigen, wobei die Anzeige gefiltert werden kann.', 'dispatch.php/news/admin_news', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('615c1887f0ee080043f133681ebf0def', '615c1887f0ee080043f133681ebf0def', 'en', 'Titles, descriptions, lecturers, etc. can be changed in the basic data. Editing can be partially blocked if data is transferred from other systems (for example, LSF/ UniVZ).', 'dispatch.php/course/basicdata/view', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('633dab120ce3969c42f33aeb3a59fcc1', '633dab120ce3969c42f33aeb3a59fcc1', 'de', 'Der Gruppenkalender bietet eine Ãœbersicht über Veranstaltungstermine und personalisierte Zusatztermine für diese Veranstaltung. ', 'plugins.php/gruppenkalenderplugin/show', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('63c2ecb12f30816aef0fb203eab4f40a', '63c2ecb12f30816aef0fb203eab4f40a', 'de', 'Hier können Termine angelegt und bearbeitet werden.', 'plugins.php/homepageterminvergabeplugin/show_category', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('6529fd70b461fa4a9242e874fbf2a5d3', '6529fd70b461fa4a9242e874fbf2a5d3', 'de', 'In DoIT! haben Lehrende die Möglichkeit, verschiedene Arten von Aufgaben zu stellen, inklusive Hochladen von Dateien, Multiple-Choice-Fragen und Peer Reviewing. Die Aufgabenbearbeitung kann zeitlich befristet werden und wahlweise in Gruppen erfolgen.', 'plugins.php/reloadedplugin/show', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('690e6eff3e83a5f372ec99fc49cafeb2', '690e6eff3e83a5f372ec99fc49cafeb2', 'de', 'Blubbern ist das Stud.IP Echtzeitforum, eine Mischform aus Forum und Chat. Andere können über einen Beitrag informiert werden, indem sie per @benutzername oder @\"Vorname Nachname\" im Beitrag erwähnt werden. Texte lassen sich formatieren und durch Smileys ergänzen.', 'plugins.php/blubber/streams/global', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('6acc653cfabd3a0d4433ff0ab417bf6a', '6acc653cfabd3a0d4433ff0ab417bf6a', 'de', 'Ãœbersicht über gesendete, systeminterne Nachrichten, welche mit selbstgewählten Schlüsselwörtern (sog. Tags) versehen werden können, um sie später leichter wieder auffinden zu können. ', 'dispatch.php/messages/sent', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('6b331f5cc2176daba82a0cc71aaa576f', '6b331f5cc2176daba82a0cc71aaa576f', 'en', 'On this page you can sort contacts into self-defined groups.', 'contact_statusgruppen.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('70274c459a69e34bbf520e690a8e472b', '70274c459a69e34bbf520e690a8e472b', 'de', 'Mit der Zeiten/Räume-Funktion können die Semester-, Termin- und Raumangaben der Veranstaltung geändert werden. Die Bearbeitung kann gesperrt sein, wenn Daten aus anderen Systemen (z.B. LSF/ UniVZ) übernommen werden.', 'dispatch.php/course/timesrooms', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('707b0db0e45fc3bab04be7eff38c1d32', '707b0db0e45fc3bab04be7eff38c1d32', 'de', 'Die Literaturseite bietet Lehrenden die Möglichkeit, Literaturlisten zu erstellen oder aus Literaturverwaltungsprogrammen zu importieren. Diese Listen können in Lehrveranstaltungen kopiert und sichtbar geschaltet werden. Je nach Anbindung kann im tatsächlichen Buchbestand der Hochschule recherchiert werden. ', 'dispatch.php/course/literature', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('72cec29d985f3e6d7df2b5fabb7fe666', '72cec29d985f3e6d7df2b5fabb7fe666', 'de', 'Konfiguation des Lerntagebuchs für Studierende und Anlegen eines Lerntagebuchs für die Dozierenden.', 'plugins.php/lerntagebuchplugin/admin_settings', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('7465a4aeedb6a320d3455cf9ad0bebd0', '7465a4aeedb6a320d3455cf9ad0bebd0', 'en', 'Possibility of providing lecture recordings and podcasts for students of the course (by linking to the files on the media server).', 'plugins.php/mediacastsplugin/show', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('74863847eec53a3d4c8264d8de526be8', '74863847eec53a3d4c8264d8de526be8', 'de', 'Mit der Archivsuche können Veranstaltungen gefunden werden, die bereits archiviert wurden.', 'dispatch.php/search/archive', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('74c1da86f33f5adfb43e10220bfad238', '74c1da86f33f5adfb43e10220bfad238', 'de', 'Die Veranstaltungsseite zeigt alle abonnierten Veranstaltungen (standardmäßig nur die der letzten beiden Semester), alle abonnierten Studiengruppen sowie alle Einrichtungen, denen man zugeordnet wurde. Die Anzeige lässt sich über Farbgruppierungen, Semesterfilter usw. anpassen.', 'dispatch.php/my_courses', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('752d441cd321b05c55c8a5d9aa48ddce', '752d441cd321b05c55c8a5d9aa48ddce', 'de', 'Auf dieser Seite können Kontakte aus dem Adressbuch in selbstdefinierte Gruppen sortiert werden.', 'contact_statusgruppen.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('76195b21d485823fd7ca2fd499131c12', '76195b21d485823fd7ca2fd499131c12', 'en', 'Here you can add and edit dates.', 'plugins.php/homepageterminvergabeplugin/show_category', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('7bf322a6c5f13db67e047b7afae83e58', '7bf322a6c5f13db67e047b7afae83e58', 'en', 'By exporting, data about courses and co-workers can be exported into the following formats: RTF, TXT, CSV, PDF, HTML and XML.', 'export.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('7cb7026818c4b90935009d0548300674', '7cb7026818c4b90935009d0548300674', 'en', 'A custom Blubber stream can be created here. It always consists of a collection of posts from selected courses, contact groups and keywords, which can be further restricted by filtering. The new user-defined stream can be found after clicking on the Save button in the navigation under Global Stream.', 'plugins.php/blubber/streams/edit', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('7d40379f54250b550065e062d71e8fd8', '7d40379f54250b550065e062d71e8fd8', 'en', 'With the archive search you can search for courses that have already been archived.', 'dispatch.php/search/archive', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('7ebdd278d06f9fc1d2659a54bb3171c1', '7ebdd278d06f9fc1d2659a54bb3171c1', 'de', 'Die Rangliste sortiert die Stud.IP-Nutzenden absteigend anhand ihrer Punktzahl. Die Punktzahl wächst mit den Aktivitäten in Stud.IP und repräsentiert so die Erfahrung der Nutzenden mit dem System. Indem das Kästchen links mit einem Haken versehen wird, wird der eigene Wert für andere NutzerInnen in der Rangliste sichtbar gemacht. In der Grundeinstellung ist der eigene Wert nicht öffentlich sichtbar.', 'dispatch.php/score', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('7edc08f2f7b0786ca036f8c448441e07', '7edc08f2f7b0786ca036f8c448441e07', 'en', 'The Wiki enables a common, asynchronous creation and editing of texts. Texts can be formatted and linked so that a branched reference guide is created.', 'wiki.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('7f4a1f5e3dfe2a459cf0eb357667d91c', '7f4a1f5e3dfe2a459cf0eb357667d91c', 'de', 'Mit den Verwaltungsfunktionen lassen sich die Eigenschaften der Veranstaltung nachträglich ändern. Unter Aktionen ist die Simulation der Studierendenansicht möglich.', 'dispatch.php/course/management', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('80286432bf17df20e5f11f86b421b0a7', '80286432bf17df20e5f11f86b421b0a7', 'en', 'The forum is a text-based, time- and location-independent platform for the exchange of questions, opinions and experiences. Contributions can be subscribed to, exported, marked as favourites and edited. The navigation on the left allows you to select different views (e.g. New posts since last login).', 'dispatch.php/course/forum', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('82537b14dd3714ec9636124ed5af3272', '82537b14dd3714ec9636124ed5af3272', 'de', 'Die Profilseite ermöglicht die Änderung der eigenen persönliche Angaben inkl. Profilbild und Kategorien. Ähnlich wie in Facebook können Kommentare hinterlassen werden. Das Profil von Lehrenden enthält Sprechstunden und Raumangaben. Daneben bietet die Seite die Verwaltung eigener Dateien.', 'dispatch.php/profile', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('82a17a5f19d211268b1fa90a1ebe0894', '82a17a5f19d211268b1fa90a1ebe0894', 'de', 'Hier kann eine neue Studiengruppe angelegt werden. Jede/r Stud.IP-NutzerIn kann Studiengruppen anlegen und nach eigenen Bedürfnissen konfigurieren.', 'dispatch.php/course/studygroup/new', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('83fd70727605c485a0d8f2c5ef94289b', '83fd70727605c485a0d8f2c5ef94289b', 'en', 'Here you can enter predefined information about yourself, that should appear on your profile page.', 'dispatch.php/settings/details', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('845d1ce67a62d376ec26c8ffbb22d492', '845d1ce67a62d376ec26c8ffbb22d492', 'de', 'Die Einstellungen des Nachrichtensystems bieten die Möglichkeit z.B. eine Weiterleitung der in Stud.IP empfangenen Nachrichten an die E-Mail-Adresse zu veranlassen.', 'dispatch.php/settings/messaging', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('852991dc733639dd2df05fb627abf3db', '852991dc733639dd2df05fb627abf3db', 'en', 'Here you can add further features to the course.', 'dispatch.php/course/plus', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('85c000e33732c5596d198776cb884860', '85c000e33732c5596d198776cb884860', 'en', 'In the default substitution settings, lecturers can specify a default substitution that can manage and change all of the lecturer\'s courses.', 'dispatch.php/settings/deputies', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('85c709de75085bd56a739e4e8ac6fcad', '85c709de75085bd56a739e4e8ac6fcad', 'en', 'The time/room feature can be used to change the semester, date and room details of the course. Editing can be blocked if data is transferred from other systems (e.g. LSF/ UniVZ).', 'dispatch.php/course/timesrooms', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('85cbaa1648af330cc4420b57df4be29c', '85cbaa1648af330cc4420b57df4be29c', 'de', 'Die Einstellungen des Terminkalenders bieten die Möglichkeit, diesen an eigene Bedürfnisse anzupassen.', 'dispatch.php/settings/calendar', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('87489a40097e5c26f1d1349c072610de', '87489a40097e5c26f1d1349c072610de', 'de', 'Mit der Veranstaltungssuche können Veranstaltungen, Studiengruppen usw. in verschiedenen Semestern und nach verschiedenen Suchkriterien (siehe \"Erweiterte Suche anzeigen\"in der Sidebar) gefunden werden. Das aktuelle Semester ist vorgewählt.', 'dispatch.php/search/courses', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('8a1d7d04c70d93be44e8fe6a8e8c3443', '8a1d7d04c70d93be44e8fe6a8e8c3443', 'de', 'Das Lerntagebuch unterstützt den selbstgesteuerten Lernprozess der Studierenden und wird von ihnen selbstständig geführt. Anfragen zu Arbeitsschritten an die Dozierenden sind möglich, bestimmte Daten können individualisiert freigegeben werden.', 'plugins.php/lerntagebuchplugin/overview', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('8a32ca4e602a68307d4ae6ae51fa667e', '8a32ca4e602a68307d4ae6ae51fa667e', 'en', 'With the institute search, institutions can be found via a free search field or the facility tree.', 'institut_browse.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('8ad364363acd415631226d5574d5592a', '8ad364363acd415631226d5574d5592a', 'en', 'On this page you can enter self-defined information about yourself, which should appear on the profile page.', 'dispatch.php/settings/categories', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('8b690f942bf0cc0322e5bea0f1b9abed', '8b690f942bf0cc0322e5bea0f1b9abed', 'en', 'Select the desired system and then the learning module/test. Writing permissions determine who can edit the learning module in the future. In the sidebar you will find the option \"Update assignments\" in order to transfer changed contents e.g. in the ILIAS course to Stud.IP.', 'dispatch.php/course/elearning/edit', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('8c2fc90bd8175e6d598f895944a8ddc2', '8c2fc90bd8175e6d598f895944a8ddc2', 'en', 'The attendance list shows all course appointments (meeting, lecture, exercise, internship) of the schedule and allows students to be entered by the lecturers in Stud.IP as well as exporting the list to an overview or as a basis for handwritten entries.', 'participantsattendanceplugin/show', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('8c3067596811d3c6857d253299e01f6f', '8c3067596811d3c6857d253299e01f6f', 'en', 'The schedule shows dates, topics and rooms of the course. Individual dates can be edited, for example, topics can be added to dates.', 'dispatch.php/course/dates', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('8dd3b80d9f95218d67edc3cb570559ff', '8dd3b80d9f95218d67edc3cb570559ff', 'de', 'Hier lassen sich Literaturlisten bearbeiten und in der Veranstaltung sichtbar schalten (mit Klick auf das \"Auge\").', 'dispatch.php/literature/edit_list', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('90ffbd715843b02b3961907f81caf208', '90ffbd715843b02b3961907f81caf208', 'en', 'The score list sorts the Stud.IP users in descending order according to their score. The number of points increases with the activities in Stud.IP and thus represents the experience of the users with the system. By ticking the box on the left, the own value is made visible to other users in the ranking. By default, your own value is not visible to the public.', 'dispatch.php/score', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('91d6f451c3ef8d8352a076773b0a19ee', '91d6f451c3ef8d8352a076773b0a19ee', 'en', 'The courses page shows all subscribed courses (by default only those of the last two semesters), all subscribed study groups and all institutions to which you have been assigned. The display can be adjusted via colour codes, semester filters, etc.', 'dispatch.php/my_courses', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('94a193baa212abbc9004280a1498e724', '94a193baa212abbc9004280a1498e724', 'de', 'Hier können Kontaktgruppen oder das gesamte Adressbuch exportiert werden, um sie in einem externen Programm importieren zu können.', 'contact_export.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('95ff3a2a68dae73bcb14a4a538a8e4b5', '95ff3a2a68dae73bcb14a4a538a8e4b5', 'de', 'Blubbern ist eine Mischform aus Forum und Chat, bei dem Beiträge der Teilnehmenden in Echtzeit angezeigt werden. Andere können über einen Beitrag informiert werden, indem sie per @benutzername oder @\"Vorname Nachname\" im Beitrag erwähnt werden.', 'plugins.php/blubber/streams/forum', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('960d7bafb618853eced1b1b42a7dd412', '960d7bafb618853eced1b1b42a7dd412', 'en', 'This page shows all study groups that exist in Stud.IP. Study groups are an easy way to collaborate with fellow students, colleagues and others. Each user can create study groups or search for them.', 'dispatch.php/studygroup/browse', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('970ebdf39ad5ca89083a52723c5c35f5', '970ebdf39ad5ca89083a52723c5c35f5', 'en', 'Under \"Study details\", additional study programmes and institutions can be added manually if they have not been transferred automatically from an external system (e.g. LSF/ UniVZ).', 'dispatch.php/settings/studies', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('a1e3da35edc9b605f670e9c7f5019888', 'a1e3da35edc9b605f670e9c7f5019888', 'en', 'With the course search you can find courses, study groups etc. in different semesters and according to different search criteria (see \"Show advanced search\" in the sidebar). The current semester is preselected.', 'dispatch.php/search/courses', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('a1ea37130799a59f7774473f1a681141', 'a1ea37130799a59f7774473f1a681141', 'de', 'Die Lernmodulschnittstelle ermöglicht es, Selbstlerneinheiten oder Tests aus externen Programmen wie ILIAS und LON-CAPA in Stud.IP zur Verfügung zu stellen.', 'dispatch.php/course/elearning/show', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('a20036992a06e97a984832626121d99a', 'a20036992a06e97a984832626121d99a', 'de', 'Die TeilnehmerInnenliste zeigt eine Liste der Teilnehmenden dieser Veranstaltung. Weitere Teilnehmende können von Dozierenden hinzugefügt, entfernt, herabgestuft, heraufgestuft oder selbstdefinierten Gruppen zugeordnet werden.', 'dispatch.php/course/members', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('a202eb75df0a1da2a309ad7a4abfac59', 'a202eb75df0a1da2a309ad7a4abfac59', 'de', 'In den Privatsphäre-Einstellungen kann die Sichtbarkeit und Auffindbarkeit des eigenen Profils eingestellt werden.', 'dispatch.php/settings/privacy', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('a2a649de15c8d8473b11fccc731dc80f', 'a2a649de15c8d8473b11fccc731dc80f', 'en', 'Before archiving you can check on this page that the right course(s) have been selected for archiving.', 'dispatch.php/course/archive/confirm', '4.4', 1, 0, 1, '', '', 0, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('aa77d5ee6e0f9a9e6f4a1bbabeaf4a7e', 'aa77d5ee6e0f9a9e6f4a1bbabeaf4a7e', 'de', 'Die Anwesenheitsliste zeigt alle Sitzungstermine (Sitzung, Vorlesung, Ãœbung, Praktikum) des Ablaufplans und ermöglicht das Eintragen von Studierenden durch die Dozierenden in Stud.IP sowie einen Export der Liste zur Ãœbersicht oder als Grundlage handschriftlicher Eintragungen.', 'participantsattendanceplugin/show', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('abaa7b076e6923ac43120f3326322af0', 'abaa7b076e6923ac43120f3326322af0', 'en', 'This page allows the storing of free information, links etc.', 'dispatch.php/course/scm', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('abfb5d03de288d02df436f9a8bb96d9d', 'abfb5d03de288d02df436f9a8bb96d9d', 'en', 'With the image uploading feature, the image of a course can be changed, which can help students differentiate between courses on the My Courses page.', 'dispatch.php/course/avatar/update', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('ac5df1de9c75fc92af7718b2103d3037', 'ac5df1de9c75fc92af7718b2103d3037', 'de', 'Blubbern ist eine Mischform aus Forum und Chat. Nachrichten werden im öffentlichen Stream dargestellt. Andere Nutzer können über einen Beitrag informiert werden, indem sie per @benutzername oder @\"Vorname Nachname\" im Beitrag erwähnt werden.', 'plugins.php/blubber/streams/profile', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('ac7326260fd5ca4fa83c1154f2ffc7b9', 'ac7326260fd5ca4fa83c1154f2ffc7b9', 'de', 'Die Dateiverwaltung bietet die Möglichkeit zum Hochladen, Verlinken, Verwalten und Herunterladen von Dateien. ', 'folder.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('af7573cce1e898054db89a96284866f9', 'af7573cce1e898054db89a96284866f9', 'en', 'Here you can create a new study group. Each Stud.IP user can create study groups and configure them according to their own needs.', 'dispatch.php/course/studygroup/new', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('b05b27450e363c38c6b4620b902b3496', 'b05b27450e363c38c6b4620b902b3496', 'en', 'The start page opens after logging in and can be adjusted to your personal needs by using widgets.', 'dispatch.php/start', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('b283b58820db358284f4451dfb691678', 'b283b58820db358284f4451dfb691678', 'en', 'Here you can search for references in catalogues and add them to your list.', 'dispatch.php/literature/search', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('b32cb2c4ec56e925b07a5cb0105a6888', 'b32cb2c4ec56e925b07a5cb0105a6888', 'en', 'The password of the Stud.IP account can be changed here.', 'dispatch.php/settings/password', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('b3bd33cb0babbb0cc51a4f429d15d438', 'b3bd33cb0babbb0cc51a4f429d15d438', 'en', 'Here you can add members to a study group and send messages to them.', 'dispatch.php/course/studygroup/members', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('b5fabb1e5aed7ff8520314e9a86c5c87', 'b5fabb1e5aed7ff8520314e9a86c5c87', 'en', 'Here, individual content can be activated or deactivated. Active contents add new features to your profile or settings. These will usually appear as new tabs in the menu. If features are not required, they can be deactivated here. The corresponding menu items will then be hidden.', 'dispatch.php/profilemodules/index', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('b677e8b5f1bd7e8acbe474177449c4e1', 'b677e8b5f1bd7e8acbe474177449c4e1', 'de', 'Die Dateiverwaltung bietet die Möglichkeit zum Hochladen, Verwalten und Herunterladen persönlicher Dateien, die nicht für andere einsehbar sind. ', 'dispatch.php/document/files', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('b9586c280a0092f86f9392fe5b5ff2a0', 'b9586c280a0092f86f9392fe5b5ff2a0', 'en', 'Blubber is the Stud.IP real-time forum, a mixture of forum and chat. Others can be informed about a post by mentioning them by @username or @\'firstname surname\' in the post. Texts can be formatted and supplemented with smileys.', 'plugins.php/blubber/streams/global', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('bc1d6ecab9364cfe2c549d262bfda437', 'bc1d6ecab9364cfe2c549d262bfda437', 'de', 'Die Lernmodulschnittstelle ermöglicht es, Selbstlerneinheiten aus externen Programmen wie ILIAS und LON-CAPA in Stud.IP zur Verfügung zu stellen. Für jedes externe System wird ein eigener Benutzer-Account erstellt oder zugeordnet. Mit den entsprechenden Rechten können eigene Lernmodule erstellt werden.', 'dispatch.php/elearning/my_accounts', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('bcdedaf1b4bd3b96ef574e8230095b28', 'bcdedaf1b4bd3b96ef574e8230095b28', 'en', 'RSS feeds, i.e. news streams from external websites, can be integrated on the start page. The more feeds you include, the longer it takes to load the start page.', 'dispatch.php/admin/rss_feeds', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('bd0770f9eef5c10fc211114ac35fbe9b', 'bd0770f9eef5c10fc211114ac35fbe9b', 'de', 'Diese Seite zeigt die Studiengruppen an, denen die/der NutzerIn zugeordnet ist. Studiengruppen sind eine einfache Möglichkeit, mit Mitstudierenden, KollegInnen und anderen zusammenzuarbeiten. Jede/r NutzerIn kann Studiengruppen anlegen oder nach ihnen suchen. Die Farbgruppierung kann individuell angepasst werden.', 'dispatch.php/my_studygroups', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('bd5df4fb7b84da79149c96c5f43de46c', 'bd5df4fb7b84da79149c96c5f43de46c', 'en', 'Groups can be created and managed here. If the self-entry is activated, participants can register themselves and sign themselves out.', 'admin_statusgruppe.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('be204bdd0fce91702f51597bf8428fba', 'be204bdd0fce91702f51597bf8428fba', 'de', 'Das Wiki ermöglicht ein gemeinsames, asynchrones Erstellen und Bearbeiten von Texten. Texte lassen sich formatieren und miteinander verknüpfen, so dass ein verzweigtes Nachschlagewerk entsteht. ', 'wiki.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('bf9eb8f2c3842865009342b89fd35476', 'bf9eb8f2c3842865009342b89fd35476', 'de', 'Die Nachrichtenseite bietet einen Ãœberblick über erhaltene, systeminterne Nachrichten, welche mit selbstgewählten Schlüsselwörtern (sog. Tags) versehen werden können, um sie später leichter wieder auffinden zu können.', 'dispatch.php/messages/overview', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('bfb70d5f036769d740fb2342b0b58183', 'bfb70d5f036769d740fb2342b0b58183', 'en', 'The learning module interface makes it possible to provide study units from external programs such as ILIAS and LON-CAPA in Stud.IP. A separate user account is created or assigned for each external system. With the appropriate rights, own learning modules can be created.', 'dispatch.php/elearning/my_accounts', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('c01725d6a3da568e1b07aee4e68a7e1f', 'c01725d6a3da568e1b07aee4e68a7e1f', 'de', 'Diese Seite ermöglicht das Hinterlegen von freien Informationen, Links etc.', 'dispatch.php/course/scm', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('c4dee277f741cfa7d5a65fa0c6bead4c', 'c4dee277f741cfa7d5a65fa0c6bead4c', 'de', 'Hier können Termine mit Themen versehen werden oder bereits eingegebene Themen übernommen und bearbeitet werden.', 'dispatch.php/course/topics', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('c8e789a0efb73f00f00dacf565524c73', 'c8e789a0efb73f00f00dacf565524c73', 'en', 'Various display and notification options can be selected and changed in the general settings.', 'dispatch.php/settings/general', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('cbd9b2b22fc00bc92df3589018644b70', 'cbd9b2b22fc00bc92df3589018644b70', 'de', 'Hier können vordefinierte Informationen über die eigene Person eingegeben werden, die auf der Profilseite erscheinen sollen. ', 'dispatch.php/settings/details', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('cd69b74cd46172785bf2147fb0582e3c', 'cd69b74cd46172785bf2147fb0582e3c', 'de', 'Hier kann ein benutzerdefinierter Blubber-Stream erstellt werden. Er besteht immer aus einer Sammlung von Beiträgen aus ausgewählten Veranstaltungen, Kontaktgruppen und Schlagwörten, die auf Basis einer Filterung noch weiter eingeschränkt werden können. Der neue benutzerdefinierte Stream findet sich nach dem Klick auf den Speichern-Button in der Navigation unter Globaler Stream.', 'plugins.php/blubber/streams/edit', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('ceb21257092b11dcf6897d5bb3085642', 'ceb21257092b11dcf6897d5bb3085642', 'en', 'An overview of sent, internal system messages, which can be provided with self-selected keywords (\"tags\") in order to be able to find them more easily later.', 'dispatch.php/messages/sent', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('d04ca1f9e867ee295a3025dac7ce9c7b', 'd04ca1f9e867ee295a3025dac7ce9c7b', 'en', 'View of the institutions assigned to the Stud.IP user.', 'dispatch.php/settings/statusgruppen', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('d1de152db139d8c12552610d2f7999c2', 'd1de152db139d8c12552610d2f7999c2', 'de', 'Mit dem Export können Daten über Veranstaltungen und MitarbeiterInnen in folgende Formate exportiert werden: RTF, TXT, CSV, PDF, HTML und XML.', 'export.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('d704267767d4c559aa9e552be60c49b5', 'd704267767d4c559aa9e552be60c49b5', 'de', 'Hier kann das Passwort für den Stud.IP-Account geändert werden.', 'dispatch.php/settings/password', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('d79ca3bc4a8251862339b1c934504a54', 'd79ca3bc4a8251862339b1c934504a54', 'de', 'Hier werden die selbstdefinierten Gruppen angezeigt. An diese können Nachrichten versendet werden. Ein Klick auf die orangenen Pfeile vor dem Gruppenname ordnet Sie der Gruppe zu.', 'statusgruppen.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('d97eff1196f6aed8e94f7c5096ebd2a9', 'd97eff1196f6aed8e94f7c5096ebd2a9', 'en', 'The overview contains course-related short and detailed information, announcements, dates and surveys.', 'dispatch.php/course/overview', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('db5a995bd12ba8e2ae96adcabeb8c8f7', 'db5a995bd12ba8e2ae96adcabeb8c8f7', 'de', 'Der Terminkalender besteht aus abonnierten Veranstaltungen und eigenen Terminen. Er kann bearbeitet, in der Anzeige verändert und mit externen Programmen (z.B. Outlook) abgeglichen werden. ', 'calendar.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('dddf5fd4406da0d91c9f121fcae607ad', 'dddf5fd4406da0d91c9f121fcae607ad', 'en', 'The appointment calendar consists of subscribed courses and your own appointments. It can be edited, changed in the display and compared with external programs (e.g. Outlook).', 'calendar.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('e03cec310c0a884aee80c2d1eea3a53e', 'e03cec310c0a884aee80c2d1eea3a53e', 'de', 'Diese Seite zeigt alle Studiengruppen an, die in Stud.IP existieren. Studiengruppen sind eine einfache Möglichkeit, mit Mitstudierenden, KollegInnen und anderen zusammenzuarbeiten. Jede/r NutzerIn kann Studiengruppen anlegen oder nach ihnen suchen.', 'dispatch.php/studygroup/browse', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('e206a4257e31a0f32ac516cefb8e8331', 'e206a4257e31a0f32ac516cefb8e8331', 'en', 'You can find university ressources like rooms, buildings etc. with the ressource search engine.', 'resources.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('e22701c71b4425fb5a95adf725866097', 'e22701c71b4425fb5a95adf725866097', 'de', 'Hier können Gruppen erstellt und verwaltet werden. Wenn der Selbsteintrag aktiviert ist, können sich TeilnehmerInnen selbst ein- und austragen.', 'admin_statusgruppe.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('e29098d188ae25c298d78978de50bf09', 'e29098d188ae25c298d78978de50bf09', 'de', 'Hier kann in Katalogen nach Literatur gesucht und diese zur Merkliste hinzugefügt werden.', 'dispatch.php/literature/search', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('e315a4c547be7f17d427b227f0f9d982', 'e315a4c547be7f17d427b227f0f9d982', 'de', 'Auf dieser Seite können selbstdefinierte Informationen über die eigene Person eingegeben werden, die auf der Profilseite erscheinen sollen. ', 'dispatch.php/settings/categories', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('e5bff29f7adee43202a2aa8f3f0a6ec7', 'e5bff29f7adee43202a2aa8f3f0a6ec7', 'en', 'The profile page allows you to change your own user data including profile picture and categories. Similar to Facebook, comments can be left. The lecturer\'s profile contains office hours and room details. In addition, the page offers the management of own files.', 'dispatch.php/profile', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('e939ac70210674f49a36ac428167a9b8', 'e939ac70210674f49a36ac428167a9b8', 'de', 'Mit der Umfragen-und-Tests-Funktion lassen sich (zeitgesteuerte) Umfragen oder einzelne Multiple-/Single-Choice-Fragen für Veranstaltungen, Studiengruppen oder das Profil erstellen.', 'admin_vote.php', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('ebb5bc1d831d460c06e3c6662236c159', 'ebb5bc1d831d460c06e3c6662236c159', 'de', 'Hier kann ein Profilbild hochgeladen werden.', 'dispatch.php/settings/avatar', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('ebcc460880b8a63af3f6e7eade97db78', 'ebcc460880b8a63af3f6e7eade97db78', 'en', 'With the user search, users can be found as long as their privacy settings do not prevent this. The search can be limited to certain courses or institutions.', 'browse.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('ee91ec0f9085221ada06d171a27d2405', 'ee91ec0f9085221ada06d171a27d2405', 'en', 'File management offers the possibility to upload, link to, manage and download files.', 'folder.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('eec46c5d8ea5523d959a8c334455c2ef', 'eec46c5d8ea5523d959a8c334455c2ef', 'en', 'You can use the fields of study-feature to assign a course to a field of study. Editing can be locked if data is transferred from other systems (for example, LSF/ UniVZ).', 'dispatch.php/course/study_areas/show', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('f3deb7a01205637d71a66e2b90b24cba', 'f3deb7a01205637d71a66e2b90b24cba', 'de', 'Hier können RSS-Feeds, d.h. Nachrichtenströme von externen Internetseiten, auf der Startseite eingebunden werden. Je mehr Feeds eingebunden werden, desto länger dauert das Laden der Startseite.', 'dispatch.php/admin/rss_feeds', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('f529bca4d1626b43cbb8149feea41a84', 'f529bca4d1626b43cbb8149feea41a84', 'en', 'The self-defined groups are displayed here. Messages can be sent to these groups. A click on the orange arrows in front of the group name assigns you to the group.', 'statusgruppen.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('f5e59c4fc98e1df7fe29b8e9320853e7', 'f5e59c4fc98e1df7fe29b8e9320853e7', 'en', 'In the privacy settings you can set the visibility and discoverability of your own profile.', 'dispatch.php/settings/privacy', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('f92b5422246f585f051de1a81602dd56', 'f92b5422246f585f051de1a81602dd56', 'de', 'Hier können Name, Funktionen und Zugangsbeschränkung der Studiengruppe bearbeitet werden.', 'dispatch.php/course/studygroup/edit', '3.1', 0, 0, 1, '', '', 1406641688, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('f966e348174927565b94e606bbcf064f', 'f966e348174927565b94e606bbcf064f', 'en', 'The message page provides an overview of received, internal system messages, which can be assigned self-selected keywords (\"tags\") to make them easier to find later.', 'dispatch.php/messages/overview', '4.4', 0, 0, 1, '', '', 1412942388, 0); -INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`) VALUES('fa4bf491690645a5f12556f77e51233c', 'fa4bf491690645a5f12556f77e51233c', 'en', 'Here you can edit reference lists and make them visible in a course (click on the \"eye\").', 'dispatch.php/literature/edit_list.php', '4.4', 0, 0, 1, '', '', 1412942388, 0); -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); - --- --- Daten für Tabelle `help_tours` --- +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) 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, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('01ad8998268101ad186babf43dac30a4', '01ad8998268101ad186babf43dac30a4', 'de', 'In den Standard-Vertretungseinstellungen können Dozierende eine Standard-Vertretung festlegen, die alle Veranstaltungen des Dozierenden verwalten und ändern kann.', 'dispatch.php/settings/deputies', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('0237ea35a203be81e44c979d82ef5ee6', '0237ea35a203be81e44c979d82ef5ee6', 'en', 'Archived courses to which the user is assigned appear here. Content can no longer be changed, but stored files can be downloaded as zip files.', 'dispatch.php/my_courses/archive', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('02b4e3ce7b8fe6b3e6a3586d410a51a1', '02b4e3ce7b8fe6b3e6a3586d410a51a1', 'en', 'This page shows the study groups to which the user is assigned. Study groups are an easy way to collaborate with fellow students, colleagues and others. Each user can create study groups or search for them. The colour coding can be adjusted individually.', 'dispatch.php/my_studygroups', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('04457f9a66eab07618fe502d470a9711', '04457f9a66eab07618fe502d470a9711', 'de', 'In der Ãœbersicht finden sich veranstaltungsbezogene Kurz- und Detail-Informationen, Ankündigungen, Termine und Umfragen.', 'dispatch.php/course/overview', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('0838a96b5678e2fc26be0ee38ae67619', '0838a96b5678e2fc26be0ee38ae67619', 'en', 'In DoIT!, lecturers have the ability to set different types of tasks, including file uploads, multiple-choice questions, and peer reviewing. The task processing can be limited in time and can be done in groups.', 'plugins.php/reloadedplugin/show', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('0ad754cc62d1e86e97c1a28dd68ac40c', '0ad754cc62d1e86e97c1a28dd68ac40c', 'en', 'Here you can find an overview of the dates that have been booked by students.', 'plugins.php/homepageterminvergabeplugin/show_bookings', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('0c055cc6ae418a96ff3afa9db13098df', '0c055cc6ae418a96ff3afa9db13098df', 'en', 'You can use the administration features to change the properties of the course at a later date. Under Actions a simulation of the student\'s view is possible.', 'dispatch.php/course/management', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('0d83ce036f2870f873446230c0118bb7', '0d83ce036f2870f873446230c0118bb7', 'en', 'The learning module interface makes it possible to provide study units or tests from external programs such as ILIAS and LON-CAPA in Stud.IP.', 'dispatch.php/course/elearning/show', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('0e816d9428a3bc8a73fb0042fb2da540', '0e816d9428a3bc8a73fb0042fb2da540', 'en', 'Here the affiliation to user domains can be viewed, but not changed.', 'dispatch.php/settings/userdomains', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('1058f03da5b6fc6a5ff3a08c9c1fa5f7', '1058f03da5b6fc6a5ff3a08c9c1fa5f7', 'de', 'Hier können der Veranstaltung weitere Funktionen hinzugefügt werden.', 'dispatch.php/course/plus', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('1289e991a93dce5a0b4edd678514325e', '1289e991a93dce5a0b4edd678514325e', 'de', 'Hier können einzelne Inhaltselemente nachträglich aktiviert oder deaktiviert werden. Aktivierte Inhaltselemente fügen neue Funktionen zu Ihrem Profil oder Ihren Einstellungen hinzu. Diese werden meist als neuer Reiter im Menü erscheinen. Wenn Funktionalitäten nicht benötigt werden, können diese hier deaktiviert werden. Die entsprechenden Menüpunkte werden dann ausgeblendet.', 'dispatch.php/profilemodules', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('142482b4b06a376b2eb4c91d38559a15', '142482b4b06a376b2eb4c91d38559a15', 'de', 'Freie Gestaltung von Reiternamen und Inhalten durch Lehrende. Es gibt Raum für eigene Informationen, der Name des Reiters ist frei definierbar. Es können beliebig viele Einträge (\"neue Einträge\") hinzugefügt werden.', 'dispatch.php/course/scm', '4.0', 1, 0, 1, '', '', 0, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('14b77e9e0b7773c92db9e7344a23fcfc', '14b77e9e0b7773c92db9e7344a23fcfc', 'de', 'Mit der Personensuche können NutzerInnen gefunden werden, solange deren Privatsphäre-Einstellung dies nicht verhindert. Die Suche kann auf bestimmte Veranstaltungen oder Einrichtungen begrenzt werden.', 'browse.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('164f77ab2cb7d38fd1ea20ed725834fd', '164f77ab2cb7d38fd1ea20ed725834fd', 'de', 'Hier findet sich eine Ãœbersicht über die Termine, die von Studierenden gebucht wurden.', 'plugins.php/homepageterminvergabeplugin/show_bookings', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('1804e526c2f6794b877a4b2096eaa67a', '1804e526c2f6794b877a4b2096eaa67a', 'en', 'Blubber is a mixed version of forum and chat where participants\' posts are displayed in real time. Others can be informed about a post by mentioning them in the post by @username or @\'first name last name\'.', 'plugins.php/blubber/streams/forum', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('194874212676ced8d45e1883da1ad456', '194874212676ced8d45e1883da1ad456', 'de', 'Das Forum ist eine textbasierte, zeit- und ortsunabhängige Möglichkeit zum Austausch von Fragen, Meinungen und Erfahrungen. Beiträge können abonniert, exportiert, als Favoriten gekennzeichnet und editiert werden. Ãœber die Navigation links können unterschieldiche Ansichten (z.B. Neue Beiträge seit letztem LogIn) gewählt werden.', 'dispatch.php/course/forum', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('19c2bc232075602bd39efd4b6623d576', '19c2bc232075602bd39efd4b6623d576', 'de', 'Mit der Studienbereiche-Funktion kann die Veranstaltung einem Studienbereich zugeordnet werden. Die Bearbeitung kann gesperrt sein, wenn Daten aus anderen Systemen (z.B. LSF/ UniVZ) übernommen werden.', 'dispatch.php/course/study_areas/show', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('19d47b782ac5c8b8b21bd1f94858a0fa', '19d47b782ac5c8b8b21bd1f94858a0fa', 'de', 'Mit Zugangsberechtigungen (Anmeldeverfahren) lässt sich z.B. durch Passwörter, Zeitsteuerung und TeilnehmerInnenbeschränkung der Zugang zu einer Veranstaltung regulieren.', 'dispatch.php/course/admission', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('1c61657979ce22a9af023248a617f6b2', '1c61657979ce22a9af023248a617f6b2', 'de', 'Die Startseite wird nach dem Einloggen angezeigt und kann an persönliche Bedürfnisse mit Hilfe von Widgets angepasst werden.', 'dispatch.php/start', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('1cb8fd77427ebc092d751eea95454b0a', '1cb8fd77427ebc092d751eea95454b0a', 'en', 'Here you can edit reference lists and make them visible in the course (by clicking on the \"eye\").', 'dispatch.php/literature/edit_list', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('1d1323471cf21637f51284f4e6f2d135', '1d1323471cf21637f51284f4e6f2d135', 'de', 'Detaillierte Informationen über die Veranstaltung werden angezeigt, wie z.B. die Veranstaltungsnummer, Zuordnungen, Lehrende, Tutorinnen und Tutoren etc. In den Detail-Informationen ist unter Aktionen das Eintragen in eine Veranstaltung möglich.', 'dispatch.php/course/details', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('1da144f3c6f52af0566c343151a6a6ff', '1da144f3c6f52af0566c343151a6a6ff', 'de', 'In den Benachrichtigungseinstellungen kann ausgewählt werden, bei welchen Änderungen innerhalb einer Veranstaltung eine Benachrichtigung erfolgen soll.', 'dispatch.php/settings/notification', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('1dca5b0b83f7bca92ec4add50d34b8c5', '1dca5b0b83f7bca92ec4add50d34b8c5', 'de', 'Hier können der Studiengruppe Mitglieder hinzugefügt und Nachrichten an diese versendet werden.', 'dispatch.php/course/studygroup/members', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('1ea099717ceb1b401aedcedc89814d9c', '1ea099717ceb1b401aedcedc89814d9c', 'en', 'The study diary supports the autonomous studying process of the students and is managed independently by them. Inquiries to the lecturers regarding work steps are possible, certain data can be released individually.', 'plugins.php/lerntagebuchplugin/overview', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('1f216fe42d879c3fcbb582d67e9ad5a2', '1f216fe42d879c3fcbb582d67e9ad5a2', 'en', 'Here, appointments can be assigned topics or previously entered topics can be taken over and edited.', 'dispatch.php/course/topics', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('1f6e2f98affbffb1d12904355e9313e5', '1f6e2f98affbffb1d12904355e9313e5', 'de', 'Diese Seite zeigt die Einrichtungen an, denen die/der NutzerIn zugeordnet ist.', 'dispatch.php/my_institutes', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('2075fe42f56207fbd153a810188f1beb', '2075fe42f56207fbd153a810188f1beb', 'en', 'Configuration of the study diary for students and creation of a study diary for lecturers.', 'plugins.php/lerntagebuchplugin/admin_settings', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('233564d01b8301ebec7ef2fe918d1290', '233564d01b8301ebec7ef2fe918d1290', 'de', 'Ansicht über die der/ dem Stud.IP-NutzerIn zugeordneten Einrichtungen.', 'dispatch.php/settings/statusgruppen', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('245ce01d7a0175ab0b977ae822821e9e', '245ce01d7a0175ab0b977ae822821e9e', 'de', 'Diese Seite bietet die Möglichkeit Stud.IP-Nutzende in das eigene Adressbuch einzutragen und alle bereits im Adressbuch befindlichen Kontakte aufzulisten.', 'contact.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('25255dc15fd0d6260bc1abd1f10aecc5', '25255dc15fd0d6260bc1abd1f10aecc5', 'de', 'Individuelle persönliche Angaben, wie bspw. E-Mail-Adresse, können auf dieser Seite verändert und angepasst werden. ', 'dispatch.php/settings/account', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('260ee12fdc7dccb30eca2cc075ef0096', '260ee12fdc7dccb30eca2cc075ef0096', 'en', 'The schedule settings offer the possibility to be adapted to your own needs.', 'dispatch.php/settings/calendar', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('2689cecba24e021f05fcece5e4c96057', '2689cecba24e021f05fcece5e4c96057', 'de', 'Mit der Evaluationen-Funktion lassen sich Befragungen mit Multiple-Choice, Likert- und Freitextfragen für Veranstaltungen, Studiengruppen, das eigene Profil oder Einrichtungen erstellen. Dabei können auch öffentliche Vorlagen anderer Personen verwendet werden. Es werden alle zukünftigen, laufenden und beendeten Evaluationen angezeigt.', 'admin_evaluation.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('27c4d9837cfb1a9a40c079e16daac902', '27c4d9837cfb1a9a40c079e16daac902', 'en', 'This page offers the possibility to enter Stud.IP users in your own address book and to list all contacts already in the address book.', 'contact.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('29c3bfa01ddbaaa998094d3ee975a06a', '29c3bfa01ddbaaa998094d3ee975a06a', 'de', 'Der Ablaufplan zeigt Termine, Themen und Räume der Veranstaltung an. Einzelne Termine können bearbeitet werden, z.B. können Themen zu Terminen hinzugefügt werden.', 'dispatch.php/course/dates', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('2a389c2472656121a76ca4f3b0e137d4', '2a389c2472656121a76ca4f3b0e137d4', 'en', 'Here you can upload a profile picture.', 'dispatch.php/settings/avatar', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('2c55eab1f52d6f7d1021880836906f5b', '2c55eab1f52d6f7d1021880836906f5b', 'de', 'Hier lassen sich Literaturlisten bearbeiten und in der Veranstaltung sichtbar schalten (mit Klick auf das \"Auge\").', 'dispatch.php/literature/edit_list.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('2f1602394a4e31c2e30706f0a0b3112f', '2f1602394a4e31c2e30706f0a0b3112f', 'en', 'On this page you can see which contacts are currently online. A message can be sent to these people. Clicking on a person\'s name will take you to their profile.', 'dispatch.php/online', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('2fcc672d91f2627ab5ca48499e8b1617', '2fcc672d91f2627ab5ca48499e8b1617', 'de', 'Möglichkeit zur Bereitstellung von Vorlesungsaufzeichnungen und Podcasts für Studierende der Veranstaltung (durch Verlinkung auf die Dateien auf dem Medienserver). ', 'plugins.php/mediacastsplugin/show', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('3318ee99a062079b463e902348ad520e', '3318ee99a062079b463e902348ad520e', 'en', 'Here, lecturers can create and display announcements for their courses, institutions, and profile page, with the ability to filter the display.', 'dispatch.php/news/admin_news', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('357bbf06015b2738aae15837f581a07d', '357bbf06015b2738aae15837f581a07d', 'en', 'Detailed information about the course, e.g. the course number, assignments, lecturers, tutors, etc. is displayed. In the detail information, you can enter a course under Actions.', 'dispatch.php/course/details', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('35b1860b95854a2533b6ecfbbf04ab71', '35b1860b95854a2533b6ecfbbf04ab71', 'de', 'Der Stundenplan besteht aus abonnierten Veranstaltungen, die ein- und ausgeblendet sowie in Darstellungsgröße und -form angepasst werden können.', 'dispatch.php/calendar/schedule', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('3607d6daea679dcd7003e076fdd1660a', '3607d6daea679dcd7003e076fdd1660a', 'en', 'The list of participants shows a list of the participants of the course. Additional participants can be added, removed, downgraded, promoted or assigned to self-defined groups by lecturers.', 'dispatch.php/course/members', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('362a67fff2ef7af8cca9f8e20583c9f2', '362a67fff2ef7af8cca9f8e20583c9f2', 'en', 'Contacts from the address book can be displayed sorted according to the groups here.', '???', '3.1', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('38d1a86517eb6cc195b2e921270c3035', '38d1a86517eb6cc195b2e921270c3035', 'en', 'The group calendar provides an overview of course dates and personalized additional dates for that course.', 'plugins.php/gruppenkalenderplugin/show', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('394a45f94e1d84d3744027a5a69d9e3e', '394a45f94e1d84d3744027a5a69d9e3e', 'de', 'Auf dieser Seite lässt sich einsehen, welche Kontakte gerade online sind. Diesen Personen kann eine Nachricht geschickt werden. Das Klicken auf den Namen einer Person leitet zu deren Profil weiter.', 'dispatch.php/online', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('3b7a4c04017fef2984ee029610194f26', '3b7a4c04017fef2984ee029610194f26', 'en', 'The settings of the messaging system offer the possibility to forward the messages received in Stud.IP to your email address.', 'dispatch.php/settings/messaging', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('3d040e95a8c29e733a8d5439ee9f5b59', '3d040e95a8c29e733a8d5439ee9f5b59', 'en', 'The name, function and access restriction of the study group can be edited here.', 'dispatch.php/course/studygroup/edit', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('4151003175042b71bea3529e5adc5a9e', '4151003175042b71bea3529e5adc5a9e', 'de', 'Mit der Terminvergabe können Termine für Sprechstunden, Prüfungen usw. angelegt werden, in die sich Studierende selbst eintragen können.', 'plugins.php/homepageterminvergabeplugin/showadmin', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('42060187921376807f90e52fad5f9822', '42060187921376807f90e52fad5f9822', 'en', 'With the Surveys and Tests function, you can create (time-controlled) surveys or individual multiple/single-choice questions for courses, study groups or the profile.', 'admin_vote.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('437c83a27473ef8139b47198101067fb', '437c83a27473ef8139b47198101067fb', 'de', 'Hier erscheinen archivierte Veranstaltungen, denen der Nutzer zugeordnet ist. Inhalte können nicht mehr verändert, jedoch hinterlegte Dateien als zip-Datei heruntergeladen werden.', 'dispatch.php/my_courses/archive', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('438c4456f85afec29fd9f47c111136c1', '438c4456f85afec29fd9f47c111136c1', 'en', 'This page shows the institutions that the user is assigned to.', 'dispatch.php/my_institutes', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('43df8e33145c25eb6d941e4e845ada24', '43df8e33145c25eb6d941e4e845ada24', 'en', 'In the notification settings you can select which changes within a course you want to be notified for.', 'dispatch.php/settings/notification', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('440e50f7fcc825368aa9026273d2cd0d', '440e50f7fcc825368aa9026273d2cd0d', 'en', 'The timetable consists of courses you have subscribed to, which can be shown and hidden as well as adjusted in display size and form.', 'dispatch.php/calendar/schedule', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('44edb997707d1458cbf8a3f8f316b908', '44edb997707d1458cbf8a3f8f316b908', 'en', 'The reference page offers teachers the possibility to create reference lists or to import them from reference management programs. These lists can be copied into courses and made visible. Depending on the connection, the actual book inventory of the university can be searched.', 'dispatch.php/course/literature', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('462f1447b1a8a93ab7bdb2524f968b1a', '462f1447b1a8a93ab7bdb2524f968b1a', 'de', 'Hier kann die Zugehörigkeit zu Nutzerdomänen eingesehen, aber nicht geändert werden.', 'dispatch.php/settings/userdomains', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('4698cafeb9823735c50fd3a1745950ba', '4698cafeb9823735c50fd3a1745950ba', 'de', 'In den Grunddaten können Titel, Beschreibung, Dozierende etc. geändert werden. Die Bearbeitung kann teilweise gesperrt sein, wenn Daten aus anderen Systemen (z.B. LSF/ UniVZ) übernommen werden.', 'dispatch.php/course/basicdata/view', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('4e14c94cda99e2ef6462f7fef06d9c91', '4e14c94cda99e2ef6462f7fef06d9c91', 'en', 'With access authorisation (enrolment procedure), access to a course can be regulated e.g. by means of passwords, time control and participant restrictions.', 'dispatch.php/course/admission', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('4e60dd9635f3d3fddecc78e0d1f646c7', '4e60dd9635f3d3fddecc78e0d1f646c7', 'de', 'Unter \"Studiendaten\" können manuell zusätzliche Studiengänge und Einrichtungen hinzugefügt werden, wenn sie nicht automatisch aus einem externen System (z.B. LSF/ UniVZ) übernommen wurden.', 'dispatch.php/settings/studies', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('4f9d79fe88e81486b8c1f192d70232d5', '4f9d79fe88e81486b8c1f192d70232d5', 'de', 'Mit der Einrichtungssuche können Einrichtungen über ein freies Suchfeld oder den Einrichtungsbaum gefunden werden.', 'institut_browse.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('51a0399250de6365619c961ec3669ad3', '51a0399250de6365619c961ec3669ad3', 'en', 'Blubber is a mixture of forum and chat. Messages are displayed in the public stream. Other users can be informed about a post by mentioning them by @username or @\'firstname surname\' in the post.', 'plugins.php/blubber/streams/profile', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('51b98d659590e1e37dae5e5e5cc028bb', '51b98d659590e1e37dae5e5e5cc028bb', 'en', 'File management provides the ability to upload, manage, and download personal files that are not visible to others.', 'dispatch.php/document/files', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('5475d65b07fdaf5f234bf6eed3d5e4a9', '5475d65b07fdaf5f234bf6eed3d5e4a9', 'en', 'The evaluation function can be used to create surveys with multiple-choice, and free text questions for courses, study groups, your own profile or institutions. Other people\'s public templates can also be used. All future, current and completed evaluations are displayed.', 'admin_evaluation.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('55499281ce1a4757f17aaf73faa072ea', '55499281ce1a4757f17aaf73faa072ea', 'de', 'Auf dieser Seite können sie sich vor dem Archivieren vergewissern, das die richtige(n) Veranstaltunge(n) zum Archivieren ausgewählt wurden.', 'dispatch.php/course/archive/confirm', '4.0', 1, 0, 1, '', '', 0, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('57f1b29d3c1a558f5cc799c1aade7f14', '57f1b29d3c1a558f5cc799c1aade7f14', 'en', 'Here, contact groups or the entire address book can be exported in order to import them into an external program.', 'contact_export.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('595c46d86f681f7da4bd2fae780db618', '595c46d86f681f7da4bd2fae780db618', 'de', 'Wählen Sie das gewünschte System und anschließend das Lernmodul/ den Test aus. Schreibrechte bestimmen, wer zukünftig das Lernmodul bearbeiten darf. In der Sidebar befindet sich die Option \"Zuordnungen aktualisieren\", um geänderte Inhalte z.B. im ILIAS Kurs zu Stud.IP zu übertragen.', 'dispatch.php/course/elearning/edit', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('5a90d1219dbeb07c124156592fb5d877', '5a90d1219dbeb07c124156592fb5d877', 'de', 'In den allgemeinen Einstellungen können verschiedene Anzeigeoptionen und Benachrichtigungsfunktionen ausgewählt und verändert werden.', 'dispatch.php/settings/general', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('5ae72abc0822570bfe839e3ee24f0c81', '5ae72abc0822570bfe839e3ee24f0c81', 'en', 'Date allocation can be used to create appointments for consultation hours, exams, etc. in which students can enter themselves.', 'plugins.php/homepageterminvergabeplugin/showadmin', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('5fab81bbd1e19949f304df08ea21ca1b', '5fab81bbd1e19949f304df08ea21ca1b', 'de', 'Mit der Bild-Hochladen-Funktion lässt sich das Bild der Veranstaltung ändern, was Studierenden bei der Unterscheidung von Veranstaltungen auf der Meine-Veranstaltungen-Seite helfen kann.', 'dispatch.php/course/avatar/update', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('60b6caf75d0004dfdb0a1adfd66027ed', '60b6caf75d0004dfdb0a1adfd66027ed', 'de', 'Hier können Dozierende Ankündigungen für ihre Veranstaltungen, Einrichtungen und ihre Profilseite erstellen und anzeigen, wobei die Anzeige gefiltert werden kann.', 'dispatch.php/news/admin_news', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('615c1887f0ee080043f133681ebf0def', '615c1887f0ee080043f133681ebf0def', 'en', 'Titles, descriptions, lecturers, etc. can be changed in the basic data. Editing can be partially blocked if data is transferred from other systems (for example, LSF/ UniVZ).', 'dispatch.php/course/basicdata/view', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('633dab120ce3969c42f33aeb3a59fcc1', '633dab120ce3969c42f33aeb3a59fcc1', 'de', 'Der Gruppenkalender bietet eine Ãœbersicht über Veranstaltungstermine und personalisierte Zusatztermine für diese Veranstaltung. ', 'plugins.php/gruppenkalenderplugin/show', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('63c2ecb12f30816aef0fb203eab4f40a', '63c2ecb12f30816aef0fb203eab4f40a', 'de', 'Hier können Termine angelegt und bearbeitet werden.', 'plugins.php/homepageterminvergabeplugin/show_category', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('6529fd70b461fa4a9242e874fbf2a5d3', '6529fd70b461fa4a9242e874fbf2a5d3', 'de', 'In DoIT! haben Lehrende die Möglichkeit, verschiedene Arten von Aufgaben zu stellen, inklusive Hochladen von Dateien, Multiple-Choice-Fragen und Peer Reviewing. Die Aufgabenbearbeitung kann zeitlich befristet werden und wahlweise in Gruppen erfolgen.', 'plugins.php/reloadedplugin/show', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('690e6eff3e83a5f372ec99fc49cafeb2', '690e6eff3e83a5f372ec99fc49cafeb2', 'de', 'Blubbern ist das Stud.IP Echtzeitforum, eine Mischform aus Forum und Chat. Andere können über einen Beitrag informiert werden, indem sie per @benutzername oder @\"Vorname Nachname\" im Beitrag erwähnt werden. Texte lassen sich formatieren und durch Smileys ergänzen.', 'plugins.php/blubber/streams/global', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('6acc653cfabd3a0d4433ff0ab417bf6a', '6acc653cfabd3a0d4433ff0ab417bf6a', 'de', 'Ãœbersicht über gesendete, systeminterne Nachrichten, welche mit selbstgewählten Schlüsselwörtern (sog. Tags) versehen werden können, um sie später leichter wieder auffinden zu können. ', 'dispatch.php/messages/sent', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('6b331f5cc2176daba82a0cc71aaa576f', '6b331f5cc2176daba82a0cc71aaa576f', 'en', 'On this page you can sort contacts into self-defined groups.', 'contact_statusgruppen.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('70274c459a69e34bbf520e690a8e472b', '70274c459a69e34bbf520e690a8e472b', 'de', 'Mit der Zeiten/Räume-Funktion können die Semester-, Termin- und Raumangaben der Veranstaltung geändert werden. Die Bearbeitung kann gesperrt sein, wenn Daten aus anderen Systemen (z.B. LSF/ UniVZ) übernommen werden.', 'dispatch.php/course/timesrooms', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('707b0db0e45fc3bab04be7eff38c1d32', '707b0db0e45fc3bab04be7eff38c1d32', 'de', 'Die Literaturseite bietet Lehrenden die Möglichkeit, Literaturlisten zu erstellen oder aus Literaturverwaltungsprogrammen zu importieren. Diese Listen können in Lehrveranstaltungen kopiert und sichtbar geschaltet werden. Je nach Anbindung kann im tatsächlichen Buchbestand der Hochschule recherchiert werden. ', 'dispatch.php/course/literature', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('72cec29d985f3e6d7df2b5fabb7fe666', '72cec29d985f3e6d7df2b5fabb7fe666', 'de', 'Konfiguation des Lerntagebuchs für Studierende und Anlegen eines Lerntagebuchs für die Dozierenden.', 'plugins.php/lerntagebuchplugin/admin_settings', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('7465a4aeedb6a320d3455cf9ad0bebd0', '7465a4aeedb6a320d3455cf9ad0bebd0', 'en', 'Possibility of providing lecture recordings and podcasts for students of the course (by linking to the files on the media server).', 'plugins.php/mediacastsplugin/show', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('74863847eec53a3d4c8264d8de526be8', '74863847eec53a3d4c8264d8de526be8', 'de', 'Mit der Archivsuche können Veranstaltungen gefunden werden, die bereits archiviert wurden.', 'dispatch.php/search/archive', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('74c1da86f33f5adfb43e10220bfad238', '74c1da86f33f5adfb43e10220bfad238', 'de', 'Die Veranstaltungsseite zeigt alle abonnierten Veranstaltungen (standardmäßig nur die der letzten beiden Semester), alle abonnierten Studiengruppen sowie alle Einrichtungen, denen man zugeordnet wurde. Die Anzeige lässt sich über Farbgruppierungen, Semesterfilter usw. anpassen.', 'dispatch.php/my_courses', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('752d441cd321b05c55c8a5d9aa48ddce', '752d441cd321b05c55c8a5d9aa48ddce', 'de', 'Auf dieser Seite können Kontakte aus dem Adressbuch in selbstdefinierte Gruppen sortiert werden.', 'contact_statusgruppen.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('76195b21d485823fd7ca2fd499131c12', '76195b21d485823fd7ca2fd499131c12', 'en', 'Here you can add and edit dates.', 'plugins.php/homepageterminvergabeplugin/show_category', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('7bf322a6c5f13db67e047b7afae83e58', '7bf322a6c5f13db67e047b7afae83e58', 'en', 'By exporting, data about courses and co-workers can be exported into the following formats: RTF, TXT, CSV, PDF, HTML and XML.', 'export.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('7cb7026818c4b90935009d0548300674', '7cb7026818c4b90935009d0548300674', 'en', 'A custom Blubber stream can be created here. It always consists of a collection of posts from selected courses, contact groups and keywords, which can be further restricted by filtering. The new user-defined stream can be found after clicking on the Save button in the navigation under Global Stream.', 'plugins.php/blubber/streams/edit', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('7d40379f54250b550065e062d71e8fd8', '7d40379f54250b550065e062d71e8fd8', 'en', 'With the archive search you can search for courses that have already been archived.', 'dispatch.php/search/archive', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('7ebdd278d06f9fc1d2659a54bb3171c1', '7ebdd278d06f9fc1d2659a54bb3171c1', 'de', 'Die Rangliste sortiert die Stud.IP-Nutzenden absteigend anhand ihrer Punktzahl. Die Punktzahl wächst mit den Aktivitäten in Stud.IP und repräsentiert so die Erfahrung der Nutzenden mit dem System. Indem das Kästchen links mit einem Haken versehen wird, wird der eigene Wert für andere NutzerInnen in der Rangliste sichtbar gemacht. In der Grundeinstellung ist der eigene Wert nicht öffentlich sichtbar.', 'dispatch.php/score', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('7edc08f2f7b0786ca036f8c448441e07', '7edc08f2f7b0786ca036f8c448441e07', 'en', 'The Wiki enables a common, asynchronous creation and editing of texts. Texts can be formatted and linked so that a branched reference guide is created.', 'wiki.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('7f4a1f5e3dfe2a459cf0eb357667d91c', '7f4a1f5e3dfe2a459cf0eb357667d91c', 'de', 'Mit den Verwaltungsfunktionen lassen sich die Eigenschaften der Veranstaltung nachträglich ändern. Unter Aktionen ist die Simulation der Studierendenansicht möglich.', 'dispatch.php/course/management', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('80286432bf17df20e5f11f86b421b0a7', '80286432bf17df20e5f11f86b421b0a7', 'en', 'The forum is a text-based, time- and location-independent platform for the exchange of questions, opinions and experiences. Contributions can be subscribed to, exported, marked as favourites and edited. The navigation on the left allows you to select different views (e.g. New posts since last login).', 'dispatch.php/course/forum', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('82537b14dd3714ec9636124ed5af3272', '82537b14dd3714ec9636124ed5af3272', 'de', 'Die Profilseite ermöglicht die Änderung der eigenen persönliche Angaben inkl. Profilbild und Kategorien. Ähnlich wie in Facebook können Kommentare hinterlassen werden. Das Profil von Lehrenden enthält Sprechstunden und Raumangaben. Daneben bietet die Seite die Verwaltung eigener Dateien.', 'dispatch.php/profile', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('82a17a5f19d211268b1fa90a1ebe0894', '82a17a5f19d211268b1fa90a1ebe0894', 'de', 'Hier kann eine neue Studiengruppe angelegt werden. Jede/r Stud.IP-NutzerIn kann Studiengruppen anlegen und nach eigenen Bedürfnissen konfigurieren.', 'dispatch.php/course/studygroup/new', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('83fd70727605c485a0d8f2c5ef94289b', '83fd70727605c485a0d8f2c5ef94289b', 'en', 'Here you can enter predefined information about yourself, that should appear on your profile page.', 'dispatch.php/settings/details', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('845d1ce67a62d376ec26c8ffbb22d492', '845d1ce67a62d376ec26c8ffbb22d492', 'de', 'Die Einstellungen des Nachrichtensystems bieten die Möglichkeit z.B. eine Weiterleitung der in Stud.IP empfangenen Nachrichten an die E-Mail-Adresse zu veranlassen.', 'dispatch.php/settings/messaging', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('852991dc733639dd2df05fb627abf3db', '852991dc733639dd2df05fb627abf3db', 'en', 'Here you can add further features to the course.', 'dispatch.php/course/plus', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('85c000e33732c5596d198776cb884860', '85c000e33732c5596d198776cb884860', 'en', 'In the default substitution settings, lecturers can specify a default substitution that can manage and change all of the lecturer\'s courses.', 'dispatch.php/settings/deputies', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('85c709de75085bd56a739e4e8ac6fcad', '85c709de75085bd56a739e4e8ac6fcad', 'en', 'The time/room feature can be used to change the semester, date and room details of the course. Editing can be blocked if data is transferred from other systems (e.g. LSF/ UniVZ).', 'dispatch.php/course/timesrooms', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('85cbaa1648af330cc4420b57df4be29c', '85cbaa1648af330cc4420b57df4be29c', 'de', 'Die Einstellungen des Terminkalenders bieten die Möglichkeit, diesen an eigene Bedürfnisse anzupassen.', 'dispatch.php/settings/calendar', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('87489a40097e5c26f1d1349c072610de', '87489a40097e5c26f1d1349c072610de', 'de', 'Mit der Veranstaltungssuche können Veranstaltungen, Studiengruppen usw. in verschiedenen Semestern und nach verschiedenen Suchkriterien (siehe \"Erweiterte Suche anzeigen\"in der Sidebar) gefunden werden. Das aktuelle Semester ist vorgewählt.', 'dispatch.php/search/courses', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('8a1d7d04c70d93be44e8fe6a8e8c3443', '8a1d7d04c70d93be44e8fe6a8e8c3443', 'de', 'Das Lerntagebuch unterstützt den selbstgesteuerten Lernprozess der Studierenden und wird von ihnen selbstständig geführt. Anfragen zu Arbeitsschritten an die Dozierenden sind möglich, bestimmte Daten können individualisiert freigegeben werden.', 'plugins.php/lerntagebuchplugin/overview', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('8a32ca4e602a68307d4ae6ae51fa667e', '8a32ca4e602a68307d4ae6ae51fa667e', 'en', 'With the institute search, institutions can be found via a free search field or the facility tree.', 'institut_browse.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('8ad364363acd415631226d5574d5592a', '8ad364363acd415631226d5574d5592a', 'en', 'On this page you can enter self-defined information about yourself, which should appear on the profile page.', 'dispatch.php/settings/categories', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('8b690f942bf0cc0322e5bea0f1b9abed', '8b690f942bf0cc0322e5bea0f1b9abed', 'en', 'Select the desired system and then the learning module/test. Writing permissions determine who can edit the learning module in the future. In the sidebar you will find the option \"Update assignments\" in order to transfer changed contents e.g. in the ILIAS course to Stud.IP.', 'dispatch.php/course/elearning/edit', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('8c2fc90bd8175e6d598f895944a8ddc2', '8c2fc90bd8175e6d598f895944a8ddc2', 'en', 'The attendance list shows all course appointments (meeting, lecture, exercise, internship) of the schedule and allows students to be entered by the lecturers in Stud.IP as well as exporting the list to an overview or as a basis for handwritten entries.', 'participantsattendanceplugin/show', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('8c3067596811d3c6857d253299e01f6f', '8c3067596811d3c6857d253299e01f6f', 'en', 'The schedule shows dates, topics and rooms of the course. Individual dates can be edited, for example, topics can be added to dates.', 'dispatch.php/course/dates', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('8dd3b80d9f95218d67edc3cb570559ff', '8dd3b80d9f95218d67edc3cb570559ff', 'de', 'Hier lassen sich Literaturlisten bearbeiten und in der Veranstaltung sichtbar schalten (mit Klick auf das \"Auge\").', 'dispatch.php/literature/edit_list', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('90ffbd715843b02b3961907f81caf208', '90ffbd715843b02b3961907f81caf208', 'en', 'The score list sorts the Stud.IP users in descending order according to their score. The number of points increases with the activities in Stud.IP and thus represents the experience of the users with the system. By ticking the box on the left, the own value is made visible to other users in the ranking. By default, your own value is not visible to the public.', 'dispatch.php/score', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('91d6f451c3ef8d8352a076773b0a19ee', '91d6f451c3ef8d8352a076773b0a19ee', 'en', 'The courses page shows all subscribed courses (by default only those of the last two semesters), all subscribed study groups and all institutions to which you have been assigned. The display can be adjusted via colour codes, semester filters, etc.', 'dispatch.php/my_courses', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('94a193baa212abbc9004280a1498e724', '94a193baa212abbc9004280a1498e724', 'de', 'Hier können Kontaktgruppen oder das gesamte Adressbuch exportiert werden, um sie in einem externen Programm importieren zu können.', 'contact_export.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('95ff3a2a68dae73bcb14a4a538a8e4b5', '95ff3a2a68dae73bcb14a4a538a8e4b5', 'de', 'Blubbern ist eine Mischform aus Forum und Chat, bei dem Beiträge der Teilnehmenden in Echtzeit angezeigt werden. Andere können über einen Beitrag informiert werden, indem sie per @benutzername oder @\"Vorname Nachname\" im Beitrag erwähnt werden.', 'plugins.php/blubber/streams/forum', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('960d7bafb618853eced1b1b42a7dd412', '960d7bafb618853eced1b1b42a7dd412', 'en', 'This page shows all study groups that exist in Stud.IP. Study groups are an easy way to collaborate with fellow students, colleagues and others. Each user can create study groups or search for them.', 'dispatch.php/studygroup/browse', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('970ebdf39ad5ca89083a52723c5c35f5', '970ebdf39ad5ca89083a52723c5c35f5', 'en', 'Under \"Study details\", additional study programmes and institutions can be added manually if they have not been transferred automatically from an external system (e.g. LSF/ UniVZ).', 'dispatch.php/settings/studies', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('a1e3da35edc9b605f670e9c7f5019888', 'a1e3da35edc9b605f670e9c7f5019888', 'en', 'With the course search you can find courses, study groups etc. in different semesters and according to different search criteria (see \"Show advanced search\" in the sidebar). The current semester is preselected.', 'dispatch.php/search/courses', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('a1ea37130799a59f7774473f1a681141', 'a1ea37130799a59f7774473f1a681141', 'de', 'Die Lernmodulschnittstelle ermöglicht es, Selbstlerneinheiten oder Tests aus externen Programmen wie ILIAS und LON-CAPA in Stud.IP zur Verfügung zu stellen.', 'dispatch.php/course/elearning/show', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('a20036992a06e97a984832626121d99a', 'a20036992a06e97a984832626121d99a', 'de', 'Die TeilnehmerInnenliste zeigt eine Liste der Teilnehmenden dieser Veranstaltung. Weitere Teilnehmende können von Dozierenden hinzugefügt, entfernt, herabgestuft, heraufgestuft oder selbstdefinierten Gruppen zugeordnet werden.', 'dispatch.php/course/members', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('a202eb75df0a1da2a309ad7a4abfac59', 'a202eb75df0a1da2a309ad7a4abfac59', 'de', 'In den Privatsphäre-Einstellungen kann die Sichtbarkeit und Auffindbarkeit des eigenen Profils eingestellt werden.', 'dispatch.php/settings/privacy', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('a2a649de15c8d8473b11fccc731dc80f', 'a2a649de15c8d8473b11fccc731dc80f', 'en', 'Before archiving you can check on this page that the right course(s) have been selected for archiving.', 'dispatch.php/course/archive/confirm', '4.4', 1, 0, 1, '', '', 0, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('aa77d5ee6e0f9a9e6f4a1bbabeaf4a7e', 'aa77d5ee6e0f9a9e6f4a1bbabeaf4a7e', 'de', 'Die Anwesenheitsliste zeigt alle Sitzungstermine (Sitzung, Vorlesung, Ãœbung, Praktikum) des Ablaufplans und ermöglicht das Eintragen von Studierenden durch die Dozierenden in Stud.IP sowie einen Export der Liste zur Ãœbersicht oder als Grundlage handschriftlicher Eintragungen.', 'participantsattendanceplugin/show', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('abaa7b076e6923ac43120f3326322af0', 'abaa7b076e6923ac43120f3326322af0', 'en', 'This page allows the storing of free information, links etc.', 'dispatch.php/course/scm', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('abfb5d03de288d02df436f9a8bb96d9d', 'abfb5d03de288d02df436f9a8bb96d9d', 'en', 'With the image uploading feature, the image of a course can be changed, which can help students differentiate between courses on the My Courses page.', 'dispatch.php/course/avatar/update', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('ac5df1de9c75fc92af7718b2103d3037', 'ac5df1de9c75fc92af7718b2103d3037', 'de', 'Blubbern ist eine Mischform aus Forum und Chat. Nachrichten werden im öffentlichen Stream dargestellt. Andere Nutzer können über einen Beitrag informiert werden, indem sie per @benutzername oder @\"Vorname Nachname\" im Beitrag erwähnt werden.', 'plugins.php/blubber/streams/profile', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('ac7326260fd5ca4fa83c1154f2ffc7b9', 'ac7326260fd5ca4fa83c1154f2ffc7b9', 'de', 'Die Dateiverwaltung bietet die Möglichkeit zum Hochladen, Verlinken, Verwalten und Herunterladen von Dateien. ', 'folder.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('af7573cce1e898054db89a96284866f9', 'af7573cce1e898054db89a96284866f9', 'en', 'Here you can create a new study group. Each Stud.IP user can create study groups and configure them according to their own needs.', 'dispatch.php/course/studygroup/new', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('b05b27450e363c38c6b4620b902b3496', 'b05b27450e363c38c6b4620b902b3496', 'en', 'The start page opens after logging in and can be adjusted to your personal needs by using widgets.', 'dispatch.php/start', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('b283b58820db358284f4451dfb691678', 'b283b58820db358284f4451dfb691678', 'en', 'Here you can search for references in catalogues and add them to your list.', 'dispatch.php/literature/search', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('b32cb2c4ec56e925b07a5cb0105a6888', 'b32cb2c4ec56e925b07a5cb0105a6888', 'en', 'The password of the Stud.IP account can be changed here.', 'dispatch.php/settings/password', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('b3bd33cb0babbb0cc51a4f429d15d438', 'b3bd33cb0babbb0cc51a4f429d15d438', 'en', 'Here you can add members to a study group and send messages to them.', 'dispatch.php/course/studygroup/members', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('b5fabb1e5aed7ff8520314e9a86c5c87', 'b5fabb1e5aed7ff8520314e9a86c5c87', 'en', 'Here, individual content can be activated or deactivated. Active contents add new features to your profile or settings. These will usually appear as new tabs in the menu. If features are not required, they can be deactivated here. The corresponding menu items will then be hidden.', 'dispatch.php/profilemodules/index', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('b677e8b5f1bd7e8acbe474177449c4e1', 'b677e8b5f1bd7e8acbe474177449c4e1', 'de', 'Die Dateiverwaltung bietet die Möglichkeit zum Hochladen, Verwalten und Herunterladen persönlicher Dateien, die nicht für andere einsehbar sind. ', 'dispatch.php/document/files', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('b9586c280a0092f86f9392fe5b5ff2a0', 'b9586c280a0092f86f9392fe5b5ff2a0', 'en', 'Blubber is the Stud.IP real-time forum, a mixture of forum and chat. Others can be informed about a post by mentioning them by @username or @\'firstname surname\' in the post. Texts can be formatted and supplemented with smileys.', 'plugins.php/blubber/streams/global', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('bc1d6ecab9364cfe2c549d262bfda437', 'bc1d6ecab9364cfe2c549d262bfda437', 'de', 'Die Lernmodulschnittstelle ermöglicht es, Selbstlerneinheiten aus externen Programmen wie ILIAS und LON-CAPA in Stud.IP zur Verfügung zu stellen. Für jedes externe System wird ein eigener Benutzer-Account erstellt oder zugeordnet. Mit den entsprechenden Rechten können eigene Lernmodule erstellt werden.', 'dispatch.php/elearning/my_accounts', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('bcdedaf1b4bd3b96ef574e8230095b28', 'bcdedaf1b4bd3b96ef574e8230095b28', 'en', 'RSS feeds, i.e. news streams from external websites, can be integrated on the start page. The more feeds you include, the longer it takes to load the start page.', 'dispatch.php/admin/rss_feeds', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('bd0770f9eef5c10fc211114ac35fbe9b', 'bd0770f9eef5c10fc211114ac35fbe9b', 'de', 'Diese Seite zeigt die Studiengruppen an, denen die/der NutzerIn zugeordnet ist. Studiengruppen sind eine einfache Möglichkeit, mit Mitstudierenden, KollegInnen und anderen zusammenzuarbeiten. Jede/r NutzerIn kann Studiengruppen anlegen oder nach ihnen suchen. Die Farbgruppierung kann individuell angepasst werden.', 'dispatch.php/my_studygroups', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('bd5df4fb7b84da79149c96c5f43de46c', 'bd5df4fb7b84da79149c96c5f43de46c', 'en', 'Groups can be created and managed here. If the self-entry is activated, participants can register themselves and sign themselves out.', 'admin_statusgruppe.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('be204bdd0fce91702f51597bf8428fba', 'be204bdd0fce91702f51597bf8428fba', 'de', 'Das Wiki ermöglicht ein gemeinsames, asynchrones Erstellen und Bearbeiten von Texten. Texte lassen sich formatieren und miteinander verknüpfen, so dass ein verzweigtes Nachschlagewerk entsteht. ', 'wiki.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('bf9eb8f2c3842865009342b89fd35476', 'bf9eb8f2c3842865009342b89fd35476', 'de', 'Die Nachrichtenseite bietet einen Ãœberblick über erhaltene, systeminterne Nachrichten, welche mit selbstgewählten Schlüsselwörtern (sog. Tags) versehen werden können, um sie später leichter wieder auffinden zu können.', 'dispatch.php/messages/overview', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('bfb70d5f036769d740fb2342b0b58183', 'bfb70d5f036769d740fb2342b0b58183', 'en', 'The learning module interface makes it possible to provide study units from external programs such as ILIAS and LON-CAPA in Stud.IP. A separate user account is created or assigned for each external system. With the appropriate rights, own learning modules can be created.', 'dispatch.php/elearning/my_accounts', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('c01725d6a3da568e1b07aee4e68a7e1f', 'c01725d6a3da568e1b07aee4e68a7e1f', 'de', 'Diese Seite ermöglicht das Hinterlegen von freien Informationen, Links etc.', 'dispatch.php/course/scm', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('c4dee277f741cfa7d5a65fa0c6bead4c', 'c4dee277f741cfa7d5a65fa0c6bead4c', 'de', 'Hier können Termine mit Themen versehen werden oder bereits eingegebene Themen übernommen und bearbeitet werden.', 'dispatch.php/course/topics', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('c8e789a0efb73f00f00dacf565524c73', 'c8e789a0efb73f00f00dacf565524c73', 'en', 'Various display and notification options can be selected and changed in the general settings.', 'dispatch.php/settings/general', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('cbd9b2b22fc00bc92df3589018644b70', 'cbd9b2b22fc00bc92df3589018644b70', 'de', 'Hier können vordefinierte Informationen über die eigene Person eingegeben werden, die auf der Profilseite erscheinen sollen. ', 'dispatch.php/settings/details', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('cd69b74cd46172785bf2147fb0582e3c', 'cd69b74cd46172785bf2147fb0582e3c', 'de', 'Hier kann ein benutzerdefinierter Blubber-Stream erstellt werden. Er besteht immer aus einer Sammlung von Beiträgen aus ausgewählten Veranstaltungen, Kontaktgruppen und Schlagwörten, die auf Basis einer Filterung noch weiter eingeschränkt werden können. Der neue benutzerdefinierte Stream findet sich nach dem Klick auf den Speichern-Button in der Navigation unter Globaler Stream.', 'plugins.php/blubber/streams/edit', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('ceb21257092b11dcf6897d5bb3085642', 'ceb21257092b11dcf6897d5bb3085642', 'en', 'An overview of sent, internal system messages, which can be provided with self-selected keywords (\"tags\") in order to be able to find them more easily later.', 'dispatch.php/messages/sent', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('d04ca1f9e867ee295a3025dac7ce9c7b', 'd04ca1f9e867ee295a3025dac7ce9c7b', 'en', 'View of the institutions assigned to the Stud.IP user.', 'dispatch.php/settings/statusgruppen', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('d1de152db139d8c12552610d2f7999c2', 'd1de152db139d8c12552610d2f7999c2', 'de', 'Mit dem Export können Daten über Veranstaltungen und MitarbeiterInnen in folgende Formate exportiert werden: RTF, TXT, CSV, PDF, HTML und XML.', 'export.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('d704267767d4c559aa9e552be60c49b5', 'd704267767d4c559aa9e552be60c49b5', 'de', 'Hier kann das Passwort für den Stud.IP-Account geändert werden.', 'dispatch.php/settings/password', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('d79ca3bc4a8251862339b1c934504a54', 'd79ca3bc4a8251862339b1c934504a54', 'de', 'Hier werden die selbstdefinierten Gruppen angezeigt. An diese können Nachrichten versendet werden. Ein Klick auf die orangenen Pfeile vor dem Gruppenname ordnet Sie der Gruppe zu.', 'statusgruppen.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('d97eff1196f6aed8e94f7c5096ebd2a9', 'd97eff1196f6aed8e94f7c5096ebd2a9', 'en', 'The overview contains course-related short and detailed information, announcements, dates and surveys.', 'dispatch.php/course/overview', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('db5a995bd12ba8e2ae96adcabeb8c8f7', 'db5a995bd12ba8e2ae96adcabeb8c8f7', 'de', 'Der Terminkalender besteht aus abonnierten Veranstaltungen und eigenen Terminen. Er kann bearbeitet, in der Anzeige verändert und mit externen Programmen (z.B. Outlook) abgeglichen werden. ', 'calendar.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('dddf5fd4406da0d91c9f121fcae607ad', 'dddf5fd4406da0d91c9f121fcae607ad', 'en', 'The appointment calendar consists of subscribed courses and your own appointments. It can be edited, changed in the display and compared with external programs (e.g. Outlook).', 'calendar.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('e03cec310c0a884aee80c2d1eea3a53e', 'e03cec310c0a884aee80c2d1eea3a53e', 'de', 'Diese Seite zeigt alle Studiengruppen an, die in Stud.IP existieren. Studiengruppen sind eine einfache Möglichkeit, mit Mitstudierenden, KollegInnen und anderen zusammenzuarbeiten. Jede/r NutzerIn kann Studiengruppen anlegen oder nach ihnen suchen.', 'dispatch.php/studygroup/browse', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('e206a4257e31a0f32ac516cefb8e8331', 'e206a4257e31a0f32ac516cefb8e8331', 'en', 'You can find university ressources like rooms, buildings etc. with the ressource search engine.', 'resources.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('e22701c71b4425fb5a95adf725866097', 'e22701c71b4425fb5a95adf725866097', 'de', 'Hier können Gruppen erstellt und verwaltet werden. Wenn der Selbsteintrag aktiviert ist, können sich TeilnehmerInnen selbst ein- und austragen.', 'admin_statusgruppe.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('e29098d188ae25c298d78978de50bf09', 'e29098d188ae25c298d78978de50bf09', 'de', 'Hier kann in Katalogen nach Literatur gesucht und diese zur Merkliste hinzugefügt werden.', 'dispatch.php/literature/search', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('e315a4c547be7f17d427b227f0f9d982', 'e315a4c547be7f17d427b227f0f9d982', 'de', 'Auf dieser Seite können selbstdefinierte Informationen über die eigene Person eingegeben werden, die auf der Profilseite erscheinen sollen. ', 'dispatch.php/settings/categories', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('e5bff29f7adee43202a2aa8f3f0a6ec7', 'e5bff29f7adee43202a2aa8f3f0a6ec7', 'en', 'The profile page allows you to change your own user data including profile picture and categories. Similar to Facebook, comments can be left. The lecturer\'s profile contains office hours and room details. In addition, the page offers the management of own files.', 'dispatch.php/profile', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('e939ac70210674f49a36ac428167a9b8', 'e939ac70210674f49a36ac428167a9b8', 'de', 'Mit der Umfragen-und-Tests-Funktion lassen sich (zeitgesteuerte) Umfragen oder einzelne Multiple-/Single-Choice-Fragen für Veranstaltungen, Studiengruppen oder das Profil erstellen.', 'admin_vote.php', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('ebb5bc1d831d460c06e3c6662236c159', 'ebb5bc1d831d460c06e3c6662236c159', 'de', 'Hier kann ein Profilbild hochgeladen werden.', 'dispatch.php/settings/avatar', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('ebcc460880b8a63af3f6e7eade97db78', 'ebcc460880b8a63af3f6e7eade97db78', 'en', 'With the user search, users can be found as long as their privacy settings do not prevent this. The search can be limited to certain courses or institutions.', 'browse.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('ee91ec0f9085221ada06d171a27d2405', 'ee91ec0f9085221ada06d171a27d2405', 'en', 'File management offers the possibility to upload, link to, manage and download files.', 'folder.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('eec46c5d8ea5523d959a8c334455c2ef', 'eec46c5d8ea5523d959a8c334455c2ef', 'en', 'You can use the fields of study-feature to assign a course to a field of study. Editing can be locked if data is transferred from other systems (for example, LSF/ UniVZ).', 'dispatch.php/course/study_areas/show', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('f3deb7a01205637d71a66e2b90b24cba', 'f3deb7a01205637d71a66e2b90b24cba', 'de', 'Hier können RSS-Feeds, d.h. Nachrichtenströme von externen Internetseiten, auf der Startseite eingebunden werden. Je mehr Feeds eingebunden werden, desto länger dauert das Laden der Startseite.', 'dispatch.php/admin/rss_feeds', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('f529bca4d1626b43cbb8149feea41a84', 'f529bca4d1626b43cbb8149feea41a84', 'en', 'The self-defined groups are displayed here. Messages can be sent to these groups. A click on the orange arrows in front of the group name assigns you to the group.', 'statusgruppen.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('f5e59c4fc98e1df7fe29b8e9320853e7', 'f5e59c4fc98e1df7fe29b8e9320853e7', 'en', 'In the privacy settings you can set the visibility and discoverability of your own profile.', 'dispatch.php/settings/privacy', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('f92b5422246f585f051de1a81602dd56', 'f92b5422246f585f051de1a81602dd56', 'de', 'Hier können Name, Funktionen und Zugangsbeschränkung der Studiengruppe bearbeitet werden.', 'dispatch.php/course/studygroup/edit', '3.1', 0, 0, 1, '', '', 1406641688, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('f966e348174927565b94e606bbcf064f', 'f966e348174927565b94e606bbcf064f', 'en', 'The message page provides an overview of received, internal system messages, which can be assigned self-selected keywords (\"tags\") to make them easier to find later.', 'dispatch.php/messages/overview', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) VALUES('fa4bf491690645a5f12556f77e51233c', 'fa4bf491690645a5f12556f77e51233c', 'en', 'Here you can edit reference lists and make them visible in a course (click on the \"eye\").', 'dispatch.php/literature/edit_list.php', '4.4', 0, 0, 1, '', '', 1412942388, 0, NULL); +INSERT INTO `help_content` (`global_content_id`, `content_id`, `language`, `content`, `route`, `studip_version`, `position`, `custom`, `visible`, `author_email`, `installation_id`, `mkdate`, `chdate`, `comment`) 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, NULL); 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); @@ -720,10 +667,6 @@ INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `t 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); @@ -761,10 +704,6 @@ INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chda 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); @@ -1029,17 +968,10 @@ 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('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 `i18n` --- - +INSERT INTO `i18n` (`object_id`, `table`, `field`, `lang`, `value`) VALUES('28cb0aeb29e9b3046b6c2e958566d6a5', 'config', 'value', 'en_GB', 'Date allocation'); INSERT INTO `i18n` (`object_id`, `table`, `field`, `lang`, `value`) VALUES('3c28f017886d9acf0b0f654195ec478f', 'config', 'value', 'en_GB', 'Using two-factor authentication you can protect your account by entering a token on each login. You get that token either via E-Mail or by using an appropriate authenticator app.'); INSERT INTO `i18n` (`object_id`, `table`, `field`, `lang`, `value`) VALUES('e98bde4d61d028203eb3c2c26fa5ac4a', 'config', 'value', 'en_GB', 'Set up a suitable OTP authenticator app for this purpose. Here you will find a list of known and compatible apps:\n- [Authy]https://authy.com/\n- [FreeOTP]https://freeotp.github.io/\n- Google Authenticator: [Android]https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2 oder [iOS]https://apps.apple.com/app/google-authenticator/id388497605\n- [LastPass Authenticator]https://lastpass.com/auth/\n- [Microsoft Authenticator]https://www.microsoft.com/authenticator'); --- --- Daten für Tabelle `licenses` --- - INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-1.0', 'Creative Commons Attribution 1.0 Generic', 'https://creativecommons.org/licenses/by/1.0/legalcode', 0, NULL, 'CC_BY', '1.0', 1640797278, 1640797278); INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-2.0', 'Creative Commons Attribution 2.0 Generic', 'https://creativecommons.org/licenses/by/2.0/legalcode', 0, NULL, 'CC_BY', '2.0', 1640797278, 1640797278); INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-2.5', 'Creative Commons Attribution 2.5 Generic', 'https://creativecommons.org/licenses/by/2.5/legalcode', 0, NULL, 'CC_BY', '2.5', 1640797278, 1640797278); @@ -1053,17 +985,9 @@ INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `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.', NULL, NULL, 1640797278, 1640797278); INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC0-1.0', 'Creative Commons Zero v1.0 Universal', 'https://creativecommons.org/publicdomain/zero/1.0/legalcode', 0, NULL, 'CC_0', '1.0', 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); @@ -1206,16 +1130,8 @@ INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('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 `oer_hosts` --- - INSERT INTO `oer_hosts` (`host_id`, `sorm_class`, `name`, `url`, `public_key`, `private_key`, `active`, `index_server`, `allowed_as_index_server`, `last_updated`, `chdate`, `mkdate`) VALUES('333f8037bc5f78b8e2f27256fa244b5f', 'OERHostOERSI', 'OERSI', 'https://oersi.de', '', '', 1, 1, 1, 1669041528, 1669041528, 1669041528); --- --- 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', '', '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', '', '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', '', 'EvaluationsWidget', 'PortalPlugin', 'yes', 3, NULL, NULL, NULL); @@ -1243,10 +1159,7 @@ INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname` 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', '', 'ContentsWidget', 'PortalPlugin', 'yes', 9, NULL, NULL, NULL); - --- --- Daten für Tabelle `roles` --- +INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(28, 'MyCoursesWidget', '', 'MyCoursesWidget', 'PortalPlugin', 'yes', 10, NULL, NULL, NULL); INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(1, 'Root-Administrator(in)', 'y'); INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(2, 'Administrator(in)', 'y'); @@ -1263,10 +1176,6 @@ INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(12, 'MVVRedakteur', INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(13, 'MVVTranslator', 'n'); INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(14, 'MVVLvGruppenAdmin', 'n'); --- --- Daten für Tabelle `roles_plugins` --- - INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 1); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 2); INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 3); @@ -1294,6 +1203,7 @@ 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(1, 28); 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); @@ -1321,6 +1231,7 @@ 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(2, 28); 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); @@ -1348,6 +1259,7 @@ 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(3, 28); 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); @@ -1375,6 +1287,7 @@ 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(4, 28); 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); @@ -1402,6 +1315,7 @@ 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(5, 28); 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); @@ -1429,6 +1343,7 @@ 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(6, 28); 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); @@ -1449,10 +1364,6 @@ 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); --- --- Daten für Tabelle `roles_studipperms` --- - INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(1, 'root'); INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(2, 'admin'); INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(3, 'admin'); @@ -1462,46 +1373,23 @@ INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(5, 'autor'); INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(5, 'tutor'); INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(6, 'tutor'); --- --- Daten für Tabelle `roles_user` --- - INSERT INTO `roles_user` (`roleid`, `userid`, `institut_id`) VALUES(7, 'nobody', ''); --- --- Daten für Tabelle `schema_version` --- - INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '1', 327); -INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.1', 35); +INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.1', 48); INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.2', 15); - --- --- Daten für Tabelle `semester_data` --- +INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.3', 19); INSERT INTO `semester_data` (`semester_id`, `name`, `description`, `semester_token`, `beginn`, `ende`, `sem_wechsel`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`, `mkdate`, `chdate`) VALUES('322f640f3f4643ebe514df65f1163eb1', 'SS 2023', '', '', 1680300000, 1696111199, NULL, 1681164000, 1689371999, 1, '', NULL, 1669041706); -INSERT INTO `semester_data` (`semester_id`, `name`, `description`, `semester_token`, `beginn`, `ende`, `sem_wechsel`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`, `mkdate`, `chdate`) VALUES('4967f0a483e36554b77e3dc47aa58941', 'WS 2022/2023', '', '', 1664575200, 1680299999, NULL, 1666562400, 1676069999, 1, '', NULL, 1656513998); - --- --- Daten für Tabelle `semester_holiday` --- - -INSERT INTO `semester_holiday` (`holiday_id`, `semester_id`, `name`, `description`, `beginn`, `ende`, `mkdate`, `chdate`) VALUES('704038f0cb3ea0a285ba0a453788ebed', '', 'Unterbrechung', '', 1671836400, 1673045999, NULL, 1656514040); +INSERT INTO `semester_data` (`semester_id`, `name`, `description`, `semester_token`, `beginn`, `ende`, `sem_wechsel`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`, `mkdate`, `chdate`) VALUES('4967f0a483e36554b77e3dc47aa58941', 'WS 2023/2024', '', '', 1696111200, 1711922399, NULL, 1698012000, 1707519599, 1, '', NULL, 1686151054); --- --- Daten für Tabelle `sem_classes` --- +INSERT INTO `semester_holiday` (`holiday_id`, `semester_id`, `name`, `description`, `beginn`, `ende`, `mkdate`, `chdate`) VALUES('704038f0cb3ea0a285ba0a453788ebed', '', 'Unterbrechung', '', 1703286000, 1704495599, NULL, 1686151122); 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', 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, '{\"CoreOverview\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreAdmin\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreDocuments\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoursewareModule\":{\"activated\":\"1\",\"sticky\":\"0\"},\"Blubber\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreForum\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreWiki\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreParticipants\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreSchedule\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreScm\":{\"activated\":\"0\",\"sticky\":\"0\"},\"ConsultationModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreElearningInterface\":{\"activated\":\"0\",\"sticky\":\"0\"},\"IliasInterfaceModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"LtiToolModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"GradebookModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"FeedbackModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreCalendar\":{\"activated\":\"0\",\"sticky\":\"1\"}}', 'Hier finden Sie alle in Stud.IP registrierten Lehrveranstaltungen', '', 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1366882120, 1641229573); 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, 0, 0, 0, 0, 1, 0, 0, 1, 0, '{\"CoreOverview\":{\"activated\":\"1\",\"sticky\":\"1\"},\"CoreAdmin\":{\"activated\":\"1\",\"sticky\":\"1\"},\"Blubber\":{\"activated\":\"1\",\"sticky\":\"0\"},\"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\"},\"CoreScm\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreElearningInterface\":{\"activated\":\"0\",\"sticky\":\"0\"},\"LtiToolModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"GradebookModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoursewareModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"ConsultationModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreCalendar\":{\"activated\":\"0\",\"sticky\":\"0\"},\"FeedbackModule\":{\"activated\":\"0\",\"sticky\":\"0\"}}', 'Hier finden Sie virtuelle Veranstaltungen zu verschiedenen Gremien an der Universität', '', 0, 0, 0, 'LeiterIn', 'LeiterInnen', 'Mitglied', 'Mitglieder', NULL, NULL, 1, 0, 1366882120, 1641229564); 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\",\"sticky\":\"0\"},\"Blubber\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreParticipants\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreDocuments\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoursewareModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreWiki\":{\"activated\":\"0\",\"sticky\":\"0\"},\"LtiToolModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"GradebookModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"FeedbackModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreScm\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreSchedule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"ConsultationModule\":{\"activated\":\"0\",\"sticky\":\"0\"}}', 'Hier finden Sie virtuelle Veranstaltungen zu unterschiedlichen Themen', '', 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1366882120, 1641229633); 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\"},\"CoreStudygroupParticipants\":{\"activated\":\"1\",\"sticky\":\"1\"},\"Blubber\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreForum\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreDocuments\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoreScm\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreWiki\":{\"activated\":\"1\",\"sticky\":\"0\"},\"CoursewareModule\":{\"activated\":\"0\",\"sticky\":\"0\"},\"CoreCalendar\":{\"activated\":\"0\",\"sticky\":\"1\"}}', '', '', 1, 0, 0, 'GruppengründerIn', 'GruppengründerInnen', 'ModeratorIn', 'ModeratorInnen', 'Mitglied', 'Mitglieder', 0, 0, 1366882120, 1641229657); --- --- Daten für Tabelle `sem_types` --- - INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(1, 'Vorlesung', 1, 1366882120, 1366882120); INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(2, 'Seminar', 1, 1366882120, 1366882120); INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(3, 'Ãœbung', 1, 1366882120, 1366882120); @@ -1517,9 +1405,7 @@ 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); --- --- Daten für Tabelle `siteinfo_details` --- +INSERT INTO `session_data` (`sid`, `val`, `changed`) VALUES('193b0220a1d154da77f9d542d954218b', 0x617574687c4f3a32303a2253656d696e61725f44656661756c745f41757468223a323a7b733a343a2261757468223b613a383a7b733a333a22756964223b733a33323a223736656434336566323836666235356366396534316265616462343834613966223b733a343a227065726d223b733a343a22726f6f74223b733a353a22756e616d65223b733a31313a22726f6f7440737475646970223b733a373a226a736372697074223b623a313b733a31363a22646576696365506978656c526174696f223b643a312e3130303030303032333834313835383b733a31313a22617574685f706c7567696e223b733a383a227374616e64617264223b733a343a2278726573223b693a313932303b733a343a2279726573223b693a313230303b7d733a393a22636c6173736e616d65223b733a32303a2253656d696e61725f44656661756c745f41757468223b7d666f726365645f6c616e67756167657c4e3b5f6c616e67756167657c733a353a2264655f4445223b636f6e74726173747c4e3b6f61757468327c4e3b706c7567696e735f64697361626c65647c4e3b747261696c735f666c6173687c4f3a31323a22547261696c735f466c617368223a323a7b733a353a22666c617368223b613a303a7b7d733a343a2275736564223b613a303a7b7d7d53657373696f6e53746172747c693a313638363135303633333b6f626a6563745f63616368657c613a303a7b7d5f64656661756c745f73656d7c733a33323a223332326636343066336634363433656265353134646636356631313633656231223b7466612f6661696c65647c613a303a7b7d6d6967726174696f6e2d636865636b7c613a333a7b733a383a2264697361626c6564223b623a303b733a393a2274696d657374616d70223b693a313638363135313035343b733a353a22636f756e74223b693a303b7d73656375726974795f746f6b656e7c733a34343a224b305064763965334c784c57516b303050674d6f686d495062383438796e7634514768582b666c557477413d223b6163746976655f746f75727c613a353a7b733a373a22746f75725f6964223b733a33323a226138343837343462646534646163343765633265386233383331353533383164223b733a373a22737465705f6e72223b733a313a2231223b733a31303a226c6173745f726f757465223b733a31383a2264697370617463682e7068702f7374617274223b733a31343a2270726576696f75735f726f757465223b733a303a22223b733a31303a226e6578745f726f757465223b733a32333a2264697370617463682e7068702f6d795f636f7572736573223b7d517569636b53656172636865737c613a313a7b733a33323a223037613237366634376234613232383265633265616665373864366665636261223b613a333a7b733a343a2274696d65223b693a313638363135303930383b733a363a226f626a656374223b733a3834383a224f3a31343a225374616e64617264536561726368223a363a7b733a363a22736561726368223b733a373a22757365725f6964223b733a31353a227365617263685f73657474696e6773223b613a303a7b7d733a363a22002a0073716c223b733a3636363a2253454c4543542044495354494e435420617574685f757365725f6d64352e757365725f69642c20434f4e43415428617574685f757365725f6d64352e4e6163686e616d652c20272c20272c20617574685f757365725f6d64352e566f726e616d652c20272028272c20617574685f757365725f6d64352e757365726e616d652c20272927292c20617574685f757365725f6d64352e7065726d732046524f4d20617574685f757365725f6d6435204c454654204a4f494e20757365725f696e666f204f4e2028757365725f696e666f2e757365725f6964203d20617574685f757365725f6d64352e757365725f696429204c454654204a4f494e20757365725f7669736962696c697479204f4e2028757365725f7669736962696c6974792e757365725f6964203d20617574685f757365725f6d64352e757365725f6964292057484552452028434f4e43415428617574685f757365725f6d64352e566f726e616d652c202720272c20617574685f757365725f6d64352e4e6163686e616d6529204c494b45205245504c414345283a696e7075742c202720272c202725202729204f5220434f4e43415428617574685f757365725f6d64352e4e6163686e616d652c202720272c20617574685f757365725f6d64352e566f726e616d6529204c494b45205245504c414345283a696e7075742c202720272c202725202729204f5220434f4e43415428617574685f757365725f6d64352e4e6163686e616d652c20272c20272c20617574685f757365725f6d64352e566f726e616d6529204c494b45203a696e707574204f5220617574685f757365725f6d64352e757365726e616d65204c494b45203a696e7075742920414e442031204f52444552204259204e6163686e616d65204153432c20566f726e616d6520415343223b733a31333a22002a006176617461724c696b65223b733a373a22757365725f6964223b733a383a22002a007469746c65223b4e3b733a31343a22657874656e6465644c61796f7574223b623a313b7d223b733a31313a22696e636c75646550617468223b733a34383a226c69622f636c61737365732f73656172636874797065732f5374616e646172645365617263682e636c6173732e706870223b7d7d5f6d61726b65645f6974656d7c4e3b, '2023-06-07 15:18:50'); INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(1, 1, NULL, '[lang=de]Ansprechpartner[/lang][lang=en]Contact[/lang]', '[style=float: right]\r\n[img]https://develop.studip.de/logos/logoklein.png\r\n**Version:** (:version:)\r\n[/style]\r\n[lang=de]Für diese Stud.IP-Installation ((:uniname:)) sind folgende Administratoren zuständig:[/lang]\r\n[lang=en]The following administrators are responsible for this Stud.IP installation ((:uniname:)):[/lang]\r\n(:rootlist:)\r\n[lang=de]allgemeine Anfragen wie Passwort-Anforderungen u.a. richten Sie bitte an:[/lang]\r\n[lang=en]General queries e.g., password queries, please contact:[/lang]\r\n(:unicontact:)\r\n[lang=de]Folgende Einrichtungen sind beteiligt:\r\n(Genannt werden die jeweiligen Administratoren der Einrichtungen für entsprechende Anfragen)[/lang]\r\n[lang=en]The following institutes participate:\r\n(Named are the institutes administrators responsible for the corresponding query areas)[/lang]\r\n(:adminlist:)'); INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(2, 1, NULL, '[lang=de]Entwickler[/lang][lang=en]Developer[/lang]', '[style=float: right]\r\n\r\n[img]https://develop.studip.de/logos/logoklein.png\r\n\r\n**Version:** (:version:)\r\n\r\n[/style]\r\n\r\n[lang=de]Stud.IP ist ein Open Source Projekt zur Unterstützung von Präsenzlehre an Universitäten, Hochschulen und anderen Bildungseinrichtungen. Das System entstand am Zentrum für interdisziplinäre Medienwissenschaft (ZiM) der Georg-August-Universität Göttingen unter Mitwirkung der Suchi & Berg GmbH (data-quest) , Göttingen. Heute erfolgt die Weiterentwicklung von Stud.IP verteilt an vielen Standorten (Göttingen, Osnabrück, Oldenburg, Bremen, Hannover, Jena und weiteren). Die Koordination der Entwicklung erfolgt durch die Stud.IP-CoreGroup.\r\n\r\nStud.IP steht unter der GNU General Public License, Version 2.\r\n\r\n\r\n\r\nWeitere Informationen finden sie auf ** [www.studip.de]http://www.studip.de **,**  [develop.studip.de]http://develop.studip.de **.[/lang]\r\n\r\n\r\n\r\n[lang=en]Stud.IP is an opensource project for supporting attendance courses offered by universities, institutions of higher education and other educational institutions. The system was established at the Zentrum für interdisziplinäre Medienwissenschaft (ZiM) in the Georg-August-Universität Göttingen in cooperation with Suchi & Berg GmbH (data-quest) , Göttingen. At the present further developing takes place at various locations (among others Göttingen, Osnabrück, Oldenburg, Bremen, Hannover, Jena) under coordination through the Stud.IP-CoreGroup.\r\n\r\n\r\n\r\nStud.IP is covered by the GNU General Public Licence, version 2.\r\n\r\n\r\n\r\nFurther information can be found under ** [www.studip.de]http://www.studip.de **,**  [develop.studip.de]http://develop.studip.de **.[/lang]\r\n\r\n\r\n\r\n(:coregroup:)\r\n\r\n[lang=de]Sie erreichen uns auch über folgende **Mailinglisten**:\r\n\r\n\r\n\r\n**Nutzer-Anfragen**, E-Mail: studip-users@lists.sourceforge.net : Fragen, Anregungen und Vorschläge an die Entwickler - bitte __keine__ Passwort Anfragen!\r\n\r\n**News-Mailingsliste**, E-Mail: studip-news@lists.sourceforge.net : News rund um Stud.IP (Eintragung notwendig)\r\n\r\n\r\n\r\nWir laden alle Entwickler, Betreiber und Nutzer von Stud.IP ein, sich auf dem Developer-Server http://develop.studip.de an den Diskussionen rund um die Weiterentwicklung und Nutzung der Plattform zu beteiligen.[/lang]\r\n\r\n[lang=en]You can contact us via the following **mailing lists**:\r\n\r\n\r\n\r\n**User enquiries**, E-Mail: studip-users@lists.sourceforge.net : Questions, suggestions and recommendations to the developers - __please no password queries__!\r\n\r\n\r\n\r\n**News mailing list**, E-Mail: studip-news@lists.sourceforge.net : News about Stud.IP (registration necessary)\r\n\r\n\r\n\r\nWe invite all developers, administrators and users of Stud.IP to join the discussions on further developing and using the platform available at the developer server http://develop.studip.de[/lang]'); @@ -1528,17 +1414,9 @@ INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `c INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(5, 2, NULL, 'History', '(:history:)'); INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(7, 1, NULL, 'Datenschutzerklärung', '++**Datenschutzerklärung**++\n\nSie erhalten als Nutzer/-in unserer Internetseite in dieser Datenschutzerklärung notwendige Informationen darüber, wie und in welchem Umfang sowie zu welchem Zweck die **[Betreibereinrichtung]** Daten von Ihnen erhebt und wie diese verwendet werden. Die Daten werden nur innerhalb der **[Betreibereinrichtung]** verarbeitet und verwendet und nicht an Dritte weitergegeben.\n\n\n++**Rechtsgrundlagen**++\n\nDie Erhebung und Nutzung Ihrer Daten erfolgt streng nach den gesetzlichen Vorgaben. Regelungen dazu finden sich in:\nEuropäische Datenschutzgrundverordnung (EU DSGVO)\nBundesdatenschutzgesetz (BDSG)\nNiedersächsisches Datenschutzgesetz (NDSG)\nTeledienstegesetz (TDG)\nMediendienste-Staatsvertrag (MDStV)\nTeledienstedatenschutzgesetz (TDDSG).\n\n\n++**Personenbezogene Daten**++\n\nPersonenbezogene Daten werden zum Zwecke der administrativen Nutzerverwaltung, zur Kontaktaufnahme und Interaktion mit Ihnen sowie zur Bereitstellung personalisierter Dienste [zur Durchführung Ihres Studium bzw. Ihrer Arbeit an **[Betreibereinrichtung]**] von uns gespeichert.\nFür die Nutzung von Stud.IP werden folgende Daten abgefragt und gespeichert:\n- Nutzername\n- Vorname, Nachname\n- Mailadresse\n- [ggf. weitere Daten]\n\n\nWeitere Daten, die evtl. Ihnen gespeichert werden, sind Inhalte, die Sie selbst im Rahmen Ihrer Arbeit oder Ihres Studiums in Stud.IP einstellen. Dazu gehören:\n- Freiwillige Angaben zur Person\n- Beiträge in Foren\n- hochgeladene Dateien\n- Chatverläufe in Blubber\n- interne Nachrichten\n- Kalendereinträge und Stundenpläne\n- Teilnahme an Lehrveranstaltungen, Studiengruppen, Orgagremien\n- Persönliche Einstellungen und Konfigurationen\n- [ggf. Plugindaten]\n\n\nDiese Inhalte werden mit Ihrem Klarnamen gespeichert und angezeigt. Sie haben die Möglichkeit über die Privatsphäreeinstellungen selbst zu bestimmen, ob und ggf. welche Personengruppen diese Daten sehen dürfen. Diese Daten werden von Stud.IP intern verschlüsselt abgelegt.\n\n\n++**Aufbewahrungsfristen **++\n\nIhre personenbezogenen Daten werden für die Dauer Ihres Studiums/Ihrer Arbeit bei [Beitreibereinrichtung] gespeichert. Nach Beendigung ihrer Tätigkeit und Ablauf der gesetzlichen Aufbewahrungsfristen werden Ihre Daten gelöscht.\n\n\n++**Auskunft, Löschung, Sperrung**++\n\nSie erhalten jederzeit auf Anfrage Auskunft über die von uns über Sie gespeicherten personenbezogenen Daten sowie dem Zweck von Datenerhebung sowie Datenverarbeitung. Bitte wenden Sie sich hierzu an o.g. Kontaktadresse.\n\nAußerdem haben Sie das Recht, die Berichtigung, die Sperrung oder Löschung Ihrer Daten zu verlangen. Sie können Ihre Einwilligung ohne Angabe von Gründen durch Schreiben an die o.g. Kontakadresse widerrufen. Ihre Daten werden dann umgehend gelöscht. Eine weitere Nutzung der Lernplattform Stud.IP ist dann aber nicht mehr möglich.\n\nAusgenommen von der Löschung sind Daten, die aufgrund gesetzlicher Vorschriften aufbewahrt oder zur ordnungsgemäßen Geschäftsabwicklung benötigt werden. Damit eine Datensperre jederzeit realisiert werden kann, werden Daten zu Kontrollzwecken in einer Sperrdatei vorgehalten.\n\nWerden Daten nicht von einer gesetzlichen Archivierungspflicht erfasst, löschen wir Ihre Daten auf Ihren Wunsch. Greift die Archivierungspflicht, sperren wir Ihre Daten. Für alle Fragen und Anliegen zur Berichtigung, Sperrung oder Löschung von personenbezogenen Daten wenden Sie sich bitte an unsere Datenschutzbeauftragten unter den Kontaktdaten in dieser Datenschutzerklärung bzw. an die im Impressum genannte Adresse.\n\n\n++**Datenübertragbarkeit**++\n\nSie haben das Recht, jederzeit Ihre Daten ausgehändigt zu bekommen. Auf Anfrage stellen wir Ihnen Ihre Daten in menschenlesbaren, gängigen und bearbeitbaren Formaten zur Verfügung.\n\n\n++**Cookies**++\n\nStud.IP verwendet ein Session-Cookie. Diese kleine Textdatei beinhaltet lediglich eine verschlüsselte Zeichenfolge, die bei der Navigation im System hilft. Das Cookie wird bei der Abmeldung aus Stud.IP oder beim Schließen des Browsers gelöscht.\n\n\n++**Server Logfiles**++\n\nMit dem Zugriff auf Stud.IP werden IP-Adresse, Datum, Uhrzeit und Browserversion zum Zeitpunkt des Zugriffs registriert und anonymisiert gespeichert. Die Erhebung und Nutzung dieser Log-File-Daten dient lediglich der Auswertung zu rein statistischen Forschungs- und Evaluationszwecken der Lernplattform, werden also nicht in Verbindung mit Namen oder Mailadresse gespeichert oder ausgewertet. Diese Daten werden für die Zeit von [X] Monaten auf gesicherten Systemen der **[Betreibereinrichtung]** gespeichert und ebenfalls nicht an Dritte weitergegeben.\n\n\n++**SSL-Verschlüsselung**++\n\nDie Verbindung zu Stud.IP erfolgt mit einer SSL-Verschlüsselung. Ãœber SSL verschlüsselte Daten sind nicht von Dritten lesbar. Ãœbermitteln Sie Ihre vertraulichen Informationen nur bei aktivierter SSL-Verschlüsselung und wenden Sie sich im Zweifel an uns.\n\n\n++Kontaktdaten:++\n**Name:**\n**Telefonnummer:**\n**E-Mail-Adresse:**\n**Unternehmensbezeichnung:**\n\n++Datenschutzbeauftragte/-r:++\n**Name:**\n**Telefonnummer:**\n**E-Mail-Adresse:**\n**Unternehmensbezeichnung:**\n\n\n'); --- --- 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]'); --- --- Daten für Tabelle `widget_default` --- - 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'); @@ -1573,3 +1451,4 @@ INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1 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_resources_demo_data.sql b/db/studip_resources_demo_data.sql index 3bd2188528d1e72280d48bf21262bfb505c2c34f..91fb11d2e55dc643032a5cb6993472eb594dae9f 100644 --- a/db/studip_resources_demo_data.sql +++ b/db/studip_resources_demo_data.sql @@ -34,17 +34,17 @@ REPLACE INTO `resources` (`id`, `parent_id`, `category_id`, `level`, `name`, `de -- Dumping data for table `resource_bookings` -- -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `repeat_quantity`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('041322c703035a3b6b18e9a94d6d2995', '728f1578de643fb08b32b4b8afb2db77', '11cf07ec71bcfbb171095d2b0ca2007e', '', 1687158000, 1687165200, NULL, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `repeat_quantity`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('239ef5105bcf70e1bc280d3b119762a8', '728f1578de643fb08b32b4b8afb2db77', '62587021142c23dcb3f18461554b0116', '', 1686553200, 1686560400, NULL, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `repeat_quantity`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('29460433af113a3568a0a3a9517df2a8', '728f1578de643fb08b32b4b8afb2db77', '3dcbb39e90a51b8047419105a6c2df27', '', 1684134000, 1684141200, NULL, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `repeat_quantity`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('53b12a396ac0f2e9ad94d2a1acb78323', '728f1578de643fb08b32b4b8afb2db77', '8bc6a901aba362d7ed6301836f2b4377', '', 1687762800, 1687770000, NULL, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `repeat_quantity`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('6bbb6edd3b206861b142ead8466bd64d', '728f1578de643fb08b32b4b8afb2db77', '6671170964137c6b4f521b3552fc27a7', '', 1688972400, 1688979600, NULL, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `repeat_quantity`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('753c71518bcd3b2234ee176b10605ffd', '728f1578de643fb08b32b4b8afb2db77', '03e159dcfd421949a2db4d36869b0205', '', 1688367600, 1688374800, NULL, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `repeat_quantity`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('bc37146133034592918cf026e8fe8051', '728f1578de643fb08b32b4b8afb2db77', '03c29d35ff046a26ce41ee021473bcd2', '', 1684738800, 1684746000, NULL, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `repeat_quantity`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('e9e2ba935ed36404b29bbe9be8c9bded', '728f1578de643fb08b32b4b8afb2db77', 'f0fb7805ce3bbdb2332a1b581c6c30a5', '', 1682319600, 1682326800, NULL, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `repeat_quantity`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('ee860dc940d6b0ac9e22d218cd5d8716', '728f1578de643fb08b32b4b8afb2db77', '9b771586f77475dba1b1e56abdbc5d6c', '', 1685948400, 1685955600, NULL, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `repeat_quantity`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('f56859cd74357a535c36021c4ba0ba7d', '728f1578de643fb08b32b4b8afb2db77', '323c9f7e3403c3eb2e7eeaed6aa2f4ce', '', 1681714800, 1681722000, NULL, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `repeat_quantity`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('fb73140a0f3436ee3b4583aa423dc65b', '728f1578de643fb08b32b4b8afb2db77', '0de8bc031df8e2354d4c3136670382b5', '', 1683529200, 1683536400, NULL, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('041322c703035a3b6b18e9a94d6d2995', '728f1578de643fb08b32b4b8afb2db77', '11cf07ec71bcfbb171095d2b0ca2007e', '', 1687158000, 1687165200, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('239ef5105bcf70e1bc280d3b119762a8', '728f1578de643fb08b32b4b8afb2db77', '62587021142c23dcb3f18461554b0116', '', 1686553200, 1686560400, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('29460433af113a3568a0a3a9517df2a8', '728f1578de643fb08b32b4b8afb2db77', '3dcbb39e90a51b8047419105a6c2df27', '', 1684134000, 1684141200, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('53b12a396ac0f2e9ad94d2a1acb78323', '728f1578de643fb08b32b4b8afb2db77', '8bc6a901aba362d7ed6301836f2b4377', '', 1687762800, 1687770000, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('6bbb6edd3b206861b142ead8466bd64d', '728f1578de643fb08b32b4b8afb2db77', '6671170964137c6b4f521b3552fc27a7', '', 1688972400, 1688979600, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('753c71518bcd3b2234ee176b10605ffd', '728f1578de643fb08b32b4b8afb2db77', '03e159dcfd421949a2db4d36869b0205', '', 1688367600, 1688374800, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('bc37146133034592918cf026e8fe8051', '728f1578de643fb08b32b4b8afb2db77', '03c29d35ff046a26ce41ee021473bcd2', '', 1684738800, 1684746000, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('e9e2ba935ed36404b29bbe9be8c9bded', '728f1578de643fb08b32b4b8afb2db77', 'f0fb7805ce3bbdb2332a1b581c6c30a5', '', 1682319600, 1682326800, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('ee860dc940d6b0ac9e22d218cd5d8716', '728f1578de643fb08b32b4b8afb2db77', '9b771586f77475dba1b1e56abdbc5d6c', '', 1685948400, 1685955600, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('f56859cd74357a535c36021c4ba0ba7d', '728f1578de643fb08b32b4b8afb2db77', '323c9f7e3403c3eb2e7eeaed6aa2f4ce', '', 1681714800, 1681722000, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); +REPLACE INTO `resource_bookings` (`id`, `resource_id`, `range_id`, `description`, `begin`, `end`, `repeat_end`, `mkdate`, `chdate`, `internal_comment`, `preparation_time`, `booking_type`, `booking_user_id`, `repetition_interval`) VALUES('fb73140a0f3436ee3b4583aa423dc65b', '728f1578de643fb08b32b4b8afb2db77', '0de8bc031df8e2354d4c3136670382b5', '', 1683529200, 1683536400, NULL, 1669043646, 1669043646, '', 0, 0, '76ed43ef286fb55cf9e41beadb484a9f', ''); -- -- Dumping data for table `resource_booking_intervals`