Changes between Version 2 and Version 3 of TracNavigation
- Timestamp:
- Dec 30, 2016, 2:54:47 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracNavigation
v2 v3 1 = ナビゲーション = #TracNavigation1 = Trac Navigation 2 2 3 Trac 0.11 以降では、メインナビゲーションとメタナビゲーションのエントリを簡単な方法でカスタマイズできるようになりました。 4 5 新しく追加されたコンフィグのセクション `[mainnav]` と `[metanav]` を使用すると、ナビゲーション項目に使用されるテキストとリンクをカスタマイズしたり、無効化することができます。コンフィグのセクション `[trac]` に `mainnav` と `metanav` をオプションとして使用すると、並び順を変更することができます。 3 The main and meta navigation entries can be customized in some basic ways. The `[mainnav]` and `[metanav]` configuration sections can be used to customize the navigation item text and link, change the ordering of the navigation items, or even disable them. 6 4 7 5 === `[mainnav]` #mainnav-bar 8 `[mainnav]` は '''メインナビゲーションバー (main navigation bar)''' に対応しています。メインナビゲーションは ''Wiki'', ''タイムライン'' (英語版では ''Timeline''), ''ロードマップ'' (英語版では ''Roadmap''), ''リポジトリブラウザ'' (英語版では ''Browse Source'') のようなエントリを含むバーです。このナビゲーションバーは 現在のユーザがアクセス可能な Trac で有効な各メインモジュールのデフォルトページにアクセスします。6 `[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 that are accessible for the current user. 9 7 10 8 11 ** [=#Example 例] **9 ** [=#Example Example] ** 12 10 13 以下の例では、 Wiki のスタートページへのリンク名を "Home" に変更して、"チケットを見る" (英語版では "View Tickets") エントリを特定のレポートにリンクさせます。2 つめの例では、"ヘルプ/ガイド" (英語版では "!Help/Guide") を非表示にします。 14 15 TracIni からの引用: 16 {{{ 11 In the following example we rename the link to WikiStart //Home//, and make the //View Tickets// entry link to a specific report. 12 {{{#!ini 17 13 [mainnav] 18 14 wiki.label = Home … … 21 17 22 18 === `[metanav]` #metanav-bar 23 `[metanav]` は '''メタナビゲーションバー (meta navigation bar)''' に対応しています。メタナビゲーションは通常、メインナビゲーションバーの上、 ''検索'' (英語版では ''Search'') ボックスの下に配置されています。 ''ログイン'' (英語版では ''Log in''), ''ログアウト'' (英語版では ''Logout''), ''ヘルプ/ガイド'' (英語版では ''!Help/Guide'') などのエントリが含まれています。このナビゲーションバーは Trac プロジェクト全体の情報や、現在のユーザの情報にアクセスします。19 `[metanav]` corresponds to the '''meta navigation bar''', by default positioned above the main navigation bar and below the ''Search'' box. It contains the ''Login'', ''Logout'', ''!Help/Guide'' etc. entries. This navigation bar is meant to access some global information about the Trac project and the current user. 24 20 25 `[metanav]` セクションには特別なエントリを記述できます: `logout.redirect` を設定することで、ログアウト後に表示するページを指定できます。 26 [[comment( [trac:#3808 #Trac3808] を参照してください)]]21 There is one special entry in the `[metanav]` section: `logout.redirect` is the page the user sees after hitting the logout button. The ''!Help/Guide'' link is also hidden in the following example. 22 [[comment(see also #Trac3808)]] 27 23 28 ** 例 **24 ** Example ** 29 25 30 {{{ 26 {{{#!ini 31 27 [metanav] 32 28 help = disabled … … 35 31 36 32 37 === Notes === #Notes38 記述可能な URL のフォーマット (for `.href` or `.redirect`):39 || ''' 設定内容''' || '''リダイレクト先''' ||33 === URL Formats 34 Possible URL formats for `.href` or `.redirect`: 35 || '''config''' || '''redirect to''' || 40 36 || `wiki/Logout` || `/projects/env/wiki/Logout` || 41 37 || `http://hostname/` || `http://hostname/` || … … 43 39 44 40 45 === `[trac]`#nav-order46 コンフィグのセクション `[trac]` に `mainnav` と `metanav` をオプションとして使用すると、ナビゲーション項目の表示順を変更することができます。プラグインをインストールしナビゲーション項目が追加されても有効です。 41 === Ordering #nav-order 42 The `order` attribute specifies the order in which the navigation items are displayed. This can be particularly useful for plugins that add navigation items. 47 43 48 ** 例 ** 44 Non-negative floating point values may be used for the `order` attribute. The navigation items will be arranged from left to right in increasing order. Navigation items without an `order` attribute are sorted alphabetically by name. 49 45 50 以下の例では、チケットに関連する項目を優先し、左側に移動させています。 46 The default values are: 47 {{{#!ini 48 [mainnav] 49 browser.order = 4 50 newticket.order = 6 51 roadmap.order = 3 52 search.order = 7 53 tickets.order = 5 54 timeline.order = 2 55 wiki.order = 1 51 56 52 TracIni からの引用: 53 {{{ 54 [trac] 55 mainnav = wiki,tickets,newticket,timeline,roadmap,browser,search,admin 57 [metanav] 58 about.order = 5 59 help.order = 4 60 login.order = 1 61 logout.order = 2 62 prefs.order = 3 56 63 }}} 57 64 58 並び順と項目名の初期値はソースの中に記されています。その記述は [source:trunk/trac/web/chrome.py@10883:397,402-403#L396 ここ] です。 65 === Context Navigation #ctxtnav-bar 59 66 60 === コンテキストナビゲーション === #ctxtnav-bar 61 62 今のところ、 '''コンテキストナビゲーションバー (contextual navigation bar)''' をカスタマイズすることはできません。コンテキストナビゲーションはメインナビゲーションの下に位置するバーです。 63 67 Note that it is still not possible to customize the '''contextual navigation bar''', ie the one usually placed below the main navigation bar. 64 68 65 69 ---- 66 See also: TracInterfaceCustomization, [http://trac-hacks.org/wiki/NavAddPlugin TracHacks:NavAddPlugin] または [http://trac-hacks.org/wiki/MenusPlugin TracHacks:MenusPlugin] (エントリを追加する際に必要になります)70 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)