1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
|
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');
INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(3, 'LockedAdmission', 1, 1388682201, 'lib/admissionrules/lockedadmission');
INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(4, 'PasswordAdmission', 1, 1388682201, 'lib/admissionrules/passwordadmission');
INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(5, 'TimedAdmission', 1, 1388682201, 'lib/admissionrules/timedadmission');
INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(6, 'ParticipantRestrictedAdmission', 1, 1388682201, 'lib/admissionrules/participantrestrictedadmission');
INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(7, 'CourseMemberAdmission', 1, 1414584420, 'lib/admissionrules/coursememberadmission');
INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(8, 'PreferentialAdmission', 1, 1465458738, 'lib/admissionrules/preferentialadmission');
INSERT INTO `admissionrules` (`id`, `ruletype`, `active`, `mkdate`, `path`) VALUES(9, 'TermsAdmission', 1, 1640797278, 'lib/admissionrules/termsadmission');
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);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'ParticipantRestrictedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'PasswordAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'PreferentialAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'TermsAdmission', 1640797278, 1640797278);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ConditionalAdmission', 'TimedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'ConditionalAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'CourseMemberAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'LimitedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'ParticipantRestrictedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'PasswordAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'PreferentialAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'TermsAdmission', 1640797278, 1640797278);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('CourseMemberAdmission', 'TimedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'ConditionalAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'CourseMemberAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'ParticipantRestrictedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'PasswordAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'PreferentialAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'TermsAdmission', 1640797278, 1640797278);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('LimitedAdmission', 'TimedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'ConditionalAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'CourseMemberAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'LimitedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'PreferentialAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'TermsAdmission', 1640797278, 1640797278);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('ParticipantRestrictedAdmission', 'TimedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PasswordAdmission', 'ConditionalAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PasswordAdmission', 'CourseMemberAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PasswordAdmission', 'PreferentialAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PasswordAdmission', 'TimedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'ConditionalAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'CourseMemberAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'LimitedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'ParticipantRestrictedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'PasswordAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'TermsAdmission', 1640797278, 1640797278);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('PreferentialAdmission', 'TimedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'ConditionalAdmission', 1640797278, 1640797278);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'CourseMemberAdmission', 1640797278, 1640797278);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'LimitedAdmission', 1640797278, 1640797278);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'ParticipantRestrictedAdmission', 1640797278, 1640797278);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'PreferentialAdmission', 1640797278, 1640797278);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TermsAdmission', 'TimedAdmission', 1640797278, 1640797278);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'ConditionalAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'CourseMemberAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'LimitedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'ParticipantRestrictedAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'PasswordAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'PreferentialAdmission', 1483462780, 1483462780);
INSERT INTO `admissionrule_compat` (`rule_type`, `compat_rule_type`, `mkdate`, `chdate`) VALUES('TimedAdmission', 'TermsAdmission', 1640797278, 1640797278);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('0a7b7d4484a4cf534d5ba2290be9320c', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('1719f013b744742b79041672a78d3025', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('1a2873fdd1da52004f1964dbcac07ba4', 'global', 'delete', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('1a2873fdd1da52004f1964dbcac07ba4', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('2ef8a393e570cd8d237694cda9c72e5d', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('301b5d2469584236ce86d4b62e0320f6', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('301b5d2469584236ce86d4b62e0320f6', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('37da232dc2b3bc45ae2f8a922ae4b17e', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('38fb74fe58ac011b7cdc3c68542b5e05', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('414254fd6974daa494072850220280c7', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('4312a962eafc8bbbcf7aa125bef194a7', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('4832a2091e2f3fc4ef22ea85661ee027', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('48ccd574ccada1eb5a3a41f7bbd5a24f', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('4d632ee9e14bcd156b1f677edd41dda8', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('4e34f3337a69a0d0f3f0f258a151ecb2', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('4fdd10b33a73187eff2c5ee66138e007', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('4fdd10b33a73187eff2c5ee66138e007', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('5638725a387b0426dd4c4dc346db4306', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('58ffd1089ee5bd547cfb12de54b342a5', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('5a604ee32c498b8e19bfa18382ce91d9', 'global', 'put', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('5de1d12015744ae0608f8d0615e96f42', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('5f9f7c2ea9faec742d469a30ff387048', 'global', 'put', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('658d4b6264932ac990b0cf43e0081e55', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('728823cbca15cb7aff71427be9a4d1c9', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('7b3c3a4663a2524f1fed6bb26db2b6ba', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('80d55f913702071d251333ab1d7c8f86', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('80d55f913702071d251333ab1d7c8f86', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('8907f72c2e51a54bd6788f1dc0899fbe', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('923d7843e7721ce7cc824052402420ea', 'global', 'delete', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('923d7843e7721ce7cc824052402420ea', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('92dda022d4a73d610eeffec9648b1a92', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('984a0b704424437c23473ddc9e68509e', 'global', 'delete', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('984a0b704424437c23473ddc9e68509e', 'global', 'put', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('9d501f23929f676757dae63a54f74b07', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('a0965c027b918b129c78203bde642da5', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('b6bb75b2e5be7f8abfd0193fedcaf8d0', 'global', 'post', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('ba45b38123c5986fb4719334d0ba6e8b', 'global', 'delete', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('d317cff7f6f6918e55aef92bf17d907a', 'global', 'delete', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('d317cff7f6f6918e55aef92bf17d907a', 'global', 'get', 1);
INSERT INTO `api_consumer_permissions` (`route_id`, `consumer_id`, `method`, `granted`) VALUES('d317cff7f6f6918e55aef92bf17d907a', 'global', 'post', 1);
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);
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);
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);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.CourseBooking.Fg', 'Die Textfarbe im Belegungsplan für veranstaltungsbezogene Buchungen.', 'ffffffff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.CourseBookingWithExceptions.Bg', 'Die Farbe im Belegungsplan für veranstaltungsbezogene Buchungen mit Ausfallterminen.', 'a480b9ff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.CourseBookingWithExceptions.Fg', 'Die Textfarbe im Belegungsplan für veranstaltungsbezogene Buchungen mit Ausfallterminen.', 'ffffffff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.Lock.Bg', 'Die Farbe im Belegungsplan für Sperrbuchungen.', 'd60000ff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.Lock.Fg', 'Die Textfarbe im Belegungsplan für Sperrbuchungen.', 'ffffffff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.PlannedBooking.Bg', 'Die Farbe im Belegungsplan für geplante Buchungen.', 'f26e00ff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.PlannedBooking.Fg', 'Die Textfarbe im Belegungsplan für geplante Buchungen.', '000000ff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.PreparationTime.Bg', 'Die Farbe im Belegungsplan für Rüstzeiten.', 'cf81b0ff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.PreparationTime.Fg', 'Die Textfarbe im Belegungsplan für Rüstzeiten.', '000000ff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.Request.Bg', 'Die Farbe im Belegungsplan für Anfragen.', 'ffbd33ff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.Request.Fg', 'Die Textfarbe im Belegungsplan für Anfragen.', '000000ff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.Reservation.Bg', 'Die Farbe im Belegungsplan für Reservierungen.', '6ead10ff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.Reservation.Fg', 'Die Textfarbe im Belegungsplan für Reservierungen.', 'ffffffff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.SimpleBookingWithExceptions.Bg', 'Die Farbe im Belegungsplan für einfache Buchungen mit Wiederholungen, bei denen es Ausfalltermine gibt.', '70c3bfff', 1591630777, 1591630777);
INSERT INTO `colour_values` (`colour_id`, `description`, `value`, `mkdate`, `chdate`) VALUES('Resources.BookingPlan.SimpleBookingWithExceptions.Fg', 'Die Textfarbe im Belegungsplan für einfache Buchungen mit Wiederholungen, bei denen es Ausfalltermine gibt.', 'ffffffff', 1591630777, 1591630777);
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACCESSIBILITY_DISCLAIMER_URL', '', 'string', 'global', 'accessibility', 1698855217, 1698855217, 'URL der Barrierefreiheitserklärung, die in der Fußleiste verlinkt wird. Wenn Sie den Mustertext im Impressum verwenden, tragen Sie diese URL ein: dispatch.php/siteinfo/show/1/8');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACCESSIBILITY_INFO_TEXT', '', 'i18n', 'global', 'accessibility', 1686150733, 1686150733, 'Diese Konfiguration bitte unter Admin -> Standort -> Infotext zu barrierefreien Dateien anpassen!');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACCESSIBILITY_RECEIVER_EMAIL', '', 'array', 'global', 'accessibility', 1686150733, 1686150733, 'Die E-Mail-Adressen der Personen, die beim Melden einer Barriere benachrichtigt werden sollen.\n Beispiel: [\"mailadresse1@server.de\",\"mailadresse2@server.de\"]');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ACTION_MENU_THRESHOLD', '1', 'integer', 'global', 'global', 1669041528, 1669041528, 'Obergrenze an Einträgen, bis zu der ein Aktionsmenü als Icons dargestellt wird');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMIN_COURSES_DATAFIELDS_FILTERS', '[]', 'array', 'user', '', 1698855217, 1698855217, 'Für Admins, Roots und DedicatedAdmins können hier die Datenfelder gespeichert werden, nach denen die Veranstaltungen gefiltert werden sollen.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMIN_COURSES_SEARCHTEXT', '', 'string', 'user', '', 1698855218, 1698855218, 'Speichert den auf der Veranstaltungsübersicht für Admins eingegebenen Suchtext');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMIN_COURSES_SHOW_COMPLETE', '1', 'boolean', 'global', 'global', 1462287310, 1462287310, 'Definiert, ob auf der Admin-Veranstaltunggseite der Komplett-Status für Veranstaltungen aufgeführt sein soll');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMIN_COURSES_SIDEBAR_ACTIVE_ELEMENTS', '', 'string', 'user', '', 0, 0, 'Diese Einstellung legt fest, welche Elemente in der Seitenleiste der Veranstaltungsübersicht für Admins sichtbar sind.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMIN_COURSES_TEACHERFILTER', '', 'string', 'user', '', 1698855218, 1698855218, 'Der auf der Veranstaltungsübersicht für Admins gewählte Filter auf Lehrende');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ADMISSION_PRELIM_COMMENT_ENABLE', '1', 'boolean', 'global', '', 1153814966, 1153814966, 'Schaltet ein oder aus, ob ein Nutzer im Modus \"Vorläufiger Eintrag\" eine Bemerkung hinterlegen kann');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('AJAX_AUTOCOMPLETE_DISABLED', '0', 'boolean', 'global', '', 1293118060, 1293118060, 'Sollen alle QuickSearches deaktiviertes Autocomplete haben? Wenn es zu Performanceproblemen kommt, kann es sich lohnen, diese Variable auf true zu stellen.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_ADMIN_RELATED_INST', '0', 'boolean', 'global', 'global', 1640797278, 1640797278, 'Admins beteiligter Einrichtungen haben die gleiche Rechte an Veranstaltungen wie die Heimateinrichtung');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_ADMIN_USERACCESS', '1', 'boolean', 'global', 'permissions', 1240427632, 1240427632, 'Wenn eingeschaltet, dürfen Administratoren sensible persönliche Angaben wie z.B. Passwörter ändern.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_CHANGE_EMAIL', '1', 'boolean', 'global', 'permissions', 1510849314, 1510849314, 'If true, users are allowed to change their email');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_CHANGE_NAME', '1', 'boolean', 'global', 'permissions', 1510849314, 1510849314, 'If true, users are allowed to change their name');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_CHANGE_TITLE', '1', 'boolean', 'global', 'permissions', 1510849314, 1510849314, 'If true, users are allowed to change their titles');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_CHANGE_USERNAME', '1', 'boolean', 'global', 'permissions', 1510849314, 1510849314, 'If true, users are allowed to change their username');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_DOZENT_COURSESET_ADMIN', '0', 'boolean', 'global', 'coursesets', 1403258021, 1403258021, 'Sollen Lehrende einrichtungsweite Anmeldesets anlegen und bearbeiten dürfen?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_DOZENT_DELETE', '0', 'boolean', 'global', 'permissions', 0, 1109946684, 'Schaltet ein oder aus, ob eine Lehrperson eigene Veranstaltungen selbst löschen darf oder nicht');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_DOZENT_VISIBILITY', '0', 'boolean', 'global', 'permissions', 0, 0, 'Schaltet ein oder aus, ob eine Lerhrperson eigene Veranstaltungen selbst verstecken darf oder nicht');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_SELFASSIGN_INSTITUTE', '1', 'boolean', 'global', 'permissions', 1240427632, 1240427632, 'Wenn eingeschaltet, dürfen Studenten sich selbst Einrichtungen an denen sie studieren zuordnen.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ALLOW_SELFASSIGN_STUDYCOURSE', '1', 'boolean', 'global', 'global', 1510849314, 1510849314, 'If true, students are allowed to set or change their studycourse (studiengang)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('API_ENABLED', '1', 'boolean', 'global', 'global', 1403258019, 1403258019, 'Schaltet die REST-API an');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('API_OAUTH_AUTH_PLUGIN', 'Standard', 'string', 'global', 'global', 1403258019, 1403258019, 'Definiert das für OAuth verwendete Authentifizierungsverfahren');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('AUTO_INSERT_SEM_PARTICIPANTS_VIEW_PERM', 'tutor', 'string', 'global', 'global', 1311411856, 1311411856, 'Ab welchem Status soll in Veranstaltungen mit automatisch eingetragenen Nutzern der Teilnehmerreiter zu sehen sein?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('AUX_RULE_ADMIN_PERM', 'admin', 'string', 'global', 'permissions', 1240427632, 1240427632, 'mit welchem Status dürfen Zusatzangaben definiert werden (admin, root)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('BANNER_ADS_ENABLE', '0', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob die Bannerwerbung global verfügbar ist.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('BANNER_ONLY_SYSTEM_ROLES', '1', 'boolean', 'global', '', 1656513810, 1656513810, 'Über diese Option wird die Auswahl der rollenspezifischen Banner auf Systemrollen begrenzt');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('BLUBBER_DEFAULT_THREAD', '1', 'string', 'user', '', 1591630778, 1591630778, 'Dieses ist bei dem globalen Blubber-Messenger der vorausgewählte Blubber.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('BLUBBER_GLOBAL_MESSENGER_ACTIVATE', '1', 'boolean', 'global', 'global', 1591630778, 1591630778, 'Ist Blubber unter Community global aktiv? Blubber in Veranstaltungen wird über das Plugin Blubber aktiviert oder deaktiviert.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('BLUBBER_GLOBAL_THREAD_OPTOUT', '1', 'boolean', 'global', 'global', 1640797278, 1640797278, 'Gibt an, ob beim globalen Blubber Thread ein Opt-Out-Verfahren genutzt werden soll');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CALENDAR_ENABLE', '1', 'boolean', 'global', 'calendar', 1293118059, 1293118059, 'Schaltet ein oder aus, ob der Kalender global verfügbar ist.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CALENDAR_GRANT_ALL_INSERT', '0', 'boolean', 'global', 'calendar', 1462287762, 1462287762, 'Ermöglicht das Eintragen von Terminen in alle Nutzerkalender, ohne Beachtung des Rechtesystems.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CALENDAR_GROUP_ENABLE', '0', 'boolean', 'global', 'calendar', 1326799692, 1326799692, 'Schaltet die Gruppenterminkalender-Funktionen ein.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CALENDAR_SETTINGS', '{\"view\":\"week\",\"start\":\"9\",\"end\":\"20\",\"step_day\":\"900\",\"step_week\":\"1800\",\"type_week\":\"LONG\",\"step_week_group\":\"3600\",\"step_day_group\":\"3600\"}', 'array', 'user', '', 1403258015, 1403258015, 'persönliche Einstellungen des Kalenders');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_ALLOW_DOCENTS_RESERVING', '1', 'boolean', 'global', 'Terminvergabe', 1557244743, 1557244743, 'Lehrende können sich bei anderen Lehrenden anmelden');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_ENABLED', '1', 'boolean', 'global', 'Terminvergabe', 1557244743, 1557244743, 'Schaltet die Sprechstunden global ein');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_EXCLUDE_EXPIRED', '1', 'boolean', 'user', 'global', 1573236813, 1573236813, 'Sprechstunden: Sollen abgelaufene Blöcke ausgeblendet werden');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_GARBAGE_COLLECT', '0', 'boolean', 'range', 'Terminvergabe', 1640797277, 1640797277, 'Sollen abgelaufene Termine automatisch abgeräumt werden?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_REQUIRED_PERMISSION', 'tutor', 'string', 'global', 'Terminvergabe', 1557244743, 1557244743, 'Ab welcher Rechtestufe dürfen Nutzer Sprechstunden anlegen (user, autor, tutor, dozent, admin, root)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_SEND_MESSAGES', '1', 'boolean', 'user', 'Terminvergabe', 1557244743, 1557244743, 'Nachrichten empfangen über Buchungen/Stornierungen');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_SHOW_GROUPED', '1', 'boolean', 'user', 'Terminvergabe', 1640797277, 1640797277, 'Sollen die Termine nach Blöcken sortiert angezeigt werden?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONSULTATION_TAB_TITLE', 'Terminvergabe', 'i18n', 'range', 'Terminvergabe', 1640797277, 1640797277, 'Der Name des Reiters für die Terminvergabe');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONTENTMODULES_TILED_DISPLAY', '1', 'boolean', 'user', '', 1698855218, 1698855218, 'Bevorzugt ein Nutzer eine Kachelansicht auf der Werkzeugseite in den Veranstaltungen oder lieber eine Tabelle?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CONVERT_IDNA_URL', '1', 'boolean', 'global', 'global', 1510849314, 1510849314, 'If true, urls with german \"umlauts\" are converted');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSEWARE_FAVORITE_BLOCK_TYPES', '[]', 'array', 'user', '', 1640797279, 1640797279, 'In dieser Konfigurationseinstellung können Nutzende ihre Lieblingsblocktypen speichern.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSEWARE_LAST_ELEMENT', '[]', 'array', 'user', '', 1640797279, 1640797279, 'In dieser Konfigurationseinstellung werden die zuletzt besuchten Elemente in allen Coursewares abgelegt.');
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.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_SEARCH_IS_VISIBLE_NOBODY', '0', 'boolean', 'global', 'coursesearch', 1543856104, 1543856104, 'Soll die Veranstaltungssuche auch für nobody (ohne Anmeldung) sichtbar sein?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_SEARCH_NAVIGATION_OPTIONS', '{\"courses\":{\"visible\":true,\"target\":\"sidebar\"},\"semtree\":{\"visible\":true,\"target\":\"sidebar\"},\"rangetree\":{\"visible\":true,\"target\":\"sidebar\"},\"module\":{\"visible\":true,\"target\":\"sidebar\"}}', 'array', 'global', 'coursesearch', 1543856104, 1543856104, 'Aktivierung und Reihenfolge der Navigationsoptionen in der Veranstaltungssuche');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_SEARCH_SHOW_ADMISSION_STATE', '1', 'boolean', 'global', 'coursesearch', 1543856104, 1543856104, 'Anzeige des Zugangsstatus in der Veranstaltungssuche als Icon.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_SEM_TREE_CLOSED_LEVELS', '[1]', 'array', 'global', 'global', 1416496270, 1416496270, 'Gibt an, welche Ebenen der Studienbereichszuordnung geschlossen bleiben sollen');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_SEM_TREE_DISPLAY', '0', 'boolean', 'global', 'global', 1416496270, 1416496270, 'Zeigt den Studienbereichsbaum als Baum an');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('COURSE_STUDENT_MAILING', '0', 'boolean', 'course', '', 1530289048, 1530289048, 'Über diese Option können Sie Studierenden das Schreiben von Nachrichten an alle anderen Teilnehmer der Veranstaltung erlauben.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CRONJOBS_ENABLE', '1', 'boolean', 'global', 'global', 1403258015, 1403258015, 'Schaltet die Cronjobs an');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('CURRENT_LOGIN_TIMESTAMP', '0', 'integer', 'user', '', 1403258015, 1403258015, 'Zeitstempel des Logins');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('DEFAULT_LANGUAGE', 'de_DE', 'string', 'global', 'global', 1510849314, 1510849314, 'Which language should we use if we can gather no information from user?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('DEFAULT_TIMEZONE', 'Europe/Berlin', 'string', 'global', 'global', 1510849314, 1510849314, 'What timezone should be used (default: Europe/Berlin)?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('DEPUTIES_DEFAULTENTRY_ENABLE', '1', 'boolean', 'global', 'deputies', 1293118059, 1293118059, 'Dürfen Lehrende Standardvertretungen festlegen? Diese werden automatisch bei Hinzufügen von Lehrenden als Vertretung in Veranstaltungen eingetragen.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('DEPUTIES_EDIT_ABOUT_ENABLE', '1', 'boolean', 'global', 'deputies', 1293118059, 1293118059, 'Dürfen Lehrende ihren Standardvertretungen erlauben, ihr Profil zu bearbeiten?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('DEPUTIES_ENABLE', '1', 'boolean', 'global', 'deputies', 1293118059, 1293118059, 'Legt fest, ob die Funktion Vertretung aktiviert ist.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('DISPLAY_DOWNLOAD_COUNTER', 'always', 'string', 'global', 'files', 1591630777, 1591630777, 'Steuert die Anzeige der Anzahl der Downloads in Dateisichten (\"always\" zeigt die Anzahl immer an, \"flat\" nur in \"Alle Dateien\", jeder andere Wert schaltet die Anzeige komplett aus)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('DISPLAY_STGTEILVERSION_USERFILTER', '0', 'boolean', 'global', 'coursesets', 1591630778, 1591630778, 'Steuert die Anzeige des Studiengangteil-Version Filters beim Erstellen von bedingten Anmelderegeln.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('DOZENT_ALWAYS_VISIBLE', '1', 'boolean', 'global', 'privacy', 1293118059, 1293118059, 'Legt fest, ob Personen mit Lehrendenrechten immer global sichtbar sind und das auch nicht selbst ändern können.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ELEARNING_INTERFACE_ENABLE', '0', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob die Lernmodule global verfügbar sind.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('EMAIL_DOMAIN_RESTRICTION', '', 'string', 'global', '', 1157107088, 1157107088, 'Beschränkt die gültigkeit von Email-Adressen bei freier Registrierung auf die angegebenen Domains. Komma-separierte Liste von Domains ohne vorangestelltes @.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('EMAIL_VISIBILITY_DEFAULT', '1', 'boolean', 'global', 'privacy', 1326799691, 1326799691, 'Ist die eigene Emailadresse sichtbar, falls der Nutzer nichts anderes eingestellt hat?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ENABLE_ARCHIVE_SEARCH', '0', 'boolean', 'global', 'global', 1557244743, 1557244743, 'Soll es eine Suche in dem alten Archiv geben?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ENABLE_COURSESET_FCFS', '1', 'boolean', 'global', 'coursesets', 1403258021, 1403258021, 'Soll first-come-first-served (Windhundverfahren) bei der Anmeldung erlaubt sein?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ENABLE_DESCRIPTION_ENTRY_ON_UPLOAD', '1', 'boolean', 'global', 'files', 1591630777, 1591630777, 'Whether to allow adding a description directly after file upload (true) or not (false). Defaults to true.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ENABLE_FREE_ACCESS', '0', 'string', 'global', 'global', 1510849314, 1510849314, '1: courses and institutes with public access are visible without login. courses_only: only courses with public access are visible without login. 0: disable this feature.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ENABLE_REQUEST_NEW_PASSWORD_BY_USER', '1', 'boolean', 'global', 'permissions', 1510849314, 1510849314, 'If true, users are able to request a new password themselves');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ENABLE_SELF_REGISTRATION', '1', 'boolean', 'global', 'permissions', 1510849314, 1510849314, 'Should it be possible for an user to register himself');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ENABLE_SKYPE_INFO', '0', 'boolean', 'global', 'privacy', 1170242666, 1170242666, 'Ermöglicht die Eingabe / Anzeige eines Skype Namens ');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ENABLE_STUDYCOURSE_INFO_PAGE', '0', 'boolean', 'global', 'global', 1591630777, 1591630777, 'Shows an icon to open a dialog with studycourse informations in module search if true.');
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.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('EXTERN_SRI_ENABLE', '0', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Allow the usage of SRI-interface (Stud.IP Remote Include)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('EXTERN_SRI_ENABLE_BY_ROOT', '0', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Only root allows the usage of SRI-interface for specific institutes');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('FEEDBACK_ADMIN_PERM', 'tutor', 'string', 'course', '', 1591630778, 1591630778, 'Voreinstellung für Berechtigungslevel, um Einstellung zu Feedback-Elementen zu verwalten');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('FEEDBACK_CREATE_PERM', 'tutor', 'string', 'course', '', 1591630778, 1591630778, 'Voreinstellung für Berechtigungslevel, um Feedback-Elemente anzulegen.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('FOP_ENABLE', '1', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Soll Export mit FOP erlaubt sein?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('FORUM_ANONYMOUS_POSTINGS', '0', 'boolean', 'global', 'privacy', 1293118059, 1293118059, 'Legt fest, ob Forenbeiträge anonym verfasst werden dürfen (Root sieht aber immer den Urheber).');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('FORUM_SETTINGS', '{\"neuauf\":false,\"rateallopen\":true,\"showimages\":true,\"sortthemes\":\"last\",\"themeview\":\"mixed\",\"presetview\":\"mixed\",\"shrink\":604800}', 'array', 'user', '', 1403258015, 1403258015, 'persönliche Einstellungen Forum');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('GLOBALSEARCH_ASYNC_QUERIES', '0', 'boolean', 'global', 'globalsearch', 1530289048, 1530289048, 'Sollen die Suchanfragen asynchron über mysqli gestellt werden? Andernfalls wird PDO verwendet.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('GLOBALSEARCH_MAX_RESULT_OF_TYPE', '5', 'integer', 'global', 'globalsearch', 1530289048, 1530289048, 'Wie viele Ergebnisse sollen in der globalen Schnellsuche pro Kategorie angezeigt werden?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('GLOBALSEARCH_MODULES', '{\"GlobalSearchBuzzwords\":{\"order\":1,\"active\":true,\"fulltext\":false},\"GlobalSearchMyCourses\":{\"order\":2,\"active\":true,\"fulltext\":false},\"GlobalSearchCourses\":{\"order\":3,\"active\":true,\"fulltext\":false},\"GlobalSearchUsers\":{\"order\":4,\"active\":true,\"fulltext\":false},\"GlobalSearchInstitutes\":{\"order\":5,\"active\":true,\"fulltext\":false},\"GlobalSearchFiles\":{\"order\":6,\"active\":true,\"fulltext\":false},\"GlobalSearchCalendar\":{\"order\":7,\"active\":true,\"fulltext\":false},\"GlobalSearchMessages\":{\"order\":8,\"active\":true,\"fulltext\":false},\"GlobalSearchForum\":{\"order\":9,\"active\":true,\"fulltext\":false},\"GlobalSearchResources\":{\"order\":10,\"active\":true,\"fulltext\":false},\"GlobalSearchRoomAssignments\":{\"order\":11,\"active\":true,\"fulltext\":false},\"GlobalSearchModules\":{\"order\":12,\"active\":true,\"fulltext\":false},\"GlobalSearchBlubber\":{\"order\":13,\"active\":true,\"fulltext\":true},\"GlobalSearchCourseware\":{\"order\":14,\"active\":true,\"fulltext\":true}}', 'array', 'global', 'globalsearch', 1530289048, 1530289048, 'Aktivierung und Reihenfolge der Module in der globalen Suche');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('HIDE_STUDYGROUPS_FROM_PROFILE', '0', 'boolean', 'global', 'studygroups', 1640797277, 1640797277, 'Sollen Studiengruppen bei der Anzeige der Veranstaltungen auf dem Profil versteckt werden?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('HOMEPAGEPLUGIN_DEFAULT_ACTIVATION', '0', 'boolean', 'global', 'privacy', 1403258014, 1403258014, 'Sollen neu installierte Homepageplugins automatisch für Benutzer aktiviert sein?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('HOMEPAGE_VISIBILITY_DEFAULT', 'VISIBILITY_STUDIP', 'string', 'global', 'privacy', 1293118059, 1293118059, 'Standardsichtbarkeit für Homepageelemente, falls der Benutzer nichts anderes eingestellt hat. Gültige Werte sind: VISIBILITY_ME, VISIBILITY_BUDDIES, VISIBILITY_DOMAIN, VISIBILITY_STUDIP, VISIBILITY_EXTERN');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('HTTP_PROXY', '', 'string', 'global', 'global', 1607702429, 1607702429, 'externe http Anfragen über proxy');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('HTTP_PROXY_IGNORE', '', 'string', 'global', 'global', 1607702429, 1607702429, 'Kommaseparierte Liste mit Hostnamen, die nicht über Proxy aufgerufen werden sollen');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ILIAS_INTERFACE_BASIC_SETTINGS', '{\"moduletitle\":\"ILIAS\",\"edit_moduletitle\":false,\"search_active\":true,\"show_offline\":false,\"cache\":true}', 'array', 'global', 'modules', 1557244743, 1557244743, '');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ILIAS_INTERFACE_ENABLE', '0', 'boolean', 'global', 'modules', 1557244743, 1557244743, '');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ILIAS_INTERFACE_MODULETITLE', 'ILIAS', 'string', 'course', 'modules', 1557244743, 1557244743, '');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ILIAS_INTERFACE_SETTINGS', '[]', 'array', 'global', 'modules', 1557244743, 1557244743, '');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('IMPORTANT_SEMNUMBER', '1', 'boolean', 'global', 'global', 1403258018, 1403258018, 'Zeigt die Veranstaltungsnummer prominenter in der Suche und auf der Meine Veranstaltungen Seite an');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('INSTITUTE_COURSE_PLAN_END_HOUR', '20:00', 'string', 'global', 'modules', 1591630777, 1591630777, 'The end hour for the default view of the institute course plan.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('INSTITUTE_COURSE_PLAN_START_HOUR', '08:00', 'string', 'global', 'modules', 1591630777, 1591630777, 'The start hour for the default view of the institute course plan.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('INST_FAK_ADMIN_PERMS', 'none', 'string', 'global', 'permissions', 1293118059, 1293118059, '\"none\" Fakultätsadmin darf Einrichtungen weder anlegen noch löschen, \"create\" Fakultätsadmin darf Einrichtungen anlegen, aber nicht löschen, \"all\" Fakultätsadmin darf Einrichtungen anlegen und löschen.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('JSONAPI_CORS_ORIGIN', '[]', 'array', 'global', 'global', 1591630777, 1591630777, 'Diese Einstellung definiert URIs, die mittels CORS auf die JSONAPI zugreifen dürfen.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('JSONAPI_DANGEROUS_ROUTES_ALLOWED', '0', 'boolean', 'global', 'global', 1591630776, 1591630776, 'Wenn diese Einstellung gesetzt ist, dürfen auch potentiell gefährliche JSONAPI-Routen genutzt werden. (Zum Beispiel dürfen dann root-Nutzer auch andere Nutzer löschen.)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LAST_LOGIN_TIMESTAMP', '0', 'integer', 'user', '', 1403258015, 1403258015, 'Zeitstempel des vorherigen Logins');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LIBRARY_ADD_ITEM_ACTION_DESCRIPTION', 'Sie können digitale Originaldokumente direkt aus der Bibliothek beziehen. Sie erhalten Materialien mit geklärten Rechten und in hochwertiger Qualität. Bei Bedarf kann die Bibliothek zur Bereitstellung eingebunden werden.', 'string', 'global', 'Library', 1607702429, 1607702429, 'Der Beschreibungstext für die Aktion zum Hinzufügen eines Bibliothekseintrags in den Dateibereich.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LITERATURE_ENABLE', '0', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob die Literaturverwaltung global verfügbar ist.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LOAD_EXTERNAL_MEDIA', 'deny', 'string', 'global', '', 1293118060, 1293118060, 'Sollen externe Medien über [img/flash/audio/video] eingebunden werden? deny=nicht erlaubt, allow=erlaubt, proxy=proxy benutzen.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LOCK_RULE_ADMIN_PERM', 'admin', 'string', 'global', 'permissions', 1240427632, 1240427632, 'mit welchem Status dürfen Sperrebenen angepasst werden (admin, root)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LOG_ENABLE', '1', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob das Log global verfügbar ist.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('LTI_TOOL_TITLE', 'LTI-Tool', 'string', 'course', '', 1557244743, 1557244743, 'Voreinstellung für den Titel des Reiters \"LTI-Tool\" im Kurs.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MAILQUEUE_ENABLE', '0', 'boolean', 'global', 'global', 1403258017, 1403258017, 'Aktiviert bzw. deaktiviert die Mailqueue');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MAILQUEUE_SEND_LIMIT', '0', 'integer', 'global', 'global', 1462287310, 1462287310, 'Wieviele Mails soll die Mailqueue maximal auf einmal an den Mailserver schicken. 0 für unendlich viele.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MAIL_AS_HTML', '0', 'boolean', 'user', '', 1293118060, 1293118060, 'Benachrichtigungen werden im HTML-Format versandt');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MAIL_NOTIFICATION_ENABLE', '1', 'boolean', 'global', '', 1122996278, 1122996278, 'Informationen über neue Inhalte per email verschicken');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MAIL_USE_SUBJECT_PREFIX', '1', 'boolean', 'global', 'global', 1543856103, 1543856103, 'Stellt dem Titel von per Mail versandten Nachrichten den Wert von UNI_NAME_CLEAN voran.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MAINTENANCE_MODE_ENABLE', '0', 'boolean', 'global', '', 1130840930, 1130840930, 'Schaltet das System in den Wartungsmodus, so dass nur noch Administratoren Zugriff haben');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MEDIA_CACHE_LIFETIME', '86400', 'integer', 'global', 'global', 1510849314, 1510849314, 'Wieviele Sekunden soll gecached werden?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MEDIA_CACHE_MAX_FILES', '3000', 'integer', 'global', 'global', 1510849314, 1510849314, 'Wieviele Dateien sollen maximal gecached werden?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MEDIA_CACHE_MAX_LENGTH', '1000000', 'integer', 'global', 'global', 1510849314, 1510849314, 'Maximale Größe von Dateien, die im Media-Cache gecached werden (in Bytes)?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MESSAGE_PRIORITY', '0', 'boolean', 'global', '', 1240427632, 1240427632, 'If enabled, messages of high priority are displayed reddish');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MESSAGING_SETTINGS', '{\"show_only_buddys\":false,\"delete_messages_after_logout\":false,\"timefilter\":\"30d\",\"opennew\":1,\"logout_markreaded\":false,\"openall\":false,\"addsignature\":false,\"save_snd\":true,\"sms_sig\":\"\",\"send_view\":false,\"confirm_reading\":3,\"send_as_email\":false,\"folder\":{\"in\":[\"dummy\"],\"out\":[\"dummy\"]}}', 'array', 'user', '', 1403258015, 1403258015, 'persönliche Einstellungen Nachrichtenbereich');
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_DEFAULT_CYCLE', 'last', 'string', 'global', 'MeineVeranstaltungen', 1462287310, 1462287310, 'Standardeinstellung für den Semester-Filter, falls noch keine Auswahl getätigt wurde. (all, future, current, last)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_ENABLE_ALL_SEMESTERS', '1', 'boolean', 'global', 'MeineVeranstaltungen', 1416496224, 1416496224, 'Ermöglicht die Anzeige von allen Semestern unter meine Veranstaltungen.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_ENABLE_STUDYGROUPS', '1', 'boolean', 'global', 'MeineVeranstaltungen', 1416496224, 1416496224, 'Sollen Studiengruppen in einem eigenen Bereich angezeigt werden (Neues Navigationelement in Meine Veranstaltungen)?.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_FORCE_GROUPING', 'sem_number', 'string', 'global', '', 1293118059, 1293118059, 'Legt fest, ob die persönliche Veranstaltungsübersicht systemweit zwangsgruppiert werden soll, wenn keine eigene Gruppierung eingestellt ist. Werte: not_grouped, sem_number, sem_tree_id, sem_status, gruppe, dozent_id.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_GROUPING', '', 'string', 'user', '', 1403258015, 1403258015, 'Gruppierung der Veranstaltungsübersicht');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_OPEN_GROUPS', '[]', 'array', 'user', '', 1403258015, 1403258015, 'geöffnete Gruppen der Veranstaltungsübersicht');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_SELECTED_CYCLE', '', 'string', 'user', '', 1698855218, 1698855218, 'Das auf der Veranstaltungsübersicht für Admins gewählte Semester');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_SELECTED_STGTEIL', '', 'string', 'user', '', 1698855218, 1698855218, 'Der auf der Veranstaltungsübersicht für Admins gewählte Studiengangsteil');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_TYPE_FILTER', '', 'string', 'user', '', 1698855218, 1698855218, 'Der auf der Veranstaltungsübersicht für Admins gewählte Filter auf Veranstaltungstypen');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_COURSES_VIEW_SETTINGS', '{\"regular\":{\"tiled\":false,\"only_new\":false},\"responsive\":{\"tiled\":true,\"only_new\":false}}', 'array', 'user', 'MeineVeranstaltungen', 1698855217, 1698855217, 'Konfiguration der Ansicht \"Meine Veranstaltungen\"');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_INSTITUTES_DEFAULT', 'all', 'string', 'user', '', 1403258015, 1403258015, 'Standard Einrichtung in der Veranstaltungsübersicht für Admins');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('MY_INSTITUTES_INCLUDE_CHILDREN', '1', 'boolean', 'user', '', 1530289048, 1530289048, 'Sollen untergeordnete Institute mit angezeigt werden in der Veranstaltungsübersicht für Admins?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('NEWS_DISABLE_GARBAGE_COLLECT', '1', 'boolean', 'global', '', 1123751948, 1123751948, 'Schaltet den Garbage-Collect für News ein oder aus');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('NEWS_DISPLAY', '2', 'integer', 'global', 'view', 1462287310, 1462287310, 'Legt fest, wie sich News für Anwender präsentieren. (2 zeigt sowohl Autor als auch Zugriffszahlen an. 1 zeigt nur den Autor an. 0 blendet beides für Benutzer aus.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('NEWS_ONLY_SYSTEM_ROLES', '1', 'boolean', 'global', '', 1656513810, 1656513810, 'Über diese Option wird die Auswahl der rollenspezifischen Ankündigungen auf Systemrollen begrenzt');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('NEWS_RSS_EXPORT_ENABLE', '1', 'boolean', 'global', '', 0, 0, 'Schaltet die Möglichkeit des rss-Export von privaten News global ein oder aus');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('NEW_INDICATOR_THRESHOLD', '90', 'integer', 'global', 'global', 1448561064, 1448561064, 'Gibt an, nach wieviel Tagen ein Eintrag als alt angesehen und nicht mehr rot markiert werden soll (0 angeben, um nur das tatsäcliche Alter) zu betrachten.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('NOTIFY_ON_WAITLIST_ADVANCE', '1', 'boolean', 'global', 'global', 1543856103, 1543856103, 'Versendet Nachrichten an Teilnehmer bei jeder Änderung der Position auf der Warteliste');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('OERCAMPUS_ENABLED', '1', 'boolean', 'global', 'OERCampus', 1640797278, 1640797278, 'Ist der OER Campus aktiviert?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('OERCAMPUS_ENABLE_TWILLO', '0', 'boolean', 'global', 'OERCampus', 1656513810, 1656513810, 'Soll der Upload zu twillo.de vom OERCampus möglich sein? Folgen Sie dazu der Installationsanleitung.');
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('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.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PDF_LOGO', '', 'string', 'global', 'global', 1311411856, 1311411856, 'Geben Sie hier den absoluten Pfad auf Ihrem Server (also ohne http) zu einem Logo an, das bei PDF-Exporten im Kopfbereich verwendet wird.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PERSONAL_DETAILS_INFO_TEXT', 'Einige Ihrer persönlichen Daten werden nicht in Stud.IP verwaltet und können daher hier nicht geändert werden.', 'i18n', 'global', 'global', 1698855217, 1698855217, 'Der Infotext der unter Profil->Persönliche Angaben->Grunddaten angezeigt wird, wenn man nicht die Standard-Auth nutzt.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PERSONAL_NOTIFICATIONS_ACTIVATED', '1', 'boolean', 'global', 'privacy', 1403258015, 1403258015, 'Sollen persönliche Benachrichtigungen aktiviert sein?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PERSONAL_STARTPAGE', '0', 'integer', 'user', '', 1403258015, 1403258015, 'Persönliche Startseite');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PLUGINADMIN_DISPLAY_SETTINGS', '{\"plugin_filter\":null,\"core_filter\":\"yes\"}', 'array', 'user', '', 1483462779, 1483462779, 'Speichert die Darstellungseinstellungen der Pluginadministration');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PLUS_SETTINGS', '[]', 'array', 'user', '', 1436547919, 1436547919, 'Nutzer Konfiguration für Plusseite');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PRIVACY_CONTACT', '', 'string', 'global', 'privacy', 1543856104, 1543856104, 'Username der Kontaktperson zum Datenschutz');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PRIVACY_PERM', 'autor', 'string', 'global', 'privacy', 1543856104, 1543856104, 'Rechtestufe zum Datenzugriff');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PRIVACY_URL', 'dispatch.php/siteinfo/show/1/7', 'string', 'global', 'privacy', 1543856104, 1543856104, 'URL zur Datenschutzerklärung');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PROFILE_LAST_VISIT', '0', 'integer', 'user', '', 1403258015, 1403258015, 'Zeitstempel des letzten Besuchs der Profilseite');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('PROPOSED_TEACHER_LABELS', '', 'string', 'global', 'global', 1326799692, 1326799692, 'Write a list of comma separated possible labels for teachers and tutor here.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RANGE_TREE_ADMIN_PERM', 'root', 'string', 'global', 'permissions', 1219328498, 1219328498, 'mit welchem Status darf die Einrichtungshierarchie bearbeitet werden (admin oder root)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ADDITIONAL_TEXT_ROOM_EXPORT', '', 'string', 'global', 'resources', 1656513808, 1656513808, 'Zusatztext, der beim Seriendruck unter jedem Raumplan angezeigt werden soll');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ALLOW_ROOM_PROPERTY_REQUESTS', '1', 'boolean', 'global', 'resources', 0, 1074780851, 'Schaltet in der Ressourcenverwaltung die Möglichkeit, im Rahmen einer Anfrage Raumeigenschaften zu wünschen, ein oder aus');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ALLOW_ROOM_REQUESTS', '1', 'boolean', 'global', 'resources', 0, 1100709567, 'Schaltet in der Ressourcenverwaltung das System zum Stellen und Bearbeiten von Raumanfragen ein oder aus');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ALLOW_SINGLE_ASSIGN_PERCENTAGE', '50', 'integer', 'global', 'resources', 0, 1100709567, 'Wert (in Prozent), ab dem ein Raum mit Einzelbelegungen (statt Serienbelegungen) gefüllt wird, wenn dieser Anteil an möglichen Belegungen bereits durch andere Belegungen zu Überschneidungen führt');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ALLOW_SINGLE_DATE_GROUPING', '5', 'integer', 'global', 'resources', 0, 1100709567, 'Anzahl an Einzeltermine, ab der diese als Gruppe zusammengefasst bearbeitet werden');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_BOOKING_PLAN_END_HOUR', '21:00', 'string', 'global', 'resources', 1591630777, 1591630777, 'The start hour for the default view of the booking plan.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_BOOKING_PLAN_START_HOUR', '07:00', 'string', 'global', 'resources', 1591630777, 1591630777, 'The start hour for the default view of the booking plan.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_CONFIRM_PLAN_DRAG_AND_DROP', '0', 'boolean', 'user', 'resources', 1656513808, 1656513808, 'Soll beim Verschieben von Buchungen im Belegungsplan eine Sicherheitsabfrage erscheinen?');
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!');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_MIN_BOOKING_PERMS', 'autor', 'string', 'global', 'resources', 1591630777, 1591630777, 'The minimum permission level for global booking rights on a resource.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_MIN_BOOKING_TIME', '15', 'integer', 'global', 'resources', 1591630777, 1591630777, 'The minimum amount of minutes for the booking of a resource.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_MIN_REQUEST_PERMISSION', '', 'string', 'global', 'resources', 1591630777, 1591630777, 'The minimum permission level for creating \"free\" requests that are not bound to a course.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_ROOM_REQUEST_DEFAULT_SEATS', '0', 'integer', 'global', 'resources', 1557244742, 1557244742, 'Vorbelegung der Sitzplatzanzahl einer Raumanfrage, falls der Kurs keine max. Teilnehmerzahl hat');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESOURCES_SHOW_PUBLIC_ROOM_PLANS', '0', 'boolean', 'global', 'resources', 1591630777, 1591630777, 'Whether to display the list of available public room plans.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('RESTRICTED_USER_MANAGEMENT', '1', 'boolean', 'global', 'permissions', 1240427632, 1240427632, 'Schränkt Zugriff auf die globale Nutzerverwaltung auf root ein');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SCHEDULE_ENABLE', '1', 'boolean', 'global', 'modules', 1326799692, 1326799692, 'Schaltet ein oder aus, ob der Stundenplan global verfügbar ist.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SCHEDULE_SETTINGS', '{\"glb_start_time\":8,\"glb_end_time\":19,\"glb_days\":{\"1\":1,\"2\":2,\"3\":3,\"4\":4,\"5\":5,\"6\":6,\"0\":0},\"glb_sem\":null,\"converted\":true}', 'array', 'user', '', 1403258015, 1403258015, 'persönliche Einstellungen Stundenplan');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SCM_ENABLE', '1', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob freie Informationsseiten global verfügbar sind.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SCORE_ENABLE', '1', 'boolean', 'global', 'modules', 1403258021, 1403258021, 'Schaltet ein oder aus, ob die Rangliste und die Score-Funktion global verfügbar sind.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SEARCH_VISIBILITY_DEFAULT', '1', 'boolean', 'global', 'privacy', 1326799691, 1326799691, 'Sind Nutzer auffindbar in der Personensuche, falls sie nichts anderes eingestellt haben?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SEMESTER_ADMINISTRATION_ENABLE', '1', 'boolean', 'global', '', 1219328498, 1219328498, 'schaltet die Semesterverwaltung ein oder aus');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SEMESTER_TIME_SWITCH', '4', 'integer', 'global', '', 1140013696, 1140013696, 'Anzahl der Wochen vor Semesterende zu dem das vorgewählte Semester umspringt');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SEM_CREATE_PERM', 'dozent', 'string', 'global', 'permissions', 1170242930, 1170242930, 'Bestimmt den globalen Nutzerstatus, ab dem Veranstaltungen angelegt werden dürfen (root,admin,dozent)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SEM_TREE_ADMIN_PERM', 'root', 'string', 'global', 'permissions', 1219328498, 1219328498, 'mit welchem Status darf die Veranstaltungshierarchie bearbeitet werden (admin oder root)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SEM_TREE_ALLOW_BRANCH_ASSIGN', '0', 'boolean', 'global', '', 1222947575, 1222947575, 'Diese Option beeinflusst die Möglichkeit, Veranstaltungen entweder nur an die Blätter oder überall in der Veranstaltungshierarchie einhängen zu dürfen.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SEM_TREE_SHOW_EMPTY_AREAS_PERM', 'user', 'string', 'global', 'permissions', 1240427632, 1240427632, 'Bestimmt den globalen Nutzerstatus, ab dem in der Veranstaltungssuche auch Bereiche angezeigt werden, denen keine Veranstaltungen zugewiesen sind.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SEM_VISIBILITY_PERM', 'root', 'string', 'global', 'permissions', 1170242706, 1170242706, 'Bestimmt den globalen Nutzerstatus, ab dem versteckte Veranstaltungen in der Suche gefunden werden (root,admin,dozent)');
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('SOAP_ENABLE', '0', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Schaltet die SOAP-Schnittstelle an.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SOAP_USE_PHP5', '0', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Sollen PHP-Bibliotheken für SOAP verwendet werden?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SORT_NEWS_BY_CHDATE', 'false', 'boolean', 'global', 'view', 1557244742, 1557244742, 'Wenn diese Einstellung gesetzt ist werden Ankündigungen nach ihrem letzten Änderungsdatum statt ihrem Erstellungsdatum sortiert angezeigt.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDIP_INSTALLATION_ID', 'demo-installation', 'string', 'global', 'global', 1510849314, 1510849314, 'Unique identifier for installation');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDIP_SHORT_NAME', 'Stud.IP', 'string', 'global', 'global', 1436546684, 1436546684, 'Studip Kurzname');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDYGROUPS_ENABLE', '0', 'boolean', 'global', 'studygroups', 1257956185, 1293118059, 'Schaltet ein oder aus, ob die Studiengruppen global verfügbar sind.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDYGROUPS_INVISIBLE_ALLOWED', '0', 'boolean', 'global', 'studygroups', 1403258018, 1403258018, 'Ermöglicht unsichtbare Studiengruppen');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDYGROUP_ACCEPTANCE_TEXT', 'Die Moderatorinnen und Moderatoren der Studiengruppe können Ihren Aufnahmewunsch bestätigen oder ablehnen. Erst nach Bestätigung erhalten Sie vollen Zugriff auf die Gruppe.', 'string', 'global', 'studygroups', 1448561064, 1448561064, 'Text, der angezeigt wird, wenn man sich in eine zugriffsbeschränkte Studiengruppe eintragen möchte');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDYGROUP_DEFAULT_INST', '', 'string', 'global', 'studygroups', 1258042892, 1258042892, 'Die Standardeinrichtung für Studiengruppen kann hier gesetzt werden.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('STUDYGROUP_TERMS', 'Mir ist bekannt, dass ich die Gruppe nicht zu rechtswidrigen Zwecken nutzen darf. Dazu zählen u.a. Urheberrechtsverletzungen, Beleidigungen und andere Persönlichkeitsdelikte.\n\nIch erkläre mich damit einverstanden, daß Administratorinnen und Administratoren die Inhalte der Gruppe zu Kontrollzwecken einsehen dürfen.', 'i18n', 'global', 'studygroups', 1257956185, 1257956185, 'Hier werden die Nutzungsbedinungen der Studiengruppen hinterlegt.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('SYSTEMCACHE', '{\"type\":\"StudipDbCache\",\"config\":[]}', 'array', 'global', 'global', 1640797278, 1640797278, 'Typ und Konfiguration des zu verwendenden Systemcaches');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TERMS_ACCEPTED', '0', 'boolean', 'user', '', 1640797279, 1640797279, 'Die Nutzungsbedingungen wurden akzeptiert');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TERMS_CONFIG', '{\"compulsory\":false,\"denial_message\":\"\"}', 'array', 'global', 'global', 1607702429, 1607702429, 'In case the terms are not compulsory, user can deny them.if denial_message is not set, a default text is displayed.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TFA_MAX_TRIES', '3', 'integer', 'global', 'Zwei-Faktor-Authentifizierung', 1573236813, 1573236813, 'Maximale Anzahl fehlerhafter Versuche innerhalb eines Zeitraums');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TFA_MAX_TRIES_TIMESPAN', '300', 'integer', 'global', 'Zwei-Faktor-Authentifizierung', 1573236813, 1573236813, 'Zeitraum in Sekunden, nach dem fehlerhafte Versuche vergessen werden');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TFA_PERMS', 'root', 'string', 'global', 'Zwei-Faktor-Authentifizierung', 1573236813, 1573236813, 'Systemrollen für die die Zwei-Faktor-Authentifizierung aktiviert ist (kommaseparierte Liste, mögliche Werte: autor, tutor, dozent, admin, root)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TFA_TEXT_APP', 'Richten Sie dafür eine geeignete OTP-Authenticator-App ein. Hier finden Sie eine Liste bekannter und kompatibler 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', 'i18n', 'global', 'Zwei-Faktor-Authentifizierung', 1656513808, 1656513808, 'Text, der als Einleitung beim Einrichten der Zwei-Faktor-Authentisierung via App angezeigt wird');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TFA_TEXT_INTRODUCTION', 'Mittels Zwei-Faktor-Authentifizierung können Sie Ihr Konto schützen, indem bei jedem Login ein Token von Ihnen eingegeben werden muss. Dieses Token erhalten Sie entweder per E-Mail oder können es über eine geeignete Authenticator-App erzeugen lassen.', 'i18n', 'global', 'Zwei-Faktor-Authentifizierung', 1656513808, 1656513808, 'Text, der als Einleitung beim Einrichten der Zwei-Faktor-Authentisierung angezeigt wird');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TFA_TRUST_DURATION', '30', 'integer', 'global', 'Zwei-Faktor-Authentifizierung', 1656513809, 1656513809, 'Dauer, denen Geräte vertraut werden soll in Tagen (0 für dauerhaftes Vertrauen)');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('TOURS_ENABLE', '1', 'boolean', 'global', 'global', 1416496223, 1416496223, 'Aktiviert die Funktionen zum Anbieten von Touren in Stud.IP');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('UNI_NAME_CLEAN', 'Stud.IP', 'string', 'global', 'global', 1510849314, 1510849314, 'Name der Stud.IP-Installation bzw. Hochschule.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('USERNAME_REGULAR_EXPRESSION', '/^([a-zA-Z0-9_@.-]{4,})$/', 'string', 'global', 'global', 1510849314, 1510849314, 'Regex for allowed characters in usernames');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('USER_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');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('WIKI_COURSE_EDIT_RESTRICTED', '0', 'boolean', 'course', '', 1557244742, 1557244742, 'Legt fest, dass nur Teilnehmende ab Rechtestufe \"tutor\" das Wiki bearbeiten dürfen.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('WIKI_ENABLE', '1', 'boolean', 'global', 'modules', 1293118059, 1293118059, 'Schaltet ein oder aus, ob das Wiki global verfügbar ist.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('WYSIWYG', '1', 'boolean', 'global', 'global', 1403258021, 1403258021, 'Aktiviert den WYSIWYG Editor im JavaScript.');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('XSLT_ENABLE', '1', 'boolean', 'global', 'global', 1510849314, 1510849314, 'Soll Export mit XSLT angeschaltet sein?');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ZIP_DOWNLOAD_MAX_FILES', '400', 'integer', 'global', 'files', 1219328498, 1219328498, 'Die maximale Anzahl an Dateien, die gezippt heruntergeladen werden kann');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ZIP_DOWNLOAD_MAX_SIZE', '200', 'integer', 'global', 'files', 1219328498, 1219328498, 'Die maximale Größe aller Dateien, die zusammen in einem Zip heruntergeladen werden kann (in Megabytes).');
INSERT INTO `config` (`field`, `value`, `type`, `range`, `section`, `mkdate`, `chdate`, `description`) VALUES('ZIP_UPLOAD_ENABLE', '1', 'boolean', 'global', 'files', 1130840930, 1130840930, 'Ermöglicht es, ein Zip Archiv hochzuladen, welches automatisch entpackt wird');
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');
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);
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);
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);
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('cdf293c6c5ae966d87dc5ee723d9880d', '823875ed4a4b2e87baca0e5137243d96', 0, NULL, '', '{\"verbose\":\"1\"}', 'normal', 'periodic', 33, 2, NULL, NULL, NULL, 1530318780, NULL, NULL, 0, 1403258015, 1530290419);
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('dc849ba21c484ffbb82f7ef9edea3d7d', '208619e89a59895771c2967076daf59e', 0, NULL, NULL, '[]', 'low', 'periodic', -30, NULL, NULL, NULL, NULL, 0, NULL, NULL, 0, 1403258015, 1403258015);
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);
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);
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);
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);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('39b98a5560d5dabaf67227e2895db8da', 'a68bd711902f23bd5c55a29f1ecaa095', 0, '', 1, 5, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('3a3ab5307f39ea039d41fb6f2683475e', 'ef227e91618878835d52cfad3e6d816b', 3, '', 4, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('3d4dcedb714dfdcfbe65cd794b4d404b', '724244416b5d04a4d8f4eab8a86fdbf8', 2, 'Befriedigend', 3, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('48842cedeac739468741940982b5fe6d', '6fddac14c1f2ac490b93681b3da5fc66', 4, 'Freitag', 5, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('568d6fd620642cb7395c27d145a76734', '12e508079c4770fb13c9fce028f40cac', 4, 'Freitag', 5, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('5c4827f903168ed4483db5386a9ad5b8', '95bbae27965d3404f7fa3af058850bd3', 4, 'trifft gar nicht zu', 5, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('6115b19f694ccd3d010a0047ff8f970a', 'ef227e91618878835d52cfad3e6d816b', 4, 'Sehr Schlecht', 5, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('61ae27ab33c402316a3f1eb74e1c46ab', '442e1e464e12498bd238a7767215a5a2', 0, '', 1, 1, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('63f5011614f45329cc396b90d94a7096', '6fddac14c1f2ac490b93681b3da5fc66', 2, 'Mittwoch', 3, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('64152ace8f2a74d0efb67c54eff64a2b', 'ef227e91618878835d52cfad3e6d816b', 2, '', 3, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('641686e7c61899b303cda106f20064e7', '95bbae27965d3404f7fa3af058850bd3', 2, 'teilsteils', 3, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('7052b76e616656e4b70f1c504c04ec81', 'ef227e91618878835d52cfad3e6d816b', 1, '', 2, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('7080335582e2787a54f315ec8cef631e', '95bbae27965d3404f7fa3af058850bd3', 0, 'trifft völlig zu', 1, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('7c36d074f2cc38765c982c9dfb769afc', '95bbae27965d3404f7fa3af058850bd3', 3, 'trifft wenig zu', 4, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('84be4c31449a9c1807bf2dea0dc869f1', '724244416b5d04a4d8f4eab8a86fdbf8', 0, 'Sehr gut', 1, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('aec07dd525f2610bdd10bf778aa1893b', '724244416b5d04a4d8f4eab8a86fdbf8', 5, 'Nicht erteilt', 6, 0, 0, 1);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('b39860f6601899dcf87ba71944c57bc7', '12e508079c4770fb13c9fce028f40cac', 3, 'Donnerstag', 4, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('be4c3e5fe0b2b735bb3b2712afa8c490', 'ef227e91618878835d52cfad3e6d816b', 5, 'Keine Meinung', 6, 0, 0, 1);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('c10a3f4e97f8badc5230a9900afde0c7', '95bbae27965d3404f7fa3af058850bd3', 5, 'kann ich nicht beurteilen', 6, 0, 0, 1);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('c446970d2addd68e43c2a6cae6117bf7', '724244416b5d04a4d8f4eab8a86fdbf8', 1, 'Gut', 2, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('c88242b50ff0bb43df32c1e15bdaca22', '12e508079c4770fb13c9fce028f40cac', 2, 'Mittwoch', 3, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('ccd1eaddccca993f6789659b36f40506', '6fddac14c1f2ac490b93681b3da5fc66', 3, 'Donnerstag', 4, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('ced33706ca95aff2163c7d0381ef5717', '6fddac14c1f2ac490b93681b3da5fc66', 0, 'Montag', 1, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('d67301d4f59aa35d1e3f12a9791b6885', 'ef227e91618878835d52cfad3e6d816b', 0, 'Sehr gut', 1, 0, 0, 0);
INSERT INTO `evalanswer` (`evalanswer_id`, `parent_id`, `position`, `text`, `value`, `rows`, `counter`, `residual`) VALUES('d68a74dc2c1f0ce226366da918dd161d', '95bbae27965d3404f7fa3af058850bd3', 1, 'trifft ziemlich zu', 2, 0, 0, 0);
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);
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);
INSERT INTO `evalquestion` (`evalquestion_id`, `parent_id`, `type`, `position`, `text`, `multiplechoice`) VALUES('724244416b5d04a4d8f4eab8a86fdbf8', '0', 'likertskala', 0, 'Schulnoten', 0);
INSERT INTO `evalquestion` (`evalquestion_id`, `parent_id`, `type`, `position`, `text`, `multiplechoice`) VALUES('95bbae27965d3404f7fa3af058850bd3', '0', 'likertskala', 0, 'Wertung (trifft zu, ...)', 0);
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);
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);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', '19ac063e8319310d059d28379139b1cf', 'Studiengruppe anlegen', 'In dieser Tour wird das Anlegen von Studiengruppen erklärt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', '', 1405684299, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', '1badcf28ab5b206d9150b2b9683b4cb6', 'My courses (lecturers)', 'The most important functions of the site \"My courses\" are presented in this tour.', 'tour', 'tutor,dozent,admin,root', 1, 'en', '5.0', '', '', 1406125685, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', '21f487fa74e3bfc7789886f40fe4131a', 'Forum nutzen', 'Die Inhalte dieser Tour stammen aus der alten Tour des Forums (Sidebar > Aktionen > Tour starten).', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', '', 1405415746, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', '3629493a16bf2680de64361f07cab096', 'Blubber', 'In der Tour wird die Nutzung von Blubber erklärt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1406709759, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', '3a717a468afb0822cb1455e0ae6b6fce', 'Blubber', 'In der Tour wird die Nutzung von Blubber erklärt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1406709041, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', '3dbe7099f82dcdbba4580acb1105a0d6', 'Administering the forum', 'The administration of the forum is explained in this tour.', 'tour', 'tutor,dozent,admin,root', 1, 'en', '5.0', '', 'root@localhost', 1405417901, 1631619331);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', '44f859c50648d3410c39207048ddd833', 'Forum verwalten', 'Die Inhalte dieser Tour stammen aus der alten Tour des Forums (Sidebar > Aktionen > Tour starten).', 'tour', 'tutor,dozent,admin,root', 1, 'de', '5.0', '', 'root@localhost', 1405417901, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', '49604a77654617a745e29ad6b253e491', 'Gestaltung der Startseite', 'In dieser Tour werden die Funktionen und Gestaltungsmöglichkeiten der Startseite vorgestellt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', 'root@localhost', 1405934780, 1631613451);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '4d41c9760a3248313236af202275107a', 'Allgemeines zum Wiki', 'Die Tour gibt einen allgemeinen Überblick über das Wiki.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1441276241, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '4d41c9760a3248313236af202275107b', 'Schreiben im Wiki', 'Die Tour erklärt, wie das Wiki bearbeitet werden kann.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', 'root@localhost', 1441276241, 1631619212);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '4d41c9760a3248313236af202275107c', 'Lesen im Wiki', 'Die Tour erklärt die verschiedenen Anzeige-Modalitäten zum Lesen des Wikis.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', 'root@localhost', 1441276241, 1631619264);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('36821ce84e48f0bd68482f9f43099460', '55f3a548348dcbfdca67678588887ffd', 'Mein Arbeitsplatz', 'Einführung Mein Arbeitsplatz', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', 'demo-installation', 'root@localhost', 1631614324, 1631614324);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '588effa83da976a889a68c152bcabc90', 'Blubber', 'This tour explains how to use \"Blubber\"', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427784693, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '5d41c9760a3248313236af202275107a', 'General information on the Wiki', 'This tour provides general information about the Wiki.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1441276241, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '5d41c9760a3248313236af202275107b', 'Editing the Wiki', 'This tour provides help for editing Wiki pages.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', 'root@localhost', 1441276241, 1631619212);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '5d41c9760a3248313236af202275107c', 'Reading the Wiki', 'This tour provides help for reading Wiki pages.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', 'root@localhost', 1441276241, 1631619264);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', '6849293baa05be5bef8ff438dc7c438b', 'Suche', 'In dieser Feature-Tour werden die wichtigsten Funktionen der Suche vorgestellt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', '', 1405519609, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', '7af1e1fb7f53c910ba9f42f43a71c723', 'Search', 'In this feature tour the most important search functions are explained', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', '', 1405519609, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', '7cccbe3b22dfa745c17cb776fb04537c', 'Meine Veranstaltungen (Dozierende)', 'In dieser Tour werden die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\" vorgestellt.', 'tour', 'tutor,dozent,admin,root', 1, 'de', '5.0', '', '', 1406125685, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', '83dc1d25e924f2748ee3293aaf0ede8e', 'Blubber', 'This tour explains how to use \"Blubber\"', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427784655, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', '89786eac42f52ac316790825b4f5c0b2', 'Use Forum', 'The content of this tour is from the old tour of the forum (Sidebar > actions > start tour).', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', '', 1405415746, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', '96ea422f286fb5bbf9e41beadb484a9a', 'Profilseite', 'In dieser Tour werden die Grundfunktionen und Bereiche der Profilseite vorgestellt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', '', 'root@localhost', 1406722657, 1631617118);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', '9e9dca9b1214294b9605824bfe90fba1', 'Create study group', 'In this tour the creation of study groups is explained', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', '', 1405684299, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('0316ff46356293ef49d8e7db09485be0', 'a848744bde4dac47ec2e8b383155381d', 'Stud.IP 5', 'Einführung in Stud.IP 5', 'tour', 'tutor,dozent,admin,root', 1, 'de', '5.0', 'demo-installation', 'dozent@studip.de', 1631612143, 1631612143);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 'b74f8459dce2437463096d56db7c73b9', 'Meine Veranstaltungen (Studierende)', 'In dieser Tour werden die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\" vorgestellt.', 'tour', 'autor,admin,root', 1, 'de', '5.0', '', '', 1405521073, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 'c89ce8e097f212e75686f73cc5008711', 'Participant administration', 'The administration options of the participant administration are explained in this tour.', 'tour', 'tutor,dozent,admin,root', 1, 'en', '5.0', '', '', 1405688156, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('', 'd9913517f9c81d2c0fa8362592ce5d0e', 'Blubber', 'This tour explains how to use \"Blubber\"', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '3.1', '', '', 1427784720, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('8e7a9f6b86255bc9034b71d8318419e6', 'd9a066071e2be43b2b51c37a9d692026', 'OER Campus', 'Einführung in den OER Campus', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '5.0', 'demo-installation', 'root@localhost', 1631614324, 1631614324);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('0316ff46356293ef49d8e7db09485be0', 'dac47ec2e8a848744bde4b3881d31553', 'Stud.IP 5', 'Einführung in Stud.IP 5', 'tour', 'autor', 1, 'de', '5.0', 'demo-installation', 'dozent@studip.de', 1631612143, 1631612143);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 'de1fbce508d01cbd257f9904ff8c3b43', 'Profile page', 'The basic functions and areas of the profile page are presented in this tour.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'en', '5.0', '', 'root@localhost', 1406722657, 1631617118);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 'edfcf78c614869724f93488c4ed09582', 'Teilnehmerverwaltung', 'In dieser Tour werden die Verwaltungsoptionen der Teilnehmerverwaltung erklärt.', 'tour', 'tutor,dozent,admin,root', 1, 'de', '5.0', '', '', 1405688156, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 'ef5092ba722c81c37a5a6bd703890bd9', 'Blubber', 'In der Tour wird die Nutzung von Blubber erklärt.', 'tour', 'autor,tutor,dozent,admin,root', 1, 'de', '3.1', '', '', 1405507317, 0);
INSERT INTO `help_tours` (`global_tour_id`, `tour_id`, `name`, `description`, `type`, `roles`, `version`, `language`, `studip_version`, `installation_id`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', '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);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 1, 'autostart_once', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 1, 'autostart_once', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 1, 'standard', NULL, 1631619331);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 1, 'standard', NULL, 1631619331);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 1, 'standard', NULL, 1631613451);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 1, 'autostart_once', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 1, 'standard', NULL, 1631619212);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 1, 'standard', NULL, 1631619264);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 1, 'autostart_once', 1631612143, 1631612143);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 1, 'autostart_once', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107a', 1, 'autostart_once', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 1, 'standard', NULL, 1631619212);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 1, 'standard', NULL, 1631619264);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 1, 'autostart_once', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 1, 'autostart_once', 1631612143, 1631612143);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 1, 'autostart_once', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 1, 'autostart_once', 1631612143, 1631612143);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 1, 'autostart_once', 1631612143, 1631612143);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 1, 'autostart_once', NULL, NULL);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 1, 'standard', NULL, 1631613451);
INSERT INTO `help_tour_settings` (`tour_id`, `active`, `access`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 1, 'standard', NULL, NULL);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 1, 'My documents', 'This tour provides an overview of the personal document manager.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'B', 0, '', 'dispatch.php/files', '', '', 'root@localhost', 1405592884, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 2, 'New documents and indices', 'New documents can be uploaded from the computer into the personal document area and new indices can be created here.', 'TL', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/files', '', '', '', 1405593409, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 3, 'Document overview', 'All documents and indices are listed in a tabular form. In addition to the name even more information is displayed such as the document type or the document size.', 'TL', 0, '#files_table_form TABLE:eq(0) CAPTION:eq(0) DIV:eq(0)', 'dispatch.php/files', '', '', '', 1405593089, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 4, '', 'Already uploaded documents and folders can be edited, downloaded, shifted, copied and deleted here.', 'TL', 0, 'table.documents tfoot .footer-items', 'dispatch.php/files', '', '', '', 1405594079, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('05434e40601a9a2a7f5fa8208ae148c1', 5, 'Export', 'Here you have the possibility to download individual folders or the full document area as a ZIP document. All documents and indices are contained therein.', 'LT', 0, 'table.documents .action-menu-icon', 'dispatch.php/files', '', '', 'dozent@studip.de', 1405593708, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 1, 'Dateien', 'Dies ist der persönliche Dateibereich. Hier können Dateien in Stud.IP gespeichert werden, um sie von dort auf andere Rechner herunterladen zu können.\n\nAndere Studierende oder Dozierende erhalten keinen Zugriff auf Dateien, die in den persönlichen Dateibereich hochgeladen werden.\n\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'B', 0, '', 'dispatch.php/files', '', '', 'root@localhost', 1405592884, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 2, 'Neue Dateien und Verzeichnisse', 'Hier können neue Dateien von dem Computer in den persönlichen Dateibereich hochgeladen und neue Verzeichnisse erstellt werden.', 'TL', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/files', '', '', '', 1405593409, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 3, 'Dateiübersicht', 'Alle Dateien und Verzeichnisse werden tabellarisch aufgelistet. Neben dem Namen werden noch weitere Informationen wie der Dateityp oder die Dateigröße angezeigt.', 'TL', 0, '#files_table_form TABLE:eq(0) CAPTION:eq(0) DIV:eq(0)', 'dispatch.php/files', '', '', '', 1405593089, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 4, '', 'Bereits hochgeladene Dateien und Ordner können hier bearbeitet, heruntergeladen, verschoben, kopiert und gelöscht werden.', 'TL', 0, 'table.documents tfoot .footer-items', 'dispatch.php/files', '', '', '', 1405594079, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('154e711257d4d32d865fb8f5fb70ad72', 5, 'Export', 'Hier besteht die Möglichkeit einzelne Ordner oder den vollständigen Dateibereich als ZIP-Datei herunterzuladen. Darin sind alle Dateien und Verzeichnisse enthalten.', 'LT', 0, 'table.documents .action-menu-icon', 'dispatch.php/files', '', '', 'dozent@studip.de', 1405593708, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 1, 'Studiengruppe anlegen', 'Studiengruppen ermöglichen die Zusammenarbeit mit KommilitonInnen oder KolegInnen. Diese Tour gibt Ihnen einen Überblick darüber wie Sie Studiengruppen anlegen können.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'R', 0, '', 'dispatch.php/my_studygroups', '', '', '', 1405684423, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 2, 'Studiengruppe anlegen', 'Mit Klick auf \"Neue Studiengruppe anlegen\" kann eine neue Studiengruppe angelegt werden.', 'BL', 0, '.sidebar-widget:eq(1) A:eq(0)', 'dispatch.php/my_studygroups', '', '.sidebar-widget:eq(1) li:eq(0) a:eq(0)', 'dozent@studip.de', 1406017730, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 3, 'Studiengruppe benennen', 'Der Name einer Studiengruppe sollte aussagekräftig sein und einmalig im gesamten Stud.IP.', 'R', 0, '#wizard-name', 'dispatch.php/my_studygroups', '', '', '', 1405684720, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 4, 'Beschreibung hinzufügen', 'Die Beschreibung ermöglicht es weitere Informationen anzuzeigen und somit das Auffinden der Gruppe zu erleichtern.', 'L', 0, '#wizard-description', 'dispatch.php/my_studygroups', '', '', 'dozent@studip.de', 1405684806, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 5, 'Inhaltselemente zuordnen', 'Hier können Inhaltselemente aktiviert werden, welche innerhalb der Studiengruppe zur Verfügung stehen sollen. Das Fragezeichen gibt nähere Informationen zur Bedeutung der einzelnen Inhaltselemente.', 'R', 0, '#wizard-access', 'dispatch.php/my_studygroups', '', '', 'dozent@studip.de', 1405685093, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 6, 'Zugang festlegen', 'Mit diesem Drop-down-Menü kann der Zugang zur Studiengruppe eingeschränkt werden.\r\n\r\nBeim Zugang \"offen für alle\" können sich alle Studierenden frei eintragen und an der Gruppe beteiligen.\r\n\r\nBeim Zugang \"Auf Anfrage\" müssen Teilnehmer durch den Gruppengründer hinzugefügt werden.', 'R', 0, '#wizard-access', 'dispatch.php/my_studygroups', '', '', 'root@localhost', 1405685334, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 7, 'Nutzungsbedingungen akzeptieren', 'Bei der Erstellung einer Studiengruppe müssen die Nutzungsbedingungen akzeptiert werden.', 'R', 0, '#ui-id-1 FORM:eq(0) FIELDSET:eq(0) LABEL:eq(4)', 'dispatch.php/my_studygroups', '', '', 'root@localhost', 1405685652, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('19ac063e8319310d059d28379139b1cf', 8, 'Studiengruppe speichern', 'Nach dem Speichern einer Studiengruppe erscheint diese unter \"Veranstaltungen > Meine Studiengruppen\".', 'L', 0, '#layout_content FORM TABLE TBODY TR TD :eq(14)', 'dispatch.php/my_studygroups', '', 'BUTTON.cancel:eq(0)', 'root@localhost', 1405686068, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 1, 'My courses', 'This tour provides an overview of the functionality of \"My courses\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1406125847, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 2, 'Overview of courses', 'The courses of the current and past semester are displayed here. New courses initially appear in red.', 'BL', 0, '#my_seminars TABLE:eq(0) CAPTION:eq(0)', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406125908, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 3, 'Course details', 'With a click on the \"i\" a window appears with the most important facts of the courses.', 'BR', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '#my_seminars TABLE:eq(0) TBODY:eq(0) TR:eq(1) TD:eq(5) NAV:eq(0)', 'dozent@studip.de', 1406125992, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 4, 'Course contents', 'All contents (such as e.g. a forum) are displayed by corresponding symbols here.\n\nIf there were any news since the last login these will appear in red.', 'B', 0, '#my_seminars .my-courses-navigation-item', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406126049, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 5, 'Editing or deletion of a course', 'A click on the cog wheel enables you to edit a course.\n\nIf you have participant status in a course, you can sign out by clicking on the door icon.', 'BR', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406126134, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 6, 'Adjustment to the event view', 'In order to adjust the course overview you can order your courses according to certain criteria (such as e.g. fields of study, lecturers, or colours).', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(11) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1406126281, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 7, 'Access to an event of past and future semesters', 'For example, by clicking on the drop-down menu, courses from past semesters can be displayed.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(1)', 'dispatch.php/my_courses', '', '', '', 1406126316, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 8, 'Further possible actions', 'Here you can mark all news as read, change colour groups as you please, and also adjust the notifications about activities in the individual courses.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1406126374, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('1badcf28ab5b206d9150b2b9683b4cb6', 9, 'Study groups and facilities', 'There is moreover the possibility to access personal study groups or facilities.', 'R', 0, '#nav_browse_my_institutes A', 'dispatch.php/my_courses', '', '', '', 1406126415, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 1, 'Forum', 'Diese Tour gibt einen Überblick über die Elemente und Interaktionsmöglichkeiten des Forums.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'BL', 0, '', 'dispatch.php/course/forum', '', '', '', 1405415772, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 2, 'Sie befinden sich hier:...', 'An dieser Stelle wird angezeigt, welcher Bereich des Forums gerade betrachtet wird.', 'BL', 0, 'DIV#tutorBreadcrumb', 'dispatch.php/course/forum', '', '', '', 1405415875, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 3, 'Kategorie', 'Das Forum ist unterteilt in Kategorien, Themen und Beiträge. Eine Kategorie fasst Forumsbereiche in größere Sinneinheiten zusammen.', 'BL', 0, '#tutorCategory', 'dispatch.php/course/forum', '', '', '', 1405416611, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 4, 'Bereich', 'Das ist ein Bereich innerhalb einer Kategorie. Bereiche beinhalten die Diskussionstränge. Bereiche können mit per drag & drop in ihrer Reihenfolge verschoben werden.', 'BL', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(1) DIV:eq(0) SPAN:eq(0) A:eq(0) SPAN:eq(0)', 'dispatch.php/course/forum', '', '', '', 1405416664, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 5, 'Info-Icon', 'Dieses Icon färbt sich rot, sobald es etwas neues in diesem Bereich gibt.', 'B', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) A:eq(0) IMG:eq(0)', 'dispatch.php/course/forum', '', '', '', 1405416705, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 6, 'Suchen', 'Hier können sämtliche Inhalte dieses Forums durchsucht werden.\r\nUnterstützt werden auch Mehrwortsuchen. Außerdem kann die Suche auf eine beliebige Kombination aus Titel, Inhalt und Autor eingeschränkt werden.', 'BL', 0, '#tutorSearchInfobox DIV:eq(0)', 'dispatch.php/course/forum', '', '', '', 1405417134, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('21f487fa74e3bfc7789886f40fe4131a', 7, 'Forum abonnieren', 'Das gesamte Forum, oder einzelne Themen können abonniert werden. Dann wird bei jedem neuen Beitrag in diesem Forum eine Benachrichtigung angezeigt und eine Nachricht versendet.', 'RT', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(9) DIV:eq(0)', 'dispatch.php/course/forum', '', '', 'dozent@studip.de', 1405416795, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 1, 'Was ist Blubbern?', 'Diese Tour gibt Ihnen einen Überblick über die wichtigsten Funktionen von \"Blubber\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'plugins.php/blubber/streams/forum', '', '', '', 1405507364, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 2, 'Beitrag erstellen', 'Hier kann eine Diskussion durch Schreiben von Text begonnen werden. Absätze lassen sich durch Drücken von Umschalt+Eingabe erzeugen. Der Text wird durch Drücken von Eingabe abgeschickt.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405507478, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 3, 'Text gestalten', 'Der Text kann formatiert und mit Smileys versehen werden.\r\nEs können die üblichen Formatierungen verwendet werden, wie z. B. **fett** oder %%kursiv%%.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405508371, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 4, 'Personen erwähnen', 'Andere können über einen Beitrag informiert werden, indem sie per @benutzername oder @\"Vorname Nachname\" im Beitrag erwähnt werden.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405672301, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 5, 'Datei hinzufügen', 'Dateien können in einen Beitrag eingefügt werden, indem sie per Drag&Drop in ein Eingabefeld gezogen werden.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405508401, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 6, 'Schlagworte', 'Beiträge können mit Schlagworten (engl. \"Hashtags\") versehen werden, indem einem beliebigen Wort des Beitrags ein # vorangestellt wird.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405508442, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 7, 'Schlagwortwolke', 'Durch Anklicken eines Schlagwortes werden alle Beiträge aufgelistet, die dieses Schlagwort enthalten.', 'RT', 0, 'DIV.sidebar-widget-header', 'plugins.php/blubber/streams/forum', '', '', '', 1405508505, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 8, 'Beitrag ändern', 'Wird der Mauszeiger auf einem beliebigen Beitrag positioniert, erscheint dessen Datum. Bei eigenen Beiträgen erscheint außerdem rechts neben dem Datum ein Icon, mit dem der Beitrag nachträglich geändert werden kann.', 'BR', 0, 'DIV DIV A SPAN.time', 'plugins.php/blubber/streams/forum', '', '', '', 1405507901, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3629493a16bf2680de64361f07cab096', 9, 'Beitrag verlinken', 'Wird der Mauszeiger auf dem ersten Diskussionsbeitrag positioniert, erscheint links neben dem Datum ein Link-Icon. Wenn dieses mit der rechten Maustaste angeklickt wird, kann der Link auf diesen Beitrag kopiert werden, um ihn an anderer Stelle einfügen zu können.', 'BR', 0, 'DIV DIV A.permalink', 'plugins.php/blubber/streams/forum', '', '', '', 1405508281, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 1, 'Was ist Blubbern?', 'Diese Tour gibt Ihnen einen Überblick über die wichtigsten Funktionen von \"Blubber\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'plugins.php/blubber/streams/profile', '', '', '', 1405507364, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 2, 'Beitrag erstellen', 'Hier kann eine Diskussion durch Schreiben von Text begonnen werden. Absätze lassen sich durch Drücken von Umschalt+Eingabe erzeugen. Der Text wird durch Drücken von Eingabe abgeschickt.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405507478, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 3, 'Text gestalten', 'Der Text kann formatiert und mit Smileys versehen werden.\r\nEs können die üblichen Formatierungen verwendet werden, wie z. B. **fett** oder %%kursiv%%.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405508371, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 4, 'Personen erwähnen', 'Andere können über einen Beitrag informiert werden, indem sie per @benutzername oder @\"Vorname Nachname\" im Beitrag erwähnt werden.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405672301, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 5, 'Datei hinzufügen', 'Dateien können in einen Beitrag eingefügt werden, indem sie per Drag&Drop in ein Eingabefeld gezogen werden.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405508401, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 6, 'Schlagworte', 'Beiträge können mit Schlagworten (engl. \"Hashtags\") versehen werden, indem einem beliebigen Wort des Beitrags ein # vorangestellt wird.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405508442, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 7, 'Schlagwortwolke', 'Durch Anklicken eines Schlagwortes werden alle Beiträge aufgelistet, die dieses Schlagwort enthalten.', 'RT', 0, 'DIV.sidebar-widget-header', 'plugins.php/blubber/streams/profile', '', '', '', 1405508505, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 8, 'Beitrag ändern', 'Wird der Mauszeiger auf einem beliebigen Beitrag positioniert, erscheint dessen Datum. Bei eigenen Beiträgen erscheint außerdem rechts neben dem Datum ein Icon, mit dem der Beitrag nachträglich geändert werden kann.', 'BR', 0, 'DIV DIV A SPAN.time', 'plugins.php/blubber/streams/profile', '', '', '', 1405507901, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3a717a468afb0822cb1455e0ae6b6fce', 9, 'Beitrag verlinken', 'Wird der Mauszeiger auf dem ersten Diskussionsbeitrag positioniert, erscheint links neben dem Datum ein Link-Icon. Wenn dieses mit der rechten Maustaste angeklickt wird, kann der Link auf diesen Beitrag kopiert werden, um ihn an anderer Stelle einfügen zu können.', 'BR', 0, 'DIV DIV A.permalink', 'plugins.php/blubber/streams/profile', '', '', '', 1405508281, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 1, 'Administering the forum', 'This tour provides an overview of the forum\'s administration.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'dispatch.php/course/forum', '', '', '', 1405418008, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 2, 'Edit category', 'The name of the category can be changed or, however, the whole category deleted with these icons. The sectors will in this case be shifted into the category \"General\" and are thus retained.\n\nThe category \"General\" cannot be deleted and is therefore included in each forum.', 'L', 0, '#forum #sortable_areas TABLE CAPTION #tutorCategoryIcons', 'dispatch.php/course/forum', '', '', 'dozent@studip.de', 1405424216, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 3, 'Edit area', 'Action icons will appear, if the cursor is positioned on an area\n\nYou can use the icons to change the name and description of an area, or to delete the whole area.\nThe deletion of an area causes all contained topics to be deleted.', 'L', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(4)', 'dispatch.php/course/forum', '', '', 'dozent@studip.de', 1405424346, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 4, 'Sort area', 'With this hatched surface areas can be sorted in at any place by clicking and dragging. This can, on one hand, be used in order to sort areas within a category, and on the other hand, areas can be shifted into other categories.', 'R', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) IMG:eq(0)', 'dispatch.php/course/forum', '', '', 'dozent@studip.de', 1405424379, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 5, 'Add new area', 'New areas can be added to a category here.', 'BR', 0, 'TFOOT TR TD A SPAN', 'dispatch.php/course/forum', '', '', '', 1405424421, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('3dbe7099f82dcdbba4580acb1105a0d6', 6, 'Create new category', 'A new category in the forum can be created here. Enter the title of the new category for this purpose.', 'TL', 0, '#tutorAddCategory FIELDSET:eq(0) LEGEND:eq(0)', 'dispatch.php/course/forum', '', '', '', 1405424458, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 1, 'Forum verwalten', 'Sie haben die Möglichkeit sich eine Tour zur Verwaltung des Forums anzuschauen.\r\n\r\nUm die Tour zu beginnen, klicken Sie bitte unten rechts auf \"Weiter\".', 'TL', 0, '', 'dispatch.php/course/forum', '', '', '', 1405418008, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 2, 'Kategorie bearbeiten', 'Mit diesen Icons kann der Name der Kategorie geändert oder aber die gesamte Kategorie gelöscht werden. Die Bereiche werden in diesem Fall in die Kategorie \"Allgemein\" verschoben und bleiben somit erhalten.\r\n\r\nDie Kategorie \"Allgemein\" kann nicht gelöscht werden und ist daher in jedem Forum enthalten.', 'L', 0, '#forum #sortable_areas TABLE CAPTION #tutorCategoryIcons', 'dispatch.php/course/forum', '', '', 'dozent@studip.de', 1405424216, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 3, 'Bereich bearbeiten', 'Wird der Mauszeiger auf einem Bereich positioniert, erscheinen Aktions-Icons.\r\nMit diesen Icons kann der Name und die Beschreibung eines Bereiches geändert oder auch der gesamte Bereich gelöscht werden.\r\nDas Löschen eines Bereichs, führt dazu, dass alle enthaltenen Themen gelöscht werden.', 'L', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(4)', 'dispatch.php/course/forum', '', '', 'dozent@studip.de', 1405424346, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 4, 'Bereiche sortieren', 'Mit dieser schraffierten Fläche können Bereiche an einer beliebigen Stelle durch Klicken-und-Ziehen einsortiert werden. Dies kann einerseits dazu verwendet werden, um Bereiche innerhalb einer Kategorie zu sortieren, andererseits können Bereiche in andere Kategorien verschoben werden.', 'R', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) IMG:eq(0)', 'dispatch.php/course/forum', '', '', 'dozent@studip.de', 1405424379, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 5, 'Neuen Bereich hinzufügen', 'Hier können neue Bereiche zu einer Kategorie hinzugefügt werden.', 'BR', 0, 'TFOOT TR TD A SPAN', 'dispatch.php/course/forum', '', '', '', 1405424421, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('44f859c50648d3410c39207048ddd833', 6, 'Neue Kategorie erstellen', 'Hier kann eine neue Kategorie im Forum erstellt werden. Geben Sie hierfür den Titel der neuen Kategorie ein.', 'TL', 0, '#tutorAddCategory FIELDSET:eq(0) LEGEND:eq(0)', 'dispatch.php/course/forum', '', '', '', 1405424458, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 1, 'Funktionen und Gestaltungsmöglichkeiten der Startseite', 'Diese Tour gibt Ihnen einen Überblick über die wichtigsten Funktionen der \"Startseite\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1405934926, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 2, 'Individuelle Gestaltung der Startseite', 'Die Startseite ist standardmäßig so konfiguriert, dass die Elemente \"Schnellzugriff\", \"Ankündigungen\", \"Meine aktuellen Termine\" und \"Umfragen\" angezeigt werden. Die Elemente werden Widgets genannt und können entfernt, hinzugefügt und verschoben werde.n Jedes Widget kann individuell hinzugefügt, entfernt und verschoben werden.', 'TL', 0, '', 'dispatch.php/start', '', '', '', 1405934970, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 3, 'Widget hinzufügen', 'Hier können Widgets hinzugefügt werden. Zusätzlich zu den Standard-Widgets kann beispielsweise der persönliche Stundenplan auf der Startseite anzeigt werden. Neu hinzugefügte Widgets erscheinen ganz unten auf der Startseite. Darüber hinaus kann in der Sidebar direkt zu jedem Widget gesprungen werden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0)', 'dispatch.php/start', '', '', '', 1405935192, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 4, 'Sprungmarken', 'Darüber hinaus kann mit Sprungmarken direkt zu jedem Widget gesprungen werden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(2) DIV:eq(0)', 'dispatch.php/start', '', '', '', 1406623464, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 5, 'Widget positionieren', 'Ein Widget kann per Drag&Drop an die gewünschte Position verschoben werden: Dazu wird in die Titelzeile eines Widgets geklickt, die Maustaste gedrückt gehalten und das Widget an die gewünschte Position gezogen.', 'B', 0, '.widget-header', 'dispatch.php/start', '', '', '', 1405935687, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 6, 'Widget bearbeiten', 'Bei einigen Widgets wird neben dem X zum Schließen noch ein weiteres Symbol angezeigt. Der Schnellzugriff bspw. kann durch Klick auf diesen Button individuell angepasst, die Ankündigungen können abonniert und bei den aktuellen Terminen bzw. Stundenplan können Termine hinzugefügt werden.', 'L', 0, '#widget-8', 'dispatch.php/start', '', '', '', 1405935792, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('49604a77654617a745e29ad6b253e491', 7, 'Widget entfernen', 'Jedes Widget kann durch Klicken auf das X in der rechten oberen Ecke entfernt werden. Bei Bedarf kann es jederzeit wieder hinzugefügt werden.', 'R', 0, '.widget-header', 'dispatch.php/start', '', '', '', 1405935376, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 1, 'Allgemeines zum Wiki', 'Diese Tour gibt einen allgemeinen Überblick über das Wiki.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'T', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 2, 'Kooperative Textarbeit', 'Das Wiki ist ein Tool für kooperative Textarbeit. Alle Teilnehmenden einer Veranstaltung haben das Recht, Texte zu erstellen, zu ändern und zu löschen.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 3, 'Textänderungen schaden nicht', 'Weil das Wiki alle Textänderungen einer Seite protokolliert, können vorhergehende Versionen der Seite wiederhergestellt werden.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 4, 'Textänderungen zurücknehmen', 'Textänderungen in einer Wiki-Seite lassen sich rückgängig machen, indem eine vorhergehende Version der Seite wiederhergestellt wird.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 5, 'Neue Version einer Wiki-Seite', 'Wird eine Wiki-Seite bearbeitet, so erfolgt die Übernahme der Textänderungen sofort beim Speichern. Eine neue Version der Seite wird dreißig Minuten nach der Speicherung erstellt.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107a', 6, 'Kein synchrones Schreiben', 'Das Wiki ist nicht zum synchronen Schreiben geeignet. Es kann immer nur eine Person an einer Seite gleichzeitig arbeiten. Sobald eine zweite Person die Seite im Editor öffnet, erscheint eine Warnmeldung.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 1, 'Schreiben im Wiki', 'Diese Tour gibt einen Überblick über die Erstellung und Bearbeitung von Wiki-Seiten.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'T', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 2, 'Wiki-Startseite', 'Zeigt die Basis-Seite des Wikis an. Sie bildet die strukturelle Grundlage des gesamten Wikis.', 'R', 0, '#nav_wiki_start', 'wiki.php', '', '', 'dozent@studip.de', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 3, 'Neue Seiten', 'Zeigt eine tabellarische Übersicht neu erstellter und neu bearbeiteter Wiki-Seiten an.', 'R', 0, '#nav_wiki_listnew', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 4, 'Alle Seiten', 'Zeigt eine tabellarische Übersicht aller Wiki-Seiten an.', 'R', 0, '#nav_wiki_listall', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 5, 'Wiki-Seite bearbeiten', 'Durch einen Klick auf die Schaltfläche \"Bearbeiten\" öffnet sich ein Editor, über den eine Wiki-Seite mit Inhalt gefüllt werden kann.\r\n\r\nDie Eingabe eines Namens in doppelten eckigen Klammern erzeugt eine neue Wiki-Seite und vernetzt sie mit der angezeigten Seite.', 'B', 0, '#main_content TABLE:eq(1) TBODY:eq(0) TR:eq(0) TD:eq(0) DIV:eq(0) A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 6, 'Inhalt einer Wiki-Seite löschen', 'Der Inhalt einer Wiki-Seite lässt sich mit Hilfe eines Klicks auf die Schaltfläche \"Löschen\" entfernen. Die Wiki-Seite bleibt dabei erhalten.', 'B', 0, '#main_content TABLE:eq(1) TBODY:eq(0) TR:eq(0) TD:eq(0) DIV:eq(0) A:eq(1)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 7, 'QuickLinks', 'Dieser Bildschirmbereich zeigt eine Liste von QuickLinks (Verweisen) auf Wiki-Seiten. Ein Klick auf einen QuickLink öffnet die korrelierende Wiki-Seite. Deren Inhalt lässt sich mit Hilfe der Schaltflächen \"Bearbeiten\" und \"Löschen\" gestalten.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107b', 8, 'QuickLinks bearbeiten', 'Über das Icon zum Bearbeiten von QuickLinks öffnet sich ein Editor.\r\n\r\nNeue QuickLinks lassen sich mit doppelten eckigen Klammern erstellen: [[Name]]. Das Löschen eines QuickLinks entfernt die korrelierende Seite aus der Liste.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'wiki.php', '', '', 'root@localhost', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 1, 'Lesen im Wiki', 'Diese Tour gibt einen Überblick über die Anzeige von Wiki-Seiten.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'T', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 2, 'Wiki-Startseite', 'Zeigt die Basis-Seite des Wikis an.', 'R', 0, '#nav_wiki_show', 'wiki.php', '', '', 'dozent@studip.de', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 3, 'Neue Seiten', 'Zeigt eine tabellarische Übersicht neu erstellter und neu bearbeiteter Wiki-Seiten an.', 'R', 0, '#nav_wiki_listnew', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 4, 'Alle Seiten', 'Zeigt eine tabellarische Übersicht aller Wiki-Seiten an.', 'R', 0, '#nav_wiki_listall', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 5, 'Ansichten', 'Wenn eine Textänderung in einer Wiki-Seite vorgenommen wurde, stehen drei Anzeigemodi zur Auswahl:\r\n- Standard: Ohne Zusatzinformation\r\n- Textänderungen anzeigen: Welche Textpassagen wurden geändert?\r\n- Text mit AutorInnenzuordnung anzeigen: Wer hat hat etwas geändert?', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(16) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 6, 'Suche', 'Zeigt die Wiki-Seiten an, in denen der eingegebene Suchbegriff vorkommt. Die Suche steht nur in der Standard-Ansicht zur Verfügung.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(13) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 7, 'Kommentare', 'Stellt verschiedene Modalitäten zur Anzeige von Kommentaren bereit, die in einer Wiki-Seite eingetragen wurden.', 'R', 0, '#link-76d39424649110401006432124ea88a2 A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 8, 'Kommentare einblenden', 'Alle Kommentare werden als Textblock an der Textposition angezeigt, an der sie in die Wiki-Seite eingefügt wurden.', 'R', 0, '#link-76d39424649110401006432124ea88a2 A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('4d41c9760a3248313236af202275107c', 9, 'Kommentare ausblenden', 'Die in einer Wiki-Seite eingefügten Kommentare werden nicht angezeigt.', 'R', 0, '#link-b7e236be73b877f765813669fba3d56e A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 1, '', 'Dies ist Ihr persönlicher Arbeitsplatz in Stud.IP. Hier sind Funktionen, die früher unter \"Tools\" zu finden waren, sowie neue Werkzeuge gesammelt.', 'B', 0, '', 'dispatch.php/contents/overview', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 2, '', 'Courseware dient zum Erstellen von Lerninhalten. Texte, Dateien, Videos, Test und vieles mehr lassen sich einfach zu komplexen Lerninhalten kombinieren.', 'RT', 0, '#layout_content UL:eq(0) LI:eq(0) A:eq(0) DIV:eq(0) IMG:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 3, '', 'Dateien zeigt Ihren persönlichen, geschützten Dateibereich sowie eine Übersichtsseite über alle Dateien, auf die Sie in Stud.IP Zugriff haben.', 'RT', 0, '#layout_content UL:eq(0) LI:eq(1) A:eq(0) DIV:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 4, '', 'Ankündigungen ermöglicht das Einstellen von News auf Ihrer Profilseite, in Veranstaltungen in denen Sie lehren oder Einrichtungen, die Sie administrieren.', 'LT', 0, '#layout_content UL:eq(0) LI:eq(2) A:eq(0) DIV:eq(0) IMG:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 5, '', 'Fragebögen zeigt alle Fragebögen die Sie erstellt haben und die sich im persönlichen, Veranstaltungs- oder Einrichungskontext nutzen lassen.', 'LT', 0, '#layout_content UL:eq(0) LI:eq(3) A:eq(0) DIV:eq(0) IMG:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 6, '', 'Evaluationen bietet einen Baukasten zum Erstellen komplexer Umfragen sowie deren Nutzung im persönlichen, Veranstaltungs- oder Einrichungskontext.', 'T', 0, '#layout_content UL:eq(0) LI:eq(4) A:eq(0) DIV:eq(0) IMG:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('55f3a548348dcbfdca67678588887ffd', 7, '', 'Lernmodule/ILIAS bietet je nach Standort Zugriff auf die Accountverwaltung von Plattformen und Werkzeugen, die an Stud.IP angedockt sind.', 'T', 0, '#layout_content UL:eq(0) LI:eq(5) A:eq(0) DIV:eq(0) IMG:eq(0)', 'dispatch.php/contents/overview', '', '', 'dozent@studip.de', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 1, 'What is Blubber?', 'This tour provides an overview of the functionality of \"Blubber\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'plugins.php/blubber/streams/profile', '', '', '', 1405507364, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 2, 'Create contribution', 'A discussion can be started here by writing a text. Paragraphs can be created by pressing shift+enter. The text will be sent by pressing enter.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405507478, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 3, 'Design text', 'The text can be formatted and smileys can be used.\n\nThe customary formatting such as e.g. **bold** or %%italics%% can be used.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405508371, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 4, 'Mention persons', 'Others can be informed about a post by mentioning them in the post, using the format @user name or @\'first name last name\'.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405672301, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 5, 'Add document', 'Documents can be inserted into a post by dragging them into an input field using drag&drop.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405508401, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 6, 'Hashtags', 'Posts can be issued with key words (\"hashtags\") by placing a # in front of the chosen word.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/profile', '', '', '', 1405508442, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 7, 'Hashtag cloud', 'By clicking on a hashtag, all posts containing this hashtag will be displayed.', 'RT', 0, 'DIV.sidebar-widget-header', 'plugins.php/blubber/streams/profile', '', '', '', 1405508505, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 8, 'Change contribution', 'If the cursor is positioned on a post, its date will appear. For your own posts an additional icon will appear on the right next to the date. This icon allow you to subsequently edit your post.', 'BR', 0, 'DIV DIV A SPAN.time', 'plugins.php/blubber/streams/profile', '', '', '', 1405507901, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('588effa83da976a889a68c152bcabc90', 9, 'Link contribution', 'If the cursor is positioned on the first contribution to the discussion a link icon will appear on the left next to the date. If this is clicked using the right mouse button the link can be copied on this contribution in order to be able to insert it in another place.', 'BR', 0, 'DIV DIV A.permalink', 'plugins.php/blubber/streams/profile', '', '', '', 1405508281, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107a', 1, 'General information on the Wiki', 'This tour provides general information about the Wiki.\r\n\r\nTo proceed, please click \"Continue\" on the lower-right button.', 'T', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107a', 2, 'Tool for collaborative use', 'The Wiki is a collaborative tool. Every user may create, edit and delete content.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107a', 3, 'Changes in a Wiki page', 'Since all changes in a Wiki page are saved in a protocol, previous versions of its content can be restored.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107a', 4, 'New version of a Wiki page', 'While editing text in a Wiki page, clicking the Save-Button will save its content immediately. A new version of a Wiki page is displayed thirty minutes after saving at the latest.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107a', 5, 'Undo changes', 'All changes can be undone by restoring a previous version of text.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107a', 6, 'No support of synchronous editing', 'The editor is not designed for synchronous writing. Only one person may edit a page at the same time. If a second person links up to edit the same page, a warning message appears.', 'B', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 1, 'Editing the Wiki', 'This tour provides a general overview of how to create and edit Wiki pages.\r\n\r\nTo proceed, please click \"Continue\" on the lower-right button.', 'T', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 2, 'WikiWikiWeb', 'Displays the basic Wiki page, which is the foundation of all further Wiki pages.', 'R', 0, '#nav_wiki_start', 'wiki.php', '', '', 'dozent@studip.de', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 3, 'New pages', 'Displays a survey of all recently created or edited Wiki pages in table form.', 'R', 0, '#nav_wiki_listnew', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 4, 'All pages', 'Displays a survey of all Wiki pages in table form.', 'R', 0, '#nav_wiki_listall', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 5, 'Editing the a Wiki page', 'Clicking here will open an editor, allowing to fill a Wiki page with content.', 'B', 0, '#main_content TABLE:eq(1) TBODY:eq(0) TR:eq(0) TD:eq(0) DIV:eq(0) A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 6, 'Deleting the content of a Wiki page', 'Clicking here will delete all content and links of a Wiki page leaving it blank.', 'B', 0, '#main_content TABLE:eq(1) TBODY:eq(0) TR:eq(0) TD:eq(0) DIV:eq(0) A:eq(1)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 7, 'QuickLinks', 'This box displays links, leading to other Wiki pages. Selecting a link will forward to the related page.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107b', 8, 'Editing QuickLinks', 'A click on this icon will open an editor to edit the QuickLinks.\r\n\r\nEntering a name within double square brackets like [[name]] in the editor will create a new QuickLink leading to a correlating page. Deleting a QuickLink will cause its deletion in the QuickLink box.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'wiki.php', '', '', 'root@localhost', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 1, 'Reading the Wiki', 'This tour gives a general overview of the different modes to read Wiki pages.\r\n\r\nTo proceed, please click \"Continue\" on the lower-right button.', 'T', 0, '', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 2, 'WikiWikiWeb', 'Displays the basic Wiki page, which is the foundation of all further Wiki pages.', 'R', 0, '#nav_wiki_show', 'wiki.php', '', '', 'dozent@studip.de', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 3, 'New pages', 'Displays a survey of all recently created or edited Wiki pages in table form.', 'R', 0, '#nav_wiki_listnew', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 4, 'All pages', 'Displays a survey of all Wiki pages in table form.', 'R', 0, '#nav_wiki_listall', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 5, 'Views', 'If a Wiki page has been edited, the user may choose between three modes of viewing content:\r\n- Standard: Without extra information\r\n- Show text changes: Which parts of text have been edited?\r\n- Show text changes and associated author: Who was editing a part of text?', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(16) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 6, 'Search', 'Shows all Wiki pages which contain the entered search term. The search is supported in Standard-View only.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(13) DIV:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 7, 'Comments', 'Supports three modes of showing comments added to a Wiki page.', 'R', 0, '#link-76d39424649110401006432124ea88a2 A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 8, 'Show comments', 'All comments are shown as a block of text exactly in that position, in which they were added.', 'R', 0, '#link-76d39424649110401006432124ea88a2 A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('5d41c9760a3248313236af202275107c', 9, 'Hide comments', 'All added comments are hidden while displaying a page.', 'R', 0, '#link-b7e236be73b877f765813669fba3d56e A:eq(0)', 'wiki.php', '', '', '', 1441276241, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 1, 'Suche', 'Diese Tour gibt Ihnen einen Überblick über die wichtigsten Funktionen der \"Suche\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'B', 0, '', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405519865, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 2, 'Suchbegriff eingeben', 'In dieses Eingabefeld kann ein Suchbegriff (wie z.B. der Veranstaltungsname, Lehrperson) eingegeben werden.', 'B', 0, '#search-input', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520106, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 3, 'Semesterauswahl', 'Durch einen Klick auf das Drop-Down Menü kann bestimmt werden, auf welches Semester sich der Suchbegriff beziehen soll. \r\n\r\nStandardgemäß ist das aktuelle Semester eingestellt.', 'TL', 0, '#semester_filter DIV:eq(0)', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520208, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 4, 'Navigation', 'Falls nur in einem bestimmten Bereich (wie z.B. Lehre) gesucht werden soll, kann dieser hier ausgewählt werden.', 'BL', 0, '#tabs', 'dispatch.php/search/globalsearch', '', '', 'dozent@studip.de', 1406121826, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 5, 'Schnellsuche', 'Die Schnellsuche ist auch auf anderen Seiten von Stud.IP jederzeit verfügbar. Nach der Eingabe eines Stichwortes, wird mit \"Enter\" bestätigt, oder auf die Lupe rechts neben dem Feld geklickt.', 'B', 0, '#globalsearch-input', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520634, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('6849293baa05be5bef8ff438dc7c438b', 6, 'Weitere Suchmöglichkeiten', 'Neben Veranstaltungen besteht auch die Möglichkeit, im Archiv, nach Personen, nach Einrichtungen oder nach Ressourcen zu suchen.', 'R', 0, '#nav_search_resources A SPAN', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520751, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 1, 'Search', 'This tour provides an overview of the supplied search options.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'B', 0, '', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405519865, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 2, 'Enter search term', 'A search term (such as event name, lecturer) can be entered in this input field.', 'B', 0, '#search-input', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520106, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 3, 'Semester selection', 'With a click on the drop-down menu you can choose to which semester the search term should refer. \n\nThe current semester is set as standard.', 'TL', 0, '#semester_filter DIV:eq(0)', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520208, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 4, 'Navigation', 'If you want to search only one particular area, you can select one here.', 'BL', 0, '#tabs', 'dispatch.php/search/globalsearch', '', '', 'dozent@studip.de', 1406121826, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 5, 'Quick search', 'The quick search is also available on other sites of Stud.IP at all times. After entering a key word it is confirmed with \"Enter\" or by clicking the magnifying glass on the right next to the field.', 'B', 0, '#globalsearch-input', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520634, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7af1e1fb7f53c910ba9f42f43a71c723', 6, 'Further search possibilities', 'In addition to searching for events there is also the possibility to search the archive for persons, facilities, or resources.', 'R', 0, '#nav_search_resources A SPAN', 'dispatch.php/search/globalsearch', '', '', 'root@localhost', 1405520751, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 1, 'Meine Veranstaltungen', 'Diese Tour gibt einen Überblick über die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1406125847, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 2, 'Veranstaltungsüberblick', 'Hier werden die Veranstaltungen des aktuellen und vergangenen Semesters angezeigt. Neue Veranstaltungen erscheinen zunächst in rot.', 'BL', 0, '#my_seminars TABLE:eq(0) CAPTION:eq(0)', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406125908, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 3, 'Veranstaltungsdetails', 'Mit Klick auf das \"i\" erscheint ein Fenster mit den wichtigsten Eckdaten der Veranstaltung.', 'BR', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '#my_seminars TABLE:eq(0) TBODY:eq(0) TR:eq(1) TD:eq(5) NAV:eq(0)', 'dozent@studip.de', 1406125992, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 4, 'Veranstaltungsinhalte', 'Hier werden alle Inhalte (wie z.B. ein Forum) durch entsprechende Symbole angezeigt.\r\nFalls es seit dem letzten Login Neuigkeiten gab, erscheinen diese in rot.', 'B', 0, '#my_seminars .my-courses-navigation-item', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406126049, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 5, 'Bearbeitung oder Löschung einer Veranstaltung', 'Der Klick auf das Zahnrad ermöglicht die Bearbeitung einer Veranstaltung.\r\nFalls bei einer Veranstaltung Teilnehmerstatus besteht, kann hier eine Austragung, durch Klick auf das Tür-Icon, vorgenommen werden.', 'BR', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1406126134, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 6, 'Anpassung der Veranstaltungsansicht', 'Zur Anpassung der Veranstaltungsübersicht, kann man die Veranstaltungen nach bestimmten Kriterien (wie z.B. Studienbereiche, Lehrende oder Farben) gliedern.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(11) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1406126281, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 7, 'Zugriff auf Veranstaltung vergangener und zukünftiger Semester', 'Durch Klick auf das Drop-Down Menü können beispielsweise Veranstaltung aus vergangenen Semestern angezeigt werden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(1)', 'dispatch.php/my_courses', '', '', '', 1406126316, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 8, 'Weitere mögliche Aktionen', 'Hier können Sie alle Neuigkeiten als gelesen markieren, Farbgruppierungen nach Belieben ändern oder\r\nauch die Benachrichtigungen über Aktivitäten in den einzelnen Veranstaltungen anpassen.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1406126374, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('7cccbe3b22dfa745c17cb776fb04537c', 9, 'Studiengruppen und Einrichtungen', 'Es besteht zudem die Möglichkeit auf persönliche Studiengruppen oder Einrichtungen zuzugreifen.', 'R', 0, '#nav_browse_my_institutes A', 'dispatch.php/my_courses', '', '', '', 1406126415, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 1, 'What is Blubber?', 'This tour provides an overview of the functionality of \"Blubber\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'plugins.php/blubber/streams/forum', '', '', '', 1405507364, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 2, 'Create contribution', 'A discussion can be started here by writing a text. Paragraphs can be created by pressing shift+enter. The text will be sent by pressing enter.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405507478, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 3, 'Design text', 'The text can be formatted and smileys can be used.\n\nThe customary formatting such as e.g. **bold** or %%italics%% can be used.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405508371, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 4, 'Mention persons', 'Others can be informed about a post by mentioning them in the post, using the format @user name or @\'first name last name\'.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405672301, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 5, 'Add document', 'Documents can be inserted into a post by dragging them into an input field using drag&drop.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405508401, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 6, 'Hashtags', 'Posts can be issued with key words (\"hashtags\") by placing a # in front of the chosen word.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/forum', '', '', '', 1405508442, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 7, 'Hashtag cloud', 'By clicking on a hashtag, all posts containing this hashtag will be displayed.', 'RT', 0, 'DIV.sidebar-widget-header', 'plugins.php/blubber/streams/forum', '', '', '', 1405508505, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 8, 'Change contribution', 'If the cursor is positioned on a post, its date will appear. For your own posts an additional icon will appear on the right next to the date. This icon allow you to subsequently edit your post.', 'BR', 0, 'DIV DIV A SPAN.time', 'plugins.php/blubber/streams/forum', '', '', '', 1405507901, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('83dc1d25e924f2748ee3293aaf0ede8e', 9, 'Link contribution', 'If the cursor is positioned on the first contribution to the discussion a link icon will appear on the left next to the date. If this is clicked using the right mouse button the link can be copied on this contribution in order to be able to insert it in another place.', 'BR', 0, 'DIV DIV A.permalink', 'plugins.php/blubber/streams/forum', '', '', '', 1405508281, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 1, 'Forum', 'This tour provides an overview of the forum\'s elements and options of interaction.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'BL', 0, '', 'dispatch.php/course/forum', '', '', '', 1405415772, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 2, 'You are here:...', 'Here you can see which sector of the forum you are currently looking at.', 'BL', 0, 'DIV#tutorBreadcrumb', 'dispatch.php/course/forum', '', '', '', 1405415875, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 3, 'Category', 'The forum is divided into categories, topics and posts. A category summarises forum areas into larger units of meaning.', 'BL', 0, '#tutorCategory', 'dispatch.php/course/forum', '', '', '', 1405416611, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 4, 'Area', 'This is an area within a category. Areas contain threads. The order of areas can be altered using drag&drop', 'BL', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(1) DIV:eq(0) SPAN:eq(0) A:eq(0) SPAN:eq(0)', 'dispatch.php/course/forum', '', '', '', 1405416664, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 5, 'Info-Icon', 'This icon turns red as soon as there is something new in this sector.', 'B', 0, '#sortable_areas TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) A:eq(0) IMG:eq(0)', 'dispatch.php/course/forum', '', '', '', 1405416705, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 6, 'Search', 'All contents of this forum can be browsed here. Multiple word searches are also supported. In addition, the search can be limited to any combination of title, content and author.', 'BL', 0, '#tutorSearchInfobox DIV:eq(0)', 'dispatch.php/course/forum', '', '', '', 1405417134, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('89786eac42f52ac316790825b4f5c0b2', 7, 'Subscribe to forum', 'You can subscribe to the whole forum or individual topics . In this case a notification will be generated and you receive a meassage for each new post in this forum.', 'RT', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(9) DIV:eq(0)', 'dispatch.php/course/forum', '', '', 'dozent@studip.de', 1405416795, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 1, 'Profil-Tour', 'Diese Tour gibt Ihnen einen Überblick über die wichtigsten Funktionen des \"Profils\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'T', 0, '', 'dispatch.php/profile', '', '', '', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 2, 'Persönliches Bild', 'Wenn ein Bild hochgeladen wurde, wird es hier angezeigt. Dieses kann jederzeit geändert werden.', 'RT', 0, '.avatar-normal', 'dispatch.php/profile', '', '', '', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 3, 'Stud.IP-Score', 'Der Stud.IP-Score wächst mit den Aktivitäten in Stud.IP und repräsentiert so die Erfahrung mit Stud.IP.', 'BL', 0, '#layout_content TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) A:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 4, 'Ankündigungen', 'Sie können auf dieser Seite persönliche Ankündigungen veröffentlichen.', 'B', 0, '#layout_content ARTICLE:eq(0) HEADER:eq(0) H1:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 5, 'Neue Ankündigung', 'Klicken Sie auf das Plus-Zeichen, wenn Sie eine Ankündigung erstellen möchten.', 'BR', 0, '#layout_content ARTICLE:eq(0) HEADER:eq(0) NAV:eq(0) A:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('96ea422f286fb5bbf9e41beadb484a9a', 6, 'Persönliche Angaben', 'Weitere persönliche Angaben und Einstellungen können über diese Seiten geändert werden.', 'B', 0, '#tabs li:eq(2)', 'dispatch.php/profile', '', '', 'dozent@studip.de', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 1, 'Create study group', 'This tour provides an overview of the creation of study groups to cooperate with fellow students.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'R', 0, '', 'dispatch.php/my_studygroups', '', '', '', 1405684423, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 2, 'Create study group', 'A new study group can be created with a click on \"create new study group\".', 'BL', 0, '.sidebar-widget:eq(1) A:eq(0)', 'dispatch.php/my_studygroups', '', '.sidebar-widget:eq(1) li:eq(0) a:eq(0)', 'dozent@studip.de', 1406017730, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 3, 'Name a study group', 'The name of a study group should be meaningful and unique in the whole Stud.IP.', 'R', 0, '#wizard-name', 'dispatch.php/my_studygroups', '', '', '', 1405684720, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 4, 'Add description', 'The description makes it possible to display additional information that makes it easier to find the group.', 'L', 0, '#wizard-description', 'dispatch.php/my_studygroups', '', '', 'dozent@studip.de', 1405684806, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 5, 'Allocate content elements', 'Content elements can be activated here, which are to be available within the study group. The question mark provides more detailed information on the meaning of the individual content elements', 'R', 0, '#wizard-access', 'dispatch.php/my_studygroups', '', '', 'dozent@studip.de', 1405685093, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 6, 'Stipulate access', 'The access to the study group can be restricted with this drop down menu.\n\nAll students can register freely and participate in the group with the access \"open for everyone\".\n\nWith the access \"upon request\" participants must be added by the group founder.', 'R', 0, '#wizard-access', 'dispatch.php/my_studygroups', '', '', 'root@localhost', 1405685334, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 7, 'Accept terms of use', 'The terms of use have to be accepted before you can create a study group.', 'R', 0, '#ui-id-1 FORM:eq(0) FIELDSET:eq(0) LABEL:eq(4)', 'dispatch.php/my_studygroups', '', '', 'root@localhost', 1405685652, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('9e9dca9b1214294b9605824bfe90fba1', 8, 'Save study group', 'After you saved a study group it will appear under \"My courses\" > \"My study groups\".', 'L', 0, '#layout_content FORM TABLE TBODY TR TD :eq(14)', 'dispatch.php/my_studygroups', '', 'BUTTON.cancel:eq(0)', 'root@localhost', 1405686068, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 1, 'Möchten Sie sehen was in Stud.IP 5 neu ist?', '', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 2, '', 'Der OER Campus ermöglicht das Teilen und Finden von freien Lehr- und Lernmaterialien.', 'B', 0, '#nav_oer A:eq(0) IMG:eq(0)', 'dispatch.php/start', '', '', 'dozent@studip.de', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 3, '', '\"Mein Arbeitsplatz\" ersetzt und erweitert den Punkt \"Tools\" der früheren Stud.IP-Versionen. Hier finden Sie jetzt Ihre Fragebögen, Ankündigungen, Evaluationen und Dateien sowie Courseware und ggf. Zugang zu ILIAS.', 'B', 0, '#nav_contents A:eq(0) IMG:eq(0)', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 4, '', 'Sie können sich Ihre belegten Veranstaltungen jetzt auch in einer übersichtlichen Kacheldarstellung anzeigen lassen. Die ist besonders gut für Smartphones geeignet.', 'B', 0, '.sidebar-views:eq(1)', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 5, '', 'In Veranstaltungen finden Sie Optionen für Literatur nun im Dateibereich. Nachrichten lassen sich gleichzeitig an mehrere Gruppen versenden.', 'B', 0, '', 'dispatch.php/my_courses', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 6, '', 'Über die Terminvergabe können Sie freie Termine auf ihrer Profilseite veröffentlichen, die dann von anderen gebucht werden können, z.B. als Sprechstunde. Falls unterstützt, können Sie zu jedem Termin Videofunktionen einschalten.', 'B', 0, '', 'dispatch.php/profilemodules', '', '', 'dozent@studip.de', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('a848744bde4dac47ec2e8b383155381d', 7, '', 'Das waren nur die wichtigsten Änderungen. Stud.IP 5 enthält noch zahlreiche weitere Verbesserungen, die Ihnen die Arbeit hoffentlich etwas erleichtern. Schreiben Sie Feedback gerne an die Entwicklungscommunity unter feedback@studip.de', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 1, 'Meine Veranstaltungen', 'Diese Tour gibt einen Überblick über die wichtigsten Funktionen der Seite \"Meine Veranstaltungen\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1405521184, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 2, 'Veranstaltungsüberblick', 'Hier werden die Veranstaltungen des aktuellen und vergangenen Semesters angezeigt. Neue Veranstaltungen erscheinen zunächst in rot.', 'BL', 0, '#my_seminars TABLE:eq(0) CAPTION:eq(0)', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405521244, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 3, 'Veranstaltungsdetails', 'Mit Klick auf das \"i\" erscheint ein Fenster mit den wichtigsten Eckdaten der Veranstaltung.', 'L', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405931069, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 4, 'Veranstaltungsinhalte', 'Hier werden alle Inhalte (wie z.B. ein Forum) durch entsprechende Symbole angezeigt.\r\nFalls es seit dem letzten Login Neuigkeiten gab, erscheinen diese in rot.', 'LT', 0, '#my_seminars .my-courses-navigation-item', 'dispatch.php/my_courses', '', '', '', 1405931225, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 5, 'Verlassen der Veranstaltung', 'Ein Klick auf das Tür-Icon ermöglicht eine direkte Austragung aus der Veranstaltung.', 'L', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405931272, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 6, 'Anpassung der Veranstaltungsansicht', 'Zur Anpassung der Veranstaltungsübersicht können die Veranstaltungen nach bestimmten Kriterien (wie z.B. Studienbereiche, Lehrende oder Farben) gruppiert werden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(11) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932131, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 7, 'Zugriff auf Veranstaltung vergangener und zukünftiger Semester', 'Durch Klick auf das Drop-Down Menü können beispielsweise Veranstaltung aus vergangenen Semestern angezeigt werden.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932230, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 8, 'Weitere mögliche Aktionen', 'Hier können Sie alle Neuigkeiten als gelesen markieren, Farbgruppierungen nach Belieben ändern oder\r\nauch die Benachrichtigungen über Aktivitäten in den einzelnen Veranstaltungen anpassen.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932320, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('b74f8459dce2437463096d56db7c73b9', 9, 'Studiengruppen und Einrichtungen', 'Es besteht zudem die Möglichkeit auf persönliche Studiengruppen oder Einrichtungen zuzugreifen.', 'R', 0, '#nav_browse_my_institutes A', 'dispatch.php/my_courses', '', '', '', 1405932519, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 1, 'Participant administration', 'This tour provides an overview of the participant administration\'s options.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'B', 0, '', 'dispatch.php/course/members', '', '', '', 1405688399, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 2, 'Add persons', 'With these functions you can search for individual persons in Stud.IP and directly select them as lecturer, tutor or author. It is also possible to insert a list of participants in order to allocate several persons as a tutor of the event at the same time.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'dispatch.php/course/members', '', '', '', 1405688707, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 3, 'Upgrade/ downgrade', 'In order to upgrade an already enroled person to a tutor, or to downgrade them to a reader select this person in the list and carry out the requested action by using the dropdown menu.', 'T', 0, '#autor CAPTION', 'dispatch.php/course/members', '', '', '', 1405690324, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 4, 'Send circular e-mail', 'A circular e-mail can be sent to all participants of the event here.', 'R', 0, '#link-71a939b1cddd28322f902cdfbc330250 A:eq(0)', 'dispatch.php/course/members', '', '', 'dozent@studip.de', 1406636964, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('c89ce8e097f212e75686f73cc5008711', 5, 'Send circular e-mail to user group', 'There is further the possibility to send a circular e-mail to individual user groups.', 'BR', 0, '#autor CAPTION:eq(0) SPAN:eq(0) A:eq(0) IMG:eq(0)', 'dispatch.php/course/members', '', '', '', 1406637123, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 1, 'What is Blubber?', 'This tour provides an overview of the functionality of \"Blubber\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'plugins.php/blubber/streams/global', '', '', '', 1405507364, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 2, 'Create contribution', 'A discussion can be started here by writing a text. Paragraphs can be created by pressing shift+enter. The text will be sent by pressing enter.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405507478, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 3, 'Design text', 'The text can be formatted and smileys can be used.\n\nThe customary formatting such as e.g. **bold** or %%italics%% can be used.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405508371, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 4, 'Mention persons', 'Others can be informed about a post by mentioning them in the post, using the format @user name or @\'first name last name\'.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405672301, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 5, 'Add document', 'Documents can be inserted into a post by dragging them into an input field using drag&drop.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405508401, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 6, 'Hashtags', 'Posts can be issued with key words (\"hashtags\") by placing a # in front of the chosen word.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405508442, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 7, 'Hashtag cloud', 'By clicking on a hashtag, all posts containing this hashtag will be displayed.', 'RT', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(1)', 'plugins.php/blubber/streams/global', '', '', '', 1405508505, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 8, 'Change contribution', 'If the cursor is positioned on a post, its date will appear. For your own posts an additional icon will appear on the right next to the date. This icon allow you to subsequently edit your post.', 'BR', 0, 'DIV DIV A SPAN.time', 'plugins.php/blubber/streams/global', '', '', '', 1405507901, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9913517f9c81d2c0fa8362592ce5d0e', 9, 'Link contribution', 'If the cursor is positioned on the first contribution to the discussion a link icon will appear on the left next to the date. If this is clicked using the right mouse button the link can be copied on this contribution in order to be able to insert it in another place.', 'BR', 0, 'DIV DIV A.permalink', 'plugins.php/blubber/streams/global', '', '', '', 1405508281, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 1, 'OER Campus', 'Der OER Campus ist neu in Stud.IP 5. Hier können Lernmaterialien gesucht, verwaltet und mit anderen geteilt werden.', 'B', 0, '', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 2, '', 'Lernmaterialien aus dem OER Campus können von hier aus direkt im Dateibereich einer Veranstaltung bereitgestellt werden.', 'B', 0, '', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 3, '', 'Um gezielt Lernmaterialien zu suchen, können Sie hier einen Suchbegriff eingeben.', 'B', 0, 'INPUT[name=search]', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 4, '', 'Über die Filterfunktion können Sie die angezeigten Lernmaterialien weiter eingrenzen.', 'B', 0, '#layout_content FORM:eq(0) DIV:eq(0) DIV:eq(0) DIV:eq(0) BUTTON:eq(0)', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 5, '', 'Im Entdeckermodus finden Sie Lernmaterial nach Schlagwörtern und Themen geordnet.', 'L', 0, '#layout_content FORM:eq(0) DIV:eq(3) DIV:eq(0) DIV:eq(0) DIV:eq(1)', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 6, '', 'Wenn Sie selbst Lernmaterial erstellt haben, das Sie anderen zur Verfügung stellen möchten, können Sie es hier hochladen.', 'R', 0, 'div.sidebar-widget A:eq(0)', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('d9a066071e2be43b2b51c37a9d692026', 7, '', 'Ihr hochgeladenes Lernmaterial können Sie im Bereich \"Meine Materialien\" verwalten. Nutzen Sie den Entwurfsmodus, wenn Sie Ihr Material noch nicht veröffentlichen wollen.', 'B', 0, '#nav_oer_mymaterial A:eq(0)', 'dispatch.php/oer/market', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 1, 'Möchten Sie sehen was in Stud.IP 5 neu ist?', '', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 2, '', 'Der OER Campus ermöglicht das Teilen und Finden von freien Lehr- und Lernmaterialien.', 'B', 0, '#nav_oer A:eq(0) IMG:eq(0)', 'dispatch.php/start', '', '', 'dozent@studip.de', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 3, '', '\"Mein Arbeitsplatz\" ersetzt und erweitert den Punkt \"Tools\" der früheren Stud.IP-Versionen. Hier finden Sie jetzt Ihre Fragebögen, Ankündigungen, Evaluationen und Dateien sowie Courseware und ggf. Zugang zu ILIAS.', 'B', 0, '#nav_contents A:eq(0) IMG:eq(0)', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 4, '', 'Sie können sich Ihre belegten Veranstaltungen jetzt auch in einer übersichtlichen Kacheldarstellung anzeigen lassen. Die ist besonders gut für Smartphones geeignet.', 'B', 0, '.sidebar-views:eq(1)', 'dispatch.php/my_courses', '', '', 'dozent@studip.de', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 5, '', 'In Veranstaltungen finden Sie Optionen für Literatur nun im Dateibereich. Nachrichten lassen sich gleichzeitig an mehrere Gruppen versenden.', 'B', 0, '', 'dispatch.php/my_courses', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('dac47ec2e8a848744bde4b3881d31553', 6, '', 'Das waren nur die wichtigsten Änderungen. Stud.IP 5 enthält noch zahlreiche weitere Verbesserungen, die Ihnen die Arbeit hoffentlich etwas erleichtern. Schreiben Sie Feedback gerne an die Entwicklungscommunity unter feedback@studip.de', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1630577268, 1630577268);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 1, 'Profile tour', 'This tour provides a general overview of the profile page\'s structure.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'T', 0, '', 'dispatch.php/profile', '', '', '', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 2, 'Personal picture', 'If you uploaded a picture, it will be displayed here. You can change it at all times.', 'RT', 0, '.avatar-normal', 'dispatch.php/profile', '', '', '', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 3, 'Stud.IP-Score', 'The Stud.IP-Score increases with the activities in Stud.IP and thus represents the experience with Stud.IP.', 'BL', 0, '#layout_content TABLE:eq(0) TBODY:eq(0) TR:eq(0) TD:eq(0) A:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 4, 'Announcements', 'You can publish personal announcements on this site.', 'B', 0, '#layout_content ARTICLE:eq(0) HEADER:eq(0) H1:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 5, 'New announcement', 'Click on the plus sign, if you would like to create an announcement.', 'BR', 0, '#layout_content ARTICLE:eq(0) HEADER:eq(0) NAV:eq(0) A:eq(0)', 'dispatch.php/profile', '', '', '', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('de1fbce508d01cbd257f9904ff8c3b43', 6, 'Personal details', 'Your picture and additional user data can be changed on these sites.', 'B', 0, '#tabs li:eq(2)', 'dispatch.php/profile', '', '', 'dozent@studip.de', 1406722657, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 1, 'Teilnehmerverwaltung', 'Diese Tour gibt einen Überblick über die Teilnehmerverwaltung einer Veranstaltung.\r\n\r\nUm zum nächsten Schritt zu gelangen, klicken Sie bitte rechts unten auf \"Weiter\".', 'B', 0, '', 'dispatch.php/course/members', '', '', '', 1405688399, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 2, 'Personen eintragen', 'Mit diesen Funktionen können entweder einzelne Personen in Stud.IP gesucht und direkt mit dem Status Dozent, Tutor oder Autor eintragen werden. Es ist auch möglich eine Teilnehmerliste einzugeben, um viele Personen auf einmal als TutorIn der Veranstaltung zuzuordnen.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(6) DIV:eq(0)', 'dispatch.php/course/members', '', '', '', 1405688707, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 3, 'Hochstufen / Herabstufen', 'Um eine bereits eingetragene Person zum/zur TutorIn hochzustufen oder zum/zur LeserIn herabzustufen, wählen Sie diese Person in der Liste aus und führen Sie mit Hilfe des Dropdown-Menü die gewünschte Aktion aus.', 'T', 0, '#autor CAPTION', 'dispatch.php/course/members', '', '', '', 1405690324, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 4, 'Rundmail verschicken', 'Hier kann eine Rundmail an alle Teilnehmende der Veranstaltung verschickt werden.', 'R', 0, '#link-71a939b1cddd28322f902cdfbc330250 A:eq(0)', 'dispatch.php/course/members', '', '', 'dozent@studip.de', 1406636964, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('edfcf78c614869724f93488c4ed09582', 5, 'Rundmail an Nutzergruppe versenden', 'Weiterhin besteht die Möglichkeit eine Rundmail an einzelne Nutzergruppen zu versenden.', 'BR', 0, '#autor CAPTION:eq(0) SPAN:eq(0) A:eq(0) IMG:eq(0)', 'dispatch.php/course/members', '', '', '', 1406637123, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 1, 'Was ist Blubbern?', 'Diese Tour gibt Ihnen einen Überblick über die wichtigsten Funktionen von \"Blubber\".\r\n\r\nUm auf den nächsten Schritt zu kommen, klicken Sie bitte rechts unten auf \"Weiter\".', 'TL', 0, '', 'plugins.php/blubber/streams/global', '', '', '', 1405507364, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 2, 'Beitrag erstellen', 'Hier kann eine Diskussion durch Schreiben von Text begonnen werden. Absätze lassen sich durch Drücken von Umschalt+Eingabe erzeugen. Der Text wird durch Drücken von Eingabe abgeschickt.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405507478, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 3, 'Text gestalten', 'Der Text kann formatiert und mit Smileys versehen werden.\r\nEs können die üblichen Formatierungen verwendet werden, wie z. B. **fett** oder %%kursiv%%.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405508371, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 4, 'Personen erwähnen', 'Andere können über einen Beitrag informiert werden, indem sie per @benutzername oder @\"Vorname Nachname\" im Beitrag erwähnt werden.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405672301, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 5, 'Datei hinzufügen', 'Dateien können in einen Beitrag eingefügt werden, indem sie per Drag&Drop in ein Eingabefeld gezogen werden.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405508401, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 6, 'Schlagworte', 'Beiträge können mit Schlagworten (engl. \"Hashtags\") versehen werden, indem einem beliebigen Wort des Beitrags ein # vorangestellt wird.', 'BL', 0, 'TEXTAREA#new_posting.autoresize', 'plugins.php/blubber/streams/global', '', '', '', 1405508442, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 7, 'Schlagwortwolke', 'Durch Anklicken eines Schlagwortes werden alle Beiträge aufgelistet, die dieses Schlagwort enthalten.', 'RT', 0, '#layout-sidebar SECTION DIV DIV.sidebar-widget-header :eq(1)', 'plugins.php/blubber/streams/global', '', '', '', 1405508505, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 8, 'Beitrag ändern', 'Wird der Mauszeiger auf einem beliebigen Beitrag positioniert, erscheint dessen Datum. Bei eigenen Beiträgen erscheint außerdem rechts neben dem Datum ein Icon, mit dem der Beitrag nachträglich geändert werden kann.', 'BR', 0, 'DIV DIV A SPAN.time', 'plugins.php/blubber/streams/global', '', '', '', 1405507901, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('ef5092ba722c81c37a5a6bd703890bd9', 9, 'Beitrag verlinken', 'Wird der Mauszeiger auf dem ersten Diskussionsbeitrag positioniert, erscheint links neben dem Datum ein Link-Icon. Wenn dieses mit der rechten Maustaste angeklickt wird, kann der Link auf diesen Beitrag kopiert werden, um ihn an anderer Stelle einfügen zu können.', 'BR', 0, 'DIV DIV A.permalink', 'plugins.php/blubber/streams/global', '', '', '', 1405508281, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 1, 'Functions and design possibilities of the start page', 'This tour provides an overview of the start page\'s features and functions.\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'B', 0, '', 'dispatch.php/start', '', '', 'root@localhost', 1405934926, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 2, 'Individual design of the start page', 'The default configuration of the start page is that the elements \"Quicklinks\", \"announcements\", \"my current appointments\" and \"surveys\" are displayed. The elements are called widgets and can be deleted, added and moved. Each widget can be individually added, deleted and moved.', 'TL', 0, '', 'dispatch.php/start', '', '', '', 1405934970, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 3, 'Add widget', 'Widgets can be added here. In addition to the standard widgets the personal timetable can, for example, be displayed on the start page. Newly added widgets appear right at the bottom on the start page. In addition, it is possible to jump directly to each widget in the sidebar.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0)', 'dispatch.php/start', '', '', '', 1405935192, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 4, 'Jump labels', 'In addition, it is possible to jump directly to each widget using jump labels.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(2) DIV:eq(0)', 'dispatch.php/start', '', '', '', 1406623464, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 5, 'Position widget', 'A widget can be moved to the desired position using drag&drop: For this purpose you click into the headline of a widget, hold down the mouse button, and drag the widget to the desired position.', 'B', 0, '.widget-header', 'dispatch.php/start', '', '', '', 1405935687, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 6, 'Edit widget', 'With several widgets a further symbol is displayed in addition to the X for closing. The widget \"Quicklinks\", for example, can be adjusted individually by clicking on this button, the announcements can be subscribed to and appointments can be added with the actual appointments or timetable.', 'L', 0, '#widget-8', 'dispatch.php/start', '', '', '', 1405935792, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('f0aeb0f6c4da3bd61f48b445d9b30dc1', 7, 'Remove widget', 'Each widget can be removed by clicking on the X in the right upper corner. If required, it can be added again at all times.', 'R', 0, '.widget-header', 'dispatch.php/start', '', '', '', 1405935376, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 1, 'My courses', 'This tour provides an overview of the functionality of \"My courses\".\r\n\rTo proceed, please click \"Continue\" in the lower-right corner.', 'TL', 0, '', 'dispatch.php/my_courses', '', '', '', 1405521184, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 2, 'Overview of courses', 'The courses of the current and past semester are displayed here. New courses initially appear in red.', 'BL', 0, '#my_seminars TABLE:eq(0) CAPTION:eq(0)', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405521244, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 3, 'Course details', 'With a click on the \"i\" a window appears with the most important benchmark data of the course.', 'L', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405931069, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 4, 'Course contents', 'All contents (such as e.g. a forum) are displayed by corresponding symbols here.\n\nIf there were any news since the last login these will appear in red.', 'LT', 0, '#my_seminars .my-courses-navigation-item', 'dispatch.php/my_courses', '', '', '', 1405931225, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 5, 'Leaving the course', 'A click on the door icon enables a direct removal from the course', 'L', 0, '#my_seminars .action-menu-icon', 'dispatch.php/my_courses', '', '', 'autor@studip.de', 1405931272, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 6, 'Adjustment to the course view', 'In order to adjust the course overview you can arrange your courses according to certain criteria (such as e.g. fields of study, lecturers or colours).', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(11) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932131, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 7, 'Access to an course of past and future semesters', 'By clicking on the drop-down menu courses from past semesters can be displayed for example.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(5) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932230, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 8, 'Further possible actions', 'Here you can mark all news as read, change colour groups as you please, or\n\nalso adjust the notifications about activities in the individual events.', 'R', 0, '#layout-sidebar SECTION:eq(0) DIV:eq(8) DIV:eq(0)', 'dispatch.php/my_courses', '', '', '', 1405932320, 0);
INSERT INTO `help_tour_steps` (`tour_id`, `step`, `title`, `tip`, `orientation`, `interactive`, `css_selector`, `route`, `action_prev`, `action_next`, `author_email`, `mkdate`, `chdate`) VALUES('fa963d2ca827b28e0082e98aafc88765', 9, 'Study groups and institutes', 'There is moreover the possibility to access personal study groups or institutes.', 'R', 0, '#nav_browse_my_institutes A', 'dispatch.php/my_courses', '', '', '', 1405932519, 0);
INSERT INTO `i18n` (`object_id`, `table`, `field`, `lang`, `value`) VALUES('28cb0aeb29e9b3046b6c2e958566d6a5', 'config', 'value', 'en_GB', 'Date allocation');
INSERT INTO `i18n` (`object_id`, `table`, `field`, `lang`, `value`) VALUES('3c28f017886d9acf0b0f654195ec478f', 'config', 'value', 'en_GB', 'Using two-factor authentication you can protect your account by entering a token on each login. You get that token either via E-Mail or by using an appropriate authenticator app.');
INSERT INTO `i18n` (`object_id`, `table`, `field`, `lang`, `value`) VALUES('698096bc7269ee90517c6f22a8711b4e', 'config', 'value', 'en_GB', 'Some of your personal data is not managed in Stud.IP and therefore cannot be changed here.');
INSERT INTO `i18n` (`object_id`, `table`, `field`, `lang`, `value`) VALUES('e98bde4d61d028203eb3c2c26fa5ac4a', 'config', 'value', 'en_GB', 'Set up a suitable OTP authenticator app for this purpose. Here you will find a list of known and compatible apps:\n- [Authy]https://authy.com/\n- [FreeOTP]https://freeotp.github.io/\n- Google Authenticator: [Android]https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2 oder [iOS]https://apps.apple.com/app/google-authenticator/id388497605\n- [LastPass Authenticator]https://lastpass.com/auth/\n- [Microsoft Authenticator]https://www.microsoft.com/authenticator');
INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-1.0', 'Creative Commons Attribution 1.0 Generic', 'https://creativecommons.org/licenses/by/1.0/legalcode', 0, NULL, 'CC_BY', '1.0', 1640797278, 1640797278);
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);
INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-3.0', 'Creative Commons Attribution 3.0 Unported', 'https://creativecommons.org/licenses/by/3.0/legalcode', 0, NULL, 'CC_BY', '3.0', 1640797278, 1640797278);
INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-4.0', 'Creative Commons Attribution 4.0 International', 'https://creativecommons.org/licenses/by/4.0/legalcode', 0, NULL, 'CC_BY', '4.0', 1640797278, 1640797278);
INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-SA-1.0', 'Creative Commons Attribution Share Alike 1.0 Generic', 'https://creativecommons.org/licenses/by-sa/1.0/legalcode', 0, NULL, 'CC_BY_SA', '1.0', 1640797278, 1640797278);
INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-SA-2.0', 'Creative Commons Attribution Share Alike 2.0 Generic', 'https://creativecommons.org/licenses/by-sa/2.0/legalcode', 0, NULL, 'CC_BY_SA', '2.0', 1640797278, 1640797278);
INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-SA-2.5', 'Creative Commons Attribution Share Alike 2.5 Generic', 'https://creativecommons.org/licenses/by-sa/2.5/legalcode', 0, NULL, 'CC_BY_SA', '2.5', 1640797278, 1640797278);
INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-SA-3.0', 'Creative Commons Attribution Share Alike 3.0 Unported', 'https://creativecommons.org/licenses/by-sa/3.0/legalcode', 0, NULL, 'CC_BY_SA', '3.0', 1640797278, 1640797278);
INSERT INTO `licenses` (`identifier`, `name`, `link`, `default`, `description`, `twillo_licensekey`, `twillo_cclicenseversion`, `chdate`, `mkdate`) VALUES('CC-BY-SA-4.0', 'Creative Commons Attribution Share Alike 4.0 International', 'https://creativecommons.org/licenses/by-sa/4.0/legalcode', 1, NULL, 'CC_BY_SA', '4.0', 1640797278, 1640797278);
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);
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);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('005df8d5eb23c66214b28b3c9792680b', 'SEM_CHANGED_ACCESS', 'Zugangsberechtigungen geändert', '%user ändert die Zugangsberechtigungen der Veranstaltung %sem(%affected).', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('00af9c41fc56b617097bdef1e7dca397', 'MVV_FACHINST_NEW', 'MVV: Fach-Einrichtung Zuweisung erstellen', '%user weist das Fach %fach(%affected) der Einrichtung %inst(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('04061e4d13b416e10d6094679e7c9d9c', 'MVV_MODULTEIL_DEL', 'MVV: Modulteil löschen', '%user löscht Modulteil %modulteil(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('060390e972f9580ab92c7febb99fb2fa', 'MVV_LVSEMINAR_NEW', 'MVV: LV-Gruppe zu Veranstaltung Zuweisung erstellen', '%user weist der LV-Gruppe %lvgruppe(%affected) der Veranstaltung %sem(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('07c384b8328f56a33b4edb2570e85a48', 'MVV_MODULTEIL_DESK_NEW', 'MVV: Modulteil Deskriptor erstellen', '%user erstellt neuen Modulteil Deskriptor %modulteildesk(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('08a643645ddb5d3df5826d9fa863f665', 'MVV_STGTEILABS_NEW', 'MVV: Studiengangteilabschnitt erstellen', '%user erstellt neuen Studiengangteilabschnitt %stgteilabs(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('0966a73e85ac73c64818cc6eae4be09e', 'MVV_MODUL_USER_DEL', 'MVV: Person zu Modul Zuweisung löschen', '%user löscht die Zuweisung von %user(%coaffected) als %gruppe zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('0a3d58fbc0964ed9d85950e4d729715d', 'MVV_STUDIENGANG_NEW', 'MVV: Studiengang erstellen', '%user erstellt neuen Studiengang %stg(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('0d87c25b624b16fb9b8cdaf9f4e96e53', 'INST_CREATE', 'Einrichtung anlegen', '%user legt Einrichtung %inst(%affected) an.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('0e46eec26da0b0217280e8be4b26227b', 'MVV_ABS_ZUORD_DEL', 'MVV: Abschluss-Kategorien Zuweisung löschen', '%user löscht die Zuweisung des Abschlusses %abschluss(%affected) zur Kategorie %abskategorie(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('0ee290df95f0547caafa163c4d533991', 'SEM_VISIBLE', 'Veranstaltung sichtbar schalten', '%user schaltet %sem(%affected) sichtbar.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('0ef58f0b0a97d83616efc6e9479c522e', 'MVV_FACHBERATER_DEL', 'MVV: Person zu Fach Zuweisung löschen', '%user löscht die Zuweisung von %user(%coaffected) zum Studiengangteil %stgteil(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('10916a5a08ca16bfd055e4823311377a', 'MVV_DOK_ZUORD_DEL', 'MVV: Dokumentzuordnung löschen', '%user löscht die Zuweisung des Dokumentes %dokument(%affected) zu %object_type(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('10c31be1aec819c03b0dc299d0111576', 'CHANGE_BASIC_DATA', 'Basisdaten geändert', '%user hat in Veranstaltung %sem(%affected) die Daten %info geändert.', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('10c320bc80022f1ff1381857af46f474', 'SEM_DEL_FROM_GROUP', 'Veranstaltung aus Gruppe entfernen', '%user entfernt Veranstaltung %sem(%affected) aus der Gruppe %sem(%coaffected).', 1, 0, NULL, NULL, 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('13b5297079e1600ccc3ca6f49081099f', 'MVV_STG_STGTEIL_DEL', 'MVV: Studiengang zu Studiengangteil Zuweisung löschen', '%user löscht die Zuweisung des Studienganges %stg(%affected) zum Studiengangteil %stgteil(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('157f75beb242c7de8ff790d4005a259e', 'MVV_FACH_DEL', 'MVV: Fach löschen', '%user löscht Fach %fach(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('1585bb70e5e403fd818e59bb622db4a3', 'STATUSGROUP_ADD_USER', 'Nutzer wird zu einer Statusgruppe hinzugefügt', '%user fügt %user(%affected) zur %group(%coaffected) hinzu.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('17f0a527e9db7dec09687a70681559cf', 'RES_ASSIGN_DEL_SINGLE', 'Direktbuchung löschen', '%user löscht Direktbuchung für %res(%affected) (%info).', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('1a1e8c9c3125ea8d2c58c875a41226d6', 'INST_DEL', 'Einrichtung löschen', '%user löscht Einrichtung %info (%affected).', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('1a27a101df926fafce35635f0dd72522', 'MVV_MODULTEIL_NEW', 'MVV: Modulteil erstellen', '%user erstellt neuen Modulteil %modulteil(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('1e6debdbfd7a7aeef2dcb61fa65beddd', 'MVV_ABSCHLUSS_DEL', 'MVV: Abschluss löschen', '%user löscht Abschluss %abschluss(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('1eb6597264fc19da6b48f519c3e47078', 'MVV_MODUL_DESK_DEL', 'MVV: Modul Deskriptor löschen', '%user löscht Modul Deskriptor %moduldesk(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('23f50ebeab22138bc959f27111ae5ab0', 'MVV_STG_STGTEIL_NEW', 'MVV: Studiengang zu Studiengangteil Zuweisung erstellen', '%user weist den Studiengang %stg(%affected) dem Studiengangteil %stgteil(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('23f7a87368df1132df137e7d320fa698', 'MVV_LVMODULTEIL_NEW', 'MVV: LV-Gruppe zu Modulteil Zuweisung erstellen', '%user weist der LV-Gruppe %lv(%affected) den Modulteil %modulteil(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('2420da2946df66a5ad96c6d45e97d5b9', 'SEM_ADD_STUDYAREA', 'Studienbereich zu Veranst. hinzufügen', '%user fügt Studienbereich \"%studyarea(%coaffected)\" zu %sem(%affected) hinzu.', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('248f54105b7102e5cbcc36e9439504fb', 'STUDYAREA_ADD', 'Studienbereich hinzufügen', '%user legt Studienbereich %studyarea(%affected) an.', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('292b1cf6c0b46d7038baa75e0b273299', 'MVV_MODUL_DEL', 'MV: Modul löschen', '%user löscht Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('293a742d791a1edbaaa738f8991aeb7b', 'MVV_LVSEMINAR_UPDATE', 'MVV: LV-Gruppe zu Veranstaltung Zuweisung ändern', '%user ändert die Zuweisung der LV-Gruppe %lvgruppe(%affected) zur Veranstaltung %sem(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('2dd254c28cac83c59856fe89500e3bc3', 'MVV_STGTEILABS_MODUL_DEL', 'MVV: Stgteilabschnitt-Modul Zuweisung löschen', '%user löscht die Zuweisung des Studiengangteilabschnitts %stgteilabs(%affected) zum Modul %modul(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('2e816bfd792e4a99913f11c04ad49198', 'SEM_UNDELETE_SINGLEDATE', 'Einzeltermin wiederherstellen', '%user stellt Einzeltermin %singledate(%affected) in %sem(%coaffected) wieder her.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('30dfb509cb1a8e228af3bd17dd6c8d1d', 'RES_ASSIGN_SEM', 'Buchen einer Ressource (VA)', '%user bucht %res(%affected) für %sem(%coaffected) (%info).', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('31fd4549853915608facb8c3e2b101d6', 'MVV_STGTEIL_DEL', 'MVV: Studiengangteil löschen', '%user löscht Studiengangteil %stgteil(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('347738302758bea951248b255409fa85', 'MVV_KATEGORIE_UPDATE', 'MVV: Abschluss-Kategorie ändern', '%user ändert Abschluss-Kategorie %abskategorie(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('370db4eb0e38051dd3c5d7c52717215a', 'SEM_DELETE_SINGLEDATE_REQUEST', 'Einzeltermin, Raumanfrage gelöscht', '%user hat in %sem(%affected) die Raumanfrage für den Termin <em>%coaffected</em> gelöscht.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('3861d5249b8fe7f2be57adfda8944f4d', 'MVV_LVGRUPPE_UPDATE', 'MVV: LV-Gruppe ändern', '%user ändert LV-Gruppe %lvgruppe(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('39082f4fbfe61ff3aee8e93f47bc1722', 'FILE_DELETE', 'Nutzer löscht Datei', '%user löscht Datei %info (File-Id: %affected)', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('398c62a78ec7e2b72d88cce504c2730f', 'MVV_MODULTEIL_STGTEILABS_NEW', 'MVV: Studiengangteilabschnitt zu Modulteil Zuweisung erstellen', '%user weist den Modulteil %modulteil(%affected) dem Studiengangteilabschnitt %stgteilabs(%coaffected) im %fachsem. Fachsemester zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('3f7dcf6cc85d6fba1281d18c4d9aba6f', 'SEM_ADD_SINGLEDATE', 'Einzeltermin hinzufügen', '%user hat in %sem(%affected) den Einzeltermin <em>%coaffected</em> hinzugefügt', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('3f9b68eacae768ff01cc1cc2d0d82174', 'MVV_FACHBERATER_NEW', 'MVV: Person zu Fach Zuweisung erstellen', '%user weist dem Studiengangteil %stgteil(%affected) %user(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('40455e06f6a679cd87c68c375c9dfa5a', 'MVV_STGTEILBEZ_DEL', 'MVV: Studiengangteil-Bezeichnung löschen', '%user löscht Studiengangteil-Bezeichnung %stgteilbez(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('428c09d5a31b1057b08ca5e3b3877109', 'MVV_FACHBERATER_UPDATE', 'MVV: Person zu Fach Zuweisung ändern', '%user ändert die Zuweisung von %user(%coaffected) zum Studiengangteil %stgteil(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('42b01c873e3066a840ab3237e3aa0911', 'RES_PERM_CHANGE', 'Änderung der Berechtigungsstufe an einer Ressource.', '%user ändert Berechtigung von %res(%affected): %info', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('447d6ae1b51b97b04f7ae290c6b002d7', 'MVV_DOKUMENT_DEL', 'MVV: Dokument löschen', '%user löscht Dokument %dokument(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('4490aa3d29644e716440fada68f54032', 'LOG_ERROR', 'Allgemeiner Log-Fehler', 'Allgemeiner Logging-Fehler, Details siehe Debug-Info.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('46bc7faabfc73864998b561b1011e3fe', 'RES_REQUEST_UPDATE', 'Geänderte Raumanfrage', '%user ändert Raumanfrage für %sem(%affected), gewünschter Raum: %res(%coaffected), %info', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('4765700be65e3fe1c12e7d74a2579bed', 'MVV_MODULINST_UPDATE', 'MVV: Modul-Einrichtung Beziehung ändern', '%user ändert die Zuweisung der Einrichtungen %inst(%coaffected) zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('47c4f06ce3de71213b69d8d0f8d24f8e', 'MVV_MODUL_LANG_NEW', 'MVV: Sprache zu Modul Zuweisung erstellen', '%user weist dem Modul %modul(%affected) die Unterrichtssprache %language(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('4869cd69f20d4d7ed4207e027d763a73', 'INST_USER_STATUS', 'Einrichtungsnutzerstatus ändern', '%user ändert Status für %user(%coaffected) in Einrichtung %inst(%affected): %info.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('494b5df89948da383d087107d4c0bbec', 'MVV_LVSEMINAR_DEL', 'MVV: LV-Gruppe zu Veranstaltung Zuweisung löschen', '%user löscht die Zuweisung der LV-Gruppe %lvgruppe(%affected) zur Veranstaltung %sem(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('499a15daf534b3d810e6b9bac9a00d3e', 'MVV_MODUL_USER_NEW', 'MVV: Person zu Modul Zuweisung erstellen', '%user weist dem Modul %modul(%affected) %user(%coaffected) als %gruppe zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('49d58ac93d608d731696eb75b29a1836', 'MVV_FACH_NEW', 'MVV: Fach erstellen', '%user erstellt neues Fach %fach(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('4b08c6b8539466a1f1968b44ec2996ed', 'MVV_LVMODULTEIL_DEL', 'MVV: LV-Gruppe zu Modulteil Zuweisung löschen', '%user löscht die Zuweisung der LV-Gruppe %lv(%affected) zum Modulteil %modulteil(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('4dd6b4101f7bf3bd7fe8374042da95e9', 'USER_NEWPWD', 'Neues Passwort', '%user generiert neues Passwort für %user(%affected)', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('4e2cf05ca311e5a616a7612ce8f5a885', 'MVV_MODULTEIL_STGTEILABS_DEL', 'MVV: Studiengangteilabschnitt zu Modulteil Zuweisung löschen', '%user löscht die Zuweisung des Modulteils %modulteil(%affected) im %fachsem. des Studiengangteilabschnitt %stgteilabs(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('535010528d6c012ec0e3535e2d754f66', 'SEM_USER_ADD', 'In Veranstaltung eingetragen', '%user hat %user(%coaffected) für %sem(%affected) mit dem status %info eingetragen. (%dbg_info)', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('54fb2968cd737ed53f300864ee507260', 'USER_UNLOCK', 'Nutzer wird entsperrt', '%user entsperrt %user(%affected) (%info)', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('566a614092e9f502d9340467ecef59d1', 'MVV_STGTEILVERSION_UPDATE', 'MVV: Studiengangteilversion ändern', '%user ändert Studiengangteilversion %version(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('5a34b0ea6a824f96c0117a035d1cf9e9', 'MVV_DOKUMENT_UPDATE', 'MVV: Dokument ändern', '%user ändert Dokument %dokument(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('5b96f2fe994637253ba0fe4a94ad1b98', 'SEM_ARCHIVE', 'Veranstaltung archivieren', '%user archiviert %info (ID: %affected).', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('5f8fda12a4c0bd6eadbb94861de83696', 'SEM_ADD_CYCLE', 'Regelmäßige Zeit hinzugefügt', '%user hat in %sem(%affected) die regelmäßige Zeit %info hinzugefügt.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('5fd9b4ddb5c4e035c0b0e7751613cd94', 'MVV_STGTEILABS_MODUL_NEW', 'MVV: Stgteilabschnitt-Modul Zuweisung erstellen', '%user weist dem Studiengangteilabschnitt %stgteilabs(%affected) dem Modul %Modul(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('63031a1eb903c1092752521ccf4b7456', 'FOLDER_DELETE', 'Nutzer löscht Ordner', '%user löscht Datei %info (Folder-Id: %affected)', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('63042706e5cd50924987b9515e1e6cae', 'INST_USER_ADD', 'Benutzer zu Einrichtung hinzufügen', '%user fügt %user(%coaffected) zu Einrichtung %inst(%affected) mit Status %info hinzu.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('64c30d6741b4799dc06456cb8b5fbab9', 'USER_LOCK', 'Nutzer wird gesperrt', '%user sperrt %user(%affected) (%info)', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('65c495cf5d5fcd7af862106bf13cff23', 'MVV_STGTEIL_UPDATE', 'MVV: Studiengangteil ändern', '%user ändert Studiengangteil %stgteil(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('687433f4cf1b36cb93ad417738236484', 'MVV_STGTEILABS_UPDATE', 'MVV: Studiengangteilabschnitt ändern', '%user ändert Studiengangteilabschnitt %stgteilabs(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('6af3ec5cc886036fd7795a66035a7cbd', 'MIGRATE_DOWN', 'Migration wird zurückgenommen', '%user hat Migration %affected zurückgenommen (Domain: %coaffected)', 1, 0, NULL, NULL, NULL, 1640797279, 1640797279);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('6be59dcd70197c59d7bf3bcd3fec616f', 'INST_USER_DEL', 'Benutzer aus Einrichtung löschen', '%user löscht %user(%coaffected) aus Einrichtung %inst(%affected).', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('6c5d5ed836c464be1c5547adcec3eae0', 'MVV_MODULTEIL_LANG_UPDATE', 'MVV: Sprache zu Modulteil Zuweisung ändern', '%user ändert die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modulteil %modulteil(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('6e2b789a57b9125af59c0273f5b47cb1', 'SEM_USER_DEL', 'Aus Veranstaltung ausgetragen', '%user hat %user(%coaffected) aus %sem(%affected) ausgetragen. (%info)', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('6f4bb66c1caf89879d89f3b1921a93dd', 'SEM_DELETE_CYCLE', 'Regelmäßige Zeit gelöscht', '%user hat in %sem(%affected) die regelmäßige Zeit %info gelöscht.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('71bfea5eb0d9a85d1247b83383ac5b7e', 'MVV_MODUL_DESK_NEW', 'MVV: Modul Deskriptor erstellen', '%user erstellt neuen Modul Deskriptor %moduldesk(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('754708c8c0c61a916855c5031014acbb', 'SEM_DELETE_STUDYAREA', 'Studienbereich aus Veranst. löschen', '%user entfernt Studienbereich \"%studyarea(%coaffected)\" aus %sem(%affected).', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('770f76504dcbbfa6bdc51a8c0f6df4b2', 'MVV_STGTEILABS_DEL', 'MVV: Studiengangteilabschnitt löschen', '%user löscht Studiengangteilabschnitt %stgteilabs(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('77df7d29c7a5cde1dff72a4a37f85414', 'MIGRATE_UP', 'Migration wird durchgeführt', '%user hat Migration %affected ausgeführt (Domain: %coaffected)', 1, 0, NULL, NULL, NULL, 1640797279, 1640797279);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('7d26ffbf73103601966f7517e40d7e66', 'RES_REQUEST_NEW', 'Neue Raumanfrage', '%user stellt neue Raumanfrage für %sem(%affected), gewünschter Raum: %res(%coaffected), %info', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('7d37d874592eea50eef5239fb7b8e3d7', 'MVV_MODULTEIL_LANG_DEL', 'MVV: Sprache zu Modulteil Zuweisung löschen', '%user löscht die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modulteil %modulteil(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('7f2ec1cbf988eee849de7cfa031b68f9', 'MVV_STGTEILVERSION_DEL', 'MVV: Studiengangteilversion löschen', '%user löscht Studiengangteilversion %version(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('7f335b5d0d9f8d37652718cb89937b38', 'MVV_STGTEIL_NEW', 'MVV: Studiengangteil erstellen', '%user erstellt neuen Studiengangteil %stgteil(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('8216cba6119cf4a4de82ec3ce8ac51b7', 'MVV_MODUL_USER_UPDATE', 'MVV: Person zu Modul Zuweisung ändern', '%user ändert die Zuweisung von %user(%coaffected) als %gruppe zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('89114dcd6f02dd7f94488a616c21a7c3', 'PLUGIN_ENABLE', 'Plugin einschalten', '%user hat in Veranstaltung %sem(%affected) das Plugin %plugin(%coaffected) aktiviert.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('897207a36c411d736947052219624b72', 'USER_CHANGE_PASSWORD', 'Nutzerpasswort geändert', '%user ändert/setzt das Passwort für %user(%affected)', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('8aad296e52423452fc75cabaf2bee384', 'USER_CHANGE_USERNAME', 'Benutzernamen ändern', '%user ändert/setzt Benutzernamen für %user(%affected): %info.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('8f87cf1a8546e9671244fba1ac51e805', 'MVV_LVGRUPPE_DEL', 'MVV: LV-Gruppe löschen', '%user löscht LV-Gruppe %lvgruppe(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('9123d360316ba28ddb32c0ed1a0320f2', 'STUDYAREA_DELETE', 'Studienbereich löschen', '%user entfernt Studienbereich %studyarea(%affected).', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('91251b5768b312ca23d6721cdc99a005', 'MVV_KATEGORIE_NEW', 'MVV: Abschluss-Kategorie erstellen', '%user erstellt neue Abschluss-Kategorie %abskategorie(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('9179d3cf4e0353f9874bcde072d12b30', 'RES_REQUEST_DENY', 'Abgelehnte Raumanfrage', '%user lehnt Raumanfrage für %sem(%affected), Raum: %res(%coaffected) ab. %info', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('95935c7997427ea42a3dd6be05b51e81', 'MVV_MODULTEIL_UPDATE', 'MVV: Modulteil ändern', '%user ändert Modulteil %modulteil(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('997cf01328d4d9f36b9f50ac9b6ace47', 'SEM_DELETE_SINGLEDATE', 'Einzeltermin löschen', '%user löscht Einzeltermin %singledate(%affected) in %sem(%coaffected).', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('9a7a5112de76fa0b8bd8910174d5f107', 'MVV_STGTEILBEZ_UPDATE', 'MVV: Studiengangteil-Bezeichnung ändern', '%user ändert Studiengangteil-Bezeichnung %stgteilbez(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('9d13643a1833c061dc3d10b4fb227f12', 'SEM_SET_ENDSEMESTER', 'Semesterlaufzeit ändern', '%user hat in %sem(%affected) die Laufzeit auf %semester(%coaffected) geändert', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('9d642dc93540580d42ba2ea502c3fbf6', 'SINGLEDATE_CHANGE_TIME', 'Einzeltermin bearbeiten', '%user hat in %sem(%affected) den Einzeltermin %coaffected geändert.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('9ed46a3ca3d4f43e17f91e314224dcae', 'SEM_CHANGE_CYCLE', 'Regelmäßige Zeit geändert', '%user hat in %sem(%affected) die regelmäßige Zeit %info geändert', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('9eea9c8ec3fa6916fae974559f3a6e64', 'MVV_STGTEILABS_MODUL_UPDATE', 'MVV: Stgteilabschnitt-Modul Zuweisung ändern', '%user ändert die Zuweisung des Studiengangteilabschnitts %stgteilabs(%affected) zum Modul %modul(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('a06bd1ca1b5eec038c079042eb25acb0', 'MVV_DOKUMENT_NEW', 'MVV: Dokument erstellen', '%user erstellt neues Dokument %dokument(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('a0928e74639fd2a55f5d4d2a3c5a8e71', 'RES_REQUEST_DEL', 'Raumanfrage löschen', '%user löscht Raumanfrage für %sem(%affected).', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('a0b8799fa671e0ce6069483e0c4b5123', 'MVV_ABS_ZUORD_NEW', 'MVV: Abschluss-Kategorien Zuweisung erstellen', '%user weist den Abschluss %abschluss(%affected) der Kategorie %abskategorie(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('a3856b6531e2f79d158b5ebfb998e5db', 'RES_ASSIGN_DEL_SEM', 'VA-Buchung löschen', '%user löscht Ressourcenbelegung für %res(%affected) in Veranstaltung %sem(%coaffected), %info.', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('a3db2d066861fd1cf1d532d2a736d495', 'MVV_STUDIENGANG_DEL', 'MVV: Studiengang löschen', '%user löscht Studiengang %stg(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('a66c9e04e9c41bf5cc4d23fa509a8667', 'PLUGIN_DISABLE', 'Plugin ausschalten', '%user hat in Veranstaltung %sem(%affected) das Plugin %plugin(%coaffected) deaktiviert.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('a92afa63584cc2a62d2dd2996727b2c5', 'USER_CREATE', 'Nutzer anlegen', '%user legt Nutzer %user(%affected) an.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('a94706b41493e32f8336194262418c01', 'SEM_INVISIBLE', 'Veranstaltung unsichtbar schalten', '%user versteckt %sem(%affected).', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('aa12de984598c527bfb8b118affaf34a', 'MVV_STG_STGTEIL_UPDATE', 'MVV: Studiengang zu Studiengangteil Zuweisung ändern', '%user ändert die Zuweisung des Studienganges %stg(%affected) zum Studiengangteil %stgteil(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('ad405d21c2e0df758ee8a61ed39901fe', 'MVV_LVMODULTEIL_UPDATE', 'MVV: LV-Gruppe zu Modulteil Zuweisung ändern', '%user ändert die Zuweisung der LV-Gruppe %lv(%affected) zum Modulteil %modulteil(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('b035ea1a197edc6271fafa4094f87a57', 'MVV_DOK_ZUORD_NEW', 'MVV: Dokumentzuordnung erstellen', '%user weist das Dokument %dokument(%affected) %object_type(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('b19d01e45715df05f4b060cd56dc204f', 'MVV_MODULTEIL_DESK_UPDATE', 'MVV: Modulteil Deskriptor ändern', '%user ändert Modulteil Deskriptor %modulteildesk(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('b205bde204b5607e036c10557a6ce149', 'SEM_SET_STARTSEMESTER', 'Startsemester ändern', '%user hat in %sem(%affected) das Startsemester auf %semester(%coaffected) geändert.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('b38ecbb1fddf6c3868a6a9a75bab8ef8', 'MVV_KATEGORIE_DEL', 'MVV: Abschluss-Kategorie löschen', '%user löscht Abschluss-Kategorie %abskategorie(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('b5e3e8401e7e92051c13ba7b46e28f75', 'MVV_STGTEILVERSION_NEW', 'MVV: Studiengangteilversion erstellen', '%user erstellt neue Studiengangteilversion %version(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('b8e940588cd8d5181774377586b85202', 'MVV_STGTEILBEZ_NEW', 'MVV: Studiengangteil-Bezeichnung erstellen', '%user erstellt neue Studiengangteil-Bezeichnung %stgteilbez(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('bace236af595612b77943bcb47a0a7fe', 'MVV_STUDIENGANG_UPDATE', 'MVV: Studiengang ändern', '%user ändert Studiengang %stg(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('bd2103035a8021942390a78a431ba0c4', 'DUMMY', 'Dummy-Aktion', '%user tut etwas.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('bd78090961a15a8010a566a6cd1355f2', 'MVV_DOK_ZUORD_UPDATE', 'MVV: Dokumentzuordnung ändern', '%user ändert die Zuweisung des Dokumentes %dokument(%affected) zu %object_type(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('bf192518a9c3587129ed2fdb9ea56f73', 'SEM_DELETE_FROM_ARCHIVE', 'Veranstaltung aus Archiv löschen', '%user löscht %info aus dem Archiv (ID: %affected).', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('c1d980ac5c5de271bd1471a11a3e37af', 'MVV_MODULINST_DEL', 'MVV: Modul-Einrichtung Beziehung löschen', '%user löscht die Zuweisung der Einrichtungen %inst(%coaffected) zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('c36fa0f804cde78a6dcb1c30c2ee47ba', 'SEM_DELETE_REQUEST', 'Raumanfrage gelöscht', '%user hat in %sem(%affected) die Raumanfrage für die gesamte Veranstaltung gelöscht.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('c4b1d3305d017935c8b6946996594172', 'MVV_FACH_UPDATE', 'MVV: Fach ändern', '%user ändert Fach %fach(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('c6a23a780aa2a219ddd0bb2445c19bf8', 'MVV_MODULTEIL_LANG_NEW', 'MVV: Sprache zu Modulteil Zuweisung erstellen', '%user weist dem Modulteil %modulteil(%affected) die Unterrichtssprache %language(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('ca216ccdf753f59ba7fd621f7b22f7bd', 'USER_CHANGE_NAME', 'Personennamen ändern', '%user ändert/setzt Name für %user(%affected) - %info.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('cbf93b2a248642289c2ad4b3d59b9d55', 'MVV_FACHINST_DEL', 'MVV: Fach-Einrichtung Zuweisung löschen', '%user löscht die Zuweisung des Faches %fach(%affected) zur Einrichtung %inst(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('cf8986a67e67ca273e15fd9230f6e872', 'USER_CHANGE_TITLE', 'Akademische Titel ändern', '%user ändert/setzt akademischen Titel für %user(%affected) - %info.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('d07c8b37c6d3e206cd012d07ba8028b1', 'SEM_CHANGED_RIGHTS', 'Veranstaltungsrechte geändert', '%user hat %user(%coaffected) in %sem(%affected) als %info eingetragen. (%dbg_info)', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('d18d750fb2c166e1c425976e8bca96e7', 'USER_CHANGE_EMAIL', 'E-Mail-Adresse ändern', '%user ändert/setzt E-Mail-Adresse für %user(%affected): %info.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('d1989a21fc77ffc34e705bb3dc215ebb', 'STATUSGROUP_REMOVE_USER', 'Nutzer wird aus einer Statusgruppe gelöscht', '%user entfernt %user(%affected) aus %group(%coaffected).', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('d4e99ffb6ffb32a20c0d9075bb73889d', 'MVV_ABS_ZUORD_UPDATE', 'MVV: Abschluss-Kategorien Zuweisung ändern', '%user ändert die Zuweisung des Abschlusses %abschluss(%affected) zur Kategorie %abskategorie(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('d8e863ca143ff87cce89f17b2e3b409e', 'MVV_ABSCHLUSS_UPDATE', 'MVV: Abschluss ändern', '%user ändert Abschluss %abschluss(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('dcd16239a49c367e37faf8ffe9ae0081', 'SEM_ADD_TO_GROUP', 'Veranstaltung zu Gruppe hinzufügen', '%user ordnet Veranstaltung %sem(%affected) der Gruppe %sem(%coaffected) zu.', 1, 0, NULL, NULL, 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('df41cc74f6fd857b1690e36dafa070a9', 'MVV_MODUL_LANG_DEL', 'MVV: Sprache zu Modul Zuweisung löschen', '%user löscht die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('e2c703a9167804463112284853b9545b', 'MVV_MODUL_UPDATE', 'MVV: Modul ändern', '%user ändert Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('e406e407501c8418f752e977182cd782', 'USER_CHANGE_PERMS', 'Globalen Nutzerstatus ändern', '%user ändert/setzt globalen Status von %user(%affected): %info', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('e5c0ecfea7d12ed95ea485d4ec18c9ae', 'MVV_MODUL_LANG_UPDATE', 'MVV: Sprache zu Modul Zuweisung ändern', '%user ändert die Zuweisung der Unterrichtssprache %language(%coaffected) zum Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('e694e86b2ec50bc0b99864acc947ed78', 'MVV_LVGRUPPE_NEW', 'MVV: LV-Gruppe erstellen', '%user erstellt neue LV-Gruppe %lvgruppe(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('e7449d98b8ca69d16f13c0a342a8db41', 'MVV_ABSCHLUSS_NEW', 'MVV: Abschluss erstellen', '%user erstellt neuen Abschluss %abschluss(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('e8423589894e5df742804e57f54fa5aa', 'MVV_MODULTEIL_STGTEILABS_UPDATE', 'MVV: Studiengangteilabschnitt zu Modulteil Zuweisung ändern', '%user ändert die Zuweisung des Modulteils %modulteil(%affected) im %fachsem. des Studiengangteilabschnitt %stgteilabs(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('e8646729e5e04970954c8b9679af389b', 'USER_DEL', 'Benutzer löschen', '%user löscht %user(%affected) (%info)', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('e8b1105ca4f2305ef0db6c961d2fbe4c', 'RES_ASSIGN_SINGLE', 'Buchen einer Ressource (Einzel)', '%user bucht %res(%affected) direkt (%info).', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('eac0850398466b86ec6af4068cff74ab', 'MVV_MODULTEIL_DESK_DEL', 'MVV: Modulteil Deskriptor löschen', '%user löscht Modulteil Deskriptor %modulteildesk(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('f363c6db07203dfcec893b1b8fc0eaee', 'MVV_FACHINST_UPDATE', 'MVV: Fach-Einrichtung Zuweisung ändern', '%user ändert die Zuweisung des Faches %fach(%affected) zur Einrichtung %inst(%coaffected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('f858b05c11f5faa2198a109a783087a8', 'SEM_CREATE', 'Veranstaltung anlegen', '%user legt %sem(%affected) an.', 1, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('f97335d7f45fd87a4e5e2c1d17f38dc0', 'MVV_MODUL_DESK_UPDATE', 'MVV: Modul Deskriptor ändern', '%user ändert Modul Deskriptor %moduldesk(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('fb550711e786f5d7d6a9ef8b4eb915f6', 'MVV_MODULINST_NEW', 'MVV: Modul-Einrichtung Beziehung erstellen', '%user weist dem Modul %modul(%affected) die Einrichtungen %inst(%coaffected) zu.', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('fc72d34ddb15a9819919fc42716830b3', 'MVV_MODUL_NEW', 'MVV: Modul erstellen', '%user erstellt neues Modul %modul(%affected).', 1, 0, NULL, 'MVV', 'core', NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('fd74339a9ea038d084569e33e2655b6a', 'CHANGE_INSTITUTE_DATA', 'Beteiligte Einrichtungen geändert', '%user hat in Veranstaltung %sem(%affected) die Daten geändert. %info', 0, 0, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `log_actions` (`action_id`, `name`, `description`, `info_template`, `active`, `expires`, `filename`, `class`, `type`, `mkdate`, `chdate`) VALUES('ff806b4b26f8bc8c3e65e29d14176cd9', 'RES_REQUEST_RESOLVE', 'Aufgelöste Raumanfrage', '%user löst Raumanfrage für %sem(%affected), Raum %res(%coaffected) auf.', 0, 0, NULL, NULL, NULL, NULL, NULL);
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);
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);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(4, 'NewsWidget', '', 'NewsWidget', 'PortalPlugin', 'yes', 4, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(5, 'QuickSelection', '', 'QuickSelection', 'PortalPlugin', 'yes', 5, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(6, 'ScheduleWidget', '', 'ScheduleWidget', 'PortalPlugin', 'yes', 6, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(7, 'TerminWidget', '', 'TerminWidget', 'PortalPlugin', 'yes', 7, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(8, 'ActivityFeed', '', 'ActivityFeed', 'PortalPlugin', 'yes', 8, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(9, 'IliasInterfaceModule', '', 'Ilias-Interface', 'CorePlugin,StudipModule,SystemPlugin', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(10, 'LtiToolModule', '', 'LTI-Tool', 'CorePlugin,StudipModule,SystemPlugin,PrivacyPlugin', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(11, 'GradebookModule', '', 'Gradebook', 'CorePlugin,SystemPlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(12, 'FeedbackModule', '', 'Feedback', 'CorePlugin,StudipModule,SystemPlugin', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(13, 'ConsultationModule', '', 'Terminvergabe', 'CorePlugin,StudipModule,SystemPlugin,PrivacyPlugin,HomepagePlugin', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(14, 'CoreOverview', '', 'CoreOverview', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(15, 'CoreAdmin', '', 'CoreAdmin', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(16, 'CoreStudygroupAdmin', '', 'CoreStudygroupAdmin', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(17, 'CoreDocuments', '', 'CoreDocuments', 'CorePlugin,StudipModule,OERModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(18, 'CoreParticipants', '', 'CoreParticipants', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(19, 'CoreStudygroupParticipants', '', 'CoreStudygroupParticipants', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(20, 'CoreSchedule', '', 'CoreSchedule', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(21, 'CoreScm', '', 'CoreScm', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(22, 'CoreWiki', '', 'CoreWiki', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(23, 'CoreCalendar', '', 'CoreCalendar', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(24, 'CoreElearningInterface', '', 'CoreElearningInterface', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(25, 'CorePersonal', '', 'CorePersonal', 'CorePlugin,StudipModule', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(26, 'CoursewareModule', '', 'Courseware', 'CorePlugin,StudipModule,SystemPlugin', 'yes', 1, NULL, NULL, NULL);
INSERT INTO `plugins` (`pluginid`, `pluginclassname`, `pluginpath`, `pluginname`, `plugintype`, `enabled`, `navigationpos`, `dependentonid`, `automatic_update_url`, `automatic_update_secret`) VALUES(27, 'ContentsWidget', '', 'ContentsWidget', 'PortalPlugin', 'yes', 9, NULL, NULL, NULL);
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');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(3, 'Mitarbeiter(in)', 'y');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(4, 'Lehrende(r)', 'y');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(5, 'Studierende(r)', 'y');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(6, 'Tutor(in)', 'y');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(7, 'Nobody', 'y');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(8, 'DedicatedAdmin', 'n');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(9, 'MVVAdmin', 'n');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(10, 'MVVFreigabe', 'n');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(11, 'MVVEntwickler', 'n');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(12, 'MVVRedakteur', 'n');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(13, 'MVVTranslator', 'n');
INSERT INTO `roles` (`roleid`, `rolename`, `system`) VALUES(14, 'MVVLvGruppenAdmin', 'n');
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);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 4);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 5);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 6);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 7);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 8);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 9);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 10);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 11);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 12);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 13);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 14);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 15);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 16);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 17);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 18);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 19);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 20);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 21);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 22);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 23);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 24);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 25);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 26);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(1, 27);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(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);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 4);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 5);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 6);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 7);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 8);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 9);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 10);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 11);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 12);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 13);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 14);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 15);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 16);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 17);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 18);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 19);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 20);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 21);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 22);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 23);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 24);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 25);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 26);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(2, 27);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(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);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 4);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 5);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 6);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 7);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 8);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 9);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 10);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 11);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 12);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 13);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 14);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 15);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 16);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 17);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 18);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 19);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 20);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 21);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 22);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 23);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 24);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 25);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 26);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(3, 27);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(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);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 4);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 5);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 6);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 7);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 8);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 9);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 10);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 11);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 12);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 13);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 14);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 15);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 16);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 17);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 18);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 19);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 20);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 21);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 22);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 23);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 24);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 25);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 26);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(4, 27);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(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);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 4);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 5);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 6);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 7);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 8);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 9);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 10);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 11);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 12);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 13);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 14);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 15);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 16);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 17);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 18);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 19);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 20);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 21);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 22);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 23);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 24);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 25);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 26);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(5, 27);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(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);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 4);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 5);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 6);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 7);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 8);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 9);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 10);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 11);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 12);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 13);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 14);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 15);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 16);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 17);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 18);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 19);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 20);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 21);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 22);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 23);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 24);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 25);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 26);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(6, 27);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(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);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 11);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 12);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 13);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 14);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 15);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 16);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 17);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 18);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 19);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 20);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 21);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 22);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 23);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 24);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 25);
INSERT INTO `roles_plugins` (`roleid`, `pluginid`) VALUES(7, 26);
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');
INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(3, 'root');
INSERT INTO `roles_studipperms` (`roleid`, `permname`) VALUES(4, 'dozent');
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');
INSERT INTO `roles_user` (`roleid`, `userid`, `institut_id`) VALUES(7, 'nobody', '');
INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '1', 327);
INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.1', 52);
INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.2', 15);
INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.3', 21);
INSERT INTO `schema_version` (`domain`, `branch`, `version`) VALUES('studip', '5.4', 15);
INSERT INTO `semester_data` (`semester_id`, `name`, `semester_token`, `beginn`, `ende`, `sem_wechsel`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`, `mkdate`, `chdate`) VALUES('322f640f3f4643ebe514df65f1163eb1', 'SS 2024', '', 1711922400, 1727733599, NULL, 1712527200, 1720821599, 1, '', NULL, 1698856529);
INSERT INTO `semester_data` (`semester_id`, `name`, `semester_token`, `beginn`, `ende`, `sem_wechsel`, `vorles_beginn`, `vorles_ende`, `visible`, `external_id`, `mkdate`, `chdate`) VALUES('4967f0a483e36554b77e3dc47aa58941', 'WS 2023/2024', '', 1696111200, 1711922399, NULL, 1698012000, 1707519599, 1, '', NULL, 1686151054);
INSERT INTO `semester_holiday` (`holiday_id`, `semester_id`, `name`, `description`, `beginn`, `ende`, `mkdate`, `chdate`) VALUES('704038f0cb3ea0a285ba0a453788ebed', '', 'Unterbrechung', '', 1703286000, 1704495599, NULL, 1686151122);
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);
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);
INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(4, 'Praktikum', 1, 1366882120, 1366882120);
INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(5, 'Colloquium', 1, 1366882120, 1366882120);
INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(6, 'Forschungsgruppe', 1, 1366882120, 1366882120);
INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(7, 'sonstige', 1, 1366882120, 1366882120);
INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(8, 'Gremium', 2, 1366882120, 1366882120);
INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(9, 'Projektgruppe', 2, 1366882120, 1366882120);
INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(10, 'sonstige', 2, 1366882120, 1366882120);
INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(11, 'Kulturforum', 3, 1366882120, 1366882120);
INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(12, 'Veranstaltungsboard', 3, 1366882120, 1366882120);
INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(13, 'sonstige', 3, 1366882120, 1366882120);
INSERT INTO `sem_types` (`id`, `name`, `class`, `mkdate`, `chdate`) VALUES(99, 'Studiengruppe', 99, 1366882120, 1366882120);
INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(1, 1, NULL, '[lang=de]Ansprechpartner[/lang][lang=en]Contact[/lang]', '[style=float: right]\r\n[img]https://develop.studip.de/logos/logoklein.png\r\n**Version:** (:version:)\r\n[/style]\r\n[lang=de]Für diese Stud.IP-Installation ((:uniname:)) sind folgende Administratoren zuständig:[/lang]\r\n[lang=en]The following administrators are responsible for this Stud.IP installation ((:uniname:)):[/lang]\r\n(:rootlist:)\r\n[lang=de]allgemeine Anfragen wie Passwort-Anforderungen u.a. richten Sie bitte an:[/lang]\r\n[lang=en]General queries e.g., password queries, please contact:[/lang]\r\n(:unicontact:)\r\n[lang=de]Folgende Einrichtungen sind beteiligt:\r\n(Genannt werden die jeweiligen Administratoren der Einrichtungen für entsprechende Anfragen)[/lang]\r\n[lang=en]The following institutes participate:\r\n(Named are the institutes administrators responsible for the corresponding query areas)[/lang]\r\n(:adminlist:)');
INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(2, 1, NULL, '[lang=de]Entwickler[/lang][lang=en]Developer[/lang]', '[style=float: right]\r\n\r\n[img]https://develop.studip.de/logos/logoklein.png\r\n\r\n**Version:** (:version:)\r\n\r\n[/style]\r\n\r\n[lang=de]Stud.IP ist ein Open Source Projekt zur Unterstützung von Präsenzlehre an Universitäten, Hochschulen und anderen Bildungseinrichtungen. Das System entstand am Zentrum für interdisziplinäre Medienwissenschaft (ZiM) der Georg-August-Universität Göttingen unter Mitwirkung der Suchi & Berg GmbH (data-quest) , Göttingen. Heute erfolgt die Weiterentwicklung von Stud.IP verteilt an vielen Standorten (Göttingen, Osnabrück, Oldenburg, Bremen, Hannover, Jena und weiteren). Die Koordination der Entwicklung erfolgt durch die Stud.IP-CoreGroup.\r\n\r\nStud.IP steht unter der GNU General Public License, Version 2.\r\n\r\n\r\n\r\nWeitere Informationen finden sie auf ** [www.studip.de]http://www.studip.de **,** [develop.studip.de]http://develop.studip.de **.[/lang]\r\n\r\n\r\n\r\n[lang=en]Stud.IP is an opensource project for supporting attendance courses offered by universities, institutions of higher education and other educational institutions. The system was established at the Zentrum für interdisziplinäre Medienwissenschaft (ZiM) in the Georg-August-Universität Göttingen in cooperation with Suchi & Berg GmbH (data-quest) , Göttingen. At the present further developing takes place at various locations (among others Göttingen, Osnabrück, Oldenburg, Bremen, Hannover, Jena) under coordination through the Stud.IP-CoreGroup.\r\n\r\n\r\n\r\nStud.IP is covered by the GNU General Public Licence, version 2.\r\n\r\n\r\n\r\nFurther information can be found under ** [www.studip.de]http://www.studip.de **,** [develop.studip.de]http://develop.studip.de **.[/lang]\r\n\r\n\r\n\r\n(:coregroup:)\r\n\r\n[lang=de]Sie erreichen uns auch über folgende **Mailinglisten**:\r\n\r\n\r\n\r\n**Nutzer-Anfragen**, E-Mail: studip-users@lists.sourceforge.net : Fragen, Anregungen und Vorschläge an die Entwickler - bitte __keine__ Passwort Anfragen!\r\n\r\n**News-Mailingsliste**, E-Mail: studip-news@lists.sourceforge.net : News rund um Stud.IP (Eintragung notwendig)\r\n\r\n\r\n\r\nWir laden alle Entwickler, Betreiber und Nutzer von Stud.IP ein, sich auf dem Developer-Server http://develop.studip.de an den Diskussionen rund um die Weiterentwicklung und Nutzung der Plattform zu beteiligen.[/lang]\r\n\r\n[lang=en]You can contact us via the following **mailing lists**:\r\n\r\n\r\n\r\n**User enquiries**, E-Mail: studip-users@lists.sourceforge.net : Questions, suggestions and recommendations to the developers - __please no password queries__!\r\n\r\n\r\n\r\n**News mailing list**, E-Mail: studip-news@lists.sourceforge.net : News about Stud.IP (registration necessary)\r\n\r\n\r\n\r\nWe invite all developers, administrators and users of Stud.IP to join the discussions on further developing and using the platform available at the developer server http://develop.studip.de[/lang]');
INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(5, 2, NULL, 'History', '(:history:)');
INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(7, 1, NULL, 'Datenschutzerklärung', '++**Datenschutzerklärung**++\n\nSie erhalten als Nutzer/-in unserer Internetseite in dieser Datenschutzerklärung notwendige Informationen darüber, wie und in welchem Umfang sowie zu welchem Zweck die **[Betreibereinrichtung]** Daten von Ihnen erhebt und wie diese verwendet werden. Die Daten werden nur innerhalb der **[Betreibereinrichtung]** verarbeitet und verwendet und nicht an Dritte weitergegeben.\n\n\n++**Rechtsgrundlagen**++\n\nDie Erhebung und Nutzung Ihrer Daten erfolgt streng nach den gesetzlichen Vorgaben. Regelungen dazu finden sich in:\nEuropäische Datenschutzgrundverordnung (EU DSGVO)\nBundesdatenschutzgesetz (BDSG)\nNiedersächsisches Datenschutzgesetz (NDSG)\nTeledienstegesetz (TDG)\nMediendienste-Staatsvertrag (MDStV)\nTeledienstedatenschutzgesetz (TDDSG).\n\n\n++**Personenbezogene Daten**++\n\nPersonenbezogene Daten werden zum Zwecke der administrativen Nutzerverwaltung, zur Kontaktaufnahme und Interaktion mit Ihnen sowie zur Bereitstellung personalisierter Dienste [zur Durchführung Ihres Studium bzw. Ihrer Arbeit an **[Betreibereinrichtung]**] von uns gespeichert.\nFür die Nutzung von Stud.IP werden folgende Daten abgefragt und gespeichert:\n- Nutzername\n- Vorname, Nachname\n- Mailadresse\n- [ggf. weitere Daten]\n\n\nWeitere Daten, die evtl. Ihnen gespeichert werden, sind Inhalte, die Sie selbst im Rahmen Ihrer Arbeit oder Ihres Studiums in Stud.IP einstellen. Dazu gehören:\n- Freiwillige Angaben zur Person\n- Beiträge in Foren\n- hochgeladene Dateien\n- Chatverläufe in Blubber\n- interne Nachrichten\n- Kalendereinträge und Stundenpläne\n- Teilnahme an Lehrveranstaltungen, Studiengruppen, Orgagremien\n- Persönliche Einstellungen und Konfigurationen\n- [ggf. Plugindaten]\n\n\nDiese Inhalte werden mit Ihrem Klarnamen gespeichert und angezeigt. Sie haben die Möglichkeit über die Privatsphäreeinstellungen selbst zu bestimmen, ob und ggf. welche Personengruppen diese Daten sehen dürfen. Diese Daten werden von Stud.IP intern verschlüsselt abgelegt.\n\n\n++**Aufbewahrungsfristen **++\n\nIhre personenbezogenen Daten werden für die Dauer Ihres Studiums/Ihrer Arbeit bei [Beitreibereinrichtung] gespeichert. Nach Beendigung ihrer Tätigkeit und Ablauf der gesetzlichen Aufbewahrungsfristen werden Ihre Daten gelöscht.\n\n\n++**Auskunft, Löschung, Sperrung**++\n\nSie erhalten jederzeit auf Anfrage Auskunft über die von uns über Sie gespeicherten personenbezogenen Daten sowie dem Zweck von Datenerhebung sowie Datenverarbeitung. Bitte wenden Sie sich hierzu an o.g. Kontaktadresse.\n\nAußerdem haben Sie das Recht, die Berichtigung, die Sperrung oder Löschung Ihrer Daten zu verlangen. Sie können Ihre Einwilligung ohne Angabe von Gründen durch Schreiben an die o.g. Kontakadresse widerrufen. Ihre Daten werden dann umgehend gelöscht. Eine weitere Nutzung der Lernplattform Stud.IP ist dann aber nicht mehr möglich.\n\nAusgenommen von der Löschung sind Daten, die aufgrund gesetzlicher Vorschriften aufbewahrt oder zur ordnungsgemäßen Geschäftsabwicklung benötigt werden. Damit eine Datensperre jederzeit realisiert werden kann, werden Daten zu Kontrollzwecken in einer Sperrdatei vorgehalten.\n\nWerden Daten nicht von einer gesetzlichen Archivierungspflicht erfasst, löschen wir Ihre Daten auf Ihren Wunsch. Greift die Archivierungspflicht, sperren wir Ihre Daten. Für alle Fragen und Anliegen zur Berichtigung, Sperrung oder Löschung von personenbezogenen Daten wenden Sie sich bitte an unsere Datenschutzbeauftragten unter den Kontaktdaten in dieser Datenschutzerklärung bzw. an die im Impressum genannte Adresse.\n\n\n++**Datenübertragbarkeit**++\n\nSie haben das Recht, jederzeit Ihre Daten ausgehändigt zu bekommen. Auf Anfrage stellen wir Ihnen Ihre Daten in menschenlesbaren, gängigen und bearbeitbaren Formaten zur Verfügung.\n\n\n++**Cookies**++\n\nStud.IP verwendet ein Session-Cookie. Diese kleine Textdatei beinhaltet lediglich eine verschlüsselte Zeichenfolge, die bei der Navigation im System hilft. Das Cookie wird bei der Abmeldung aus Stud.IP oder beim Schließen des Browsers gelöscht.\n\n\n++**Server Logfiles**++\n\nMit dem Zugriff auf Stud.IP werden IP-Adresse, Datum, Uhrzeit und Browserversion zum Zeitpunkt des Zugriffs registriert und anonymisiert gespeichert. Die Erhebung und Nutzung dieser Log-File-Daten dient lediglich der Auswertung zu rein statistischen Forschungs- und Evaluationszwecken der Lernplattform, werden also nicht in Verbindung mit Namen oder Mailadresse gespeichert oder ausgewertet. Diese Daten werden für die Zeit von [X] Monaten auf gesicherten Systemen der **[Betreibereinrichtung]** gespeichert und ebenfalls nicht an Dritte weitergegeben.\n\n\n++**SSL-Verschlüsselung**++\n\nDie Verbindung zu Stud.IP erfolgt mit einer SSL-Verschlüsselung. Über SSL verschlüsselte Daten sind nicht von Dritten lesbar. Übermitteln Sie Ihre vertraulichen Informationen nur bei aktivierter SSL-Verschlüsselung und wenden Sie sich im Zweifel an uns.\n\n\n++Kontaktdaten:++\n**Name:**\n**Telefonnummer:**\n**E-Mail-Adresse:**\n**Unternehmensbezeichnung:**\n\n++Datenschutzbeauftragte/-r:++\n**Name:**\n**Telefonnummer:**\n**E-Mail-Adresse:**\n**Unternehmensbezeichnung:**\n\n\n');
INSERT INTO `siteinfo_details` (`detail_id`, `rubric_id`, `position`, `name`, `content`) VALUES(8, 1, NULL, 'Barrierefreiheitserklärung', '<!--HTML-->[lang=de]\n<h1>Mustertext Erklärung zur Barrierefreiheit für Stud.IP</h1>\n\n<p>[Text in eckigen Klammern ist ggf. zu ergänzen, zu streichen oder sprachlich anzupassen, je nachdem, wie das Ergebnis der Überprüfung der Barrierefreiheit ausfällt.]</p>\n\n<p>Diese Erklärung zur Barrierefreiheit gilt für die Stud.IP-Installation unter der [URL der ergänzen; bitte Version und Datum angeben] der [Betreiber der Stud.IP-Installation ergänzen].</p>\n\n<p>Als öffentliche Stelle im Sinne der Richtlinie (EU) 2016/2102 sind wir bemüht, unsere Websites und mobilen Anwendungen im Einklang mit den Bestimmungen des Behindertengleichstellungsgesetzes des Bundes (BGG) sowie der Barrierefreien-Informationstechnik-Verordnung (BITV 2.0) zur Umsetzung der Richtlinie (EU) 2016/2102 barrierefrei zugänglich zu machen.</p>\n\n<p>[Hier ggf. jeweilige Landesverordnung zusätzlich einfügen, z.B. für Niedersachsen <em>§ 9 NBGG.</em>]</p>\n\n<h2>Stand der Vereinbarkeit mit den Anforderungen</h2>\n\n<p>Die Anforderungen der Barrierefreiheit ergeben sich aus §§ 3 Absätze 1 bis 4 und 4 der BITV 2.0, die auf der Grundlage von § 12d BGG erlassen wurde.</p>\n\n<p>Die Überprüfung der Einhaltung der Anforderungen beruht auf</p>\n\n<p>einer von Materna Information & Communications SE im Zeitraum von Ende Januar bis Anfang Februar 2021 vorgenommenen Bewertung. Maßstab der Prüfung ist die EN 301 549 und der A sowie AA Status der WCAG 2.1. Überprüft wurden die Vorgaben der WCAG 2.1 (Konformitätsstufen A und AA) anhand der 60 Prüfschritte des BITV/WCAG-Tests.</p>\n\n<p>Die Überprüfung bezieht sich auf das Stud.IP-Release 4.6. [Plugins und Inhalte müssen standortspezifisch geprüft und ggf. dokumentiert/diese Erklärung angepasst werden. Bitte ggf. ergänzen.]</p>\n\n<p>Diese Stud.IP-Installation ist nicht vollständig mit den für uns geltenden Vorschriften zur Barrierefreiheit vereinbar. Im Einzelnen:</p>\n\n<ul>\n <li>\n <p>Überschriftenhierarchien werden auf manchen Seiten nicht vollständig eingehalten.</p>\n </li>\n <li>\n <p>Für Bilder, Bedienelemente und grafische Elemente sind in manchen Fällen keine, falsche oder unzureichende Alternativen vorhanden.</p>\n </li>\n <li>\n <p>Grafiken und Bedienelementen fehlen in manchen Fällen korrekte Auszeichnungen, so dass sie von Assistenzsystemen nicht richtig erfasst werden können.</p>\n </li>\n <li>\n <p>Die Sprache in Alternativtexten ist teilweise in Englisch angegeben ohne das der Sprachwechsel korrekt ausgezeichnet ist.</p>\n </li>\n <li>\n <p>Listeneinträge, Tabellen(-spalten) und Formulare sind teilweise nicht korrekt ausgezeichnet.</p>\n </li>\n <li>\n <p>Die sichtbare Reihenfolge von Seitenelementen weicht teilweise von der Reihenfolge im Quelltext ab.</p>\n </li>\n <li>\n <p>Die Mindestanforderung an Kontraste ist nicht überall erfüllt.</p>\n </li>\n <li>\n <p>Die Tastatursteuerung ist nicht uneingeschränkt benutzbar.</p>\n </li>\n <li>\n <p>Auf der Startseite fehlt die Bereitstellung der Erläuterungen über die Website in Leichter Sprache und in Deutscher Gebärdensprache.</p>\n </li>\n</ul>\n\n<p>Zudem können von Nutzerinnen und Nutzern eingestellte Inhalte, z.B. PDFs oder Videos, Barrieren aufweisen.</p>\n\n<p>Stud.IP wird derzeit in Bezug auf Barrierefreiheit überarbeitet. Folgende Maßnahmen zur Verringerung von Barrieren werden voraussichtlich in das Release von Stud.IP 5.1 und 5.2 einfließen:</p>\n\n<ul>\n <li>\n <p>Attribute und Alternativtexte werden hinzugefügt und korrigiert, damit Screen Reader Schaltflächen, Links, Bedienelemente und Grafiken korrekt interpretieren und passende Texte ausgeben können.</p>\n </li>\n <li>\n <p>Die Hierarchien von Überschriften und Reihenfolge von Seitenelementen werden überarbeitet/korrigiert.</p>\n </li>\n <li>\n <p>Sprachauszeichnungen werden vereinheitlicht.</p>\n </li>\n <li>\n <p>Listeneinträge, Tabellen(-spalten) und Formulare werden korrekt ausgezeichnet und sinnvoll verknüpft.</p>\n </li>\n <li>\n <p>Eine Möglichkeit den Kontrast zu verändern, wird implementiert.</p>\n </li>\n <li>\n <p>Die Tastatursteuerung korrigiert.</p>\n </li>\n <li>\n <p>Aktionsmenüs und Akkordeonelemente werden überarbeitet.</p>\n </li>\n <li>\n <p>Die responsive Navigation wird verbessert.</p>\n </li>\n</ul>\n\n<p>Folgende Inhalte sind aufgrund der Absicht, ein höheres Maß an digitaler Barrierefreiheit als gesetzlich gefordert umzusetzen, realisiert:<br />\n[Geben Sie die jeweiligen Inhalte an]</p>\n\n<h2>Datum der Erstellung bzw. der letzten Aktualisierung der Erklärung</h2>\n\n<p>Diese Erklärung wurde am [09/2021] erstellt und zuletzt am [Datum] aktualisiert.</p>\n\n<h2>Barrieren melden: Kontakt zu den Feedback Ansprechpartnern</h2>\n\n<p>Sie möchten uns bestehende Barrieren mitteilen oder Informationen zur Umsetzung der Barrierefreiheit erfragen? Für Ihr Feedback sowie alle weiteren Informationen sprechen Sie unsere verantwortlichen Kontaktpersonen unter xxx an.</p>\n\n<p>[verlinkte URL mit Namen des Feedback-Mechanismus, z. B. „Barrieren melden“ angeben. Dabei sollte der Leitfaden „Erklärung zur Barrierefreiheit“ und der Leitfaden „Feedback-Mechanismus“ beachtet werden]</p>\n\n<h2>Schlichtungsverfahren</h2>\n\n<p>[Nicht zutreffende Stelle streichen ggf. Stelle Ihres Bundeslandes einfügen]</p>\n\n<p>Wenn auch nach Ihrem Feedback an den oben genannten Kontakt keine zufriedenstellende Lösung gefunden wurde, können Sie sich an die Schlichtungsstelle nach § 16 BGG wenden. Die Schlichtungsstelle BGG hat die Aufgabe, bei Konflikten zum Thema Barrierefreiheit zwischen Menschen mit Behinderungen und öffentlichen Stellen des Bundes eine außergerichtliche Streitbeilegung zu unterstützen. Das Schlichtungsverfahren ist kostenlos. Es muss kein Rechtsbeistand eingeschaltet werden. Weitere Informationen zum Schlichtungsverfahren und den Möglichkeiten der Antragstellung erhalten Sie unter: <u><a href=\"http://www.schlichtungsstelle-bgg.de/\">www.schlichtungsstelle-bgg.de</a></u>.</p>\n\n<p>Direkt kontaktieren können Sie die Schlichtungsstelle BGG unter <u><a href=\"mailto:info@schlichtungsstelle-bgg.de\">info@schlichtungsstelle-bgg.de</a></u>.</p>\n(:reportbarrierlink:)[/lang]\n\n[lang=en]\n<!--HTML-->\n<h1>Sample Text Accessibility Statement</h1>\n\n<p>[Text in square brackets may need to be added, deleted, or linguistically adjusted depending on the outcome of the accessibility review].</p>\n\n<p>This accessibility statement applies to the Stud.IP installation at the [add URL of; please specify version and date] of the [add operator of Stud.IP installation].</p>\n\n<p>As a public body within the meaning of Directive (EU) 2016/2102, we strive to make our websites and mobile applications accessible in accordance with the provisions of the Federal Disability Equality Act (BGG) and the Barrier-Free Information Technology Ordinance (BITV 2.0) implementing Directive (EU) 2016/2102.</p>\n\n<p>[Here, if necessary, insert the respective state ordinance additionally, e.g. for Lower Saxony § 9 NBGG].</p>\n\n<h2>Status of compatibility with the requirements</h2>\n\n<p>The accessibility requirements result from §§ 3 paragraphs 1 to 4 and 4 of BITV 2.0, which was issued on the basis of § 12d BGG.</p>\n\n<p>The review of compliance with the requirements is based on</p>\n\n<p>an assessment performed by Materna Information & Communications SE in the period from the end of January to the beginning of February 2021. The benchmark for the test is EN 301 549 and the A and AA status of WCAG 2.1. The requirements of WCAG 2.1 (conformance levels A and AA) were checked using the 60 test steps of the BITV/WCAG test.</p>\n\n<p>The check refers to Stud.IP release 4.6. [Plugins and content must be checked site-specifically and documented/adapted to this statement if necessary. Please add if necessary].</p>\n\n<p>This Stud.IP installation is not fully compliant with the accessibility regulations that apply to us. In detail:</p>\n\n<ul>\n <li>\n <p>Heading hierarchies are not fully respected on some pages.</p>\n </li>\n <li>\n <p>In some cases, there are no, incorrect or insufficient alternatives for images, control elements and graphical elements.</p>\n </li>\n <li>\n <p>Graphics and control elements lack correct markup in some cases, so that they cannot be correctly detected by assistance systems.</p>\n </li>\n <li>\n <p>The language in alternative texts is sometimes specified in English without the language change being correctly marked.</p>\n </li>\n <li>\n <p>List entries, tables (columns) and forms are sometimes not correctly labeled.</p>\n </li>\n <li>\n <p>The visible order of page elements sometimes differs from the order in the source text.</p>\n </li>\n <li>\n <p>The minimum requirement for contrasts is not met everywhere.</p>\n </li>\n <li>\n <p>The keyboard control is not fully usable.</p>\n </li>\n <li>\n <p>The home page lacks the provision of explanations about the website in plain language and in German sign language.</p>\n </li>\n</ul>\n\n<p>In addition, content posted by users, e.g. PDFs or videos, may have barriers.<br />\n </p>\n\n<p>Stud.IP is currently being revised with regard to accessibility. The following measures to reduce barriers are expected to be included in the release of Stud.IP 5.1 and 5.2:</p>\n\n<ul>\n <li>\n <p>Attributes and alternative texts are added and corrected so that screen readers can correctly interpret buttons, links, controls and graphics and output appropriate texts.</p>\n </li>\n <li>\n <p>Heading hierarchies and page element order are revised/corrected.</p>\n </li>\n <li>\n <p>Language mark-ups will be standardized.</p>\n </li>\n <li>\n <p>List entries, tables (columns) and forms will be labelled correctly and linked in a meaningful way.</p>\n </li>\n <li>\n <p>A possibility to change the contrast is implemented.</p>\n </li>\n <li>\n <p>The keyboard control is corrected.</p>\n </li>\n <li>\n <p>Action menus and accordion elements are revised.</p>\n </li>\n <li>\n <p>Responsive navigation will be improved.</p>\n </li>\n <li>\n <p>The following content is implemented due to the intention to implement a higher level of digital accessibility than required by law:</p>\n </li>\n</ul>\n\n<p>[Specify the respective content]</p>\n\n<h2>Date of preparation or last update of the declaration</h2>\n\n<p>This statement was created on [09/2021] and last updated on [date].</p>\n\n<h2>Report Barriers: Contact Feedback Contacts</h2>\n\n<p>Would you like to report existing barriers or request information on implementing accessibility? For your feedback as well as any further information, please contact our responsible contact persons at xxx.</p>\n\n<p>[provide linked URL with name of feedback mechanism, e.g. \"Report barriers\". The \"Accessibility Statement\" guide and the \"Feedback Mechanism\" guide should be followed].</p>\n\n<h2>Arbitration</h2>\n\n<p>[Delete non-applicable body, if necessary insert body of your federal state].</p>\n\n<p>If a satisfactory solution has not been found even after you have sent feedback to the above-mentioned contact, you can turn to the conciliation body pursuant to Section 16 BGG. The BGG conciliation body is tasked with supporting out-of-court dispute resolution in the event of conflicts on the topic of accessibility between people with disabilities and federal public agencies. The conciliation procedure is free of charge. No legal counsel needs to be involved. For more information on the conciliation process and how to submit a request, visit: www.schlichtungsstelle-bgg.de.</p>\n\n<p>You can contact the BGG conciliation body directly at <u><a href=\"mailto:info@schlichtungsstelle-bgg.de\">info@schlichtungsstelle-bgg.de</a></u>.</p>\n(:reportbarrierlink:)[/lang]');
INSERT INTO `siteinfo_rubrics` (`rubric_id`, `position`, `name`) VALUES(1, NULL, '[lang=de]Kontakt[/lang][lang=en]Contact[/lang]');
INSERT INTO `siteinfo_rubrics` (`rubric_id`, `position`, `name`) VALUES(2, NULL, '[lang=de]Über Stud.IP[/lang][lang=en]About Stud.IP[/lang]');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'user');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'user');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'user');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'user');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'user');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'autor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'autor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'autor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(6, 0, 4, 'autor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'autor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'autor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'tutor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'tutor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'tutor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(6, 0, 4, 'tutor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'tutor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'tutor');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'dozent');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'dozent');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'dozent');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(6, 0, 4, 'dozent');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'dozent');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'dozent');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'admin');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'admin');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'admin');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'admin');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'admin');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(3, 0, 3, 'root');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(4, 0, 0, 'root');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(5, 1, 0, 'root');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(7, 0, 2, 'root');
INSERT INTO `widget_default` (`pluginid`, `col`, `position`, `perm`) VALUES(27, 0, 1, 'root');
|