Updated: 09 April 2022

Add link to redirect users to a remote release page - c06238680

Add link to the Job Submission page to redirect users using web print to the release system ( GoPrint as an example), see image below for what we are trying to achieve:

To implement this change, these are the files needed:

  • C:\Program Files (x 86)\ PrinterOn Corporation\Apache Tomcat\webapps\cps\ css \custom.css
    Used to customize the link color and position of the link.
  • C:\Program Files (x 86)\ PrinterOn Corporation\Apache Tomcat\webapps\cps\ RequestSubmittedNoPopup.jsp

Used to define the actual link users can click on to route to the release station page.

Open up the RequestSubmittedNoPopup.jsp file (using a text editor like Notepad++) located by default here: C:\Program Files (x 86)\ PrinterOn Corporation\Apache Tomcat\webapps\cps

Search the document and find 'panel-buttons'.

Put this command just above the start of the line <div class="panel-buttons">

<div class=" goprint ">

<a href ="https://someurl.com" target="_blank">Click here to release your job via GoPrint </ href ></div>

NOTE:

  • Replace someurl.com with the actual URL or the IP address of the machine.
  • Replace the text 'Click here to release your job via GoPrint ' with the text you would like the users to see when they get to this page.
  • Backup the file changed as these changes will be removed after completing an upgrade.