SEBSERV-465 SEB Settings GUI migration
This commit is contained in:
parent
9a21ba25c8
commit
065a4335dc
2 changed files with 24 additions and 2 deletions
|
@ -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')
|
||||
;
|
|
@ -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,<br/> 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<br/> logged in after a reconfiguration.
|
||||
|
|
Loading…
Reference in a new issue