16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
-
-
|
EDITED ... many ...
* Bug: If the server closes the socket unexpectedly, the
fwrite() in http.c:103 throws a signal and kills the child
process. fwrite() is not suppose to do this. Need to figure
out what is going wrong.
* Bug: pull is ending prematurely.
* Bug: Make sure merge and other commands (check-out) do not try
to use a phantom.
* Bug: When clone use incorrect http URL, local repo file is still created.
Things to work on:
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
-
+
-
-
-
-
-
-
-
|
message exceeds the maximum POST size of the server) the client
does not report this error back to the user as it should.
* The ipaddr field of the rcvfrom table is not being set. This
field should be the IP address from which information is received
for the local repository. So when somebody does a push of new
files we record the ipaddr. Or when we do a pull, we record
the ipaddr.
the ipaddr. (I think this has been fixed. Need to test.)
* Additional information displayed for the "vinfo" page:
+ All leaves of this version that are not included in the
descendant list. With date, user, comment, and hyperlink.
Leaves in the descendant table should be marked as such.
See the compute_leaves() function to see how to find all
leaves.
+ Add file diff links to the file change list.
* Timeline enhanced so that you can specify a range of dates.
* The /xfer handler (for push, pull, and clone) does not do
delta compression. This results in excess bandwidth usage.
There are some pieces in xfer.c that are sketches of ideas on
how to do delta compression, but nothing has been implemented.
* Enhancements to the diff and tkdiff commands in the cli.
Allow the entire tree or a subtree to be diffed, not just a
single file. Allow diffs against any two arbitrary versions,
not just diffs against the current check-out.
* Ticketing interface (expand this bullet)
|