Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master-1, master-0, and 0.9.4

Include status information in Python modules.

Changeset 2b8ba6e4a635

Parent cc672307ab42

by Jelmer Vernooij

Changes to 3 files · Browse files at 2b8ba6e4a635 Showing diff from parent cc672307ab42 Diff from another changeset...

Change 1 of 1 Show Entire File STATUS Stacked
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,36 +1,0 @@
-Server capabilities -=================== - -The Dulwich server supports the following capabilities: - - * include-tag - * thin-pack - * multi_ack_detailed - * multi_ack - * side-band-64k - * ofs-delta - * no-progress - * report-status - * delete-refs - -Known capabilities that are not supported: - * shallow (http://pad.lv/909524) - -Client capabilities -=================== - -The Dulwich client supports the following capabilities: - - * thin-pack - * multi_ack_detailed - * multi_ack - * side-band-64k - * ofs-delta - * report-status - -Known capabilities that are not supported: - - * shallow - * delete-refs - * no-progress - * include-tag
Change 1 of 1 Show Entire File dulwich/​client.py Stacked
 
17
18
19
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
22
23
 
17
18
19
 
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
@@ -17,7 +17,24 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,  # MA 02110-1301, USA.   -"""Client side support for the Git protocol.""" +"""Client side support for the Git protocol. + +The Dulwich client supports the following capabilities: + + * thin-pack + * multi_ack_detailed + * multi_ack + * side-band-64k + * ofs-delta + * report-status + * delete-refs + +Known capabilities that are not supported: + + * shallow + * no-progress + * include-tag +"""    __docformat__ = 'restructuredText'  
Change 1 of 1 Show Entire File dulwich/​server.py Stacked
 
23
24
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
27
28
29
30
 
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 
42
43
44
@@ -23,8 +23,22 @@
   * Documentation/technical/protocol-capabilities.txt  * Documentation/technical/pack-protocol.txt + +Currently supported capabilities: + + * include-tag + * thin-pack + * multi_ack_detailed + * multi_ack + * side-band-64k + * ofs-delta + * no-progress + * report-status + * delete-refs + +Known capabilities that are not supported: + * shallow (http://pad.lv/909524)  """ -    import collections  import os