How to view Camera-Ready Revisions

If you enabled a Submission Revision Stage to allow authors to revise their submissions or submit Camera-Ready Revisions, the authors will have used these invitations to directly revise their existing submissions. This means that in order to see the final versions you can simply go to the forum of each submission. You can also click 'show revisions' to see the revision history for each paper.

If you need a way to see which authors have submitted camera-ready revisions, you will first need to install and setup the python client.

The first step is to get all submissions with a corresponding camera-ready invitation. The following example will be for "accepted" papers.

Get all accepted papers. Make sure to replace venue_id with your specific venue ID, it will be a string.

accepted_notes = client.get_all_notes(content={'venueid':venue_id} )

Check the notes to see if the Camera_Ready_Revision invitation is stored in note.invitations. This means the note was edited by the authors with the camera_ready_revision invitation. If the invitation you created for the camera-ready isn't named "Camera_Ready_Revision", please use the correct invitation for your venue. Again, replace venue_id with your own.

camera_ready_notes = []
for note in accepted_notes:
    camera_ready_invitation = f'venue_id/Submission{note.number}/-/Camera_Ready_Revision'
    if camera_ready_invitation in note.invitations:
        camera_ready_notes.append(note)

You can check the camera_ready_notes list for the submissions that did submit their camera-ready draft.

Last updated