O navegador Mercurial no Windows 2003 leva várias atualizações antes de exibir os repositórios


8

Ao tentar procurar meus repositórios do Mercurial, geralmente são necessárias várias atualizações antes da lista de repositórios ser exibida. A configuração é a seguinte:

  • Windows Server 2003 (máquina dedicada hospedada por http://www.server4you.com/ .
  • O site possui proteção de senha anônima com SSL autoassinado.
  • Mercurial 1.5.3
  • Python 2.6.5
  • Extensões do Python para Windows 32 214 py2.6
  • isapi-wsgi 0.4.2

Os repositórios estão sendo atendidos via ISAPI usando o arquivo hgwebdir_wspi.py padrão (copie a seguir).

Também antes de fazer um clone / push / etc, tenho que procurar primeiro nos repositórios, caso contrário, o hg na minha máquina local não consegue localizar o site.

O que posso fazer para começar a rastrear esse problema?

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.

O comportamento que você descreve é ​​estranho ... Eu nunca vi o Mercurial se comportar assim. Perguntei às pessoas no G + se elas podem ajudar. Se eu fosse você, escreveria mercurial@selenic.com para ver se há alguém lá que possa ajudar a depurar isso.
Martin Geisler

Respostas:


1

Parece que o IIS 6 está armazenando em cache as suas páginas da web (você não definiu se estava usando o Apache ou não, por isso presumi que seja um servidor Windows)

Use este link da Microsoft e defina o site para expirar imediatamente .


0

Algo está em cache no caminho. Use curl ou wget para obter a página e verificar os cabeçalhos http. É melhor sem ssl?

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.