Changes between Version 1 and Version 2 of TracSearch
- Timestamp:
- Jan 5, 2015 9:18:11 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracSearch
v1 v2 1 = 検索 = #UsingSearch1 = Using Search = 2 2 3 Trac には Wiki ページ、チケット、チェンジセットからキーワードや部分文字列を検索するエンジンが内蔵されています。3 Trac has a built-in search engine to allow finding occurrences of keywords and substrings in wiki pages, tickets and changeset properties (author, revision and log message). 4 4 5 Trac の検索機能の使い方はシンプルで、インタフェースもユーザに親しみやすいものになっています。 5 Using the Trac search facility is straightforward and its interface should be familiar to most users. 6 6 7 また、 [search: 検索モジュール] (英語版では Search) とは別に、ナビゲーションバーの上に小さな検索フィールドが常に表示され、すべてのページから簡単に検索機能にアクセスすることができます。 7 Apart from the [search: Search module], you will also find a small search field above the navigation bar at all time. It provides convenient access to the search module from all pages. 8 8 9 == " クイックジャンプ" 検索 == #Quickjumpsearches10 プロジェクトのいろいろなリソースに素早くアクセスするために、すべてのページの一番上にある検索フィールドでは、 [TracLinks Wiki リンク] を入力して、対応するページに直接移動することができます。 9 == "Quickjump" searches == 10 For quick access to various project resources, the quick-search field at the top of every page can be used to enter a [TracLinks wiki link], which will take you directly to the resource identified by that link. 11 11 12 例:12 For example: 13 13 14 * ![42] -- リビジョン 42 のチェンジセットを開きます。15 * !#42 -- チケット !#42 を開きます。16 * !{1} -- レポート !{1} を開きます。17 * /trunk -- リポジトリブラウザの `trunk` ディレクトリを直接開きます。14 * ![42] -- Opens change set 42 15 * !#42 -- Opens ticket number 42 16 * !{1} -- Opens report 1 17 * /trunk -- Opens the browser for the `trunk` directory 18 18 19 == 上級編 == #Advanced19 == Advanced == 20 20 21 === クイックジャンプを無効にする === #DisablingQuickjumps22 検索するキーワードに対するクイックジャンプ機能を無効にしたい場合 (例えば !TracGuide という文字列を検索したいとき) は、先頭にエクスクラメーションマーク (!) を付けて入力してください。 21 === Disabling Quickjumps === 22 To disable the quickjump feature for a search keyword - for example when searching for occurences of the literal word !TracGuide - begin the query with an exclamation mark (!). 23 23 24 === 検索リンク === #SearchLinks25 Wiki では、`search:` リンクを使用して、特定の検索に 26 リンクすることが可能です:27 * `search:?q=crash` は "crash" という文字列を検索します。28 * `search:?q=trac+link&wiki=on` は "trac" と "link" という文字を29 wiki ページに限定して検索します。24 === Search Links === 25 From the Wiki, it is possible to link to a specific search, using 26 `search:` links: 27 * `search:?q=crash` will search for the string "crash" 28 * `search:?q=trac+link&wiki=on` will search for "trac" and "link" 29 in wiki pages only 30 30 31 31 ----