Remove the Projects Link when using Fisheye Standalone 2.7.X (without Crucible)

Still need help?

The Atlassian Community is here for you.

Ask the community

Usage

Use this KB if you need to remove the Projects Link because of the following bug: FE-3963 - Getting issue details... STATUS

Important

If you decide to start using Crucible, these changes need be be reversed.

Howto do it

1. Add this to file <Install>/content/WEB-INF/urlrewrite.xml:

<rule>
    <from>^/cru/browse/(.*)</from>
    <to type="forward">/project/$1</to>
</rule>

(in addition to the existing rule).

2. Change the mapping of the UrlRewriteFilter in web.xml so it looks like:

<filter-mapping>
        <filter-name>UrlRewriteFilter</filter-name>
        <url-pattern>/s/*</url-pattern>
        <url-pattern>/cru/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>FORWARD</dispatcher>
</filter-mapping>

(the second url-pattern was added)

3. Restart Fisheye.

 

Last modified on Jul 31, 2018

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.