subrepo: use [0-9] instead of [\d] in svn subrepo regex
The \d was used in a normal (not raw) string and was only passed
through to re.search because Python does not define that escape
character itself. Using 0-9 makes it clearer what is happening.
webcommands: remove unncessary access to repo.changelog
changectx are good enough in these cases and their interface is more stable.
Added signature for changeset
ff5cec76b1c5
Added tag 1.6.3 for changeset
ff5cec76b1c5
util: avoid using hashlib on Python < 2.5 (
issue2278)
The following patch allows the use of python2.4 with a standalone
hashlib rather than assuming that python2.5 is in use when hashlib is
imported successfully.