Changes between Version 1 and Version 2 of TracModPython


Ignore:
Timestamp:
Jun 21, 2005, 1:13:35 AM (19 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracModPython

    v1 v2  
    1 = Trac and mod_python =
     1= Trac mod_python =
    22
    3 Trac 0.7.1 and later supports [http://www.modpython.org/ mod_python], which speeds up Trac's response times considerably and permits use of many Apache features not possible with tracd/mod_proxy.
     3Trac 0.7.1以降のバージョンでは[http://www.modpython.org/ mod_python]がサポートされています。[http://www.modpython.org/ mod_python]はTracのレスポンスタイムを飛躍的に向上し、tracd/mod_proxyでは使用できない多くのApache機能を使えるようにします。
    44
    5 == Simple configuration ==
     5== シンプルなコンフィギュレーション ==
    66
    7 Here's a typical Trac CGI/Apache setup:
     7標準的なTrac CGI/Apacheのセットアップは次のようになっています:
    88
    99{{{
     
    1414}}}
    1515
    16 The equivalent mod_python setup is:
     16上記に対応するmod_pythonのセットアップは次のようになります:
    1717
    1818{{{
     
    2525}}}
    2626
    27 Note that the option ''TracUriRoot'' may or may not be necessary in your setup. Try without first, and if the URLs produced by Trac look wrong, add the ''TracUriRoot'' option.
     27''TracUriRoot''オプションは不要な場合もありますのでご注意ください。まずは''TracUriRoot''オプションを付けずに試し、Tracが正しくURLを生成できないようであれば追加するようにしてください。
    2828
    29 == Setting up multiple projects ==
     29== マルチプロジェクトのセットアップ ==
    3030
    31 The Trac mod_python handler handler supports a configuration option similar to Subversion's {{{SvnParentPath}}}, called {{{TracEnvParentDir}}}:
     31Tracのmod_pythonハンドラはサブバージョンの {{{SvnParentPath}}} とよく似た {{{TracEnvParentDir}}} というコンフィギュレーションオプションをサポートしています。
    3232
    3333{{{
     
    4040}}}
    4141
    42 When you request the {{{/projects}}} URL, you will get a (currently very simple) listing of all subdirectories of the directory you set as {{{TracEnvParentDir}}}. Selecting any project in the list will bring you to the corresponding Trac instance. You should make sure that the configured directory only contains Trac environment directories that match the currently installed Trac version, because that is not checked prior the the generation of the project list.
     42{{{/projects}}} のURLをリクエストすると、{{{TracEnvParentDir}}}として設定したディレクトリ配下のサブディレクトリ一覧(現行では非常にシンプルな)が表示されます。その一覧から何かプロジェクトを選択するとそれに該当するTracのインスタンスを開くことができます。設定したディレクトリの配下には必ず現在インストールされているバージョンにマッチするTrac Environmentのディレクトリのみが置かれているようにしてください。プロジェクトリストの生成前にはそのようなチェックがかからないからです。
    4343
    4444
    45 === Adding authentication ===
     45=== ユーザ認証の追加 ===
    4646
    47 Adding authentication is straightforward in both cases. For example:
     47ユーザ認証の追加はどちらの場合も簡単です。次に例を示します:
    4848
    4949{{{
     
    5858=== Win32 Issues ===
    5959
    60 If you run trac with mod_python on Windows, attachments will not work.
     60Windows 上で mod_python から Trac を使用すると、ファイル添付機能が使用できません。
    6161
    62 There is a (simple) workaround for this which is to apply the patch attached to
    63 ticket [http://projects.edgewall.com/trac/ticket/554 #554].
     62これについては(簡単な)回避策があります。
     63ticket[http://projects.edgewall.com/trac/ticket/554 #554]に添付されているパッチを適用してください。
    6464
    6565
    6666----
    67 See also TracGuide, TracInstall, TracMultipleProjects
     67参考 TracGuide, TracInstall, TracMultipleProjects