Merge with crew
authorMatt Mackall <mpm@selenic.com>
Sun, 23 Jul 2006 14:00:29 -0500
changeset 2651 e57df017640d
parent 2646 ddf404954092 (current diff)
parent 2650 56e98084e040 (diff)
child 2656 6024216754f4
Merge with crew
mercurial/commands.py
--- a/mercurial/commands.py	Wed Jul 19 14:22:08 2006 -0500
+++ b/mercurial/commands.py	Sun Jul 23 14:00:29 2006 -0500
@@ -2666,7 +2666,7 @@
     very useful to compare different revision, to go back to significant
     earlier versions or to mark branch points as releases, etc.
 
-    If no revision is given, the tip is used.
+    If no revision is given, the parent of the working directory is used.
 
     To facilitate version control, distribution, and merging of tags,
     they are stored as a file named ".hgtags" which is managed
@@ -2686,7 +2686,12 @@
     if rev_:
         r = hex(repo.lookup(rev_))
     else:
-        r = hex(repo.changelog.tip())
+        p1, p2 = repo.dirstate.parents()
+        if p1 == nullid:
+            raise util.Abort(_('no revision to tag'))
+        if p2 != nullid:
+            raise util.Abort(_('outstanding uncommitted merges'))
+        r = hex(p1)
 
     repo.tag(name, r, opts['local'], opts['message'], opts['user'],
              opts['date'])
--- a/mercurial/hgweb/server.py	Wed Jul 19 14:22:08 2006 -0500
+++ b/mercurial/hgweb/server.py	Sun Jul 23 14:00:29 2006 -0500
@@ -198,6 +198,7 @@
             self.webdirmaker = hgwebdir
             self.repoviewmaker = hgweb
             self.reqmaker = wsgiapplication(self.make_handler)
+            self.daemon_threads = True
 
         def make_handler(self):
             if self.webdir_conf:
--- a/mercurial/templater.py	Wed Jul 19 14:22:08 2006 -0500
+++ b/mercurial/templater.py	Sun Jul 23 14:00:29 2006 -0500
@@ -241,6 +241,7 @@
     return text.replace('\n', '<br/>\n')
 
 def obfuscate(text):
+    text = unicode(text, 'utf-8', 'replace')
     return ''.join(['&#%d;' % ord(c) for c in text])
 
 def domain(author):
--- a/tests/test-tag	Wed Jul 19 14:22:08 2006 -0500
+++ b/tests/test-tag	Sun Jul 23 14:00:29 2006 -0500
@@ -19,6 +19,11 @@
 cat .hgtags
 cat .hg/localtags
 
+hg update 0
+hg tag -d "1000000 0" "foobar"
+cat .hgtags
+cat .hg/localtags
+
 hg tag -l 'xx
 newline'
 hg tag -l 'xx:xx'
--- a/tests/test-tag.out	Wed Jul 19 14:22:08 2006 -0500
+++ b/tests/test-tag.out	Sun Jul 23 14:00:29 2006 -0500
@@ -25,5 +25,8 @@
 0acdaf8983679e0aac16e811534eb49d7ee1f2b4 bleah
 0acdaf8983679e0aac16e811534eb49d7ee1f2b4 bleah0
 c5c60883086f5526bd3e36814b94a73a4e75e172 bleah1
+0 files updated, 0 files merged, 1 files removed, 0 files unresolved
+0acdaf8983679e0aac16e811534eb49d7ee1f2b4 foobar
+c5c60883086f5526bd3e36814b94a73a4e75e172 bleah1
 abort: '\n' cannot be used in a tag name
 abort: ':' cannot be used in a tag name