From: Ian Weller Date: Mon, 8 Mar 2010 06:51:11 +0000 (-0600) Subject: Write basic diff command using bzrlib.diff X-Git-Url: https://projects.mako.cc/source/mw/commitdiff_plain/816795f2da7b4f71950496d241aac7e6b1944d35 Write basic diff command using bzrlib.diff --- diff --git a/src/mw/clicommands.py b/src/mw/clicommands.py index 95d1fe8..8f951a6 100644 --- a/src/mw/clicommands.py +++ b/src/mw/clicommands.py @@ -138,3 +138,9 @@ class DiffCommand(CommandBase): def _do_command(self): self._die_if_no_init() + status = self.metadir.working_dir_status() + for file in status: + if status[file] == 'U': + print self.metadir.diff_rv_to_working( + mw.api.filename_to_pagename(file[:-5]) + ) diff --git a/src/mw/metadir.py b/src/mw/metadir.py index 7126872..eb4e565 100644 --- a/src/mw/metadir.py +++ b/src/mw/metadir.py @@ -16,11 +16,13 @@ # with this program. If not, see . ### +import bzrlib.diff import codecs import ConfigParser import json import mw.api import os +from StringIO import StringIO import sys @@ -148,3 +150,29 @@ class Metadir(object): if cur_content != rv['content']: status[os.path.relpath(full, self.root)] = 'U' return status + + def diff_rv_to_working(self, pagename, oldrvid=0, newrvid=0): + # oldrvid=0 means latest fetched revision + # newrvid=0 means working copy + filename = mw.api.pagename_to_filename(pagename) + '.wiki' + pageid = self.get_pageid_from_pagename(pagename) + if not pageid: + raise ValueError('page named %s has not been fetched' % pagename) + else: + if oldrvid == 0: + oldrvid = self.pages_get_rv_list(pageid)[-1] + oldrv = self.pages_get_rv(pageid, oldrvid) + oldname = 'a/%s (revision %i)' % (filename, oldrvid) + old = [i+'\n' for i in oldrv['content'].split('\n')] + if newrvid == 0: + cur_content = codecs.open(filename, 'r', 'utf-8').read() + newname = 'b/%s (working copy)' % filename + new = [i+'\n' for i in cur_content.split('\n')] + else: + newrv = self.pages_get_rv(pageid, newrvid) + newname = 'b/%s (revision %i)' % (filename, newrvid) + new = [i+'\n' for i in newrv['content'].split('\n')] + diff_fd = StringIO() + bzrlib.diff.internal_diff(oldname, old, newname, new, diff_fd) + diff_fd.seek(0) + return diff_fd.read()