Skip to content

Commit a0f03bc

Browse files
committed
[Documentation:Instructor] Add redaction instructions for bulk PDF uploads
1 parent 1117160 commit a0f03bc

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

_docs/instructor/assignment_preparation/bulk_pdf_upload.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,3 +253,39 @@ submission page.
253253

254254

255255
See also: [Personalized Exams](/instructor/personalized_exams)
256+
257+
## Redactions
258+
259+
When you upload a bulk PDF, you may want to redact certain information from the students' submissions. Submitty allows you to prepare redactions for the bulk PDF uploads. These redactions will be shown to limited access graders, and along with blinded grading, will help maintain student privacy.
260+
261+
### Preparing Redactions
262+
To prepare for redactions, you must first create a redactions JSON file. This file should contain the pages and coordinates of the areas you want to redact. The format of the JSON file is as follows where coordinates are in the range of 0 to 1, representing a percentage of the page dimensions:
263+
264+
```json
265+
[
266+
{
267+
"page": 1,
268+
"x1": 0.25,
269+
"y1": 0.25,
270+
"x2": 0.75,
271+
"y2": 0.75
272+
},
273+
{
274+
"page": 2,
275+
"x1": 0.1,
276+
"y1": 0.1,
277+
"x2": 0.9,
278+
"y2": 0.9
279+
}
280+
]
281+
```
282+
283+
In order to be able to turn on redactions for the gradeable, you must turn on "Are student submissions/uploads a single file PDF with a fixed/prescribed format?" in the "Rubric" tab. This will allow you to upload new redactions json files.
284+
285+
![Redactions Preparation](/images/start_redactions.png){:width="600px"}
286+
287+
### Viewing Redactions
288+
289+
Once you have prepared the redactions JSON file, either start a bulk upload or view an existing bulk upload submission. You will see boxes on the PDF that represent the redactions you have prepared. These boxes will be shown to limited access graders, and they will not be able to see the content within these redacted areas.
290+
291+
![Redactions Viewing](/images/redacted.png){:width="400px"}

images/redacted.png

41.8 KB
Loading

images/start_redactions.png

293 KB
Loading

0 commit comments

Comments
 (0)