Changes between Version 2 and Version 3 of TracNavigation


Ignore:
Timestamp:
Oct 1, 2012 9:35:34 AM (11 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracNavigation

    v2 v3  
    1 = ナビゲーション = #TracNavigation 
     1= Trac Navigation = 
    22 
    3 Trac 0.11 以降では、メインナビゲーションとメタナビゲーションのエントリを簡単な方法でカスタマイズできるようになりました。 
     3Starting with Trac 0.11, it is now possible to customize the main and meta navigation entries in some basic ways. 
    44 
    5 新しく追加されたコンフィグのセクション `[mainnav]` と `[metanav]` を使用すると、ナビゲーション項目に使用されるテキストとリンクをカスタマイズしたり、無効化することができます。 
     5The 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.  The `mainnav` and `metanav` options in the `[trac]` configuration section can also be used to change the order. 
    66 
    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 that are accessible for the current user. 
    89 
    9 `[metanav]` は '''メタナビゲーションバー (meta navigation bar)''' に対応しています。メタナビゲーションは通常、メインナビゲーションバーの上、 ''検索'' (英語版では ''Search'') ボックスの下に配置されています。 ''ログイン'' (英語版では ''Log in''), ''ログアウト'' (英語版では ''Logout''), ''ヘルプ/ガイド'' (英語版では ''!Help/Guide'') などのエントリが含まれています。このナビゲーションバーは Trac プロジェクト全体の情報や、現在のユーザの情報にアクセスします。 
    1010 
    11 `[metanav]` セクションには特別なエントリを記述できます: `logout.redirect` を設定することで、ログアウト後に表示するページを指定できます。 
     11** [=#Example Example] **  
    1212 
    13 記述可能な URL のフォーマット: 
    14 || '''設定内容''' || '''リダイレクト先''' || 
    15 || `wiki/Logout` || `/projects/env/wiki/Logout` || 
    16 || `http://hostname/` || `http://hostname/` || 
    17 || `/projects` || `/projects` || 
    18 [[comment([http://trac.edgewall.org/ticket/3808 #Trac3808] を参照してください)]] 
     13In the following example, we rename the link to the Wiki start "Home", and make the "View Tickets" entry link to a specific report.  The second example (below) also hides the "!Help/Guide" link. 
    1914 
    20 今のところ、 '''コンテキストナビゲーションバー (contextual navigation bar)''' をカスタマイズすることはできません。コンテキストナビゲーションはメインナビゲーションの下に位置するバーです。 
    21  
    22 === 例 === #Example 
    23  
    24 以下の例では、 Wiki のスタートページへのリンク名を "Home" に変更して、 "ヘルプ/ガイド" (英語版では "!Help/Guide") を非表示にします。 
    25 さらに、 "チケットを見る" (英語版では "View Tickets") エントリを特定のレポートにリンクさせます。 
    26  
    27 TracIni からの引用: 
     15Relevant excerpt from the TracIni: 
    2816{{{ 
    2917[mainnav] 
    3018wiki.label = Home 
    3119tickets.href = /report/24 
     20}}} 
    3221 
     22=== `[metanav]` #metanav-bar 
     23`[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. 
     24 
     25There is one special entry in the  `[metanav]` section: `logout.redirect` is the page the user sees after hitting the logout button.  
     26[[comment(see also #Trac3808)]] 
     27 
     28** Example **  
     29 
     30{{{ 
    3331[metanav] 
    3432help = disabled 
     
    3634}}} 
    3735 
     36 
     37=== Notes 
     38Possible URL formats (for `.href` or `.redirect`): 
     39|| '''config''' || '''redirect to''' || 
     40|| `wiki/Logout` || `/projects/env/wiki/Logout` || 
     41|| `http://hostname/` || `http://hostname/` || 
     42|| `/projects` || `/projects` || 
     43 
     44 
     45=== `[trac]` #nav-order 
     46The `mainnav` and `metanav` options in the `[trac]` configuration section control the order in which the navigation items are displayed (left to right).  This can be useful with plugins that add navigation items. 
     47 
     48** Example **  
     49 
     50In the following example, we change the order to prioritise the ticket related items further left. 
     51 
     52Relevant excerpt from the TracIni: 
     53{{{ 
     54[trac] 
     55mainnav = wiki,tickets,newticket,timeline,roadmap,browser,search,admin 
     56}}} 
     57 
     58The default order and item names can be found in the source, which at the time of writing [source:trunk/trac/web/chrome.py@10883:397,402-403#L396 is here] 
     59 
     60=== Context Navigation #ctxtnav-bar 
     61 
     62Note that it is still not possible to customize the '''contextual navigation bar''', i.e. the one usually placed below the main navigation bar. 
     63 
     64 
    3865---- 
    3966See 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)