blob: 362b6b12f34fdb8381ca8d6540f8f3612c2f6882 [file] [log] [blame]
#!/usr/bin/python
#
# USAGE: check-modified.py FILE_OR_DIR1 FILE_OR_DIR2 ...
#
# prints out the URL associated with each item
#
import sys
import os
import os.path
import svn.core
import svn.client
import svn.wc
FORCE_COMPARISON = 0
def usage():
print "Usage: " + sys.argv[0] + " FILE_OR_DIR1 FILE_OR_DIR2\n"
sys.exit(0)
def run(files):
svn.core.apr_initialize()
pool = svn.core.svn_pool_create(None)
for f in files:
dirpath = fullpath = os.path.abspath(f)
if not os.path.isdir(dirpath):
dirpath = os.path.dirname(dirpath)
adm_baton = svn.wc.adm_open(None, dirpath, False, True, pool)
try:
entry = svn.wc.entry(fullpath, adm_baton, 0, pool)
if svn.wc.text_modified_p(fullpath, FORCE_COMPARISON,
adm_baton, pool):
print "M %s" % f
else:
print " %s" % f
except:
print "? %s" % f
svn.wc.adm_close(adm_baton)
svn.core.svn_pool_destroy(pool)
svn.core.apr_terminate()
if __name__ == '__main__':
run(sys.argv[1:])