Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,13 @@ in [site/package.json](https://github.com/Submitty/Submitty/blob/master/site/pac
As Submitty is an application, not a library, each dependency in both of those files are pinned to a specific
version, and should not be set to use a range (e.g. use `1.0.0` over `^1.0.0`).

For developing purposes, if there are code changes made to the packages managed by [npm](https://npmjs.com) (
[Submitty/pdf-annotate.js](https://github.com/Submitty/pdf-annotate.js) for example), to view the changes locally:
For developing purposes, if there are code changes made to the packages managed by [npm](https://npmjs.com), to view the changes locally:
1. Clone the repo for the package into the Submitty VM.
1. Run `npm install`.
1. Run `npm run build`.
1. Edit the `site/package.json` on the host machine to have the package point to the new directory temporarily. For example,
```
"@submitty/pdf-annotate.js": "file:///PATH/TO/THE/CLONED/REPO/IN/VM",
"@ORG-NAME/PACKAGE-NAME": "file:///PATH/TO/THE/CLONED/REPO/IN/VM",
```
1. Run the install script.

Expand Down
2 changes: 1 addition & 1 deletion _docs/developer/getting_started/make_a_pull_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Be sure to read the [Suggestions for New Developers](/developer/getting_started/
* `Autograding` (includes router, container/docker),
* `Forum` (Includes Live Chat),
* `Notifications` (includes email and grade inquiries),
* `TAGrading` (includes PDF annotation, peer grading),
* `TAGrading` (includes image annotation, peer grading),
* `InstructorUI` (includes course and gradeable configuration),
* `SubminiPolls`,
* `HelpQueue`,
Expand Down
18 changes: 18 additions & 0 deletions _docs/grader/rubric_grading/image_annotation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
category: Grader > Rubric Grading
title: Image Annotation
---

## Overall Comment and Image Annotations

In addition to the somewhat general-purpose system of common marks and points,
graders can leave more personalized type-written notes in the *Overall
Comment* box at the bottom of the grading rubric panel.

The grader can also add annotations to image documents that the
student has submitted, or image documents that were automatically generated within
the student's submission, such as the single-page JPGs made during a bulk-upload.
Annotations can be handwritten using a touchscreen, digital tablet, or mouse,
or they can be typewritten in textboxes places on the image.

![](/images/ta_grading/rubric_grading_image_annotation.png)
21 changes: 0 additions & 21 deletions _docs/grader/rubric_grading/pdf_annotation.md

This file was deleted.

2 changes: 1 addition & 1 deletion _docs/index/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ _Note: Click on the <u>links</u> and <i class="fas fa-info-circle" style="font-s
* [detailed rubric grading](/grader/rubric_grading) of submitted materials
* web interface for file access or bulk download
* [assign sections of grading to different TAs](/instructor/assignment_preparation/index#grader-assignment-method)
* [digital PDF annotation](/grader/rubric_grading/pdf_annotation)
* [image annotation](/grader/rubric_grading/image_annotation)
* grading progress indicator and [grade statistics & histogram](/grader/rubric_grading/statistics)
* [retroactive rubric and point adjustment](/grader/rubric_grading/common_marks)
* [grade inquiries](/student/grades/grade_inquiry) (clarifications/corrections of manual grading)
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/ta_grading/rubric_grading_pdf_annotation.png
Binary file not shown.
2 changes: 1 addition & 1 deletion navtreedata.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ var NAVTREE =
[ "Overview", "/grader/rubric_grading/index", null ],
[ "Rubric Components and Marks", "/grader/rubric_grading/rubric_components_and_marks", null ],
[ "Silent Regrade", "/grader/rubric_grading/silent_regrade", null ],
[ "PDF Annotation", "/grader/rubric_grading/pdf_annotation", null ],
[ "Image Annotation", "/grader/rubric_grading/image_annotation", null ],
[ "Sorting and Navigation", "/grader/rubric_grading/sorting_and_navigation", null ],
[ "Resolving a Grade Inquiry", "/grader/rubric_grading/grade_inquiry", null ],
[ "Statistics", "/grader/rubric_grading/statistics", null ]
Expand Down
Loading