diff options
Diffstat (limited to 'libbe/storage')
-rw-r--r-- | libbe/storage/http.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libbe/storage/http.py b/libbe/storage/http.py index f7b0316..2de2aff 100644 --- a/libbe/storage/http.py +++ b/libbe/storage/http.py @@ -234,6 +234,15 @@ class HTTP (base.VersionedStorage): raise base.InvalidID(id) return page.rstrip('\n') + def changed(self, revision=None): + url = urlparse.urljoin(self.repo, 'changed') + page,final_url,info = get_post_url( + url, get=True, + data_dict={'revision':revision}) + lines = page.strip('\n') + new,mod,rem = [p.splitlines() for p in page.split('\n\n')] + return (new, mod, rem) + def check_storage_version(self): version = self.storage_version() if version != libbe.storage.STORAGE_VERSION: |