doku vor 1.4
This commit is contained in:
parent
9c780513dc
commit
afb3cc8ea7
3 changed files with 46 additions and 23 deletions
|
@ -151,26 +151,7 @@ your institution use the type information of the exam to set them into context.
|
|||
- When you have selected a exam configuration the dialog shows you some additional information about the exam configuration.
|
||||
- If you want or need to put an password protected encryption to the exam configuration for this exam you can do so by give the password for the encryption also within the attachment dialog. Be aware that every SEB client that will receive an encrypted exam configuration from the SEB Server will prompt the user to give the correct password. In most cases an encryption of the exam configuration is not needed, because a secure HTTPS connection form SEB client to SEB Server is already in place.
|
||||
|
||||
**Delete an exam**
|
||||
|
||||
If you have "Exam Administrator" privileges you are able to entirely delete an existing exam and its dependencies.
|
||||
|
||||
.. note::
|
||||
Please be aware that deletion in this context means a fully removal of the data. The data will be lost and not recoverable.
|
||||
|
||||
- Login as an exam administrator and go to the "Exam" page under the "Exam Administration" section.
|
||||
- Use the filter to find the exam on that you have to delete.
|
||||
- Double click the list entry of the exam to go to the exam details page. Check if you are on the right exam.
|
||||
- Use the "Delete" action on the right action pane to open a deletion dialog.
|
||||
|
||||
.. image:: images/exam/deleteExam.png
|
||||
:align: center
|
||||
:target: https://raw.githubusercontent.com/SafeExamBrowser/seb-server/master/docs/images/exam/deleteExam.png
|
||||
|
||||
- Within the delete exam dialog you see a list of a dependencies that also will be deleted. Please check them carefully before deletion.
|
||||
- Use the below action to either delete the exam or cancel the action and go back to the exam view.
|
||||
|
||||
** Archive an exam**
|
||||
**Archive an exam**
|
||||
|
||||
Since SEB Server version 1.4 it is possible to archive an exam that has been finished. An archived exam and all its data is still available
|
||||
on the SEB Server but read only and the exam is not been updated from the LMS data anymore and it is not possible to run this exam again.
|
||||
|
@ -192,3 +173,23 @@ To archive a finished exam you just have to use the "Archive Exam" action on the
|
|||
:align: center
|
||||
:target: https://raw.githubusercontent.com/SafeExamBrowser/seb-server/master/docs/images/exam/archiveExam1.png
|
||||
|
||||
|
||||
**Delete an exam**
|
||||
|
||||
If you have "Exam Administrator" privileges you are able to entirely delete an existing exam and its dependencies.
|
||||
|
||||
.. note::
|
||||
Please be aware that deletion in this context means a fully removal of the data. The data will be lost and not recoverable.
|
||||
|
||||
- Login as an exam administrator and go to the "Exam" page under the "Exam Administration" section.
|
||||
- Use the filter to find the exam on that you have to delete.
|
||||
- Double click the list entry of the exam to go to the exam details page. Check if you are on the right exam.
|
||||
- Use the "Delete" action on the right action pane to open a deletion dialog.
|
||||
|
||||
.. image:: images/exam/deleteExam.png
|
||||
:align: center
|
||||
:target: https://raw.githubusercontent.com/SafeExamBrowser/seb-server/master/docs/images/exam/deleteExam.png
|
||||
|
||||
- Within the delete exam dialog you see a list of a dependencies that also will be deleted. Please check them carefully before deletion.
|
||||
- Use the below action to either delete the exam or cancel the action and go back to the exam view.
|
||||
|
||||
|
|
|
@ -166,7 +166,7 @@ Since SEB Server version 1.4, multi-selection for some lists with bulk-actions i
|
|||
just click on the row as usual. If you then click on another (still not selected) row, this row get selected too. You can do this even over several pages.
|
||||
To deselect a selected row just click it again then it will be removed from the selection.
|
||||
|
||||
.. image:: images/overview/list.png
|
||||
.. image:: images/overview/list_multiselect.png
|
||||
:align: center
|
||||
:target: https://raw.githubusercontent.com/SafeExamBrowser/seb-server/master/docs/images/overview/list_multiselect.png
|
||||
|
||||
|
@ -206,7 +206,7 @@ After correcting the missing or wrong input and saveing the form again, the SEB
|
|||
If you navigate away from a form in edit mode, the GUI will inform you about possible data loss on this action and will prompt you to
|
||||
proceed or abort the action.
|
||||
|
||||
** Actions **
|
||||
**Actions**
|
||||
|
||||
Actions are usually placed on the right action pane of the application and belongs to the actual site or view. There are generally three types of actions:
|
||||
|
||||
|
@ -216,4 +216,8 @@ Actions are usually placed on the right action pane of the application and belon
|
|||
|
||||
.. note::
|
||||
List action are disabled when nothing is selected from the list and get enabled as soon as one or more list items are selected.
|
||||
Actions that are considdered single selection actions, and are used with a multi selection on the list will only affect the first selected item in the list.
|
||||
Actions that are considdered single selection actions, and are used with a multi selection on the list will only affect the first selected item in the list.
|
||||
|
||||
.. image:: images/overview/list_multiselect_actions.png
|
||||
:align: center
|
||||
:target: https://raw.githubusercontent.com/SafeExamBrowser/seb-server/master/docs/images/overview/list_multiselect_actions.png
|
|
@ -6,7 +6,25 @@ There shall be at least a problem description, an optional explanation if needed
|
|||
|
||||
Please also have a look at `Open Issues <https://https://github.com/SafeExamBrowser/seb-server/issues>`_ and/or `Ongoing Discussions <https://github.com/SafeExamBrowser/seb-server/discussions>`_ on the Git-Hub page.
|
||||
|
||||
--------------------------------
|
||||
|
||||
- **Version** : 1.3.x
|
||||
- **Domain** : Exam Monitoring
|
||||
- **Problem** : SEB connections get lost and ping-times go up for already connected SEB clients
|
||||
- **Explanation** : This issue is due to a access token used by SEB client to authenticate on SEB Server that lasts not longer the
|
||||
one hour since SEB Server version 1.3 and since SEB client has no new access token request implements yet.
|
||||
- **Solution** : A workaround for SEB Server version 1.3.x is to make the access token expiry-date last long enough to minimize the possibility
|
||||
that the access token became invalid during a exam. We recommend to set it to 12 hours = 43200 seconds. Therefore please set the following
|
||||
SEB Server setup properties in the respective application-prod.properties configuration file of your SEB Server setup:
|
||||
|
||||
sebserver.webservice.api.admin.accessTokenValiditySeconds=43200
|
||||
sebserver.webservice.api.exam.accessTokenValiditySeconds=43200
|
||||
|
||||
In SEB Server version 1.4 this is already set as default again and we are currently working on new SEB client versions that also
|
||||
handle SEB Server communication token expiry by automatically requesting a new access token (with new lifetime) from SEB Server
|
||||
when an old access token is not valid any longer.
|
||||
|
||||
--------------------------------
|
||||
--------------------------------
|
||||
|
||||
- **Version** : 1.0.0
|
||||
|
|
Loading…
Reference in a new issue