9 | | Trac は従来の Wiki と同じように CamelCase をハイパーリンクとして扱います。 CamelCase でのリンクが不要な場合、何個かの設定を変更することができるようになっています: |
10 | | * CamelCase スタイルで書かれた単語がリンクするページが存在しない場合、通常は単語をクエスチョンマーク付の灰色のリンクに置き換えますが、オプション (TracIni の [wiki:TracIni#wiki-section "[wiki]"] セクションにある `ignore_missing_pages`) を有効にすると、単にリンクしないようになります。[[BR]] |
11 | | これは、成果物のコード内でクラス名のような形で CamelCase スタイルの名前が使用され、かつ名前に対応したページがない場合に便利です。 |
12 | | * オプション (TracIni の [wiki:TracIni#wiki-section "[wiki]"] セクションにある `split_page_name`) を有効にすると、リンクを表示するときに、 CamelCase の各単語の間に自動的にスペースを挿入します。 |
13 | | * 明示的な Wiki リンクを生成することも簡単です。 詳細は WikiPageNames を参照して下さい。 |
14 | | * 一部の機能 (コミットログメッセージの表示など) に限定して WikiFormatting を完全に使用できなくすることができます。 TracIni の [wiki:TracIni#changeset-section "[changeset]"] セクションにある `wiki_format_messages` を参照してください。 |
| 7 | == Customizing the Wiki behavior |
16 | | 設定の詳細は TracIni を参照して下さい。 |
| 9 | While Trac remains faithful to the original Wiki style, it also provides a number of ways to accommodate users with different preferences: |
| 10 | * To prevent the creation of a link for the CamelCase word, prefix the word with an exclamation mark (`!`): `!CamelCase`. |
| 11 | * By default a CamelCase word with no corresponding Wiki page will be rendered as a gray link followed by a question mark. This is useful for example when the CamelCase style is used to name code artefacts like class names, and a Wiki page is expected to exist to document each class. The behavior can be configured through the [TracIni#wiki-ignore_missing_pages-option "[wiki] ignore_missing_pages"] option in TracIni. |
| 12 | * To automatically insert space characters between the words of a CamelCase link when rendering the link, enable [TracIni#wiki-split_page_names-option "[wiki] split_page_names"] of TracIni. |
| 13 | * Creation of explicit Wiki links is also easy, see WikiPageNames for details. |
| 14 | * Wiki formatting can be disabled completely in some places, for example when rendering commit log messages. See the [TracIni#changeset-wiki_format_messages-option "[wiki] wiki_format_messages"] option in TracIni. |