mercurial/hgweb/server.py
changeset 10905 13a1b2fb7ef2
parent 10644 63948e7d37f7
child 12076 49463314c24f
equal deleted inserted replaced
10903:cd21bf199d17 10905:13a1b2fb7ef2
     5 #
     5 #
     6 # This software may be used and distributed according to the terms of the
     6 # This software may be used and distributed according to the terms of the
     7 # GNU General Public License version 2 or any later version.
     7 # GNU General Public License version 2 or any later version.
     8 
     8 
     9 import os, sys, errno, urllib, BaseHTTPServer, socket, SocketServer, traceback
     9 import os, sys, errno, urllib, BaseHTTPServer, socket, SocketServer, traceback
    10 from mercurial import hg, util, error
    10 from mercurial import util, error
    11 from mercurial.i18n import _
    11 from mercurial.i18n import _
    12 
    12 
    13 def _splitURI(uri):
    13 def _splitURI(uri):
    14     """ Return path and query splited from uri
    14     """ Return path and query splited from uri
    15 
    15