diff --git a/src/main/resources/config/sql/base/V27__exam_config_gui_additions_v1_6.sql b/src/main/resources/config/sql/base/V27__exam_config_gui_additions_v1_6.sql index 4d19d7b4..ad064e59 100644 --- a/src/main/resources/config/sql/base/V27__exam_config_gui_additions_v1_6.sql +++ b/src/main/resources/config/sql/base/V27__exam_config_gui_additions_v1_6.sql @@ -24,3 +24,23 @@ INSERT IGNORE INTO orientation (config_attribute_id, template_id, view_id, group -- Add SEB Settings GUI additions (SEBSERV-414) -- ---------------------------------------------------------------- +INSERT IGNORE INTO configuration_attribute VALUES + (1582, 'useTemporaryDownUploadDirectory', 'CHECKBOX', null, null, null, null, 'false') +; + +UPDATE configuration_attribute SET default_value='false' WHERE id=59; +UPDATE configuration_attribute SET name='allowCustomDownUploadLocation' WHERE id=972; + +UPDATE orientation SET y_position=2 WHERE config_attribute_id=60; +UPDATE orientation SET y_position=3 WHERE config_attribute_id=61; +UPDATE orientation SET y_position=4 WHERE config_attribute_id=972; +UPDATE orientation SET y_position=10 WHERE config_attribute_id=63; +UPDATE orientation SET y_position=6 WHERE config_attribute_id=64; +UPDATE orientation SET y_position=7 WHERE config_attribute_id=65; +UPDATE orientation SET y_position=13 WHERE config_attribute_id=66; + +INSERT IGNORE INTO orientation (config_attribute_id, template_id, view_id, group_id, x_position, y_position, width, height, title) VALUES + (1580, 0, 4, null, 0, 10, 8, 1, 'NONE'), + (1581, 0, 4, null, 0, 1, 8, 1, 'NONE'), + (1582, 0, 4, null, 0, 5, 8, 1, 'NONE') +; \ No newline at end of file diff --git a/src/main/resources/messages.properties b/src/main/resources/messages.properties index 7c524875..e84caa8b 100644 --- a/src/main/resources/messages.properties +++ b/src/main/resources/messages.properties @@ -1399,8 +1399,10 @@ sebserver.examconfig.props.label.allowPDFPlugIn=Allow using Acrobat Reader PDF p sebserver.examconfig.props.label.allowPDFPlugIn.tooltip=The Adobe Acrobat Reader browser plugin should only be used on secured managed Mac computers,
at it allows limited access the file system and unlimited to cloud services sebserver.examconfig.props.label.downloadAndOpenSebConfig=Download and open SEB Config Files sebserver.examconfig.props.label.downloadAndOpenSebConfig.tooltip=Download and open .seb config files regardless if downloading and opening other file types is allowed -sebserver.examconfig.props.label.allowCustomDownloadLocation=Allow user to select custom download / upload directory - +sebserver.examconfig.props.label.allowCustomDownUploadLocation=Allow user to select custom download / upload directory (Win) +sebserver.examconfig.props.label.useTemporaryDownUploadDirectory=Use temporary download / upload directory (Win) +sebserver.examconfig.props.label.allowUploads=Allow uploading files +sebserver.examconfig.props.label.allowDownloads=Allow downloading files sebserver.examconfig.props.group.sessionHandling=Session Handling sebserver.examconfig.props.group.sessionHandling.tooltip=Use the following parameter to control whether a browser session is persistent on disk, e.g. to keep users
logged in after a reconfiguration.