My Background Jobs Link Is Displayed On The Login Page
Note: This applies to DocuShare 6.5.x
Issue
The My Background Jobs link is displayed on the login page for the admin account.
Solution
Note: You must be the Windows Administrator to perform this solution.
1. Open Windows Explorer and navigate to the <dshome>\amber\templates\local directory
Where <dshome> is replaced with the installation path to DocuShare. Depending on your installation environment this path may vary. The default installation path is C:\Xerox\Docushare.
Note: Create a new directory called local inside the templates directory if one does not already exist.
2. Navigate to the <dshome>\amber\templates\system directory
3. Make a copy of the dslib.vdf file
4. Paste the dslib.vdf file into the <dshome>\amber\templates\local directory.
5. Open the dslib.vdf file that is located in the local directory in a text editor such as Notepad.
6. Search for the word background
This should bring you to the <!-- Background Jobs Status Bar --> section.
7. On the line below <!-- Background Jobs Status Bar --> insert the following line
<if cond=”${request:isValidUser}”>
8. At the end of the Background Jobs Status Bar section insert an </if> line right above <!—User Messages -->
Example:
<!-- Background Jobs Status Bar -->
<if cond=”${request:isValidUser}”>
<with name="backgroundJobCount" ref="request:user_obj:backgoundJobCount">
<if cond="${backgroundJobCount} > 0">
<div role="status" id="subheader_bkgndjobs"><p>
<if cond="${backgroundJobCount} == 1">
<a href="${request:config:cmd_base}BackgroundJobStatus/${request:user_obj:handle}" title="${viewdef:dslibMessages:clickBackgroundJobs}"><insert ref="viewdef:dslibMessages:oneBackgroundJob_footer(count='${backgroundJobCount}')" /></a>
<else>
<a href="${request:config:cmd_base}BackgroundJobStatus/${request:user_obj:handle}" title="${viewdef:dslibMessages:clickBackgroundJobs}"><insert ref="viewdef:dslibMessages:backgroundJobs_footer(count='${backgroundJobCount}')" /></a>
</else>
</if>
</p></div>
</if>
</with>
</if>
<!-- User Messages -->
9. Save the changes.
Solution Updated: December 8th, 2010
AR 18353
|