El navegador Mercurial en Windows 2003 toma varias actualizaciones antes de mostrar repositorios


8

Cuando intento explorar mis repositorios de Mercurial, generalmente se requieren varias actualizaciones antes de que se muestre la lista de repositorios. La configuración es la siguiente:

  • Windows Server 2003 (máquina dedicada alojada por http://www.server4you.com/ .
  • El sitio tiene protección de contraseña anónima con SSL autofirmado.
  • Mercurial 1.5.3
  • Python 2.6.5
  • Python para Windows 32 extensiones 214 py2.6
  • isapi-wsgi 0.4.2

Los repositorios se sirven a través de ISAPI utilizando el archivo estándar hgwebdir_wspi.py (copia a continuación).

Además, antes de hacer un clon / push / etc, primero tengo que navegar por los repositorios, de lo contrario hg en mi máquina local no puede localizar el sitio.

¿Qué puedo hacer para comenzar a rastrear este 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.

El comportamiento que describe es extraño ... Nunca he visto a Mercurial comportarse así. Le pregunté a las personas en G + si pueden ayudar. Si yo fuera usted, escribiría mercurial@selenic.com para ver si hay alguien allí que pueda ayudar a depurar esto.
Martin Geisler

Respuestas:


1

Parece que IIS 6 está almacenando en caché sus páginas web (no definió si estaba usando Apache o no, así que supuse que era un servidor de Windows)

Use este enlace de Microsoft y configure el sitio para que caduque inmediatamente .


0

Algo se almacena en el camino. Use curl o wget para obtener la página y verificar los encabezados http. ¿Es mejor sin SSL?

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.