Mercurial > hgsubversion
annotate tests/fixtures/move_into_trunk.svndump @ 937:fb6f6b7fa5a5
editor: implement file batons
The concept of current.file is incorrect, svn_delta.h documents open
file lifetime as:
* 5. When the producer calls @c open_file or @c add_file, either:
*
* (a) The producer must follow with any changes to the file
* (@c change_file_prop and/or @c apply_textdelta, as applicable),
* followed by a @c close_file call, before issuing any other file
* or directory calls, or
*
* (b) The producer must follow with a @c change_file_prop call if
* it is applicable, before issuing any other file or directory
* calls; later, after all directory batons including the root
* have been closed, the producer must issue @c apply_textdelta
* and @c close_file calls.
So, an open file can be kept open until after the root directory is
closed and have deltas applied afterwards. In the meantime, other files
may have been opened and patched, overwriting the current.file variable.
This patch fixes it by introducing file batons bound to file paths, and
using them to deduce the correct target in apply_textdelta(). In theory,
open files could be put in a staging area until they are closed and
moved in the RevisionData. But the current code registers files copied
during a directory copy as open files and these will not receive a
close_file() event. This separation will be enforced later.
author | Patrick Mezard <patrick@mezard.eu> |
---|---|
date | Sun, 23 Sep 2012 19:52:48 +0200 |
parents | 1086bd6f6aa4 |
children |
rev | line source |
---|---|
663
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
1 SVN-fs-dump-format-version: 2 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
2 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
3 UUID: 124c25c6-3b41-4c6b-a3a3-a0c9809dc9cb |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
4 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
5 Revision-number: 0 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
6 Prop-content-length: 56 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
7 Content-length: 56 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
9 K 8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
10 svn:date |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
11 V 27 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
12 2010-08-14T19:08:00.090868Z |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
13 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
14 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
15 Revision-number: 1 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
16 Prop-content-length: 111 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
17 Content-length: 111 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
18 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
19 K 7 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
20 svn:log |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
21 V 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
22 Add files. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
23 K 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
24 svn:author |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
25 V 9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
26 anonymous |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
27 K 8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
28 svn:date |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
29 V 27 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
30 2010-08-14T19:09:04.290181Z |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
31 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
32 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
33 Node-path: A |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
34 Node-kind: file |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
35 Node-action: add |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
36 Prop-content-length: 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
37 Text-content-length: 16 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
38 Text-content-md5: 98475036dc73d318982805bf4b16e8b2 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
39 Text-content-sha1: d7dff2b1ef48b9c20c23d7b3a08b557957cec3c9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
40 Content-length: 26 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
41 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
42 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
43 This is a file. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
44 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
45 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
46 Node-path: B |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
47 Node-kind: file |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
48 Node-action: add |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
49 Prop-content-length: 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
50 Text-content-length: 22 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
51 Text-content-md5: d54ff73404ed6041a3bd66850b061bff |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
52 Text-content-sha1: 4bdb40dfd6ec75cb730e678b5d7786e30170c5fb |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
53 Content-length: 32 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
54 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
55 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
56 This is another file. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
57 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
58 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
59 Revision-number: 2 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
60 Prop-content-length: 111 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
61 Content-length: 111 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
62 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
63 K 7 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
64 svn:log |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
65 V 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
66 Add trunk. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
67 K 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
68 svn:author |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
69 V 9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
70 anonymous |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
71 K 8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
72 svn:date |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
73 V 27 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
74 2010-08-14T19:09:23.652445Z |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
75 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
76 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
77 Node-path: trunk |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
78 Node-kind: dir |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
79 Node-action: add |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
80 Prop-content-length: 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
81 Content-length: 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
82 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
83 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
84 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
85 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
86 Revision-number: 3 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
87 Prop-content-length: 113 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
88 Content-length: 113 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
89 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
90 K 7 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
91 svn:log |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
92 V 12 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
93 Move a file. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
94 K 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
95 svn:author |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
96 V 9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
97 anonymous |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
98 K 8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
99 svn:date |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
100 V 27 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
101 2010-08-14T19:09:33.945291Z |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
102 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
103 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
104 Node-path: trunk/A |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
105 Node-kind: file |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
106 Node-action: add |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
107 Node-copyfrom-rev: 1 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
108 Node-copyfrom-path: A |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
109 Text-copy-source-md5: 98475036dc73d318982805bf4b16e8b2 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
110 Text-copy-source-sha1: d7dff2b1ef48b9c20c23d7b3a08b557957cec3c9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
111 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
112 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
113 Node-path: A |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
114 Node-action: delete |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
115 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
116 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
117 Revision-number: 4 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
118 Prop-content-length: 122 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
119 Content-length: 122 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
120 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
121 K 7 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
122 svn:log |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
123 V 18 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
124 Move another file. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
125 K 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
126 svn:author |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
127 V 9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
128 anonymous |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
129 K 8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
130 svn:date |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
131 V 27 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
132 2010-08-14T19:10:03.135714Z |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
133 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
134 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
135 Node-path: trunk/B |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
136 Node-kind: file |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
137 Node-action: add |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
138 Node-copyfrom-rev: 3 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
139 Node-copyfrom-path: B |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
140 Text-copy-source-md5: d54ff73404ed6041a3bd66850b061bff |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
141 Text-copy-source-sha1: 4bdb40dfd6ec75cb730e678b5d7786e30170c5fb |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
142 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
143 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
144 Node-path: B |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
145 Node-action: delete |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
146 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
147 |