Merge with Eric
authorMatt Mackall <mpm@selenic.com>
Tue, 24 Jan 2006 13:50:40 +1300
changeset 1632 3f214984fd9e
parent 1631 4fb25c078d06 (diff)
parent 1630 5ecf05541e11 (current diff)
child 1633 94c179a92f4a
Merge with Eric
mercurial/localrepo.py
--- a/mercurial/localrepo.py
+++ b/mercurial/localrepo.py
@@ -424,6 +424,7 @@ class localrepository(object):
             changed.append(f)
 
         # update manifest
+        m1 = m1.copy()
         m1.update(new)
         for f in remove:
             if f in m1:
@@ -1389,7 +1390,7 @@ class localrepository(object):
         man = self.manifest.ancestor(m1n, m2n)
         m1 = self.manifest.read(m1n)
         mf1 = self.manifest.readflags(m1n)
-        m2 = self.manifest.read(m2n)
+        m2 = self.manifest.read(m2n).copy()
         mf2 = self.manifest.readflags(m2n)
         ma = self.manifest.read(man)
         mfa = self.manifest.readflags(man)
--- a/templates/header.tmpl
+++ b/templates/header.tmpl
@@ -3,6 +3,7 @@ Content-type: text/html
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 <html>
 <head>
+<meta name="robots" content="index, nofollow" />
 <style type="text/css">
 <!--
 a { text-decoration:none; }