web-dev-qa-db-ja.com

Windows 2003のMercurialブラウザは、リポジトリを表示する前にいくつかの更新を行います

Mercurialリポジトリを参照しようとすると、通常、リポジトリリストが表示されるまでに数回の更新が必要です。構成は次のとおりです。

  • Windows Server 2003( http://www.server4you.com/ によってホストされる専用マシン。
  • サイトには、自己署名SSLによる匿名のパスワード保護があります。
  • 水銀1.5.3
  • Python 2.6.5
  • Python for Windows32拡張機能214py2.6
  • isapi-wsgi 0.4.2

リポジトリは、標準のhgwebdir_wspi.pyファイルを使用してISAPI経由で提供されています(以下にコピー)。

また、クローン/プッシュなどを実行する前に、まずリポジトリを参照する必要があります。そうしないと、ローカルマシンのhgがサイトを見つけることができません。

この問題の追跡を開始するにはどうすればよいですか?

hgwebdir_wsgi.py

# Configuration file location
hgweb_config = r'C:\Public\Mercurial\WebSite\hgweb.config'

# Global settings for IIS path translation
path_strip = 0   # Strip this many path elements off (when using url rewrite)
path_prefix = 0  # This many path elements are prefixes (depends on the
                 # virtual path of the IIS application).

import sys

# Adjust python path if this is not a system-wide install
#sys.path.insert(0, r'c:\path\to\python\lib')

# Enable tracing. Run 'python -m win32traceutil' to debug
if hasattr(sys, 'isapidllhandle'):
    import win32traceutil

# To serve pages in local charset instead of UTF-8, remove the two lines below
import os
os.environ['HGENCODING'] = 'UTF-8'


import isapi_wsgi
from Mercurial import demandimport; demandimport.enable()
from Mercurial.hgweb.hgwebdir_mod import hgwebdir

# Example Tweak: Replace isapi_wsgi's handler to provide better error message
# Other stuff could also be done here, like logging errors etc.
class WsgiHandler(isapi_wsgi.IsapiWsgiHandler):
    error_status = '500 Internal Server Error' # less silly error message

isapi_wsgi.IsapiWsgiHandler = WsgiHandler

# Only create the hgwebdir instance once
application = hgwebdir(hgweb_config)

def handler(environ, start_response):

    # Translate IIS's weird URLs
    url = environ['SCRIPT_NAME'] + environ['PATH_INFO']
    paths = url[1:].split('/')[path_strip:]
    script_name = '/' + '/'.join(paths[:path_prefix])
    path_info = '/'.join(paths[path_prefix:])
    if path_info:
        path_info = '/' + path_info
    environ['SCRIPT_NAME'] = script_name
    environ['PATH_INFO'] = path_info

    return application(environ, start_response)

def __ExtensionFactory__():
    return isapi_wsgi.ISAPISimpleHandler(handler)

if __name__=='__main__':
    from isapi.install import *
    params = ISAPIParameters()
    HandleCommandLine(params)

hgweb.config

[paths]
/ = C:\Public\Mercurial\Repositories\*

[web]
allow_archive = bz2 gz Zip      ; Allows archive downloads.
allow_Push = ########       ; Users that are allowed to Push.
8
Tim Murphy

IIS 6がWebページをキャッシュしているようです(Apacheを使用しているかどうかを定義していなかったため、Windowsサーバーであると想定しました)

これを使用して Microsoftからのリンク そしてサイトをすぐに期限切れに設定します。

1
Sawyer Peacock

途中で何かがキャッシュされます。 curlまたはwgetを使用してページを取得し、httpヘッダーを確認します。 SSLなしの方がいいですか?

0
Robert Debowski