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

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

用途

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

重要

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.

 

最終更新日 2018 年 7 月 31 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.