Search the Knowledgebase |
Browse by Category |
|
|
|
|
|
| Associating the SoloSubmit Login Page with a Single Project |
Last Updated 6th of July, 2009
|
|
Thank you for rating this answer.
|
You can associate the SoloSubmit login page with a single project, bypassing the project selection page. When a user or customer logs in to SoloSubmit, they are taken directly to the bug reporting form.
To set the loginSoloSubmit.htm page to be associated with a single project, you have to uncomment one line and comment out another line. Make sure you know the databaseid value. To find this value, start the TestTrack Server Admin Utility and click Projects. The database id value is listed in the first column.
- Edit the loginsolosubmit.htm page in Notepad or a similar text editor.
-
Find the following function:
function gotoSoloSubmitWindow()
{ stringMyURL = new String('/scripts/ttcgi.exe?command=SoloSubmitScreen'); //stringMyURL = new String('/scripts/ttcgi.exe?command=SoloSubmitScreen&databaseid=1'); //this jumps to solosubmit form for specified database window.location = stringMyURL; // opens SoloSubmit in the current window //window.open( stringMyURL ); //this would open SoloSubmit in a new browser window } //setTimeout("gotoSoloSubmitWindow()",2) //this could be used to automatically pop-up a solosubmit window // -->
-
Switch out the stringMyURL lines.
function gotoSoloSubmitWindow() { //stringMyURL = new String('/scripts/ttcgi.exe?command=SoloSubmitScreen'); stringMyURL = new String('/scripts/ttcgi.exe?command=SoloSubmitScreen&databaseid=1'); //this jumps to solosubmit form for specified database window.location = stringMyURL; // opens SoloSubmit in the current window //window.open( stringMyURL ); //this would open SoloSubmit in a new browser window } //setTimeout("gotoSoloSubmitWindow()",2) //this could be used to automatically pop-up a solosubmit window // -->
|
| Attachments |
|
No attachments were found.
|