Changes between Version 1 and Version 2 of TracNavigation
- Timestamp:
- Jan 5, 2015 9:18:11 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracNavigation
v1 v2 1 = ナビゲーション = #TracNavigation1 = Trac Navigation = 2 2 3 Trac 0.11 以降では、メインナビゲーションとメタナビゲーションのエントリを簡単な方法でカスタマイズできるようになりました。 3 Starting with Trac 0.11, it is now possible to customize the main and meta navigation entries in some basic ways. 4 4 5 新しく追加されたコンフィグのセクション `[mainnav]` と `[metanav]` を使用すると、ナビゲーション項目に使用されるテキストとリンクをカスタマイズしたり、無効化することができます。 5 The new `[mainnav]` and `[metanav]` configuration sections can now be used to customize the text and link used for the navigation items, or even to disable them. 6 6 7 `[mainnav]` は '''メインナビゲーションバー (main navigation bar)''' に対応しています。メインナビゲーションは ''Wiki'', ''タイムライン'' (英語版では ''Timeline''), ''ロードマップ'' (英語版では ''Roadmap''), ''リポジトリブラウザ'' (英語版では ''Browse Source'') のようなエントリを含むバーです。このナビゲーションバーは Trac で有効に設定され、現在のユーザがアクセスできるようになっている、各メインモジュールのデフォルトページにアクセスします。 7 === `[mainnav]` #mainnav-bar 8 `[mainnav]` corresponds to the '''main navigation bar''', the one containing entries such as ''Wiki'', ''Timeline'', ''Roadmap'', ''Browse Source'' and so on. This navigation bar is meant to access the default page of the main modules enabled in Trac and accessible for the current user. 8 9 9 `[metanav]` は '''メタナビゲーションバー (meta navigation bar)''' に対応しています。メタナビゲーションは通常、メインナビゲーションバーの上、 ''検索'' (英語版では ''Search'') ボックスの下に配置されています。 ''ログイン'' (英語版では ''Log in''), ''ログアウト'' (英語版では ''Logout''), ''ヘルプ/ガイド'' (英語版では ''Help/Guide'') などのエントリが含まれています。このナビゲーションバーは Trac プロジェクト全体の情報や、現在のユーザの情報にアクセスします。10 10 11 今のところ、 '''コンテキストナビゲーションバー (contextual navigation bar)''' をカスタマイズすることはできません。コンテキストナビゲーションはメインナビゲーションの下に位置するバーです。 11 ** [=#Example Example] ** 12 12 13 === 例 === #Example 14 15 以下の例では、 Wiki のスタートページへのリンク名を "Home" に変更して、 "ヘルプ/ガイド" (英語版では "Help/Guide") を非表示にします。 16 さらに、 "チケットを見る" (英語版では "View Tickets") エントリを特定のレポートにリンクさせます。 13 In the following example, we rename the link to the Wiki start "Home", and hide the "!Help/Guide" link. 14 We also make the "View Tickets" entry link to a specific report. 17 15 18 16 Relevant excerpt from the TracIni: … … 21 19 wiki.label = Home 22 20 tickets.href = /report/24 21 }}} 23 22 23 === `[metanav]` #metanav-bar 24 `[metanav]` corresponds to the '''meta navigation bar''', by default positioned above the main navigation bar and below the ''Search'' box. It contains the ''Log in'', ''Logout'', ''!Help/Guide'' etc. entries. This navigation bar is meant to access some global information about the Trac project and the current user. 25 26 There is one special entry in the `[metanav]` section: `logout.redirect` is the page the user sees after hitting the logout button. 27 [[comment(see also #Trac3808)]] 28 29 ** Example ** 30 31 {{{ 24 32 [metanav] 25 33 help = disabled 34 logout.redirect = wiki/Logout 26 35 }}} 27 36 37 38 === Notes 39 Possible URL formats (for `.href` or `.redirect`): 40 || '''config''' || '''redirect to''' || 41 || `wiki/Logout` || `/projects/env/wiki/Logout` || 42 || `http://hostname/` || `http://hostname/` || 43 || `/projects` || `/projects` || 44 45 46 Note that it is still not possible to customize the '''contextual navigation bar''', i.e. the one usually placed below the main navigation bar. 47 48 28 49 ---- 29 See also: TracInterfaceCustomization, [http://trac-hacks.org/wiki/NavAddPlugin the TracHacks:NavAddPlugin] (まだこのエントリを残しておく)50 See also: TracInterfaceCustomization, and the [http://trac-hacks.org/wiki/NavAddPlugin TracHacks:NavAddPlugin] or [http://trac-hacks.org/wiki/MenusPlugin TracHacks:MenusPlugin] (still needed for adding entries)