Il browser Mercurial su Windows 2003 richiede diversi aggiornamenti prima di visualizzare i repository


8

Quando tento di sfogliare i miei repository Mercurial, di solito sono necessari diversi aggiornamenti prima che venga visualizzato l'elenco dei repository. La configurazione è la seguente:

  • Windows Server 2003 (macchina dedicata ospitata da http://www.server4you.com/ .
  • Il sito ha una protezione anonima della password con SSL autofirmato.
  • Mercurial 1.5.3
  • Python 2.6.5
  • Python per Windows 32 estensioni 214 py2.6
  • isapi-wsgi 0.4.2

I repository vengono serviti tramite ISAPI utilizzando il file hgwebdir_wspi.py standard (copia da seguire).

Anche prima di fare un clone / push / etc devo prima cercare nei repository altrimenti hg sul mio computer locale non riesce a localizzare il sito.

Cosa posso fare per iniziare a rintracciare questo 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.

Il comportamento che descrivi è strano ... Non ho mai visto Mercurial comportarsi così. Ho chiesto alle persone su G + se possono aiutare. Se fossi in te, scriverei mercurial@selenic.com per vedere se c'è qualcuno che può aiutarti a eseguire il debug.
Martin Geisler,

Risposte:


1

Sembra che IIS 6 stia memorizzando nella cache le tue pagine web (non hai definito se stavi usando Apache o no, quindi ho pensato che fosse un server Windows)

Utilizzare questo collegamento da Microsoft e impostare il sito su Scadenza immediata .


0

Qualcosa viene memorizzato nella cache. Usa arricciatura o wget per ottenere la pagina e controllare le intestazioni http. È meglio senza ssl?

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.