1 # Copyright (c) 2005 Mark Williamson <mark.williamson@cl.cam.ac.uk>
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License version 2 as
5 # published by the Free Software Foundation.
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
12 # You should have received a copy of the GNU General Public License
13 # along with this program; if not, write to the Free Software
14 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 def doCommit(keepFiles
, filesToCommit
, msg
):
22 for f
in filesToCommit
:
23 commitFileNames
.append(f
.dstName
)
24 runProgram(['hg', 'commit', '-A', '-l', '-'] + commitFileNames
, msg
)
27 parseDiffRE
= re
.compile('([AMR?]) (.*)')
29 def __getPatch(file, otherFile
= None):
30 if file.change
== 'M' or file.change
== 'R':
31 return runProgram(['hg', 'diff', file.dstName
])
32 elif file.change
== '?':
33 return runProgram(['diff', '-u', '/dev/null', file.dstName
],
37 inp
= runProgram(['hg', 'status'])
40 recs
= inp
.split("\n")
41 recs
.pop() # remove last entry (which is '')
45 m
= parseDiffRE
.match(rec
)
48 print "Unknown output from hg status!: " + rec
+ "\n"
53 f
.srcName
= f
.dstName
= m
.group(2)
55 f
.patch
= __getPatch(f
)
63 # HEAD is src in the returned File objects. That is, srcName is the
64 # name in HEAD and dstName is the name in the cache.
66 files
= __parseStatus()
70 f
.text
= 'Added file: ' + f
.srcName
72 f
.text
= 'New file: ' + f
.srcName
74 f
.text
= 'Removed file: ' + f
.srcName
81 def basicsFailed(msg
):
82 print "hg status: " + msg
83 print "Make sure that the current working directory contains a '.hg' directory."
87 runProgram(['hg', 'status'])
89 basicsFailed(e
.strerror
)
90 except ProgramError
, e
:
93 def doUpdateCache(file):
96 def discardFile(file):
97 if file.change
== "M":
98 runProgram(['hg', 'revert', file.dstName
])
99 elif file.change
== "?":
100 runProgram(['rm', '-f', file.dstName
])
103 def ignoreFile(file):
104 hgignore
= open('.hgignore', 'a')
105 print >> hgignore
, "^" + re
.escape(file.dstName
) + "$"
109 # Not yet implemented