Mercurial > hg > mercurial-crew
annotate hgext/largefiles/wirestore.py @ 15252:6e809bb4f969
largefiles: improve comments, internal docstrings
- fix some ungrammatical/unclear/incorrect comments/docstrings
- rewrite some really unclear comments/docstrings
- make formatting/style more consistent with the rest of Mercurial
(lowercase without period unless it's really multiple sentences)
- wrap to 75 columns
- always say "largefile(s)", not "lfile(s)" (or "big files")
- one space between sentences, not two
author | Greg Ward <greg@gerg.ca> |
---|---|
date | Wed, 12 Oct 2011 20:59:27 -0400 |
parents | cfccd3bee7b3 |
children | 67964cda8701 |
rev | line source |
---|---|
15168 | 1 # Copyright 2010-2011 Fog Creek Software |
2 # | |
3 # This software may be used and distributed according to the terms of the | |
4 # GNU General Public License version 2 or any later version. | |
5 | |
15252
6e809bb4f969
largefiles: improve comments, internal docstrings
Greg Ward <greg@gerg.ca>
parents:
15168
diff
changeset
|
6 '''largefile store working over Mercurial's wire protocol''' |
15168 | 7 |
8 import lfutil | |
9 import remotestore | |
10 | |
11 class wirestore(remotestore.remotestore): | |
12 def __init__(self, ui, repo, remote): | |
13 cap = remote.capable('largefiles') | |
14 if not cap: | |
15 raise lfutil.storeprotonotcapable([]) | |
16 storetypes = cap.split(',') | |
17 if not 'serve' in storetypes: | |
18 raise lfutil.storeprotonotcapable(storetypes) | |
19 self.remote = remote | |
20 super(wirestore, self).__init__(ui, repo, remote.url()) | |
21 | |
22 def _put(self, hash, fd): | |
23 return self.remote.putlfile(hash, fd) | |
24 | |
25 def _get(self, hash): | |
26 return self.remote.getlfile(hash) | |
27 | |
28 def _stat(self, hash): | |
29 return self.remote.statlfile(hash) |