hgbook

changeset 832:ea5ae4dd787b

Add images.
author Giulio@puck
date Tue Aug 18 17:19:30 2009 +0200 (2009-08-18)
parents 124179faec5f
children 63ef1efbac57
files it/Makefile it/figs/bad-merge-1.dot it/figs/bad-merge-2.dot it/figs/bad-merge-3.dot it/figs/bad-merge-4.dot it/figs/bad-merge-5.dot it/figs/feature-branches.dot it/figs/filelog.svg it/figs/metadata.svg it/figs/mq-stack.svg it/figs/revlog.svg it/figs/snapshot.svg it/figs/tour-history.svg it/figs/tour-merge-conflict.svg it/figs/tour-merge-merge.svg it/figs/tour-merge-pull.svg it/figs/tour-merge-sep-repos.svg it/figs/undo-manual-merge.dot it/figs/undo-manual.dot it/figs/undo-non-tip.dot it/figs/undo-simple.dot it/figs/wdir-after-commit.svg it/figs/wdir-branch.svg it/figs/wdir-merge.svg it/figs/wdir-pre-branch.svg it/figs/wdir.svg
line diff
     1.1 --- a/it/Makefile	Mon Aug 17 01:53:50 2009 +0200
     1.2 +++ b/it/Makefile	Tue Aug 18 17:19:30 2009 +0200
     1.3 @@ -58,3 +58,35 @@
     1.4  clean:
     1.5  	rm -f $(web-local)/index-read.html.in
     1.6  	rm -rf $(obj-web)
     1.7 +
     1.8 +image-folder := figs
     1.9 +# graphs, figures, screenshots
    1.10 +image-files := $(wildcard $(image-folder)/*.dot $(image-folder)/*.svg $(image-folder)/*.png)
    1.11 +# graphs
    1.12 +image-dot := $(filter %.dot, $(image-files))
    1.13 +# figures
    1.14 +image-svg := $(filter %.svg, $(image-files))
    1.15 +# screenshots
    1.16 +image-png := $(filter %.png, $(image-files))
    1.17 +
    1.18 +figs-folder := examples/figs
    1.19 +figs-web := \
    1.20 +	$(image-dot:$(image-folder)/%.dot=$(figs-folder)/%.png) \
    1.21 +	$(image-svg:$(image-folder)/%.svg=$(figs-folder)/%.png) \
    1.22 +	$(image-png:$(image-folder)/%.png=$(figs-folder)/%.png)
    1.23 +
    1.24 +figs: $(figs-web)
    1.25 +
    1.26 +#$(figs-folder)/%.png: $(image-folder)/%.png $(image-folder)/%.svg
    1.27 +$(figs-folder)/%.png: $(image-folder)/%.svg
    1.28 +	inkscape -D -d 120 -e $@ $<
    1.29 +
    1.30 +$(figs-folder)/%.png: $(figs-folder)/%.svg
    1.31 +	inkscape -D -d 120 -e $@ $<
    1.32 +	rm $<
    1.33 +
    1.34 +$(figs-folder)/%.png: $(image-folder)/%.png
    1.35 +	cp $< $@
    1.36 +
    1.37 +$(figs-folder)/%.svg: $(image-folder)/%.dot
    1.38 +	dot -Tsvg -o $@ $<
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/it/figs/bad-merge-1.dot	Tue Aug 18 17:19:30 2009 +0200
     2.3 @@ -0,0 +1,13 @@
     2.4 +digraph bad_merge_1 {
     2.5 +	ancestor [label="1: antenato"];
     2.6 +	left [label="2: mia modifica"];
     2.7 +	right [label="3: vostra modifica"];
     2.8 +	bad [label="4: unione sbagliata"];
     2.9 +	new [label="5: nuova modifica"];
    2.10 +
    2.11 +	ancestor -> left;
    2.12 +	ancestor -> right;
    2.13 +	left -> bad;
    2.14 +	right -> bad;
    2.15 +	bad -> new;
    2.16 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/it/figs/bad-merge-2.dot	Tue Aug 18 17:19:30 2009 +0200
     3.3 @@ -0,0 +1,18 @@
     3.4 +digraph bad_merge_2 {
     3.5 +	ancestor [label="1: antenato",color=grey,fontcolor=grey];
     3.6 +	left [label="2: mia modifica",color=grey,fontcolor=grey];
     3.7 +	right [label="3: vostra modifica",color=grey,fontcolor=grey];
     3.8 +	bad [label="4: unione sbagliata",color=grey,fontcolor=grey];
     3.9 +	new [label="5: nuova modifica",color=grey,fontcolor=grey];
    3.10 +
    3.11 +	bak_left [label="6: ritiro n°1 della\nunione sbagliata",shape=box];
    3.12 +
    3.13 +	ancestor -> left [color=grey];
    3.14 +	ancestor -> right [color=grey];
    3.15 +	left -> bad [color=grey];
    3.16 +	right -> bad [color=grey];
    3.17 +	bad -> new [color=grey];
    3.18 +
    3.19 +	bad -> bak_left;
    3.20 +	left -> bak_left [style=dotted,label="--parent=2"];
    3.21 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/it/figs/bad-merge-3.dot	Tue Aug 18 17:19:30 2009 +0200
     4.3 @@ -0,0 +1,22 @@
     4.4 +digraph bad_merge_3 {
     4.5 +	ancestor [label="1: antenato",color="#bbbbbb",fontcolor="#bbbbbb"];
     4.6 +	left [label="2: mia modifica",color="#bbbbbb",fontcolor="#bbbbbb"];
     4.7 +	right [label="3: vostra modifica",color="#bbbbbb",fontcolor="#bbbbbb"];
     4.8 +	bad [label="4: unione sbagliata",color="#bbbbbb",fontcolor="#bbbbbb"];
     4.9 +	new [label="5: nuova modifica",color="#bbbbbb",fontcolor="#bbbbbb"];
    4.10 +
    4.11 +	bak_left [label="6: ritiro n°1 della\nunione sbagliata",color=grey,shape=box];
    4.12 +	bak_right [label="8: ritiro n°2 della\nunione sbagliata",shape=box];
    4.13 +
    4.14 +	ancestor -> left [color="#bbbbbb"];
    4.15 +	ancestor -> right [color="#bbbbbb"];
    4.16 +	left -> bad [color="#bbbbbb"];
    4.17 +	right -> bad [color="#bbbbbb"];
    4.18 +	bad -> new [color="#bbbbbb"];
    4.19 +
    4.20 +	bad -> bak_left [color=grey];
    4.21 +	left -> bak_left [style=dotted,label="--parent=2",color=grey,fontcolor=grey];
    4.22 +
    4.23 +	bad -> bak_right;
    4.24 +	right -> bak_right [style=dotted,label="--parent=3"];
    4.25 +}
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/it/figs/bad-merge-4.dot	Tue Aug 18 17:19:30 2009 +0200
     5.3 @@ -0,0 +1,26 @@
     5.4 +digraph bad_merge_4 {
     5.5 +	ancestor [label="1: antenato",color="#bbbbbb",fontcolor="#bbbbbb"];
     5.6 +	left [label="2: mia modifica",color="#bbbbbb",fontcolor="#bbbbbb"];
     5.7 +	right [label="3: vostra modifica",color="#bbbbbb",fontcolor="#bbbbbb"];
     5.8 +	bad [label="4: unione sbagliata",color="#bbbbbb",fontcolor="#bbbbbb"];
     5.9 +	new [label="5: nuova modifica",color="#bbbbbb",fontcolor="#bbbbbb"];
    5.10 +
    5.11 +	bak_left [label="6: ritiro n°1 della\nunione sbagliata",color=grey,fontcolor=grey,shape=box];
    5.12 +	bak_right [label="7: ritiro n°2 della\nunione sbagliata",color=grey,fontcolor=grey,shape=box];
    5.13 +	good [label="8: unione\ndei ritiri",shape=box];
    5.14 +
    5.15 +	ancestor -> left [color="#bbbbbb"];
    5.16 +	ancestor -> right [color="#bbbbbb"];
    5.17 +	left -> bad [color="#bbbbbb"];
    5.18 +	right -> bad [color="#bbbbbb"];
    5.19 +	bad -> new [color="#bbbbbb"];
    5.20 +
    5.21 +	bad -> bak_left [color=grey];
    5.22 +	left -> bak_left [style=dotted,label="--parent=2",color=grey,fontcolor=grey];
    5.23 +
    5.24 +	bad -> bak_right [color=grey];
    5.25 +	right -> bak_right [style=dotted,label="--parent=3",color=grey,fontcolor=grey];
    5.26 +
    5.27 +	bak_left -> good;
    5.28 +	bak_right -> good;
    5.29 +}
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/it/figs/bad-merge-5.dot	Tue Aug 18 17:19:30 2009 +0200
     6.3 @@ -0,0 +1,30 @@
     6.4 +digraph bad_merge_5 {
     6.5 +	ancestor [label="1: antenato",color="#bbbbbb",fontcolor="#bbbbbb"];
     6.6 +	left [label="2: mia modifica",color="#bbbbbb",fontcolor="#bbbbbb"];
     6.7 +	right [label="3: vostra modifica",color="#bbbbbb",fontcolor="#bbbbbb"];
     6.8 +	bad [label="4: unione sbagliata",color="#bbbbbb",fontcolor="#bbbbbb"];
     6.9 +	new [label="5: nuova modifica",color=grey,fontcolor=grey];
    6.10 +
    6.11 +	bak_left [label="6: ritiro n°1 della\nunione sbagliata",color="#bbbbbb",fontcolor="#bbbbbb",shape=box];
    6.12 +	bak_right [label="7: ritiro n°2 della\nunione sbagliata",color="#bbbbbb",fontcolor="#bbbbbb",shape=box];
    6.13 +	good [label="8: unione\ndei ritiri",color=grey,fontcolor=grey,shape=box];
    6.14 +	last [label="9: unione con la\nnuova modifica",shape=box];
    6.15 +
    6.16 +	ancestor -> left [color="#bbbbbb"];
    6.17 +	ancestor -> right [color="#bbbbbb"];
    6.18 +	left -> bad [color="#bbbbbb"];
    6.19 +	right -> bad [color="#bbbbbb"];
    6.20 +	bad -> new [color="#bbbbbb"];
    6.21 +
    6.22 +	bad -> bak_left [color="#bbbbbb"];
    6.23 +	left -> bak_left [style=dotted,label="--parent=2",color="#bbbbbb",fontcolor="#bbbbbb"];
    6.24 +
    6.25 +	bad -> bak_right [color="#bbbbbb"];
    6.26 +	right -> bak_right [style=dotted,label="--parent=3",color="#bbbbbb",fontcolor="#bbbbbb"];
    6.27 +
    6.28 +	bak_left -> good [color=grey];
    6.29 +	bak_right -> good [color=grey];
    6.30 +
    6.31 +	good -> last;
    6.32 +	new -> last;
    6.33 +}
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/it/figs/feature-branches.dot	Tue Aug 18 17:19:30 2009 +0200
     7.3 @@ -0,0 +1,8 @@
     7.4 +digraph feature_branches {
     7.5 +	principale -> cripto;
     7.6 +	principale -> filesystem;
     7.7 +	principale -> ipc;
     7.8 +	principale -> memoria;
     7.9 +	principale -> rete;
    7.10 +	principale -> sicurezza;
    7.11 +}
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/it/figs/filelog.svg	Tue Aug 18 17:19:30 2009 +0200
     8.3 @@ -0,0 +1,381 @@
     8.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
     8.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
     8.6 +<svg
     8.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
     8.8 +   xmlns:cc="http://creativecommons.org/ns#"
     8.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    8.10 +   xmlns:svg="http://www.w3.org/2000/svg"
    8.11 +   xmlns="http://www.w3.org/2000/svg"
    8.12 +   xmlns:xlink="http://www.w3.org/1999/xlink"
    8.13 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
    8.14 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
    8.15 +   width="744.09448819"
    8.16 +   height="1052.3622047"
    8.17 +   id="svg2"
    8.18 +   sodipodi:version="0.32"
    8.19 +   inkscape:version="0.46"
    8.20 +   sodipodi:docname="filelog.svg"
    8.21 +   sodipodi:docbase="/home/arun/hgbook/en"
    8.22 +   inkscape:output_extension="org.inkscape.output.svg.inkscape">
    8.23 +  <defs
    8.24 +     id="defs4">
    8.25 +    <inkscape:perspective
    8.26 +       sodipodi:type="inkscape:persp3d"
    8.27 +       inkscape:vp_x="0 : 526.18109 : 1"
    8.28 +       inkscape:vp_y="0 : 1000 : 0"
    8.29 +       inkscape:vp_z="744.09448 : 526.18109 : 1"
    8.30 +       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
    8.31 +       id="perspective57" />
    8.32 +    <marker
    8.33 +       inkscape:stockid="Arrow1Mend"
    8.34 +       orient="auto"
    8.35 +       refY="0.0"
    8.36 +       refX="0.0"
    8.37 +       id="Arrow1Mend"
    8.38 +       style="overflow:visible;">
    8.39 +      <path
    8.40 +         id="path3128"
    8.41 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
    8.42 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
    8.43 +         transform="scale(0.4) rotate(180) translate(10,0)" />
    8.44 +    </marker>
    8.45 +    <linearGradient
    8.46 +       id="linearGradient2887">
    8.47 +      <stop
    8.48 +         style="stop-color:#91cfcf;stop-opacity:1;"
    8.49 +         offset="0"
    8.50 +         id="stop2889" />
    8.51 +      <stop
    8.52 +         style="stop-color:aqua;stop-opacity:0;"
    8.53 +         offset="1"
    8.54 +         id="stop2891" />
    8.55 +    </linearGradient>
    8.56 +    <linearGradient
    8.57 +       id="linearGradient2795">
    8.58 +      <stop
    8.59 +         style="stop-color:#ccc;stop-opacity:1;"
    8.60 +         offset="0"
    8.61 +         id="stop2797" />
    8.62 +      <stop
    8.63 +         style="stop-color:#ccc;stop-opacity:0;"
    8.64 +         offset="1"
    8.65 +         id="stop2799" />
    8.66 +    </linearGradient>
    8.67 +    <linearGradient
    8.68 +       inkscape:collect="always"
    8.69 +       xlink:href="#linearGradient2795"
    8.70 +       id="linearGradient3170"
    8.71 +       gradientUnits="userSpaceOnUse"
    8.72 +       gradientTransform="translate(121.2183,94.95434)"
    8.73 +       x1="81.322357"
    8.74 +       y1="404.34424"
    8.75 +       x2="201.52036"
    8.76 +       y2="373.03967" />
    8.77 +    <linearGradient
    8.78 +       inkscape:collect="always"
    8.79 +       xlink:href="#linearGradient2887"
    8.80 +       id="linearGradient3172"
    8.81 +       gradientUnits="userSpaceOnUse"
    8.82 +       gradientTransform="translate(0,12)"
    8.83 +       x1="62.634491"
    8.84 +       y1="503.3392"
    8.85 +       x2="248.49242"
    8.86 +       y2="462.94327" />
    8.87 +    <linearGradient
    8.88 +       inkscape:collect="always"
    8.89 +       xlink:href="#linearGradient2795"
    8.90 +       id="linearGradient3174"
    8.91 +       gradientUnits="userSpaceOnUse"
    8.92 +       gradientTransform="matrix(1.001035,0,0,0.653159,236.7075,153.0415)"
    8.93 +       x1="81.322357"
    8.94 +       y1="404.34424"
    8.95 +       x2="201.52036"
    8.96 +       y2="373.03967" />
    8.97 +    <linearGradient
    8.98 +       inkscape:collect="always"
    8.99 +       xlink:href="#linearGradient2887"
   8.100 +       id="linearGradient3176"
   8.101 +       gradientUnits="userSpaceOnUse"
   8.102 +       gradientTransform="translate(0,12)"
   8.103 +       x1="62.634491"
   8.104 +       y1="503.3392"
   8.105 +       x2="248.49242"
   8.106 +       y2="462.94327" />
   8.107 +    <linearGradient
   8.108 +       inkscape:collect="always"
   8.109 +       xlink:href="#linearGradient2795"
   8.110 +       id="linearGradient3208"
   8.111 +       gradientUnits="userSpaceOnUse"
   8.112 +       gradientTransform="matrix(1.001035,0,0,0.653159,236.7075,153.0415)"
   8.113 +       x1="81.322357"
   8.114 +       y1="404.34424"
   8.115 +       x2="201.52036"
   8.116 +       y2="373.03967" />
   8.117 +    <linearGradient
   8.118 +       inkscape:collect="always"
   8.119 +       xlink:href="#linearGradient2887"
   8.120 +       id="linearGradient3210"
   8.121 +       gradientUnits="userSpaceOnUse"
   8.122 +       gradientTransform="translate(0,12)"
   8.123 +       x1="62.634491"
   8.124 +       y1="503.3392"
   8.125 +       x2="248.49242"
   8.126 +       y2="462.94327" />
   8.127 +    <linearGradient
   8.128 +       inkscape:collect="always"
   8.129 +       xlink:href="#linearGradient2795"
   8.130 +       id="linearGradient3212"
   8.131 +       gradientUnits="userSpaceOnUse"
   8.132 +       gradientTransform="translate(121.2183,94.95434)"
   8.133 +       x1="81.322357"
   8.134 +       y1="404.34424"
   8.135 +       x2="201.52036"
   8.136 +       y2="373.03967" />
   8.137 +    <linearGradient
   8.138 +       inkscape:collect="always"
   8.139 +       xlink:href="#linearGradient2887"
   8.140 +       id="linearGradient3214"
   8.141 +       gradientUnits="userSpaceOnUse"
   8.142 +       gradientTransform="translate(0,12)"
   8.143 +       x1="62.634491"
   8.144 +       y1="503.3392"
   8.145 +       x2="248.49242"
   8.146 +       y2="462.94327" />
   8.147 +    <linearGradient
   8.148 +       inkscape:collect="always"
   8.149 +       xlink:href="#linearGradient2795"
   8.150 +       id="linearGradient3256"
   8.151 +       gradientUnits="userSpaceOnUse"
   8.152 +       gradientTransform="matrix(1.2343775,0,0,0.9981848,103.25588,95.681888)"
   8.153 +       x1="74.301666"
   8.154 +       y1="431.67441"
   8.155 +       x2="260.05884"
   8.156 +       y2="369.95322" />
   8.157 +    <linearGradient
   8.158 +       inkscape:collect="always"
   8.159 +       xlink:href="#linearGradient2887"
   8.160 +       id="linearGradient3258"
   8.161 +       gradientUnits="userSpaceOnUse"
   8.162 +       gradientTransform="matrix(1.228929,0,0,0.9972824,-62.037003,13.312997)"
   8.163 +       x1="62.634491"
   8.164 +       y1="503.3392"
   8.165 +       x2="248.49242"
   8.166 +       y2="462.94327" />
   8.167 +    <linearGradient
   8.168 +       inkscape:collect="always"
   8.169 +       xlink:href="#linearGradient2795"
   8.170 +       id="linearGradient3260"
   8.171 +       gradientUnits="userSpaceOnUse"
   8.172 +       gradientTransform="matrix(1.2300738,0,0,0.6517275,219.97511,153.61527)"
   8.173 +       x1="74.387527"
   8.174 +       y1="431.80576"
   8.175 +       x2="259.97339"
   8.176 +       y2="369.82224" />
   8.177 +    <linearGradient
   8.178 +       inkscape:collect="always"
   8.179 +       xlink:href="#linearGradient2887"
   8.180 +       id="linearGradient3262"
   8.181 +       gradientUnits="userSpaceOnUse"
   8.182 +       gradientTransform="matrix(1.2289272,0,0,0.9972824,-62.036756,13.312985)"
   8.183 +       x1="62.634491"
   8.184 +       y1="503.3392"
   8.185 +       x2="248.49242"
   8.186 +       y2="462.94327" />
   8.187 +  </defs>
   8.188 +  <sodipodi:namedview
   8.189 +     id="base"
   8.190 +     pagecolor="#ffffff"
   8.191 +     bordercolor="#666666"
   8.192 +     borderopacity="1.0"
   8.193 +     gridtolerance="10000"
   8.194 +     guidetolerance="10"
   8.195 +     objecttolerance="10"
   8.196 +     inkscape:pageopacity="0.0"
   8.197 +     inkscape:pageshadow="2"
   8.198 +     inkscape:zoom="1.4"
   8.199 +     inkscape:cx="455.8122"
   8.200 +     inkscape:cy="520"
   8.201 +     inkscape:document-units="px"
   8.202 +     inkscape:current-layer="g2940"
   8.203 +     inkscape:window-width="1680"
   8.204 +     inkscape:window-height="970"
   8.205 +     inkscape:window-x="3"
   8.206 +     inkscape:window-y="46"
   8.207 +     showgrid="false" />
   8.208 +  <metadata
   8.209 +     id="metadata7">
   8.210 +    <rdf:RDF>
   8.211 +      <cc:Work
   8.212 +         rdf:about="">
   8.213 +        <dc:format>image/svg+xml</dc:format>
   8.214 +        <dc:type
   8.215 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
   8.216 +      </cc:Work>
   8.217 +    </rdf:RDF>
   8.218 +  </metadata>
   8.219 +  <g
   8.220 +     inkscape:label="Layer 1"
   8.221 +     inkscape:groupmode="layer"
   8.222 +     id="layer1">
   8.223 +    <rect
   8.224 +       style="opacity:1;fill:#abadf8;fill-opacity:1;stroke:#595959;stroke-width:0.93760371;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   8.225 +       id="rect3180"
   8.226 +       width="273.81375"
   8.227 +       height="199.06245"
   8.228 +       x="369.1796"
   8.229 +       y="351.79019" />
   8.230 +    <rect
   8.231 +       style="opacity:1;fill:#a2f69c;fill-opacity:1;stroke:#595959;stroke-width:0.93760341;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   8.232 +       id="rect3178"
   8.233 +       width="273.81339"
   8.234 +       height="199.06233"
   8.235 +       x="72.699799"
   8.236 +       y="351.78983" />
   8.237 +    <g
   8.238 +       id="g3144"
   8.239 +       transform="translate(80.467048,0.71578)">
   8.240 +      <g
   8.241 +         id="g2940">
   8.242 +        <rect
   8.243 +           style="fill:url(#linearGradient3260);fill-opacity:1;stroke:#000000;stroke-width:0.89536202;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   8.244 +           id="rect2914"
   8.245 +           width="227.38896"
   8.246 +           height="39.500999"
   8.247 +           x="311.92496"
   8.248 +           y="395.08627" />
   8.249 +        <text
   8.250 +           xml:space="preserve"
   8.251 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   8.252 +           x="313.72824"
   8.253 +           y="416.7626"
   8.254 +           id="text2918"><tspan
   8.255 +             sodipodi:role="line"
   8.256 +             id="tspan2920"
   8.257 +             x="313.72824"
   8.258 +             y="416.7626"
   8.259 +             style="font-family:Courier">.hg/store/data/_l_e_g_g_i_m_i.i</tspan></text>
   8.260 +      </g>
   8.261 +      <g
   8.262 +         transform="translate(3.79093e-5,-80.1853)"
   8.263 +         id="g2945">
   8.264 +        <g
   8.265 +           id="g2955">
   8.266 +          <rect
   8.267 +             y="475.4968"
   8.268 +             x="15.550935"
   8.269 +             height="39.500999"
   8.270 +             width="227.17694"
   8.271 +             id="rect2947"
   8.272 +             style="fill:url(#linearGradient3262);fill-opacity:1;stroke:#000000;stroke-width:1.10706258;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
   8.273 +          <text
   8.274 +             id="text2949"
   8.275 +             y="498.35123"
   8.276 +             x="31.230644"
   8.277 +             style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   8.278 +             xml:space="preserve"><tspan
   8.279 +               style="font-family:Courier"
   8.280 +               y="498.35123"
   8.281 +               x="31.230644"
   8.282 +               id="tspan2951"
   8.283 +               sodipodi:role="line">LEGGIMI</tspan></text>
   8.284 +        </g>
   8.285 +      </g>
   8.286 +      <path
   8.287 +         inkscape:connector-type="polyline"
   8.288 +         id="path2960"
   8.289 +         d="M 242.94685,414.91115 C 242.94685,414.91115 293.61127,415.26754 310.16269,415.38633"
   8.290 +         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.02046943px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   8.291 +         sodipodi:nodetypes="cz" />
   8.292 +    </g>
   8.293 +    <g
   8.294 +       id="g3156"
   8.295 +       transform="translate(80.467048,0.71578)">
   8.296 +      <g
   8.297 +         transform="translate(116,0)"
   8.298 +         id="g2831">
   8.299 +        <rect
   8.300 +           style="fill:url(#linearGradient3256);fill-opacity:1;stroke:#000000;stroke-width:1.11001658;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   8.301 +           id="rect1906"
   8.302 +           width="228.18446"
   8.303 +           height="60.499123"
   8.304 +           x="195.52719"
   8.305 +           y="465.51859" />
   8.306 +        <g
   8.307 +           id="g2803"
   8.308 +           transform="translate(-0.893671,1.833581)">
   8.309 +          <text
   8.310 +             id="text1884"
   8.311 +             y="483.92801"
   8.312 +             x="210.95944"
   8.313 +             style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   8.314 +             xml:space="preserve"><tspan
   8.315 +               style="font-family:Courier"
   8.316 +               y="483.92801"
   8.317 +               x="210.95944"
   8.318 +               id="tspan1886"
   8.319 +               sodipodi:role="line">.hg/store/data/src/ciao.c.d</tspan></text>
   8.320 +          <text
   8.321 +             id="text1888"
   8.322 +             y="507.79309"
   8.323 +             x="210.95944"
   8.324 +             style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   8.325 +             xml:space="preserve"><tspan
   8.326 +               style="font-family:Courier"
   8.327 +               y="507.79309"
   8.328 +               x="210.95944"
   8.329 +               id="tspan1890"
   8.330 +               sodipodi:role="line">.hg/store/data/src/ciao.c.i</tspan></text>
   8.331 +        </g>
   8.332 +      </g>
   8.333 +      <g
   8.334 +         id="g2907">
   8.335 +        <rect
   8.336 +           style="fill:url(#linearGradient3258);fill-opacity:1;stroke:#000000;stroke-width:1.10706329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   8.337 +           id="rect2843"
   8.338 +           width="227.17728"
   8.339 +           height="39.500999"
   8.340 +           x="15.550805"
   8.341 +           y="475.4968" />
   8.342 +        <text
   8.343 +           xml:space="preserve"
   8.344 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   8.345 +           x="31.230644"
   8.346 +           y="498.35123"
   8.347 +           id="text2847"><tspan
   8.348 +             sodipodi:role="line"
   8.349 +             id="tspan2849"
   8.350 +             x="31.230644"
   8.351 +             y="498.35123"
   8.352 +             style="font-family:Courier">src/ciao.c</tspan></text>
   8.353 +      </g>
   8.354 +      <path
   8.355 +         inkscape:connection-end="#g2831"
   8.356 +         inkscape:connection-start="#g2907"
   8.357 +         inkscape:connector-type="polyline"
   8.358 +         id="path2962"
   8.359 +         d="M 242.4315,495.88043 C 242.4315,495.88043 292.8861,495.99942 310.04102,496.03909"
   8.360 +         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   8.361 +         sodipodi:nodetypes="cs" />
   8.362 +    </g>
   8.363 +    <text
   8.364 +       xml:space="preserve"
   8.365 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   8.366 +       x="98.496666"
   8.367 +       y="373.96353"
   8.368 +       id="text3216"><tspan
   8.369 +         sodipodi:role="line"
   8.370 +         id="tspan3218"
   8.371 +         x="98.496666"
   8.372 +         y="373.96353">Directory di lavoro</tspan></text>
   8.373 +    <text
   8.374 +       xml:space="preserve"
   8.375 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   8.376 +       x="391.39197"
   8.377 +       y="373.96353"
   8.378 +       id="text3228"><tspan
   8.379 +         sodipodi:role="line"
   8.380 +         id="tspan3230"
   8.381 +         x="391.39197"
   8.382 +         y="373.96353">Repository</tspan></text>
   8.383 +  </g>
   8.384 +</svg>
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/it/figs/metadata.svg	Tue Aug 18 17:19:30 2009 +0200
     9.3 @@ -0,0 +1,328 @@
     9.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
     9.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
     9.6 +<svg
     9.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
     9.8 +   xmlns:cc="http://web.resource.org/cc/"
     9.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    9.10 +   xmlns:svg="http://www.w3.org/2000/svg"
    9.11 +   xmlns="http://www.w3.org/2000/svg"
    9.12 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
    9.13 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
    9.14 +   width="744.09448819"
    9.15 +   height="1052.3622047"
    9.16 +   id="svg2"
    9.17 +   sodipodi:version="0.32"
    9.18 +   inkscape:version="0.44.1"
    9.19 +   sodipodi:docname="metadata.svg"
    9.20 +   sodipodi:docbase="/home/bos/hg/hgbook/en">
    9.21 +  <defs
    9.22 +     id="defs4">
    9.23 +    <marker
    9.24 +       inkscape:stockid="Arrow1Mend"
    9.25 +       orient="auto"
    9.26 +       refY="0.0"
    9.27 +       refX="0.0"
    9.28 +       id="Arrow1Mend"
    9.29 +       style="overflow:visible;">
    9.30 +      <path
    9.31 +         id="path2944"
    9.32 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
    9.33 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
    9.34 +         transform="scale(0.4) rotate(180) translate(10,0)" />
    9.35 +    </marker>
    9.36 +  </defs>
    9.37 +  <sodipodi:namedview
    9.38 +     id="base"
    9.39 +     pagecolor="#ffffff"
    9.40 +     bordercolor="#666666"
    9.41 +     borderopacity="1.0"
    9.42 +     gridtolerance="10000"
    9.43 +     guidetolerance="10"
    9.44 +     objecttolerance="10"
    9.45 +     inkscape:pageopacity="0.0"
    9.46 +     inkscape:pageshadow="2"
    9.47 +     inkscape:zoom="1.4"
    9.48 +     inkscape:cx="232.14286"
    9.49 +     inkscape:cy="490.68696"
    9.50 +     inkscape:document-units="px"
    9.51 +     inkscape:current-layer="layer1"
    9.52 +     inkscape:window-width="906"
    9.53 +     inkscape:window-height="620"
    9.54 +     inkscape:window-x="181"
    9.55 +     inkscape:window-y="58" />
    9.56 +  <metadata
    9.57 +     id="metadata7">
    9.58 +    <rdf:RDF>
    9.59 +      <cc:Work
    9.60 +         rdf:about="">
    9.61 +        <dc:format>image/svg+xml</dc:format>
    9.62 +        <dc:type
    9.63 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
    9.64 +      </cc:Work>
    9.65 +    </rdf:RDF>
    9.66 +  </metadata>
    9.67 +  <g
    9.68 +     inkscape:label="Layer 1"
    9.69 +     inkscape:groupmode="layer"
    9.70 +     id="layer1">
    9.71 +    <path
    9.72 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#a7a7a7;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:4.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;display:inline"
    9.73 +       d="M 326.94646,467.18359 L 326.94646,510.98123"
    9.74 +       id="path1910"
    9.75 +       inkscape:connector-type="polyline"
    9.76 +       inkscape:connection-end="#rect2962"
    9.77 +       inkscape:connection-start="#rect2764" />
    9.78 +    <path
    9.79 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#a7a7a7;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:4.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;display:inline"
    9.80 +       d="M 326.94646,531.98123 L 326.94646,591.77887"
    9.81 +       id="path1912"
    9.82 +       inkscape:connector-type="polyline"
    9.83 +       inkscape:connection-start="#rect2962"
    9.84 +       inkscape:connection-end="#rect3000" />
    9.85 +    <path
    9.86 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#a7a7a7;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:4.5, 1.5;stroke-dashoffset:0;stroke-opacity:1;display:inline"
    9.87 +       d="M 316.1622,531.98123 L 192.30212,652.57648"
    9.88 +       id="path1916"
    9.89 +       inkscape:connector-type="polyline"
    9.90 +       inkscape:connection-end="#rect3038"
    9.91 +       inkscape:connection-start="#rect2962" />
    9.92 +    <path
    9.93 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#484848;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:4.5, 1.5;stroke-dashoffset:0;stroke-opacity:1"
    9.94 +       d="M 254.23217,467.18359 L 254.23216,510.98123"
    9.95 +       id="path3088"
    9.96 +       inkscape:connector-type="polyline"
    9.97 +       inkscape:connection-start="#rect1872"
    9.98 +       inkscape:connection-end="#rect2960" />
    9.99 +    <path
   9.100 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#484848;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:4.5, 1.5;stroke-dashoffset:0;stroke-opacity:1"
   9.101 +       d="M 254.23215,531.98123 L 254.23215,591.77887"
   9.102 +       id="path3090"
   9.103 +       inkscape:connector-type="polyline"
   9.104 +       inkscape:connection-start="#rect2960"
   9.105 +       inkscape:connection-end="#rect2998" />
   9.106 +    <path
   9.107 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#484848;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:4.5, 1.5;stroke-dashoffset:0;stroke-opacity:1"
   9.108 +       d="M 248.84002,531.98123 L 186.90999,652.57648"
   9.109 +       id="path3092"
   9.110 +       inkscape:connector-type="polyline"
   9.111 +       inkscape:connection-start="#rect2960"
   9.112 +       inkscape:connection-end="#rect3038" />
   9.113 +    <rect
   9.114 +       style="fill:#7b7df5;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.115 +       id="rect1872"
   9.116 +       width="51.42857"
   9.117 +       height="20"
   9.118 +       x="228.51788"
   9.119 +       y="446.68359" />
   9.120 +    <rect
   9.121 +       style="fill:#cacbfb;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.122 +       id="rect2764"
   9.123 +       width="51.42857"
   9.124 +       height="20"
   9.125 +       x="301.23218"
   9.126 +       y="446.68359" />
   9.127 +    <rect
   9.128 +       style="fill:#cacbfb;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.129 +       id="rect2766"
   9.130 +       width="51.42857"
   9.131 +       height="20"
   9.132 +       x="155.80359"
   9.133 +       y="446.68359" />
   9.134 +    <rect
   9.135 +       style="fill:#cacbfb;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.136 +       id="rect2768"
   9.137 +       width="51.42857"
   9.138 +       height="20"
   9.139 +       x="83.089294"
   9.140 +       y="446.68359" />
   9.141 +    <path
   9.142 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   9.143 +       d="M 135.01786,456.68359 L 155.30359,456.68359"
   9.144 +       id="path2770"
   9.145 +       inkscape:connector-type="polyline"
   9.146 +       inkscape:connection-start="#rect2768"
   9.147 +       inkscape:connection-end="#rect2766" />
   9.148 +    <path
   9.149 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   9.150 +       d="M 207.73216,456.68359 L 228.01788,456.68359"
   9.151 +       id="path2772"
   9.152 +       inkscape:connector-type="polyline"
   9.153 +       inkscape:connection-start="#rect2766"
   9.154 +       inkscape:connection-end="#rect1872" />
   9.155 +    <path
   9.156 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   9.157 +       d="M 280.44645,456.68359 L 300.73218,456.68359"
   9.158 +       id="path2774"
   9.159 +       inkscape:connector-type="polyline"
   9.160 +       inkscape:connection-start="#rect1872"
   9.161 +       inkscape:connection-end="#rect2764" />
   9.162 +    <path
   9.163 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
   9.164 +       d="M 62.303571,456.68359 L 82.589294,456.68359"
   9.165 +       id="path2778"
   9.166 +       inkscape:connector-type="polyline"
   9.167 +       inkscape:connection-end="#rect2768" />
   9.168 +    <rect
   9.169 +       style="fill:#84f57b;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.170 +       id="rect2960"
   9.171 +       width="51.42857"
   9.172 +       height="20"
   9.173 +       x="228.51787"
   9.174 +       y="511.48123" />
   9.175 +    <rect
   9.176 +       style="fill:#cefbca;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.177 +       id="rect2962"
   9.178 +       width="51.42857"
   9.179 +       height="20"
   9.180 +       x="301.23218"
   9.181 +       y="511.48123" />
   9.182 +    <rect
   9.183 +       style="fill:#cefbca;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.184 +       id="rect2964"
   9.185 +       width="51.42857"
   9.186 +       height="20"
   9.187 +       x="155.80357"
   9.188 +       y="511.48123" />
   9.189 +    <rect
   9.190 +       style="fill:#cefbca;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.191 +       id="rect2966"
   9.192 +       width="51.42857"
   9.193 +       height="20"
   9.194 +       x="83.089287"
   9.195 +       y="511.48123" />
   9.196 +    <path
   9.197 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   9.198 +       d="M 135.01786,521.48121 L 155.30359,521.48121"
   9.199 +       id="path2968"
   9.200 +       inkscape:connector-type="polyline" />
   9.201 +    <path
   9.202 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   9.203 +       d="M 207.73216,521.48121 L 228.01788,521.48121"
   9.204 +       id="path2970"
   9.205 +       inkscape:connector-type="polyline" />
   9.206 +    <path
   9.207 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   9.208 +       d="M 280.44645,521.48121 L 300.73218,521.48121"
   9.209 +       id="path2972"
   9.210 +       inkscape:connector-type="polyline" />
   9.211 +    <path
   9.212 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
   9.213 +       d="M 62.30358,521.48121 L 82.5893,521.48121"
   9.214 +       id="path2974"
   9.215 +       inkscape:connector-type="polyline" />
   9.216 +    <rect
   9.217 +       style="fill:#f57b8f;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.218 +       id="rect2998"
   9.219 +       width="51.42857"
   9.220 +       height="20"
   9.221 +       x="228.51787"
   9.222 +       y="592.27887" />
   9.223 +    <rect
   9.224 +       style="fill:#fbcad2;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.225 +       id="rect3000"
   9.226 +       width="51.42857"
   9.227 +       height="20"
   9.228 +       x="301.23218"
   9.229 +       y="592.27887" />
   9.230 +    <rect
   9.231 +       style="fill:#fbcad2;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.232 +       id="rect3002"
   9.233 +       width="51.42857"
   9.234 +       height="20"
   9.235 +       x="155.80357"
   9.236 +       y="592.27887" />
   9.237 +    <rect
   9.238 +       style="fill:#fbcad2;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.239 +       id="rect3004"
   9.240 +       width="51.42857"
   9.241 +       height="20"
   9.242 +       x="83.089287"
   9.243 +       y="592.27887" />
   9.244 +    <path
   9.245 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   9.246 +       d="M 135.01786,602.27884 L 155.30359,602.27884"
   9.247 +       id="path3006"
   9.248 +       inkscape:connector-type="polyline" />
   9.249 +    <path
   9.250 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   9.251 +       d="M 207.73216,602.27884 L 228.01788,602.27884"
   9.252 +       id="path3008"
   9.253 +       inkscape:connector-type="polyline" />
   9.254 +    <path
   9.255 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   9.256 +       d="M 280.44645,602.27884 L 300.73218,602.27884"
   9.257 +       id="path3010"
   9.258 +       inkscape:connector-type="polyline" />
   9.259 +    <path
   9.260 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
   9.261 +       d="M 62.30358,602.27884 L 82.5893,602.27884"
   9.262 +       id="path3012"
   9.263 +       inkscape:connector-type="polyline" />
   9.264 +    <rect
   9.265 +       style="fill:#ffced6;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.266 +       id="rect3034"
   9.267 +       width="51.42857"
   9.268 +       height="20"
   9.269 +       x="228.51787"
   9.270 +       y="653.07648" />
   9.271 +    <rect
   9.272 +       style="fill:#f57b8f;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.273 +       id="rect3038"
   9.274 +       width="51.42857"
   9.275 +       height="20"
   9.276 +       x="155.80357"
   9.277 +       y="653.07648" />
   9.278 +    <rect
   9.279 +       style="fill:#fbcad2;fill-opacity:1;stroke:#595959;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   9.280 +       id="rect3040"
   9.281 +       width="51.42857"
   9.282 +       height="20"
   9.283 +       x="83.089287"
   9.284 +       y="653.07648" />
   9.285 +    <path
   9.286 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   9.287 +       d="M 135.01786,663.07646 L 155.30359,663.07646"
   9.288 +       id="path3042"
   9.289 +       inkscape:connector-type="polyline" />
   9.290 +    <path
   9.291 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
   9.292 +       d="M 207.73216,663.07646 L 228.01788,663.07646"
   9.293 +       id="path3044"
   9.294 +       inkscape:connector-type="polyline" />
   9.295 +    <path
   9.296 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#747474;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
   9.297 +       d="M 62.30358,663.07646 L 82.5893,663.07646"
   9.298 +       id="path3048"
   9.299 +       inkscape:connector-type="polyline" />
   9.300 +    <text
   9.301 +       xml:space="preserve"
   9.302 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   9.303 +       x="82.072548"
   9.304 +       y="432.64789"
   9.305 +       id="text3094"><tspan
   9.306 +         sodipodi:role="line"
   9.307 +         id="tspan3096"
   9.308 +         x="82.072548"
   9.309 +         y="432.64789">Registro dei cambiamenti (changelog)</tspan></text>
   9.310 +    <text
   9.311 +       xml:space="preserve"
   9.312 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   9.313 +       x="82.306923"
   9.314 +       y="498.97327"
   9.315 +       id="text3098"><tspan
   9.316 +         sodipodi:role="line"
   9.317 +         id="tspan3100"
   9.318 +         x="82.306923"
   9.319 +         y="498.97327">Manifesto (manifest)</tspan></text>
   9.320 +    <text
   9.321 +       xml:space="preserve"
   9.322 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   9.323 +       x="82.14286"
   9.324 +       y="580.08569"
   9.325 +       id="text3102"><tspan
   9.326 +         sodipodi:role="line"
   9.327 +         id="tspan3104"
   9.328 +         x="82.14286"
   9.329 +         y="580.08569">Registri dei file (filelog)</tspan></text>
   9.330 +  </g>
   9.331 +</svg>
    10.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    10.2 +++ b/it/figs/mq-stack.svg	Tue Aug 18 17:19:30 2009 +0200
    10.3 @@ -0,0 +1,270 @@
    10.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    10.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    10.6 +<svg
    10.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    10.8 +   xmlns:cc="http://web.resource.org/cc/"
    10.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   10.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   10.11 +   xmlns="http://www.w3.org/2000/svg"
   10.12 +   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
   10.13 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   10.14 +   width="744.09448819"
   10.15 +   height="1052.3622047"
   10.16 +   id="svg2"
   10.17 +   sodipodi:version="0.32"
   10.18 +   inkscape:version="0.43"
   10.19 +   sodipodi:docname="mq-stack.svg"
   10.20 +   sodipodi:docbase="/home/bos/hg/hgbook/en">
   10.21 +  <defs
   10.22 +     id="defs4" />
   10.23 +  <sodipodi:namedview
   10.24 +     id="base"
   10.25 +     pagecolor="#ffffff"
   10.26 +     bordercolor="#666666"
   10.27 +     borderopacity="1.0"
   10.28 +     inkscape:pageopacity="0.0"
   10.29 +     inkscape:pageshadow="2"
   10.30 +     inkscape:zoom="1.4142136"
   10.31 +     inkscape:cx="299.33323"
   10.32 +     inkscape:cy="815.646"
   10.33 +     inkscape:document-units="px"
   10.34 +     inkscape:current-layer="layer1"
   10.35 +     inkscape:window-width="1014"
   10.36 +     inkscape:window-height="689"
   10.37 +     inkscape:window-x="0"
   10.38 +     inkscape:window-y="25" />
   10.39 +  <metadata
   10.40 +     id="metadata7">
   10.41 +    <rdf:RDF>
   10.42 +      <cc:Work
   10.43 +         rdf:about="">
   10.44 +        <dc:format>image/svg+xml</dc:format>
   10.45 +        <dc:type
   10.46 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
   10.47 +      </cc:Work>
   10.48 +    </rdf:RDF>
   10.49 +  </metadata>
   10.50 +  <g
   10.51 +     inkscape:label="Layer 1"
   10.52 +     inkscape:groupmode="layer"
   10.53 +     id="layer1">
   10.54 +    <rect
   10.55 +       style="fill:#0000ff;fill-opacity:0.75;fill-rule:evenodd;stroke:#3c3c3c;stroke-width:1.05063355px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
   10.56 +       id="rect1307"
   10.57 +       width="225.93683"
   10.58 +       height="24.243662"
   10.59 +       x="230.01944"
   10.60 +       y="221.70146" />
   10.61 +    <text
   10.62 +       xml:space="preserve"
   10.63 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
   10.64 +       x="237.89606"
   10.65 +       y="237.13383"
   10.66 +       id="text1309"><tspan
   10.67 +         sodipodi:role="line"
   10.68 +         id="tspan1311"
   10.69 +         x="237.89606"
   10.70 +         y="237.13383">evita-riordino-compilatore.patch</tspan></text>
   10.71 +    <rect
   10.72 +       style="fill:#7979ff;fill-opacity:0.875;fill-rule:evenodd;stroke:#3c3c3c;stroke-width:1.05063355px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
   10.73 +       id="rect1320"
   10.74 +       width="225.93683"
   10.75 +       height="24.243662"
   10.76 +       x="230.01936"
   10.77 +       y="251.34325" />
   10.78 +    <text
   10.79 +       xml:space="preserve"
   10.80 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
   10.81 +       x="237.89598"
   10.82 +       y="266.77563"
   10.83 +       id="text1322"><tspan
   10.84 +         sodipodi:role="line"
   10.85 +         id="tspan1324"
   10.86 +         x="237.89598"
   10.87 +         y="266.77563">ripulisce-spazi-di-nomi.patch</tspan></text>
   10.88 +    <rect
   10.89 +       style="fill:#7979ff;fill-opacity:0.875;fill-rule:evenodd;stroke:#3c3c3c;stroke-width:1.05063355px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
   10.90 +       id="rect2217"
   10.91 +       width="225.93683"
   10.92 +       height="24.243662"
   10.93 +       x="230.01936"
   10.94 +       y="280.98505" />
   10.95 +    <text
   10.96 +       xml:space="preserve"
   10.97 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
   10.98 +       x="237.89598"
   10.99 +       y="296.41742"
  10.100 +       id="text2219"><tspan
  10.101 +         sodipodi:role="line"
  10.102 +         id="tspan2221"
  10.103 +         x="237.89598"
  10.104 +         y="296.41742">correzioni-per-powerpc.patch</tspan></text>
  10.105 +    <rect
  10.106 +       style="fill:#7979ff;fill-opacity:0.875;fill-rule:evenodd;stroke:#3c3c3c;stroke-width:1.05063355px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  10.107 +       id="rect3114"
  10.108 +       width="225.93683"
  10.109 +       height="24.243662"
  10.110 +       x="230.01936"
  10.111 +       y="310.6268" />
  10.112 +    <text
  10.113 +       xml:space="preserve"
  10.114 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.115 +       x="237.89598"
  10.116 +       y="326.05917"
  10.117 +       id="text3116"><tspan
  10.118 +         sodipodi:role="line"
  10.119 +         id="tspan3118"
  10.120 +         x="237.89598"
  10.121 +         y="326.05917">riporta-informazioni-corrette.patch</tspan></text>
  10.122 +    <text
  10.123 +       xml:space="preserve"
  10.124 +       style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.125 +       x="200.01021"
  10.126 +       y="191.68094"
  10.127 +       id="text3170"
  10.128 +       sodipodi:linespacing="125%"><tspan
  10.129 +         sodipodi:role="line"
  10.130 +         id="tspan3172"
  10.131 +         x="200.01021"
  10.132 +         y="191.68094"
  10.133 +         style="font-size:48px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">{</tspan></text>
  10.134 +    <text
  10.135 +       xml:space="preserve"
  10.136 +       style="font-size:15.25329685px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.137 +       x="255.26627"
  10.138 +       y="248.79449"
  10.139 +       id="text3190"
  10.140 +       sodipodi:linespacing="125%"
  10.141 +       transform="scale(0.786716,1.271107)"><tspan
  10.142 +         sodipodi:role="line"
  10.143 +         id="tspan3192"
  10.144 +         x="255.26627"
  10.145 +         y="248.79449"
  10.146 +         style="font-size:61.01318741px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;font-family:Bitstream Vera Sans">{</tspan></text>
  10.147 +    <text
  10.148 +       xml:space="preserve"
  10.149 +       style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.150 +       x="195.86807"
  10.151 +       y="173.17117"
  10.152 +       id="text4085"
  10.153 +       sodipodi:linespacing="125%"><tspan
  10.154 +         sodipodi:role="line"
  10.155 +         id="tspan4087"
  10.156 +         x="195.86807"
  10.157 +         y="173.17117"
  10.158 +         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;font-family:Bitstream Vera Sans">presenti nella serie,</tspan><tspan
  10.159 +         sodipodi:role="line"
  10.160 +         x="195.86807"
  10.161 +         y="188.17117"
  10.162 +         id="tspan4089"
  10.163 +         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;font-family:Bitstream Vera Sans">ma non applicate</tspan></text>
  10.164 +    <text
  10.165 +       xml:space="preserve"
  10.166 +       style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.167 +       x="195.0712"
  10.168 +       y="288.91745"
  10.169 +       id="text4091"
  10.170 +       sodipodi:linespacing="125%"><tspan
  10.171 +         sodipodi:role="line"
  10.172 +         id="tspan4093"
  10.173 +         x="195.0712"
  10.174 +         y="288.91745"
  10.175 +         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;font-family:Bitstream Vera Sans">patch applicate,</tspan><tspan
  10.176 +         sodipodi:role="line"
  10.177 +         x="195.0712"
  10.178 +         y="303.91745"
  10.179 +         id="tspan4111"
  10.180 +         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;font-family:Bitstream Vera Sans">changeset presenti</tspan></text>
  10.181 +    <text
  10.182 +       xml:space="preserve"
  10.183 +       style="font-size:12px;font-style:normal;font-weight:normal;line-height:125%;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.184 +       x="195.0712"
  10.185 +       y="229.28813"
  10.186 +       id="text4095"
  10.187 +       sodipodi:linespacing="125%"><tspan
  10.188 +         sodipodi:role="line"
  10.189 +         id="tspan4097"
  10.190 +         x="195.0712"
  10.191 +         y="229.28813"
  10.192 +         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;font-family:Bitstream Vera Sans">patch applicata</tspan><tspan
  10.193 +         sodipodi:role="line"
  10.194 +         x="195.0712"
  10.195 +         y="244.28813"
  10.196 +         id="tspan4109"
  10.197 +         style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:125%;writing-mode:lr-tb;text-anchor:end;font-family:Bitstream Vera Sans">più recentemente</tspan></text>
  10.198 +    <text
  10.199 +       xml:space="preserve"
  10.200 +       style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#666666;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.201 +       x="473.4975"
  10.202 +       y="238.29692"
  10.203 +       id="text4137"><tspan
  10.204 +         sodipodi:role="line"
  10.205 +         id="tspan4139"
  10.206 +         x="473.4975"
  10.207 +         y="238.29692">201ad3209902</tspan></text>
  10.208 +    <text
  10.209 +       xml:space="preserve"
  10.210 +       style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#989898;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.211 +       x="473.05804"
  10.212 +       y="267.93872"
  10.213 +       id="text4141"><tspan
  10.214 +         sodipodi:role="line"
  10.215 +         id="tspan4143"
  10.216 +         x="473.05804"
  10.217 +         y="267.93872">126b84e593ae</tspan></text>
  10.218 +    <text
  10.219 +       xml:space="preserve"
  10.220 +       style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#989898;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.221 +       x="473.6557"
  10.222 +       y="297.58051"
  10.223 +       id="text4145"><tspan
  10.224 +         sodipodi:role="line"
  10.225 +         id="tspan4147"
  10.226 +         x="473.6557"
  10.227 +         y="297.58051">a655daf15409</tspan></text>
  10.228 +    <text
  10.229 +       xml:space="preserve"
  10.230 +       style="font-size:12px;font-style:normal;font-weight:normal;opacity:1;fill:#989898;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.231 +       x="473.71429"
  10.232 +       y="327.22226"
  10.233 +       id="text4149"><tspan
  10.234 +         sodipodi:role="line"
  10.235 +         id="tspan4151"
  10.236 +         x="473.71429"
  10.237 +         y="327.22226">e50d59aaea3a</tspan></text>
  10.238 +    <rect
  10.239 +       style="fill:#d7d7ff;fill-opacity:0.875;fill-rule:evenodd;stroke:#a6a6a6;stroke-width:1.05063355px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  10.240 +       id="rect3106"
  10.241 +       width="225.93683"
  10.242 +       height="24.243662"
  10.243 +       x="230.01936"
  10.244 +       y="150.41792" />
  10.245 +    <text
  10.246 +       xml:space="preserve"
  10.247 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#808080;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.248 +       x="237.89598"
  10.249 +       y="165.8503"
  10.250 +       id="text3108"><tspan
  10.251 +         sodipodi:role="line"
  10.252 +         id="tspan3110"
  10.253 +         x="237.89598"
  10.254 +         y="165.8503">proibisce-parametri-illegali.patch</tspan></text>
  10.255 +    <rect
  10.256 +       style="fill:#d7d7ff;fill-opacity:0.875;fill-rule:evenodd;stroke:#a6a6a6;stroke-width:1.05063355px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  10.257 +       id="rect2241"
  10.258 +       width="225.93683"
  10.259 +       height="24.243662"
  10.260 +       x="230.16466"
  10.261 +       y="180.05968" />
  10.262 +    <text
  10.263 +       xml:space="preserve"
  10.264 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#808080;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
  10.265 +       x="238.04128"
  10.266 +       y="195.49205"
  10.267 +       id="text2243"><tspan
  10.268 +         sodipodi:role="line"
  10.269 +         id="tspan2245"
  10.270 +         x="238.04128"
  10.271 +         y="195.49205">corregge-problemi-memoria.patch</tspan></text>
  10.272 +  </g>
  10.273 +</svg>
    11.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    11.2 +++ b/it/figs/revlog.svg	Tue Aug 18 17:19:30 2009 +0200
    11.3 @@ -0,0 +1,1155 @@
    11.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    11.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    11.6 +<svg
    11.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    11.8 +   xmlns:cc="http://web.resource.org/cc/"
    11.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   11.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   11.11 +   xmlns="http://www.w3.org/2000/svg"
   11.12 +   xmlns:xlink="http://www.w3.org/1999/xlink"
   11.13 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   11.14 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   11.15 +   width="744.09448819"
   11.16 +   height="1052.3622047"
   11.17 +   id="svg2"
   11.18 +   sodipodi:version="0.32"
   11.19 +   inkscape:version="0.44.1"
   11.20 +   sodipodi:docbase="/home/bos/hg/hgbook/en"
   11.21 +   sodipodi:docname="revlog.svg">
   11.22 +  <defs
   11.23 +     id="defs4">
   11.24 +    <marker
   11.25 +       inkscape:stockid="Arrow1Mend"
   11.26 +       orient="auto"
   11.27 +       refY="0.0"
   11.28 +       refX="0.0"
   11.29 +       id="Arrow1Mend"
   11.30 +       style="overflow:visible;">
   11.31 +      <path
   11.32 +         id="path4852"
   11.33 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   11.34 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
   11.35 +         transform="scale(0.4) rotate(180) translate(10,0)" />
   11.36 +    </marker>
   11.37 +    <linearGradient
   11.38 +       id="linearGradient3092">
   11.39 +      <stop
   11.40 +         style="stop-color:#44436f;stop-opacity:1;"
   11.41 +         offset="0"
   11.42 +         id="stop3094" />
   11.43 +      <stop
   11.44 +         style="stop-color:#abade5;stop-opacity:1;"
   11.45 +         offset="1"
   11.46 +         id="stop3096" />
   11.47 +    </linearGradient>
   11.48 +    <linearGradient
   11.49 +       inkscape:collect="always"
   11.50 +       xlink:href="#linearGradient3092"
   11.51 +       id="linearGradient3118"
   11.52 +       gradientUnits="userSpaceOnUse"
   11.53 +       x1="176.16635"
   11.54 +       y1="405.21934"
   11.55 +       x2="417.11935"
   11.56 +       y2="405.21934" />
   11.57 +    <linearGradient
   11.58 +       inkscape:collect="always"
   11.59 +       xlink:href="#linearGradient3092"
   11.60 +       id="linearGradient3120"
   11.61 +       gradientUnits="userSpaceOnUse"
   11.62 +       x1="176.16635"
   11.63 +       y1="405.21934"
   11.64 +       x2="417.11935"
   11.65 +       y2="405.21934" />
   11.66 +    <linearGradient
   11.67 +       inkscape:collect="always"
   11.68 +       xlink:href="#linearGradient3092"
   11.69 +       id="linearGradient3129"
   11.70 +       gradientUnits="userSpaceOnUse"
   11.71 +       x1="176.16635"
   11.72 +       y1="405.21934"
   11.73 +       x2="417.11935"
   11.74 +       y2="405.21934"
   11.75 +       gradientTransform="translate(-0.928574,-1.428574)" />
   11.76 +    <linearGradient
   11.77 +       inkscape:collect="always"
   11.78 +       xlink:href="#linearGradient3092"
   11.79 +       id="linearGradient3133"
   11.80 +       gradientUnits="userSpaceOnUse"
   11.81 +       x1="176.16635"
   11.82 +       y1="405.21934"
   11.83 +       x2="417.11935"
   11.84 +       y2="405.21934"
   11.85 +       gradientTransform="translate(-0.928574,-1.428574)" />
   11.86 +    <linearGradient
   11.87 +       inkscape:collect="always"
   11.88 +       xlink:href="#linearGradient3092"
   11.89 +       id="linearGradient3708"
   11.90 +       gradientUnits="userSpaceOnUse"
   11.91 +       gradientTransform="matrix(0.423343,0,0,0.423343,138.874,-67.01732)"
   11.92 +       x1="175.23776"
   11.93 +       y1="509.98154"
   11.94 +       x2="416.29077"
   11.95 +       y2="297.49997" />
   11.96 +    <linearGradient
   11.97 +       inkscape:collect="always"
   11.98 +       xlink:href="#linearGradient3092"
   11.99 +       id="linearGradient5164"
  11.100 +       gradientUnits="userSpaceOnUse"
  11.101 +       gradientTransform="matrix(0.423343,0,0,0.423343,198.249,247.4358)"
  11.102 +       x1="175.23776"
  11.103 +       y1="509.98154"
  11.104 +       x2="416.29077"
  11.105 +       y2="297.49997" />
  11.106 +    <linearGradient
  11.107 +       inkscape:collect="always"
  11.108 +       xlink:href="#linearGradient3092"
  11.109 +       id="linearGradient5584"
  11.110 +       gradientUnits="userSpaceOnUse"
  11.111 +       gradientTransform="matrix(0.423343,0,0,0.423343,143.9081,371.2915)"
  11.112 +       x1="175.23776"
  11.113 +       y1="509.98154"
  11.114 +       x2="416.29077"
  11.115 +       y2="297.49997" />
  11.116 +    <linearGradient
  11.117 +       inkscape:collect="always"
  11.118 +       xlink:href="#linearGradient3092"
  11.119 +       id="linearGradient5784"
  11.120 +       gradientUnits="userSpaceOnUse"
  11.121 +       gradientTransform="matrix(0.423343,0,0,0.423343,76.37397,152.137)"
  11.122 +       x1="175.23776"
  11.123 +       y1="509.98154"
  11.124 +       x2="416.29077"
  11.125 +       y2="297.49997" />
  11.126 +    <linearGradient
  11.127 +       inkscape:collect="always"
  11.128 +       xlink:href="#linearGradient3092"
  11.129 +       id="linearGradient5786"
  11.130 +       gradientUnits="userSpaceOnUse"
  11.131 +       gradientTransform="matrix(0.423343,0,0,0.423343,198.249,152.137)"
  11.132 +       x1="175.23776"
  11.133 +       y1="509.98154"
  11.134 +       x2="416.29077"
  11.135 +       y2="297.49997" />
  11.136 +    <linearGradient
  11.137 +       inkscape:collect="always"
  11.138 +       xlink:href="#linearGradient3092"
  11.139 +       id="linearGradient5895"
  11.140 +       gradientUnits="userSpaceOnUse"
  11.141 +       gradientTransform="matrix(0.423343,0,0,0.423343,198.0215,261.7142)"
  11.142 +       x1="175.23776"
  11.143 +       y1="509.98154"
  11.144 +       x2="416.29077"
  11.145 +       y2="297.49997" />
  11.146 +    <linearGradient
  11.147 +       inkscape:collect="always"
  11.148 +       xlink:href="#linearGradient3092"
  11.149 +       id="linearGradient5958"
  11.150 +       gradientUnits="userSpaceOnUse"
  11.151 +       gradientTransform="matrix(0.423343,0,0,0.423343,137.1978,42.55987)"
  11.152 +       x1="175.23776"
  11.153 +       y1="509.98154"
  11.154 +       x2="416.29077"
  11.155 +       y2="297.49997" />
  11.156 +  </defs>
  11.157 +  <sodipodi:namedview
  11.158 +     id="base"
  11.159 +     pagecolor="#ffffff"
  11.160 +     bordercolor="#666666"
  11.161 +     borderopacity="1.0"
  11.162 +     gridtolerance="10000"
  11.163 +     guidetolerance="10"
  11.164 +     objecttolerance="10"
  11.165 +     inkscape:pageopacity="0.0"
  11.166 +     inkscape:pageshadow="2"
  11.167 +     inkscape:zoom="0.64"
  11.168 +     inkscape:cx="566.02368"
  11.169 +     inkscape:cy="688.16826"
  11.170 +     inkscape:document-units="px"
  11.171 +     inkscape:current-layer="layer1"
  11.172 +     inkscape:window-width="906"
  11.173 +     inkscape:window-height="620"
  11.174 +     inkscape:window-x="29"
  11.175 +     inkscape:window-y="79"
  11.176 +     inkscape:connector-spacing="11" />
  11.177 +  <metadata
  11.178 +     id="metadata7">
  11.179 +    <rdf:RDF>
  11.180 +      <cc:Work
  11.181 +         rdf:about="">
  11.182 +        <dc:format>image/svg+xml</dc:format>
  11.183 +        <dc:type
  11.184 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  11.185 +      </cc:Work>
  11.186 +    </rdf:RDF>
  11.187 +  </metadata>
  11.188 +  <g
  11.189 +     inkscape:label="Layer 1"
  11.190 +     inkscape:groupmode="layer"
  11.191 +     id="layer1">
  11.192 +    <rect
  11.193 +       y="168.74846"
  11.194 +       x="211.58516"
  11.195 +       height="89.506805"
  11.196 +       width="101.60232"
  11.197 +       id="rect3068"
  11.198 +       style="fill:url(#linearGradient5958);fill-opacity:1;stroke:black;stroke-width:0.48811448;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  11.199 +    <g
  11.200 +       id="g3215"
  11.201 +       transform="matrix(0.423343,0,0,0.423343,137.1977,42.55985)">
  11.202 +      <rect
  11.203 +         y="447.71451"
  11.204 +         x="299.67859"
  11.205 +         height="48.571426"
  11.206 +         width="103.14286"
  11.207 +         id="rect2899"
  11.208 +         style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  11.209 +      <text
  11.210 +         id="text2903"
  11.211 +         y="464.8139"
  11.212 +         x="308.89639"
  11.213 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.214 +         xml:space="preserve"><tspan
  11.215 +           y="464.8139"
  11.216 +           x="308.89639"
  11.217 +           sodipodi:role="line"
  11.218 +           id="tspan2905">Secondo genitore</tspan></text>
  11.219 +      <text
  11.220 +         id="text2907"
  11.221 +         y="485.50256"
  11.222 +         x="308.20175"
  11.223 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.224 +         xml:space="preserve"><tspan
  11.225 +           style="font-family:Courier"
  11.226 +           y="485.50256"
  11.227 +           x="308.20175"
  11.228 +           id="tspan2909"
  11.229 +           sodipodi:role="line">32bf9a5f22c0</tspan></text>
  11.230 +    </g>
  11.231 +    <g
  11.232 +       id="g3250"
  11.233 +       transform="matrix(0.423343,0,0,0.423343,137.1977,42.55986)">
  11.234 +      <rect
  11.235 +         y="311.28598"
  11.236 +         x="188.6071"
  11.237 +         height="48.571426"
  11.238 +         width="103.14286"
  11.239 +         id="rect2936"
  11.240 +         style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  11.241 +      <text
  11.242 +         id="text2940"
  11.243 +         y="328.38538"
  11.244 +         x="197.82495"
  11.245 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.246 +         xml:space="preserve"><tspan
  11.247 +           y="328.38538"
  11.248 +           x="197.82495"
  11.249 +           sodipodi:role="line"
  11.250 +           id="tspan2942">Hash di revisione</tspan></text>
  11.251 +      <text
  11.252 +         id="text2944"
  11.253 +         y="349.07404"
  11.254 +         x="197.13031"
  11.255 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.256 +         xml:space="preserve"><tspan
  11.257 +           style="font-family:Courier"
  11.258 +           y="349.07404"
  11.259 +           x="197.13031"
  11.260 +           id="tspan2946"
  11.261 +           sodipodi:role="line">34b8b7a15ea1</tspan></text>
  11.262 +    </g>
  11.263 +    <g
  11.264 +       id="g3243"
  11.265 +       transform="matrix(0.423343,0,0,0.423343,137.6664,43.91853)">
  11.266 +      <rect
  11.267 +         y="363.07654"
  11.268 +         x="187.5"
  11.269 +         height="75"
  11.270 +         width="213.85715"
  11.271 +         id="rect2950"
  11.272 +         style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  11.273 +      <text
  11.274 +         id="text2958"
  11.275 +         y="400.86459"
  11.276 +         x="196.02321"
  11.277 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.278 +         xml:space="preserve"><tspan
  11.279 +           style="fill:black;fill-opacity:1;font-family:Courier"
  11.280 +           y="400.86459"
  11.281 +           x="196.02321"
  11.282 +           id="tspan2960"
  11.283 +           sodipodi:role="line">...</tspan></text>
  11.284 +      <text
  11.285 +         id="text2954"
  11.286 +         y="380.17593"
  11.287 +         x="196.71785"
  11.288 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.289 +         xml:space="preserve"><tspan
  11.290 +           y="380.17593"
  11.291 +           x="196.71785"
  11.292 +           sodipodi:role="line"
  11.293 +           id="tspan2956"
  11.294 +           style="fill:black;fill-opacity:1">Dati di revisione (delta o fotografia)</tspan></text>
  11.295 +    </g>
  11.296 +    <g
  11.297 +       id="g5529"
  11.298 +       transform="translate(-6.710312,-8.165836e-6)">
  11.299 +      <rect
  11.300 +         style="fill:url(#linearGradient5584);fill-opacity:1;stroke:black;stroke-width:0.48811448;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.301 +         id="rect3509"
  11.302 +         width="101.60232"
  11.303 +         height="89.506805"
  11.304 +         x="218.29547"
  11.305 +         y="497.4801" />
  11.306 +      <g
  11.307 +         transform="matrix(0.423343,0,0,0.423343,143.908,371.2915)"
  11.308 +         id="g3513">
  11.309 +        <g
  11.310 +           id="g3515">
  11.311 +          <rect
  11.312 +             y="447.72418"
  11.313 +             x="188.6071"
  11.314 +             height="48.571426"
  11.315 +             width="103.14286"
  11.316 +             id="rect3517"
  11.317 +             style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  11.318 +          <text
  11.319 +             id="text3519"
  11.320 +             y="464.82358"
  11.321 +             x="197.82495"
  11.322 +             style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.323 +             xml:space="preserve"><tspan
  11.324 +               y="464.82358"
  11.325 +               x="197.82495"
  11.326 +               sodipodi:role="line"
  11.327 +               id="tspan3521">Primo genitore</tspan></text>
  11.328 +          <text
  11.329 +             id="text3523"
  11.330 +             y="485.51224"
  11.331 +             x="197.13031"
  11.332 +             style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.333 +             xml:space="preserve"><tspan
  11.334 +               style="font-family:Courier"
  11.335 +               y="485.51224"
  11.336 +               x="197.13031"
  11.337 +               id="tspan3525"
  11.338 +               sodipodi:role="line">000000000000</tspan></text>
  11.339 +        </g>
  11.340 +        <g
  11.341 +           id="g3527">
  11.342 +          <rect
  11.343 +             y="447.71451"
  11.344 +             x="299.67859"
  11.345 +             height="48.571426"
  11.346 +             width="103.14286"
  11.347 +             id="rect3529"
  11.348 +             style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  11.349 +          <text
  11.350 +             id="text3531"
  11.351 +             y="464.8139"
  11.352 +             x="308.89639"
  11.353 +             style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.354 +             xml:space="preserve"><tspan
  11.355 +               y="464.8139"
  11.356 +               x="308.89639"
  11.357 +               sodipodi:role="line"
  11.358 +               id="tspan3533">Secondo genitore</tspan></text>
  11.359 +          <text
  11.360 +             id="text3535"
  11.361 +             y="485.50256"
  11.362 +             x="308.20175"
  11.363 +             style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.364 +             xml:space="preserve"><tspan
  11.365 +               style="font-family:Courier"
  11.366 +               y="485.50256"
  11.367 +               x="308.20175"
  11.368 +               id="tspan3537"
  11.369 +               sodipodi:role="line">000000000000</tspan></text>
  11.370 +        </g>
  11.371 +      </g>
  11.372 +      <g
  11.373 +         transform="matrix(0.423343,0,0,0.423343,143.908,371.2915)"
  11.374 +         id="g3539">
  11.375 +        <rect
  11.376 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.377 +           id="rect3541"
  11.378 +           width="103.14286"
  11.379 +           height="48.571426"
  11.380 +           x="188.6071"
  11.381 +           y="311.28598" />
  11.382 +        <text
  11.383 +           xml:space="preserve"
  11.384 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.385 +           x="197.82495"
  11.386 +           y="328.38538"
  11.387 +           id="text3543"><tspan
  11.388 +             id="tspan3545"
  11.389 +             sodipodi:role="line"
  11.390 +             x="197.82495"
  11.391 +             y="328.38538">Hash di revisione</tspan></text>
  11.392 +        <text
  11.393 +           xml:space="preserve"
  11.394 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.395 +           x="197.13031"
  11.396 +           y="349.07404"
  11.397 +           id="text3547"><tspan
  11.398 +             sodipodi:role="line"
  11.399 +             id="tspan3549"
  11.400 +             x="197.13031"
  11.401 +             y="349.07404"
  11.402 +             style="font-family:Courier">ff9dc8bc2a8b</tspan></text>
  11.403 +      </g>
  11.404 +      <g
  11.405 +         transform="matrix(0.423343,0,0,0.423343,144.3767,372.6502)"
  11.406 +         id="g3551">
  11.407 +        <rect
  11.408 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.409 +           id="rect3553"
  11.410 +           width="213.85715"
  11.411 +           height="75"
  11.412 +           x="187.5"
  11.413 +           y="363.07654" />
  11.414 +        <text
  11.415 +           xml:space="preserve"
  11.416 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.417 +           x="196.02321"
  11.418 +           y="400.86459"
  11.419 +           id="text3555"><tspan
  11.420 +             sodipodi:role="line"
  11.421 +             id="tspan3557"
  11.422 +             x="196.02321"
  11.423 +             y="400.86459"
  11.424 +             style="fill:black;fill-opacity:1;font-family:Courier">...</tspan></text>
  11.425 +        <text
  11.426 +           xml:space="preserve"
  11.427 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.428 +           x="196.71785"
  11.429 +           y="380.17593"
  11.430 +           id="text3559"><tspan
  11.431 +             style="fill:black;fill-opacity:1"
  11.432 +             id="tspan3561"
  11.433 +             sodipodi:role="line"
  11.434 +             x="196.71785"
  11.435 +             y="380.17593">Dati di revisione (delta o fotografia)</tspan></text>
  11.436 +      </g>
  11.437 +    </g>
  11.438 +    <g
  11.439 +       id="g4868"
  11.440 +       transform="translate(-1.676208,-2.342463e-5)">
  11.441 +      <rect
  11.442 +         style="fill:url(#linearGradient3708);fill-opacity:1;stroke:black;stroke-width:0.48811448;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.443 +         id="rect3567"
  11.444 +         width="101.60232"
  11.445 +         height="89.506805"
  11.446 +         x="213.26137"
  11.447 +         y="59.171272" />
  11.448 +      <g
  11.449 +         transform="matrix(0.423343,0,0,0.423343,138.8739,-67.01734)"
  11.450 +         id="g3573">
  11.451 +        <rect
  11.452 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.453 +           id="rect3575"
  11.454 +           width="103.14286"
  11.455 +           height="48.571426"
  11.456 +           x="188.6071"
  11.457 +           y="447.72418" />
  11.458 +        <text
  11.459 +           xml:space="preserve"
  11.460 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.461 +           x="197.82495"
  11.462 +           y="464.82358"
  11.463 +           id="text3577"><tspan
  11.464 +             id="tspan3579"
  11.465 +             sodipodi:role="line"
  11.466 +             x="197.82495"
  11.467 +             y="464.82358">Primo genitore</tspan></text>
  11.468 +        <text
  11.469 +           xml:space="preserve"
  11.470 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.471 +           x="197.13031"
  11.472 +           y="485.51224"
  11.473 +           id="text3581"><tspan
  11.474 +             sodipodi:role="line"
  11.475 +             id="tspan3583"
  11.476 +             x="197.13031"
  11.477 +             y="485.51224"
  11.478 +             style="font-family:Courier">34b8b7a15ea1</tspan></text>
  11.479 +      </g>
  11.480 +      <g
  11.481 +         transform="matrix(0.423343,0,0,0.423343,138.8739,-67.01734)"
  11.482 +         id="g3585">
  11.483 +        <rect
  11.484 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.485 +           id="rect3587"
  11.486 +           width="103.14286"
  11.487 +           height="48.571426"
  11.488 +           x="299.67859"
  11.489 +           y="447.71451" />
  11.490 +        <text
  11.491 +           xml:space="preserve"
  11.492 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.493 +           x="308.89639"
  11.494 +           y="464.8139"
  11.495 +           id="text3589"><tspan
  11.496 +             id="tspan3591"
  11.497 +             sodipodi:role="line"
  11.498 +             x="308.89639"
  11.499 +             y="464.8139">Secondo genitore</tspan></text>
  11.500 +        <text
  11.501 +           xml:space="preserve"
  11.502 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.503 +           x="308.20175"
  11.504 +           y="485.50256"
  11.505 +           id="text3593"><tspan
  11.506 +             sodipodi:role="line"
  11.507 +             id="tspan3595"
  11.508 +             x="308.20175"
  11.509 +             y="485.50256"
  11.510 +             style="font-family:Courier">000000000000</tspan></text>
  11.511 +      </g>
  11.512 +      <g
  11.513 +         transform="matrix(0.423343,0,0,0.423343,138.8739,-67.01733)"
  11.514 +         id="g3597">
  11.515 +        <rect
  11.516 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.517 +           id="rect3599"
  11.518 +           width="103.14286"
  11.519 +           height="48.571426"
  11.520 +           x="188.6071"
  11.521 +           y="311.28598" />
  11.522 +        <text
  11.523 +           xml:space="preserve"
  11.524 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.525 +           x="197.82495"
  11.526 +           y="328.38538"
  11.527 +           id="text3601"><tspan
  11.528 +             id="tspan3603"
  11.529 +             sodipodi:role="line"
  11.530 +             x="197.82495"
  11.531 +             y="328.38538">Hash di revisione</tspan></text>
  11.532 +        <text
  11.533 +           xml:space="preserve"
  11.534 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.535 +           x="197.13031"
  11.536 +           y="349.07404"
  11.537 +           id="text3605"><tspan
  11.538 +             sodipodi:role="line"
  11.539 +             id="tspan3607"
  11.540 +             x="197.13031"
  11.541 +             y="349.07404"
  11.542 +             style="font-family:Courier">1b67dc96f27a</tspan></text>
  11.543 +      </g>
  11.544 +      <g
  11.545 +         transform="matrix(0.423343,0,0,0.423343,139.3426,-65.65866)"
  11.546 +         id="g3609">
  11.547 +        <rect
  11.548 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.549 +           id="rect3611"
  11.550 +           width="213.85715"
  11.551 +           height="75"
  11.552 +           x="187.5"
  11.553 +           y="363.07654" />
  11.554 +        <text
  11.555 +           xml:space="preserve"
  11.556 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.557 +           x="196.02321"
  11.558 +           y="400.86459"
  11.559 +           id="text3613"><tspan
  11.560 +             sodipodi:role="line"
  11.561 +             id="tspan3615"
  11.562 +             x="196.02321"
  11.563 +             y="400.86459"
  11.564 +             style="fill:black;fill-opacity:1;font-family:Courier">...</tspan></text>
  11.565 +        <text
  11.566 +           xml:space="preserve"
  11.567 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.568 +           x="196.71785"
  11.569 +           y="380.17593"
  11.570 +           id="text3617"><tspan
  11.571 +             style="fill:black;fill-opacity:1"
  11.572 +             id="tspan3619"
  11.573 +             sodipodi:role="line"
  11.574 +             x="196.71785"
  11.575 +             y="380.17593">Dati di revisione (delta o fotografia)</tspan></text>
  11.576 +      </g>
  11.577 +    </g>
  11.578 +    <path
  11.579 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:none;marker-end:url(#Arrow1Mend)"
  11.580 +       d="M 240.78255,143.08593 L 241.42595,171.75349"
  11.581 +       id="path3801"
  11.582 +       inkscape:connector-type="polyline"
  11.583 +       inkscape:connection-start="#g3573"
  11.584 +       inkscape:connection-end="#g3250" />
  11.585 +    <g
  11.586 +       id="g5677">
  11.587 +      <rect
  11.588 +         style="fill:url(#linearGradient5784);fill-opacity:1;stroke:black;stroke-width:0.48811448;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.589 +         id="rect3393"
  11.590 +         width="101.60232"
  11.591 +         height="89.506805"
  11.592 +         x="150.76137"
  11.593 +         y="278.32565" />
  11.594 +      <g
  11.595 +         transform="matrix(0.423343,0,0,0.423343,76.37397,152.137)"
  11.596 +         id="g3399">
  11.597 +        <rect
  11.598 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.599 +           id="rect3401"
  11.600 +           width="103.14286"
  11.601 +           height="48.571426"
  11.602 +           x="188.6071"
  11.603 +           y="447.72418" />
  11.604 +        <text
  11.605 +           xml:space="preserve"
  11.606 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.607 +           x="197.82495"
  11.608 +           y="464.82358"
  11.609 +           id="text3403"><tspan
  11.610 +             id="tspan3405"
  11.611 +             sodipodi:role="line"
  11.612 +             x="197.82495"
  11.613 +             y="464.82358">Primo genitore</tspan></text>
  11.614 +        <text
  11.615 +           xml:space="preserve"
  11.616 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.617 +           x="197.13031"
  11.618 +           y="485.51224"
  11.619 +           id="text3407"><tspan
  11.620 +             sodipodi:role="line"
  11.621 +             id="tspan3409"
  11.622 +             x="197.13031"
  11.623 +             y="485.51224"
  11.624 +             style="font-family:Courier">ff9dc8bc2a8b</tspan></text>
  11.625 +      </g>
  11.626 +      <g
  11.627 +         transform="matrix(0.423343,0,0,0.423343,76.37397,152.137)"
  11.628 +         id="g3411">
  11.629 +        <rect
  11.630 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.631 +           id="rect3413"
  11.632 +           width="103.14286"
  11.633 +           height="48.571426"
  11.634 +           x="299.67859"
  11.635 +           y="447.71451" />
  11.636 +        <text
  11.637 +           xml:space="preserve"
  11.638 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.639 +           x="308.89639"
  11.640 +           y="464.8139"
  11.641 +           id="text3415"><tspan
  11.642 +             id="tspan3417"
  11.643 +             sodipodi:role="line"
  11.644 +             x="308.89639"
  11.645 +             y="464.8139">Secondo genitore</tspan></text>
  11.646 +        <text
  11.647 +           xml:space="preserve"
  11.648 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.649 +           x="308.20175"
  11.650 +           y="485.50256"
  11.651 +           id="text3419"><tspan
  11.652 +             sodipodi:role="line"
  11.653 +             id="tspan3421"
  11.654 +             x="308.20175"
  11.655 +             y="485.50256"
  11.656 +             style="font-family:Courier">000000000000</tspan></text>
  11.657 +      </g>
  11.658 +      <g
  11.659 +         transform="matrix(0.423343,0,0,0.423343,76.37397,152.137)"
  11.660 +         id="g3423">
  11.661 +        <rect
  11.662 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.663 +           id="rect3425"
  11.664 +           width="103.14286"
  11.665 +           height="48.571426"
  11.666 +           x="188.6071"
  11.667 +           y="311.28598" />
  11.668 +        <text
  11.669 +           xml:space="preserve"
  11.670 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.671 +           x="197.82495"
  11.672 +           y="328.38538"
  11.673 +           id="text3427"><tspan
  11.674 +             id="tspan3429"
  11.675 +             sodipodi:role="line"
  11.676 +             x="197.82495"
  11.677 +             y="328.38538">Hash di revisione</tspan></text>
  11.678 +        <text
  11.679 +           xml:space="preserve"
  11.680 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.681 +           x="197.13031"
  11.682 +           y="349.07404"
  11.683 +           id="text3431"><tspan
  11.684 +             sodipodi:role="line"
  11.685 +             id="tspan3433"
  11.686 +             x="197.13031"
  11.687 +             y="349.07404"
  11.688 +             style="font-family:Courier">5b80c922ebdd</tspan></text>
  11.689 +      </g>
  11.690 +      <g
  11.691 +         transform="matrix(0.423343,0,0,0.423343,76.84265,153.4957)"
  11.692 +         id="g3435">
  11.693 +        <rect
  11.694 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.695 +           id="rect3437"
  11.696 +           width="213.85715"
  11.697 +           height="75"
  11.698 +           x="187.5"
  11.699 +           y="363.07654" />
  11.700 +        <text
  11.701 +           xml:space="preserve"
  11.702 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.703 +           x="196.02321"
  11.704 +           y="400.86459"
  11.705 +           id="text3439"><tspan
  11.706 +             sodipodi:role="line"
  11.707 +             id="tspan3441"
  11.708 +             x="196.02321"
  11.709 +             y="400.86459"
  11.710 +             style="fill:black;fill-opacity:1;font-family:Courier">...</tspan></text>
  11.711 +        <text
  11.712 +           xml:space="preserve"
  11.713 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.714 +           x="196.71785"
  11.715 +           y="380.17593"
  11.716 +           id="text3443"><tspan
  11.717 +             style="fill:black;fill-opacity:1"
  11.718 +             id="tspan3445"
  11.719 +             sodipodi:role="line"
  11.720 +             x="196.71785"
  11.721 +             y="380.17593">Dati di revisione (delta o fotografia)</tspan></text>
  11.722 +      </g>
  11.723 +    </g>
  11.724 +    <g
  11.725 +       id="g5646"
  11.726 +       transform="translate(-0.227432,0)">
  11.727 +      <rect
  11.728 +         style="fill:url(#linearGradient5786);fill-opacity:1;stroke:black;stroke-width:0.48811448;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.729 +         id="rect3451"
  11.730 +         width="101.60232"
  11.731 +         height="89.506805"
  11.732 +         x="272.63638"
  11.733 +         y="278.32565" />
  11.734 +      <g
  11.735 +         transform="matrix(0.423343,0,0,0.423343,198.2489,152.137)"
  11.736 +         id="g3457">
  11.737 +        <rect
  11.738 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.739 +           id="rect3459"
  11.740 +           width="103.14286"
  11.741 +           height="48.571426"
  11.742 +           x="188.6071"
  11.743 +           y="447.72418" />
  11.744 +        <text
  11.745 +           xml:space="preserve"
  11.746 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.747 +           x="197.82495"
  11.748 +           y="464.82358"
  11.749 +           id="text3461"><tspan
  11.750 +             id="tspan3463"
  11.751 +             sodipodi:role="line"
  11.752 +             x="197.82495"
  11.753 +             y="464.82358">Primo genitore</tspan></text>
  11.754 +        <text
  11.755 +           xml:space="preserve"
  11.756 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.757 +           x="197.13031"
  11.758 +           y="485.51224"
  11.759 +           id="text3465"><tspan
  11.760 +             sodipodi:role="line"
  11.761 +             id="tspan3467"
  11.762 +             x="197.13031"
  11.763 +             y="485.51224"
  11.764 +             style="font-family:Courier">ecacb6b4c9fd</tspan></text>
  11.765 +      </g>
  11.766 +      <g
  11.767 +         transform="matrix(0.423343,0,0,0.423343,198.2489,152.137)"
  11.768 +         id="g3469">
  11.769 +        <rect
  11.770 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.771 +           id="rect3471"
  11.772 +           width="103.14286"
  11.773 +           height="48.571426"
  11.774 +           x="299.67859"
  11.775 +           y="447.71451" />
  11.776 +        <text
  11.777 +           xml:space="preserve"
  11.778 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.779 +           x="308.89639"
  11.780 +           y="464.8139"
  11.781 +           id="text3473"><tspan
  11.782 +             id="tspan3475"
  11.783 +             sodipodi:role="line"
  11.784 +             x="308.89639"
  11.785 +             y="464.8139">Secondo genitore</tspan></text>
  11.786 +        <text
  11.787 +           xml:space="preserve"
  11.788 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.789 +           x="308.20175"
  11.790 +           y="485.50256"
  11.791 +           id="text3477"><tspan
  11.792 +             sodipodi:role="line"
  11.793 +             id="tspan3479"
  11.794 +             x="308.20175"
  11.795 +             y="485.50256"
  11.796 +             style="font-family:Courier">000000000000</tspan></text>
  11.797 +      </g>
  11.798 +      <g
  11.799 +         transform="matrix(0.423343,0,0,0.423343,198.2489,152.137)"
  11.800 +         id="g3481">
  11.801 +        <rect
  11.802 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.803 +           id="rect3483"
  11.804 +           width="103.14286"
  11.805 +           height="48.571426"
  11.806 +           x="188.6071"
  11.807 +           y="311.28598" />
  11.808 +        <text
  11.809 +           xml:space="preserve"
  11.810 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.811 +           x="197.82495"
  11.812 +           y="328.38538"
  11.813 +           id="text3485"><tspan
  11.814 +             id="tspan3487"
  11.815 +             sodipodi:role="line"
  11.816 +             x="197.82495"
  11.817 +             y="328.38538">Hash di revisione</tspan></text>
  11.818 +        <text
  11.819 +           xml:space="preserve"
  11.820 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.821 +           x="197.13031"
  11.822 +           y="349.07404"
  11.823 +           id="text3489"><tspan
  11.824 +             sodipodi:role="line"
  11.825 +             id="tspan3491"
  11.826 +             x="197.13031"
  11.827 +             y="349.07404"
  11.828 +             style="font-family:Courier">32bf9a5f22c0</tspan></text>
  11.829 +      </g>
  11.830 +      <g
  11.831 +         transform="matrix(0.423343,0,0,0.423343,198.7176,153.4957)"
  11.832 +         id="g3493">
  11.833 +        <rect
  11.834 +           style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  11.835 +           id="rect3495"
  11.836 +           width="213.85715"
  11.837 +           height="75"
  11.838 +           x="187.5"
  11.839 +           y="363.07654" />
  11.840 +        <text
  11.841 +           xml:space="preserve"
  11.842 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.843 +           x="196.02321"
  11.844 +           y="400.86459"
  11.845 +           id="text3497"><tspan
  11.846 +             sodipodi:role="line"
  11.847 +             id="tspan3499"
  11.848 +             x="196.02321"
  11.849 +             y="400.86459"
  11.850 +             style="fill:black;fill-opacity:1;font-family:Courier">...</tspan></text>
  11.851 +        <text
  11.852 +           xml:space="preserve"
  11.853 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.854 +           x="196.71785"
  11.855 +           y="380.17593"
  11.856 +           id="text3501"><tspan
  11.857 +             style="fill:black;fill-opacity:1"
  11.858 +             id="tspan3503"
  11.859 +             sodipodi:role="line"
  11.860 +             x="196.71785"
  11.861 +             y="380.17593">Dati di revisione (delta o fotografia)</tspan></text>
  11.862 +      </g>
  11.863 +    </g>
  11.864 +    <rect
  11.865 +       y="387.90286"
  11.866 +       x="272.40894"
  11.867 +       height="89.506805"
  11.868 +       width="101.60232"
  11.869 +       id="rect5081"
  11.870 +       style="fill:url(#linearGradient5895);fill-opacity:1;stroke:black;stroke-width:0.48811448;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  11.871 +    <g
  11.872 +       id="g5087"
  11.873 +       transform="matrix(0.423343,0,0,0.423343,198.0214,261.7142)">
  11.874 +      <rect
  11.875 +         y="447.72418"
  11.876 +         x="188.6071"
  11.877 +         height="48.571426"
  11.878 +         width="103.14286"
  11.879 +         id="rect5089"
  11.880 +         style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  11.881 +      <text
  11.882 +         id="text5091"
  11.883 +         y="464.82358"
  11.884 +         x="197.82495"
  11.885 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.886 +         xml:space="preserve"><tspan
  11.887 +           y="464.82358"
  11.888 +           x="197.82495"
  11.889 +           sodipodi:role="line"
  11.890 +           id="tspan5093">Primo genitore</tspan></text>
  11.891 +      <text
  11.892 +         id="text5095"
  11.893 +         y="485.51224"
  11.894 +         x="197.13031"
  11.895 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.896 +         xml:space="preserve"><tspan
  11.897 +           style="font-family:Courier"
  11.898 +           y="485.51224"
  11.899 +           x="197.13031"
  11.900 +           id="tspan5097"
  11.901 +           sodipodi:role="line">ff9dc8bc2a8b</tspan></text>
  11.902 +    </g>
  11.903 +    <g
  11.904 +       id="g5099"
  11.905 +       transform="matrix(0.423343,0,0,0.423343,198.0214,261.7142)">
  11.906 +      <rect
  11.907 +         y="447.71451"
  11.908 +         x="299.67859"
  11.909 +         height="48.571426"
  11.910 +         width="103.14286"
  11.911 +         id="rect5101"
  11.912 +         style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  11.913 +      <text
  11.914 +         id="text5103"
  11.915 +         y="464.8139"
  11.916 +         x="308.89639"
  11.917 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.918 +         xml:space="preserve"><tspan
  11.919 +           y="464.8139"
  11.920 +           x="308.89639"
  11.921 +           sodipodi:role="line"
  11.922 +           id="tspan5105">Secondo genitore</tspan></text>
  11.923 +      <text
  11.924 +         id="text5107"
  11.925 +         y="485.50256"
  11.926 +         x="308.20175"
  11.927 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.928 +         xml:space="preserve"><tspan
  11.929 +           style="font-family:Courier"
  11.930 +           y="485.50256"
  11.931 +           x="308.20175"
  11.932 +           id="tspan5109"
  11.933 +           sodipodi:role="line">000000000000</tspan></text>
  11.934 +    </g>
  11.935 +    <g
  11.936 +       id="g5111"
  11.937 +       transform="matrix(0.423343,0,0,0.423343,198.0214,261.7142)">
  11.938 +      <rect
  11.939 +         y="311.28598"
  11.940 +         x="188.6071"
  11.941 +         height="48.571426"
  11.942 +         width="103.14286"
  11.943 +         id="rect5113"
  11.944 +         style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  11.945 +      <text
  11.946 +         id="text5115"
  11.947 +         y="328.38538"
  11.948 +         x="197.82495"
  11.949 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.950 +         xml:space="preserve"><tspan
  11.951 +           y="328.38538"
  11.952 +           x="197.82495"
  11.953 +           sodipodi:role="line"
  11.954 +           id="tspan5117">Hash di revisione</tspan></text>
  11.955 +      <text
  11.956 +         id="text5119"
  11.957 +         y="349.07404"
  11.958 +         x="197.13031"
  11.959 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.960 +         xml:space="preserve"><tspan
  11.961 +           style="font-family:Courier"
  11.962 +           y="349.07404"
  11.963 +           x="197.13031"
  11.964 +           id="tspan5121"
  11.965 +           sodipodi:role="line">ecacb6b4c9fd</tspan></text>
  11.966 +    </g>
  11.967 +    <g
  11.968 +       id="g5123"
  11.969 +       transform="matrix(0.423343,0,0,0.423343,198.4901,263.0729)">
  11.970 +      <rect
  11.971 +         y="363.07654"
  11.972 +         x="187.5"
  11.973 +         height="75"
  11.974 +         width="213.85715"
  11.975 +         id="rect5125"
  11.976 +         style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  11.977 +      <text
  11.978 +         id="text5127"
  11.979 +         y="400.86459"
  11.980 +         x="196.02321"
  11.981 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.982 +         xml:space="preserve"><tspan
  11.983 +           style="fill:black;fill-opacity:1;font-family:Courier"
  11.984 +           y="400.86459"
  11.985 +           x="196.02321"
  11.986 +           id="tspan5129"
  11.987 +           sodipodi:role="line">...</tspan></text>
  11.988 +      <text
  11.989 +         id="text5131"
  11.990 +         y="380.17593"
  11.991 +         x="196.71785"
  11.992 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  11.993 +         xml:space="preserve"><tspan
  11.994 +           y="380.17593"
  11.995 +           x="196.71785"
  11.996 +           sodipodi:role="line"
  11.997 +           id="tspan5133"
  11.998 +           style="fill:black;fill-opacity:1">Dati di revisione (delta o fotografia)</tspan></text>
  11.999 +    </g>
 11.1000 +    <path
 11.1001 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
 11.1002 +       d="M 299.69935,362.24027 L 299.69931,393.49494"
 11.1003 +       id="path5203"
 11.1004 +       inkscape:connector-type="polyline"
 11.1005 +       inkscape:connection-start="#g3457"
 11.1006 +       inkscape:connection-end="#g5111" />
 11.1007 +    <path
 11.1008 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
 11.1009 +       d="M 182.35357,362.22647 L 241.2842,503.07224"
 11.1010 +       id="path5271"
 11.1011 +       inkscape:connector-type="polyline"
 11.1012 +       inkscape:connection-start="#g3399"
 11.1013 +       inkscape:connection-end="#g3539" />
 11.1014 +    <path
 11.1015 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
 11.1016 +       d="M 287.63109,471.81747 L 250.9438,503.07223"
 11.1017 +       id="path5285"
 11.1018 +       inkscape:connector-type="polyline"
 11.1019 +       inkscape:connection-start="#g5087"
 11.1020 +       inkscape:connection-end="#g3539" />
 11.1021 +    <path
 11.1022 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
 11.1023 +       d="M 290.80419,250.07192 L 297.80065,283.90394"
 11.1024 +       id="path5077"
 11.1025 +       inkscape:connector-type="polyline"
 11.1026 +       inkscape:connection-start="#g3215"
 11.1027 +       inkscape:connection-end="#g3481" />
 11.1028 +    <path
 11.1029 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
 11.1030 +       d="M 229.63373,250.07601 L 190.07484,283.90394"
 11.1031 +       id="path5075"
 11.1032 +       inkscape:connector-type="polyline"
 11.1033 +       inkscape:connection-end="#g3423" />
 11.1034 +    <text
 11.1035 +       xml:space="preserve"
 11.1036 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
 11.1037 +       x="131.5625"
 11.1038 +       y="100.79968"
 11.1039 +       id="text5897"><tspan
 11.1040 +         sodipodi:role="line"
 11.1041 +         id="tspan5899"
 11.1042 +         x="131.5625"
 11.1043 +         y="100.79968"
 11.1044 +         style="text-align:end;text-anchor:end">Revisione di testa</tspan><tspan
 11.1045 +         sodipodi:role="line"
 11.1046 +         x="131.5625"
 11.1047 +         y="115.79968"
 11.1048 +         id="tspan5901"
 11.1049 +         style="text-align:end;text-anchor:end">(nessun figlio)</tspan></text>
 11.1050 +    <text
 11.1051 +       xml:space="preserve"
 11.1052 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
 11.1053 +       x="131.5625"
 11.1054 +       y="207.04968"
 11.1055 +       id="text5903"><tspan
 11.1056 +         sodipodi:role="line"
 11.1057 +         id="tspan5905"
 11.1058 +         x="131.5625"
 11.1059 +         y="207.04968"
 11.1060 +         style="text-align:end;text-anchor:end">Revisione di unione</tspan><tspan
 11.1061 +         sodipodi:role="line"
 11.1062 +         x="131.5625"
 11.1063 +         y="222.04968"
 11.1064 +         id="tspan5907"
 11.1065 +         style="text-align:end;text-anchor:end">(due genitori)</tspan></text>
 11.1066 +    <text
 11.1067 +       xml:space="preserve"
 11.1068 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
 11.1069 +       x="131.92578"
 11.1070 +       y="451.58093"
 11.1071 +       id="text5909"><tspan
 11.1072 +         sodipodi:role="line"
 11.1073 +         id="tspan5911"
 11.1074 +         x="131.92578"
 11.1075 +         y="451.58093"
 11.1076 +         style="text-align:end;text-anchor:end">Rami</tspan><tspan
 11.1077 +         sodipodi:role="line"
 11.1078 +         x="131.92578"
 11.1079 +         y="466.58093"
 11.1080 +         id="tspan5913"
 11.1081 +         style="text-align:end;text-anchor:end">(due revisioni,</tspan><tspan
 11.1082 +         sodipodi:role="line"
 11.1083 +         x="131.92578"
 11.1084 +         y="481.58093"
 11.1085 +         id="tspan5915"
 11.1086 +         style="text-align:end;text-anchor:end">stesso genitore)</tspan></text>
 11.1087 +    <path
 11.1088 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:2, 1;stroke-dashoffset:0;stroke-opacity:1;display:inline"
 11.1089 +       d="M 111.71875,433.61218 L 154.7268,368.52294"
 11.1090 +       id="path5917"
 11.1091 +       inkscape:connector-type="polyline" />
 11.1092 +    <path
 11.1093 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:2, 1;stroke-dashoffset:0;stroke-opacity:1;display:inline"
 11.1094 +       d="M 134.375,464.86218 L 277.86691,440.37816"
 11.1095 +       id="path5919"
 11.1096 +       inkscape:connector-type="polyline"
 11.1097 +       inkscape:connection-end="#g5123" />
 11.1098 +    <text
 11.1099 +       xml:space="preserve"
 11.1100 +       style="font-size:12px;font-style:normal;font-weight:normal;text-align:end;text-anchor:end;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
 11.1101 +       x="131.5625"
 11.1102 +       y="536.73718"
 11.1103 +       id="text5927"><tspan
 11.1104 +         sodipodi:role="line"
 11.1105 +         id="tspan5929"
 11.1106 +         x="131.5625"
 11.1107 +         y="536.73718">Prima revisione</tspan><tspan
 11.1108 +         sodipodi:role="line"
 11.1109 +         x="131.5625"
 11.1110 +         y="551.73718"
 11.1111 +         id="tspan5931">(entrambi i genitori nulli)</tspan></text>
 11.1112 +    <rect
 11.1113 +       style="fill:#bbb4ff;fill-opacity:1;stroke:none;stroke-width:0.95291203;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 11.1114 +       id="rect2830"
 11.1115 +       width="43.664806"
 11.1116 +       height="20.562374"
 11.1117 +       x="217.0432"
 11.1118 +       y="232.10075" />
 11.1119 +    <text
 11.1120 +       xml:space="preserve"
 11.1121 +       style="font-size:5.0801158px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
 11.1122 +       x="220.94551"
 11.1123 +       y="239.33966"
 11.1124 +       id="text2832"><tspan
 11.1125 +         id="tspan2836"
 11.1126 +         sodipodi:role="line"
 11.1127 +         x="220.94551"
 11.1128 +         y="239.33966">Primo genitore</tspan></text>
 11.1129 +    <text
 11.1130 +       xml:space="preserve"
 11.1131 +       style="font-size:5.0801158px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
 11.1132 +       x="220.65144"
 11.1133 +       y="248.09805"
 11.1134 +       id="text2879"><tspan
 11.1135 +         sodipodi:role="line"
 11.1136 +         id="tspan2881"
 11.1137 +         x="220.65144"
 11.1138 +         y="248.09805"
 11.1139 +         style="font-family:Courier">5b80c922ebdd</tspan></text>
 11.1140 +    <path
 11.1141 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:2, 1;stroke-dashoffset:0;stroke-opacity:1;display:inline"
 11.1142 +       d="M 139.84375,107.83093 L 210.15625,107.83093"
 11.1143 +       id="path5965"
 11.1144 +       inkscape:connector-type="polyline" />
 11.1145 +    <path
 11.1146 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:2, 1;stroke-dashoffset:0;stroke-opacity:1;display:inline"
 11.1147 +       d="M 137.5,213.29968 L 210.49036,214.09055"
 11.1148 +       id="path5967"
 11.1149 +       inkscape:connector-type="polyline" />
 11.1150 +    <path
 11.1151 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:2, 1;stroke-dashoffset:0;stroke-opacity:1;display:inline"
 11.1152 +       d="M 136.34375,544.54968 L 206.65625,544.54968"
 11.1153 +       id="path5969"
 11.1154 +       inkscape:connector-type="polyline"
 11.1155 +       inkscape:transform-center-y="-171.09375"
 11.1156 +       inkscape:transform-center-x="53.90625" />
 11.1157 +  </g>
 11.1158 +</svg>
    12.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    12.2 +++ b/it/figs/snapshot.svg	Tue Aug 18 17:19:30 2009 +0200
    12.3 @@ -0,0 +1,202 @@
    12.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    12.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    12.6 +<svg
    12.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    12.8 +   xmlns:cc="http://web.resource.org/cc/"
    12.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   12.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   12.11 +   xmlns="http://www.w3.org/2000/svg"
   12.12 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   12.13 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   12.14 +   width="744.09448819"
   12.15 +   height="1052.3622047"
   12.16 +   id="svg2807"
   12.17 +   sodipodi:version="0.32"
   12.18 +   inkscape:version="0.44.1"
   12.19 +   sodipodi:docbase="/home/bos/hg/hgbook/en"
   12.20 +   sodipodi:docname="snapshots.svg">
   12.21 +  <defs
   12.22 +     id="defs2809" />
   12.23 +  <sodipodi:namedview
   12.24 +     id="base"
   12.25 +     pagecolor="#ffffff"
   12.26 +     bordercolor="#666666"
   12.27 +     borderopacity="1.0"
   12.28 +     gridtolerance="10000"
   12.29 +     guidetolerance="10"
   12.30 +     objecttolerance="10"
   12.31 +     inkscape:pageopacity="0.0"
   12.32 +     inkscape:pageshadow="2"
   12.33 +     inkscape:zoom="1.4"
   12.34 +     inkscape:cx="252.04111"
   12.35 +     inkscape:cy="605.75448"
   12.36 +     inkscape:document-units="px"
   12.37 +     inkscape:current-layer="layer1"
   12.38 +     inkscape:window-width="906"
   12.39 +     inkscape:window-height="721"
   12.40 +     inkscape:window-x="0"
   12.41 +     inkscape:window-y="25" />
   12.42 +  <metadata
   12.43 +     id="metadata2812">
   12.44 +    <rdf:RDF>
   12.45 +      <cc:Work
   12.46 +         rdf:about="">
   12.47 +        <dc:format>image/svg+xml</dc:format>
   12.48 +        <dc:type
   12.49 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
   12.50 +      </cc:Work>
   12.51 +    </rdf:RDF>
   12.52 +  </metadata>
   12.53 +  <g
   12.54 +     inkscape:label="Layer 1"
   12.55 +     inkscape:groupmode="layer"
   12.56 +     id="layer1">
   12.57 +    <rect
   12.58 +       style="opacity:1;fill:#d3ceff;fill-opacity:1;stroke:#a7a7a7;stroke-width:1.88795626;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   12.59 +       id="rect2817"
   12.60 +       width="118.18347"
   12.61 +       height="245.32632"
   12.62 +       x="243.05112"
   12.63 +       y="315.4133"
   12.64 +       inkscape:transform-center-x="136.84403"
   12.65 +       inkscape:transform-center-y="-66.529183" />
   12.66 +    <rect
   12.67 +       y="315.04153"
   12.68 +       x="46.965065"
   12.69 +       height="97.803009"
   12.70 +       width="108.92702"
   12.71 +       id="rect2815"
   12.72 +       style="fill:#ffced6;fill-opacity:1;stroke:#a7a7a7;stroke-width:1.14441991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
   12.73 +    <g
   12.74 +       id="g3814">
   12.75 +      <rect
   12.76 +         y="348.94302"
   12.77 +         x="59.285713"
   12.78 +         height="30"
   12.79 +         width="84.285713"
   12.80 +         id="rect2819"
   12.81 +         style="fill:#ff6e86;fill-opacity:1;stroke:#a7a7a7;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
   12.82 +         ry="0" />
   12.83 +      <text
   12.84 +         id="text2821"
   12.85 +         y="368.02701"
   12.86 +         x="71.717636"
   12.87 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   12.88 +         xml:space="preserve"><tspan
   12.89 +           y="368.02701"
   12.90 +           x="71.717636"
   12.91 +           id="tspan2823"
   12.92 +           sodipodi:role="line">Indice, rev 7</tspan></text>
   12.93 +    </g>
   12.94 +    <text
   12.95 +       id="text3722"
   12.96 +       y="301.29074"
   12.97 +       x="46.187778"
   12.98 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
   12.99 +       xml:space="preserve"><tspan
  12.100 +         y="301.29074"
  12.101 +         x="46.187778"
  12.102 +         id="tspan3724"
  12.103 +         sodipodi:role="line">Indice di revlog (file .i)</tspan></text>
  12.104 +    <text
  12.105 +       id="text3726"
  12.106 +       y="301.29074"
  12.107 +       x="241.90207"
  12.108 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  12.109 +       xml:space="preserve"><tspan
  12.110 +         y="301.29074"
  12.111 +         x="241.90207"
  12.112 +         id="tspan3728"
  12.113 +         sodipodi:role="line">Dati di revlog (file .d)</tspan></text>
  12.114 +    <path
  12.115 +       style="fill:#c695ff;fill-opacity:0.60109288;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  12.116 +       d="M 143.57143,348.07647 L 255,368.07646 L 255.71429,544.50504 L 142.85714,379.50504 L 143.57143,348.07647 z "
  12.117 +       id="path3839"
  12.118 +       sodipodi:nodetypes="ccccc" />
  12.119 +    <rect
  12.120 +       style="fill:#4733ff;fill-opacity:1;stroke:#a7a7a7;stroke-width:2.35124183;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  12.121 +       id="rect3752"
  12.122 +       width="92.720184"
  12.123 +       height="67.005905"
  12.124 +       x="255.42564"
  12.125 +       y="368.64264" />
  12.126 +    <text
  12.127 +       xml:space="preserve"
  12.128 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  12.129 +       x="261.45859"
  12.130 +       y="387.30099"
  12.131 +       id="text3754"><tspan
  12.132 +         sodipodi:role="line"
  12.133 +         id="tspan3756"
  12.134 +         x="261.45859"
  12.135 +         y="387.30099">Fotografia, rev 4</tspan></text>
  12.136 +    <rect
  12.137 +       style="fill:#7c6eff;fill-opacity:1;stroke:#a7a7a7;stroke-width:1.57776296;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  12.138 +       id="rect3761"
  12.139 +       width="93.49366"
  12.140 +       height="29.922237"
  12.141 +       x="255.03891"
  12.142 +       y="442.04395" />
  12.143 +    <text
  12.144 +       xml:space="preserve"
  12.145 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  12.146 +       x="257.2662"
  12.147 +       y="460.17206"
  12.148 +       id="text3763"><tspan
  12.149 +         sodipodi:role="line"
  12.150 +         id="tspan3765"
  12.151 +         x="257.2662"
  12.152 +         y="460.17206">Delta, da rev 4 a 5</tspan></text>
  12.153 +    <rect
  12.154 +       style="fill:#7c6eff;fill-opacity:1;stroke:#a7a7a7;stroke-width:1.57776296;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  12.155 +       id="rect3774"
  12.156 +       width="93.49366"
  12.157 +       height="29.922237"
  12.158 +       x="255.03891"
  12.159 +       y="477.97485" />
  12.160 +    <text
  12.161 +       xml:space="preserve"
  12.162 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  12.163 +       x="257.2662"
  12.164 +       y="496.10297"
  12.165 +       id="text3776"><tspan
  12.166 +         sodipodi:role="line"
  12.167 +         id="tspan3778"
  12.168 +         x="257.2662"
  12.169 +         y="496.10297">Delta, da rev 5 a 6</tspan></text>
  12.170 +    <rect
  12.171 +       style="fill:#7c6eff;fill-opacity:1;stroke:#a7a7a7;stroke-width:1.57776296;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  12.172 +       id="rect3782"
  12.173 +       width="93.49366"
  12.174 +       height="29.922237"
  12.175 +       x="255.03891"
  12.176 +       y="513.90576" />
  12.177 +    <text
  12.178 +       xml:space="preserve"
  12.179 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  12.180 +       x="257.2662"
  12.181 +       y="532.03387"
  12.182 +       id="text3784"><tspan
  12.183 +         sodipodi:role="line"
  12.184 +         id="tspan3786"
  12.185 +         x="257.2662"
  12.186 +         y="532.03387">Delta, da rev 6 a 7</tspan></text>
  12.187 +    <rect
  12.188 +       style="fill:#7c6eff;fill-opacity:1;stroke:#a7a7a7;stroke-width:1.57776296;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  12.189 +       id="rect3889"
  12.190 +       width="93.49366"
  12.191 +       height="29.922237"
  12.192 +       x="255.03891"
  12.193 +       y="332.32489" />
  12.194 +    <text
  12.195 +       xml:space="preserve"
  12.196 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  12.197 +       x="257.2662"
  12.198 +       y="350.453"
  12.199 +       id="text3891"><tspan
  12.200 +         sodipodi:role="line"
  12.201 +         id="tspan3893"
  12.202 +         x="257.2662"
  12.203 +         y="350.453">Delta, da rev 2 a 3</tspan></text>
  12.204 +  </g>
  12.205 +</svg>
    13.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    13.2 +++ b/it/figs/tour-history.svg	Tue Aug 18 17:19:30 2009 +0200
    13.3 @@ -0,0 +1,289 @@
    13.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    13.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    13.6 +<svg
    13.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    13.8 +   xmlns:cc="http://web.resource.org/cc/"
    13.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   13.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   13.11 +   xmlns="http://www.w3.org/2000/svg"
   13.12 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   13.13 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   13.14 +   width="744.09448819"
   13.15 +   height="1052.3622047"
   13.16 +   id="svg2"
   13.17 +   sodipodi:version="0.32"
   13.18 +   inkscape:version="0.44.1"
   13.19 +   sodipodi:docname="tour-history.svg">
   13.20 +  <defs
   13.21 +     id="defs4">
   13.22 +    <marker
   13.23 +       inkscape:stockid="Arrow1Mstart"
   13.24 +       orient="auto"
   13.25 +       refY="0.0"
   13.26 +       refX="0.0"
   13.27 +       id="Arrow1Mstart"
   13.28 +       style="overflow:visible">
   13.29 +      <path
   13.30 +         id="path2973"
   13.31 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   13.32 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
   13.33 +         transform="scale(0.4) translate(10,0)" />
   13.34 +    </marker>
   13.35 +    <marker
   13.36 +       inkscape:stockid="Arrow1Mend"
   13.37 +       orient="auto"
   13.38 +       refY="0.0"
   13.39 +       refX="0.0"
   13.40 +       id="Arrow1Mend"
   13.41 +       style="overflow:visible;">
   13.42 +      <path
   13.43 +         id="path3066"
   13.44 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   13.45 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
   13.46 +         transform="scale(0.4) rotate(180) translate(10,0)" />
   13.47 +    </marker>
   13.48 +  </defs>
   13.49 +  <sodipodi:namedview
   13.50 +     id="base"
   13.51 +     pagecolor="#ffffff"
   13.52 +     bordercolor="#666666"
   13.53 +     borderopacity="1.0"
   13.54 +     gridtolerance="10000"
   13.55 +     guidetolerance="10"
   13.56 +     objecttolerance="10"
   13.57 +     inkscape:pageopacity="0.0"
   13.58 +     inkscape:pageshadow="2"
   13.59 +     inkscape:zoom="1.4"
   13.60 +     inkscape:cx="232.14286"
   13.61 +     inkscape:cy="672.75296"
   13.62 +     inkscape:document-units="px"
   13.63 +     inkscape:current-layer="layer1"
   13.64 +     inkscape:window-width="906"
   13.65 +     inkscape:window-height="620"
   13.66 +     inkscape:window-x="5"
   13.67 +     inkscape:window-y="49" />
   13.68 +  <metadata
   13.69 +     id="metadata7">
   13.70 +    <rdf:RDF>
   13.71 +      <cc:Work
   13.72 +         rdf:about="">
   13.73 +        <dc:format>image/svg+xml</dc:format>
   13.74 +        <dc:type
   13.75 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
   13.76 +      </cc:Work>
   13.77 +    </rdf:RDF>
   13.78 +  </metadata>
   13.79 +  <g
   13.80 +     inkscape:label="Layer 1"
   13.81 +     inkscape:groupmode="layer"
   13.82 +     id="layer1">
   13.83 +    <rect
   13.84 +       style="opacity:1;fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
   13.85 +       id="rect1878"
   13.86 +       width="94.285713"
   13.87 +       height="20.714285"
   13.88 +       x="138"
   13.89 +       y="479.50504" />
   13.90 +    <text
   13.91 +       xml:space="preserve"
   13.92 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
   13.93 +       x="162.09892"
   13.94 +       y="493.12619"
   13.95 +       id="text1872"><tspan
   13.96 +         sodipodi:role="line"
   13.97 +         id="tspan1874"
   13.98 +         x="162.09892"
   13.99 +         y="493.12619"
  13.100 +         style="font-family:Courier"><tspan
  13.101 +   style="font-weight:bold"
  13.102 +   id="tspan1876">0</tspan>: 0a04</tspan></text>
  13.103 +    <rect
  13.104 +       style="opacity:1;fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  13.105 +       id="rect2800"
  13.106 +       width="94.285713"
  13.107 +       height="20.714285"
  13.108 +       x="138"
  13.109 +       y="432.63004" />
  13.110 +    <text
  13.111 +       xml:space="preserve"
  13.112 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  13.113 +       x="162.09892"
  13.114 +       y="446.25119"
  13.115 +       id="text2794"><tspan
  13.116 +         sodipodi:role="line"
  13.117 +         id="tspan2796"
  13.118 +         x="162.09892"
  13.119 +         y="446.25119"
  13.120 +         style="font-family:Courier"><tspan
  13.121 +   id="tspan2868"
  13.122 +   style="font-weight:bold">1</tspan>: 82e5</tspan></text>
  13.123 +    <rect
  13.124 +       style="opacity:1;fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  13.125 +       id="rect2810"
  13.126 +       width="94.285713"
  13.127 +       height="20.714285"
  13.128 +       x="138"
  13.129 +       y="385.75504" />
  13.130 +    <text
  13.131 +       xml:space="preserve"
  13.132 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  13.133 +       x="162.09892"
  13.134 +       y="399.37619"
  13.135 +       id="text2804"><tspan
  13.136 +         sodipodi:role="line"
  13.137 +         id="tspan2806"
  13.138 +         x="162.09892"
  13.139 +         y="399.37619"
  13.140 +         style="font-family:Courier"><tspan
  13.141 +   style="font-weight:bold"
  13.142 +   id="tspan2866">2</tspan>: fef8</tspan></text>
  13.143 +    <rect
  13.144 +       style="opacity:1;fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  13.145 +       id="rect2820"
  13.146 +       width="94.285713"
  13.147 +       height="20.714285"
  13.148 +       x="138"
  13.149 +       y="338.88007" />
  13.150 +    <text
  13.151 +       xml:space="preserve"
  13.152 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  13.153 +       x="162.09892"
  13.154 +       y="352.50122"
  13.155 +       id="text2814"><tspan
  13.156 +         sodipodi:role="line"
  13.157 +         id="tspan2816"
  13.158 +         x="162.09892"
  13.159 +         y="352.50122"
  13.160 +         style="font-family:Courier"><tspan
  13.161 +   style="font-weight:bold"
  13.162 +   id="tspan2864">3</tspan>: 0272</tspan></text>
  13.163 +    <rect
  13.164 +       style="opacity:1;fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  13.165 +       id="rect2830"
  13.166 +       width="94.285713"
  13.167 +       height="20.714285"
  13.168 +       x="138"
  13.169 +       y="292.00504" />
  13.170 +    <text
  13.171 +       xml:space="preserve"
  13.172 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  13.173 +       x="162.09892"
  13.174 +       y="305.62619"
  13.175 +       id="text2824"><tspan
  13.176 +         sodipodi:role="line"
  13.177 +         id="tspan2826"
  13.178 +         x="162.09892"
  13.179 +         y="305.62619"
  13.180 +         style="font-family:Courier"><tspan
  13.181 +   style="font-weight:bold"
  13.182 +   id="tspan2862">4</tspan>: 2278</tspan></text>
  13.183 +    <text
  13.184 +       xml:space="preserve"
  13.185 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  13.186 +       x="173.57143"
  13.187 +       y="443.79074"
  13.188 +       id="text2832"><tspan
  13.189 +         sodipodi:role="line"
  13.190 +         id="tspan2834"
  13.191 +         x="173.57143"
  13.192 +         y="443.79074" /></text>
  13.193 +    <path
  13.194 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
  13.195 +       d="M 185.14286,478.50504 L 185.14286,454.34432"
  13.196 +       id="path2894"
  13.197 +       inkscape:connector-type="polyline" />
  13.198 +    <path
  13.199 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
  13.200 +       d="M 185.14286,431.63004 L 185.14286,407.46932"
  13.201 +       id="path2896"
  13.202 +       inkscape:connector-type="polyline" />
  13.203 +    <path
  13.204 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
  13.205 +       d="M 185.14286,384.75504 L 185.14286,360.59435"
  13.206 +       id="path2898"
  13.207 +       inkscape:connector-type="polyline" />
  13.208 +    <path
  13.209 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
  13.210 +       d="M 185.14286,337.88007 L 185.14286,313.71932"
  13.211 +       id="path2900"
  13.212 +       inkscape:connector-type="polyline" />
  13.213 +    <text
  13.214 +       xml:space="preserve"
  13.215 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times"
  13.216 +       x="244.60992"
  13.217 +       y="305.245"
  13.218 +       id="text1902"><tspan
  13.219 +         sodipodi:role="line"
  13.220 +         id="tspan1904"
  13.221 +         x="244.60992"
  13.222 +         y="305.245">(più recente)</tspan></text>
  13.223 +    <text
  13.224 +       xml:space="preserve"
  13.225 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times"
  13.226 +       x="244.60992"
  13.227 +       y="492.745"
  13.228 +       id="text1906"><tspan
  13.229 +         sodipodi:role="line"
  13.230 +         id="tspan1908"
  13.231 +         x="244.60992"
  13.232 +         y="492.745">(più vecchia)</tspan></text>
  13.233 +    <rect
  13.234 +       style="opacity:1;fill:#d2e1e4;fill-opacity:1;stroke:#b1cbd0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  13.235 +       id="rect1907"
  13.236 +       width="94.285713"
  13.237 +       height="20.714285"
  13.238 +       x="341.28571"
  13.239 +       y="324.86218" />
  13.240 +    <text
  13.241 +       xml:space="preserve"
  13.242 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  13.243 +       x="365.38464"
  13.244 +       y="338.48334"
  13.245 +       id="text1909"><tspan
  13.246 +         sodipodi:role="line"
  13.247 +         id="tspan1911"
  13.248 +         x="365.38464"
  13.249 +         y="338.48334"
  13.250 +         style="font-family:Courier"><tspan
  13.251 +   style="font-weight:bold"
  13.252 +   id="tspan1913">4</tspan>: 2278</tspan></text>
  13.253 +    <path
  13.254 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  13.255 +       d="M 364.14286,375.21932 L 367.71429,347.36218"
  13.256 +       id="path2802" />
  13.257 +    <path
  13.258 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  13.259 +       d="M 404.69968,375.21932 L 401.12825,347.36218"
  13.260 +       id="path2986" />
  13.261 +    <text
  13.262 +       xml:space="preserve"
  13.263 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times"
  13.264 +       x="367.14285"
  13.265 +       y="387.21933"
  13.266 +       id="text2988"><tspan
  13.267 +         sodipodi:role="line"
  13.268 +         x="367.14285"
  13.269 +         y="387.21933"
  13.270 +         id="tspan3020"
  13.271 +         style="text-align:end;text-anchor:end">numero di</tspan><tspan
  13.272 +         sodipodi:role="line"
  13.273 +         x="367.14285"
  13.274 +         y="402.21933"
  13.275 +         id="tspan3014"
  13.276 +         style="text-align:end;text-anchor:end">revisione</tspan></text>
  13.277 +    <text
  13.278 +       xml:space="preserve"
  13.279 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times"
  13.280 +       x="400.71429"
  13.281 +       y="387.21933"
  13.282 +       id="text2994"><tspan
  13.283 +         sodipodi:role="line"
  13.284 +         id="tspan2996"
  13.285 +         x="400.71429"
  13.286 +         y="387.21933">identificatore</tspan><tspan
  13.287 +         sodipodi:role="line"
  13.288 +         x="400.71429"
  13.289 +         y="402.21933"
  13.290 +         id="tspan2998">di changeset</tspan></text>
  13.291 +  </g>
  13.292 +</svg>
    14.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    14.2 +++ b/it/figs/tour-merge-conflict.svg	Tue Aug 18 17:19:30 2009 +0200
    14.3 @@ -0,0 +1,210 @@
    14.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    14.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    14.6 +<svg
    14.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    14.8 +   xmlns:cc="http://web.resource.org/cc/"
    14.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   14.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   14.11 +   xmlns="http://www.w3.org/2000/svg"
   14.12 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   14.13 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   14.14 +   width="744.09448819"
   14.15 +   height="1052.3622047"
   14.16 +   id="svg2"
   14.17 +   sodipodi:version="0.32"
   14.18 +   inkscape:version="0.44.1"
   14.19 +   sodipodi:docname="tour-merge-conflict.svg">
   14.20 +  <defs
   14.21 +     id="defs4">
   14.22 +    <marker
   14.23 +       inkscape:stockid="Arrow1Mend"
   14.24 +       orient="auto"
   14.25 +       refY="0.0"
   14.26 +       refX="0.0"
   14.27 +       id="Arrow1Mend"
   14.28 +       style="overflow:visible;">
   14.29 +      <path
   14.30 +         id="path3053"
   14.31 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   14.32 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
   14.33 +         transform="scale(0.4) rotate(180) translate(10,0)" />
   14.34 +    </marker>
   14.35 +  </defs>
   14.36 +  <sodipodi:namedview
   14.37 +     id="base"
   14.38 +     pagecolor="#ffffff"
   14.39 +     bordercolor="#666666"
   14.40 +     borderopacity="1.0"
   14.41 +     gridtolerance="10000"
   14.42 +     guidetolerance="10"
   14.43 +     objecttolerance="10"
   14.44 +     inkscape:pageopacity="0.0"
   14.45 +     inkscape:pageshadow="2"
   14.46 +     inkscape:zoom="1.4"
   14.47 +     inkscape:cx="164.78349"
   14.48 +     inkscape:cy="590.07679"
   14.49 +     inkscape:document-units="px"
   14.50 +     inkscape:current-layer="layer1"
   14.51 +     inkscape:window-width="906"
   14.52 +     inkscape:window-height="620"
   14.53 +     inkscape:window-x="5"
   14.54 +     inkscape:window-y="49" />
   14.55 +  <metadata
   14.56 +     id="metadata7">
   14.57 +    <rdf:RDF>
   14.58 +      <cc:Work
   14.59 +         rdf:about="">
   14.60 +        <dc:format>image/svg+xml</dc:format>
   14.61 +        <dc:type
   14.62 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
   14.63 +      </cc:Work>
   14.64 +    </rdf:RDF>
   14.65 +  </metadata>
   14.66 +  <g
   14.67 +     inkscape:label="Layer 1"
   14.68 +     inkscape:groupmode="layer"
   14.69 +     id="layer1">
   14.70 +    <g
   14.71 +       id="g1988"
   14.72 +       transform="translate(84.85711,0)">
   14.73 +      <g
   14.74 +         id="g1876">
   14.75 +        <path
   14.76 +           style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
   14.77 +           d="M 118.57143,458.21933 L 118.57143,563.79075 L 191.42857,563.79075 L 204.28571,550.93361 L 203.57142,459.6479 L 118.57143,458.21933 z "
   14.78 +           id="path1872"
   14.79 +           sodipodi:nodetypes="cccccc" />
   14.80 +        <path
   14.81 +           style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
   14.82 +           d="M 191.55484,563.36862 L 191.6923,560.98794 L 192.69126,552.44884 L 203.80416,551.31242"
   14.83 +           id="path1874"
   14.84 +           sodipodi:nodetypes="cccc" />
   14.85 +      </g>
   14.86 +      <flowRoot
   14.87 +         style="font-size:8px;font-family:Times New Roman"
   14.88 +         id="flowRoot1898"
   14.89 +         xml:space="preserve"><flowRegion
   14.90 +           id="flowRegion1900"><rect
   14.91 +             style="font-size:8px;font-family:Times New Roman"
   14.92 +             y="464.50504"
   14.93 +             x="122.85714"
   14.94 +             height="93.571426"
   14.95 +             width="76.428574"
   14.96 +             id="rect1902" /></flowRegion><flowPara
   14.97 +           id="flowPara1904">Salve!</flowPara><flowPara
   14.98 +           id="flowPara1906" /><flowPara
   14.99 +           id="flowPara1908">Sono Mariam Abacha, moglie dell'ex dittatore nigeriano Sani Abacha. La sto contattando in via confidenziale e in modo da sviluppare</flowPara></flowRoot>    </g>
  14.100 +    <g
  14.101 +       id="g1966"
  14.102 +       transform="translate(82,0.35715)">
  14.103 +      <g
  14.104 +         transform="translate(-77.85718,-140.0714)"
  14.105 +         id="g1910">
  14.106 +        <path
  14.107 +           style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  14.108 +           d="M 118.57143,458.21933 L 118.57143,563.79075 L 191.42857,563.79075 L 204.28571,550.93361 L 203.57142,459.6479 L 118.57143,458.21933 z "
  14.109 +           id="path1912"
  14.110 +           sodipodi:nodetypes="cccccc" />
  14.111 +        <path
  14.112 +           style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  14.113 +           d="M 191.55484,563.36862 L 191.6923,560.98794 L 192.69126,552.44884 L 203.80416,551.31242"
  14.114 +           id="path1914"
  14.115 +           sodipodi:nodetypes="cccc" />
  14.116 +      </g>
  14.117 +      <flowRoot
  14.118 +         transform="translate(-77.85718,-140.0714)"
  14.119 +         style="font-size:8px;font-family:Times New Roman"
  14.120 +         id="flowRoot1916"
  14.121 +         xml:space="preserve"><flowRegion
  14.122 +           id="flowRegion1918"><rect
  14.123 +             style="font-size:8px;font-family:Times New Roman"
  14.124 +             y="464.50504"
  14.125 +             x="122.85714"
  14.126 +             height="93.571426"
  14.127 +             width="76.428574"
  14.128 +             id="rect1920" /></flowRegion><flowPara
  14.129 +           id="flowPara1922">Salve!</flowPara><flowPara
  14.130 +           id="flowPara1924" /><flowPara
  14.131 +           id="flowPara1926">Sono <flowSpan
  14.132 +   style="font-style:italic;fill:red"
  14.133 +   id="flowSpan3094">Shehu Musa Abacha, cugino</flowSpan> dell'ex dittatore nigeriano Sani Abacha. La sto contattando in via confidenziale e in modo da sviluppare</flowPara></flowRoot>    </g>
  14.134 +    <g
  14.135 +       id="g1977"
  14.136 +       transform="translate(81.99999,-0.35715)">
  14.137 +      <g
  14.138 +         transform="translate(83.57141,-139.3571)"
  14.139 +         id="g1932">
  14.140 +        <path
  14.141 +           style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  14.142 +           d="M 118.57143,458.21933 L 118.57143,563.79075 L 191.42857,563.79075 L 204.28571,550.93361 L 203.57142,459.6479 L 118.57143,458.21933 z "
  14.143 +           id="path1934"
  14.144 +           sodipodi:nodetypes="cccccc" />
  14.145 +        <path
  14.146 +           style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  14.147 +           d="M 191.55484,563.36862 L 191.6923,560.98794 L 192.69126,552.44884 L 203.80416,551.31242"
  14.148 +           id="path1936"
  14.149 +           sodipodi:nodetypes="cccc" />
  14.150 +      </g>
  14.151 +      <flowRoot
  14.152 +         transform="translate(83.57141,-139.3571)"
  14.153 +         style="font-size:8px;font-family:Times New Roman"
  14.154 +         id="flowRoot1938"
  14.155 +         xml:space="preserve"><flowRegion
  14.156 +           id="flowRegion1940"><rect
  14.157 +             style="font-size:8px;font-family:Times New Roman"
  14.158 +             y="464.50504"
  14.159 +             x="122.85714"
  14.160 +             height="93.571426"
  14.161 +             width="76.428574"
  14.162 +             id="rect1942" /></flowRegion><flowPara
  14.163 +           id="flowPara1944">Salve!</flowPara><flowPara
  14.164 +           id="flowPara1946" /><flowPara
  14.165 +           id="flowPara1948">Sono <flowSpan
  14.166 +   style="font-style:italic;fill:red"
  14.167 +   id="flowSpan3096">Alhaji Abba Abacha, figlio</flowSpan>dell'ex dittatore nigeriano Sani Abacha. La sto contattando in via confidenziale e in modo da sviluppare</flowPara></flowRoot>    </g>
  14.168 +    <path
  14.169 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  14.170 +       d="M 215.502,457.71933 L 196.35507,424.5765"
  14.171 +       id="path1999"
  14.172 +       inkscape:connector-type="polyline"
  14.173 +       inkscape:connection-start="#g1988"
  14.174 +       inkscape:connection-end="#g1966" />
  14.175 +    <path
  14.176 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  14.177 +       d="M 277.06936,457.71933 L 296.21629,424.5765"
  14.178 +       id="path2001"
  14.179 +       inkscape:connector-type="polyline"
  14.180 +       inkscape:connection-start="#g1988"
  14.181 +       inkscape:connection-end="#g1977" />
  14.182 +    <text
  14.183 +       xml:space="preserve"
  14.184 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  14.185 +       x="302.42859"
  14.186 +       y="515.08905"
  14.187 +       id="text1905"><tspan
  14.188 +         sodipodi:role="line"
  14.189 +         id="tspan1907"
  14.190 +         x="302.42859"
  14.191 +         y="515.08905">Versione base</tspan></text>
  14.192 +    <text
  14.193 +       xml:space="preserve"
  14.194 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  14.195 +       x="12.57143"
  14.196 +       y="374.1619"
  14.197 +       id="text1917"><tspan
  14.198 +         sodipodi:role="line"
  14.199 +         id="tspan1919"
  14.200 +         x="12.57143"
  14.201 +         y="374.1619">Le nostre modifiche</tspan></text>
  14.202 +    <text
  14.203 +       xml:space="preserve"
  14.204 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  14.205 +       x="385.71429"
  14.206 +       y="374.1619"
  14.207 +       id="text1921"><tspan
  14.208 +         sodipodi:role="line"
  14.209 +         id="tspan1923"
  14.210 +         x="385.71429"
  14.211 +         y="374.1619">Le loro modifiche</tspan></text>
  14.212 +  </g>
  14.213 +</svg>
    15.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    15.2 +++ b/it/figs/tour-merge-merge.svg	Tue Aug 18 17:19:30 2009 +0200
    15.3 @@ -0,0 +1,380 @@
    15.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    15.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    15.6 +<svg
    15.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    15.8 +   xmlns:cc="http://web.resource.org/cc/"
    15.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   15.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   15.11 +   xmlns="http://www.w3.org/2000/svg"
   15.12 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   15.13 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   15.14 +   width="744.09448819"
   15.15 +   height="1052.3622047"
   15.16 +   id="svg2"
   15.17 +   sodipodi:version="0.32"
   15.18 +   inkscape:version="0.44.1"
   15.19 +   sodipodi:docname="tour-merge-merge.svg">
   15.20 +  <defs
   15.21 +     id="defs4">
   15.22 +    <marker
   15.23 +       inkscape:stockid="Arrow1Mstart"
   15.24 +       orient="auto"
   15.25 +       refY="0.0"
   15.26 +       refX="0.0"
   15.27 +       id="Arrow1Mstart"
   15.28 +       style="overflow:visible">
   15.29 +      <path
   15.30 +         id="path2973"
   15.31 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   15.32 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
   15.33 +         transform="scale(0.4) translate(10,0)" />
   15.34 +    </marker>
   15.35 +    <marker
   15.36 +       inkscape:stockid="Arrow1Mend"
   15.37 +       orient="auto"
   15.38 +       refY="0.0"
   15.39 +       refX="0.0"
   15.40 +       id="Arrow1Mend"
   15.41 +       style="overflow:visible;">
   15.42 +      <path
   15.43 +         id="path3066"
   15.44 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   15.45 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
   15.46 +         transform="scale(0.4) rotate(180) translate(10,0)" />
   15.47 +    </marker>
   15.48 +  </defs>
   15.49 +  <sodipodi:namedview
   15.50 +     id="base"
   15.51 +     pagecolor="#ffffff"
   15.52 +     bordercolor="#666666"
   15.53 +     borderopacity="1.0"
   15.54 +     gridtolerance="10000"
   15.55 +     guidetolerance="10"
   15.56 +     objecttolerance="10"
   15.57 +     inkscape:pageopacity="0.0"
   15.58 +     inkscape:pageshadow="2"
   15.59 +     inkscape:zoom="1.4"
   15.60 +     inkscape:cx="247.53795"
   15.61 +     inkscape:cy="871.05738"
   15.62 +     inkscape:document-units="px"
   15.63 +     inkscape:current-layer="layer1"
   15.64 +     inkscape:window-width="906"
   15.65 +     inkscape:window-height="620"
   15.66 +     inkscape:window-x="38"
   15.67 +     inkscape:window-y="95" />
   15.68 +  <metadata
   15.69 +     id="metadata7">
   15.70 +    <rdf:RDF>
   15.71 +      <cc:Work
   15.72 +         rdf:about="">
   15.73 +        <dc:format>image/svg+xml</dc:format>
   15.74 +        <dc:type
   15.75 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
   15.76 +      </cc:Work>
   15.77 +    </rdf:RDF>
   15.78 +  </metadata>
   15.79 +  <g
   15.80 +     inkscape:label="Layer 1"
   15.81 +     inkscape:groupmode="layer"
   15.82 +     id="layer1">
   15.83 +    <rect
   15.84 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
   15.85 +       id="rect2995"
   15.86 +       width="94.285713"
   15.87 +       height="20.714285"
   15.88 +       x="532.85718"
   15.89 +       y="203.0479" />
   15.90 +    <text
   15.91 +       xml:space="preserve"
   15.92 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
   15.93 +       x="173.57143"
   15.94 +       y="443.79074"
   15.95 +       id="text2832"><tspan
   15.96 +         sodipodi:role="line"
   15.97 +         id="tspan2834"
   15.98 +         x="173.57143"
   15.99 +         y="443.79074" /></text>
  15.100 +    <rect
  15.101 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  15.102 +       id="rect2830"
  15.103 +       width="94.285713"
  15.104 +       height="20.714285"
  15.105 +       x="138"
  15.106 +       y="297.76227" />
  15.107 +    <text
  15.108 +       xml:space="preserve"
  15.109 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  15.110 +       x="162.09892"
  15.111 +       y="311.38342"
  15.112 +       id="text2824"><tspan
  15.113 +         sodipodi:role="line"
  15.114 +         id="tspan2826"
  15.115 +         x="162.09892"
  15.116 +         y="311.38342"
  15.117 +         style="font-family:Courier"><tspan
  15.118 +   style="font-weight:bold"
  15.119 +   id="tspan2862">4</tspan>: 2278</tspan></text>
  15.120 +    <path
  15.121 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  15.122 +       d="M 185.14286,343.63731 L 185.14286,319.47656"
  15.123 +       id="path2900"
  15.124 +       inkscape:connector-type="polyline" />
  15.125 +    <rect
  15.126 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  15.127 +       id="rect2863"
  15.128 +       width="94.285713"
  15.129 +       height="20.714285"
  15.130 +       x="91.428574"
  15.131 +       y="250.47656" />
  15.132 +    <text
  15.133 +       xml:space="preserve"
  15.134 +       style="font-size:12.00001812px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  15.135 +       x="116.09886"
  15.136 +       y="264.56592"
  15.137 +       id="text1965"
  15.138 +       transform="scale(1.000002,0.999998)"><tspan
  15.139 +         sodipodi:role="line"
  15.140 +         id="tspan1967"
  15.141 +         x="116.09886"
  15.142 +         y="264.56592"
  15.143 +         style="font-family:Courier"><tspan
  15.144 +   style="font-weight:bold"
  15.145 +   id="tspan1973">5</tspan>: 1c34</tspan></text>
  15.146 +    <path
  15.147 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1.00000143px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
  15.148 +       d="M 173.95727,296.76228 L 149.75702,272.19085"
  15.149 +       id="path1971"
  15.150 +       inkscape:connector-type="polyline"
  15.151 +       inkscape:connection-end="#rect2863"
  15.152 +       inkscape:connection-start="#rect2830" />
  15.153 +    <rect
  15.154 +       style="fill:#78a5ad;fill-opacity:1;stroke:#507b84;stroke-width:2.00000286;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  15.155 +       id="rect2911"
  15.156 +       width="94.285995"
  15.157 +       height="20.714283"
  15.158 +       x="186.71414"
  15.159 +       y="204.40514" />
  15.160 +    <text
  15.161 +       xml:space="preserve"
  15.162 +       style="font-size:12.00001812px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  15.163 +       x="210.81311"
  15.164 +       y="218.02673"
  15.165 +       id="text2913"
  15.166 +       transform="scale(1.000002,0.999998)"><tspan
  15.167 +         sodipodi:role="line"
  15.168 +         id="tspan2915"
  15.169 +         x="210.81311"
  15.170 +         y="218.02673"
  15.171 +         style="font-family:Courier"><tspan
  15.172 +   id="tspan1966"
  15.173 +   style="font-weight:bold">6</tspan>: 7643</tspan></text>
  15.174 +    <path
  15.175 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1.00000143px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
  15.176 +       d="M 191.06908,296.76228 L 227.93092,226.11942"
  15.177 +       id="path2919"
  15.178 +       inkscape:connector-type="polyline"
  15.179 +       inkscape:connection-start="#rect2830" />
  15.180 +    <text
  15.181 +       xml:space="preserve"
  15.182 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  15.183 +       x="295.28571"
  15.184 +       y="217.56711"
  15.185 +       id="text2871"><tspan
  15.186 +         sodipodi:role="line"
  15.187 +         id="tspan2873"
  15.188 +         x="295.28571"
  15.189 +         y="217.56711">punta (e testa)</tspan></text>
  15.190 +    <text
  15.191 +       xml:space="preserve"
  15.192 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  15.193 +       x="76"
  15.194 +       y="264.91769"
  15.195 +       id="text2875"><tspan
  15.196 +         sodipodi:role="line"
  15.197 +         id="tspan2877"
  15.198 +         x="76"
  15.199 +         y="264.91769"
  15.200 +         style="text-align:end;text-anchor:end">testa</tspan></text>
  15.201 +    <rect
  15.202 +       style="fill:#c8aaa5;fill-opacity:1;stroke:#a07163;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:2, 4;stroke-dashoffset:0;stroke-opacity:1"
  15.203 +       id="rect1913"
  15.204 +       width="94.285713"
  15.205 +       height="20.714285"
  15.206 +       x="138"
  15.207 +       y="156.90514" />
  15.208 +    <path
  15.209 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1"
  15.210 +       d="M 144.22399,249.47657 L 179.49029,178.61943"
  15.211 +       id="path1915"
  15.212 +       inkscape:connector-type="polyline"
  15.213 +       inkscape:connection-start="#rect2863"
  15.214 +       inkscape:connection-end="#rect1913" />
  15.215 +    <path
  15.216 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1"
  15.217 +       d="M 222.20966,203.40514 L 196.79033,178.61943"
  15.218 +       id="path1917"
  15.219 +       inkscape:connector-type="polyline"
  15.220 +       inkscape:connection-start="#rect2911"
  15.221 +       inkscape:connection-end="#rect1913" />
  15.222 +    <text
  15.223 +       xml:space="preserve"
  15.224 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  15.225 +       x="166.16823"
  15.226 +       y="168.52228"
  15.227 +       id="text2806"><tspan
  15.228 +         sodipodi:role="line"
  15.229 +         id="tspan2808"
  15.230 +         x="166.16823"
  15.231 +         y="168.52228"
  15.232 +         style="font-family:Courier">unione</tspan></text>
  15.233 +    <text
  15.234 +       xml:space="preserve"
  15.235 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  15.236 +       x="246"
  15.237 +       y="162.63338"
  15.238 +       id="text2810"><tspan
  15.239 +         sodipodi:role="line"
  15.240 +         id="tspan2812"
  15.241 +         x="246"
  15.242 +         y="162.63338">directory di lavoro</tspan><tspan
  15.243 +         sodipodi:role="line"
  15.244 +         x="246"
  15.245 +         y="177.63338"
  15.246 +         id="tspan2814">durante l'unione</tspan></text>
  15.247 +    <rect
  15.248 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  15.249 +       id="rect2816"
  15.250 +       width="94.285713"
  15.251 +       height="20.714285"
  15.252 +       x="483.14636"
  15.253 +       y="297.76227" />
  15.254 +    <text
  15.255 +       xml:space="preserve"
  15.256 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  15.257 +       x="507.24527"
  15.258 +       y="311.38342"
  15.259 +       id="text2818"><tspan
  15.260 +         sodipodi:role="line"
  15.261 +         id="tspan2820"
  15.262 +         x="507.24527"
  15.263 +         y="311.38342"
  15.264 +         style="font-family:Courier"><tspan
  15.265 +   style="font-weight:bold"
  15.266 +   id="tspan2822">4</tspan>: 2278</tspan></text>
  15.267 +    <path
  15.268 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  15.269 +       d="M 530.28921,343.6373 L 530.28921,319.47655"
  15.270 +       id="path2824"
  15.271 +       inkscape:connector-type="polyline" />
  15.272 +    <rect
  15.273 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  15.274 +       id="rect2826"
  15.275 +       width="94.285713"
  15.276 +       height="20.714285"
  15.277 +       x="436.57492"
  15.278 +       y="250.47656" />
  15.279 +    <text
  15.280 +       xml:space="preserve"
  15.281 +       style="font-size:12.00001812px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  15.282 +       x="461.24484"
  15.283 +       y="264.56613"
  15.284 +       id="text2828"
  15.285 +       transform="scale(1.000002,0.999998)"><tspan
  15.286 +         sodipodi:role="line"
  15.287 +         id="tspan2830"
  15.288 +         x="461.24484"
  15.289 +         y="264.56613"
  15.290 +         style="font-family:Courier"><tspan
  15.291 +   style="font-weight:bold"
  15.292 +   id="tspan2832">5</tspan>: 1c34</tspan></text>
  15.293 +    <path
  15.294 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1.00000143px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
  15.295 +       d="M 519.10362,296.76227 L 494.90337,272.19084"
  15.296 +       id="path2834"
  15.297 +       inkscape:connector-type="polyline" />
  15.298 +    <rect
  15.299 +       style="fill:#78a5ad;fill-opacity:1;stroke:#507b84;stroke-width:2.00000286;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  15.300 +       id="rect2836"
  15.301 +       width="94.285995"
  15.302 +       height="20.714283"
  15.303 +       x="483.14001"
  15.304 +       y="156.548" />
  15.305 +    <text
  15.306 +       xml:space="preserve"
  15.307 +       style="font-size:12.00001812px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  15.308 +       x="555.95911"
  15.309 +       y="218.02698"
  15.310 +       id="text2838"
  15.311 +       transform="scale(1.000002,0.999998)"><tspan
  15.312 +         sodipodi:role="line"
  15.313 +         id="tspan2840"
  15.314 +         x="555.95911"
  15.315 +         y="218.02698"
  15.316 +         style="font-family:Courier"><tspan
  15.317 +   id="tspan2842"
  15.318 +   style="font-weight:bold">6</tspan>: 7643</tspan></text>
  15.319 +    <path
  15.320 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1.00000143px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
  15.321 +       d="M 536.21543,296.76227 L 574.03453,224.76218"
  15.322 +       id="path2844"
  15.323 +       inkscape:connector-type="polyline" />
  15.324 +    <text
  15.325 +       xml:space="preserve"
  15.326 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  15.327 +       x="594.43207"
  15.328 +       y="169.78796"
  15.329 +       id="text2846"><tspan
  15.330 +         sodipodi:role="line"
  15.331 +         id="tspan2848"
  15.332 +         x="594.43207"
  15.333 +         y="169.78796">punta</tspan></text>
  15.334 +    <path
  15.335 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
  15.336 +       d="M 489.37034,249.47656 L 524.65575,178.26229"
  15.337 +       id="path2856"
  15.338 +       inkscape:connector-type="polyline"
  15.339 +       inkscape:connection-end="#rect2836" />
  15.340 +    <path
  15.341 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
  15.342 +       d="M 567.85714,202.0479 L 542.42591,178.26229"
  15.343 +       id="path2858"
  15.344 +       inkscape:connector-type="polyline"
  15.345 +       inkscape:connection-end="#rect2836"
  15.346 +       inkscape:connection-start="#rect2995" />
  15.347 +    <text
  15.348 +       xml:space="preserve"
  15.349 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  15.350 +       x="504.54507"
  15.351 +       y="170.39714"
  15.352 +       id="text2860"><tspan
  15.353 +         sodipodi:role="line"
  15.354 +         id="tspan2863"
  15.355 +         x="504.54507"
  15.356 +         y="170.39714"
  15.357 +         style="font-family:Courier"><tspan
  15.358 +   style="font-weight:bold"
  15.359 +   id="tspan2997">7</tspan>: e300</tspan></text>
  15.360 +    <text
  15.361 +       xml:space="preserve"
  15.362 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  15.363 +       x="90.323105"
  15.364 +       y="120.21933"
  15.365 +       id="text2929"><tspan
  15.366 +         sodipodi:role="line"
  15.367 +         id="tspan2931"
  15.368 +         x="90.323105"
  15.369 +         y="120.21933"
  15.370 +         style="font-weight:bold">Directory di lavoro durante l'unione</tspan></text>
  15.371 +    <text
  15.372 +       xml:space="preserve"
  15.373 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  15.374 +       x="435.35226"
  15.375 +       y="120.21933"
  15.376 +       id="text2937"><tspan
  15.377 +         sodipodi:role="line"
  15.378 +         id="tspan2939"
  15.379 +         x="435.35226"
  15.380 +         y="120.21933"
  15.381 +         style="font-weight:bold">Repository dopo l'inserimento dell'unione</tspan></text>
  15.382 +  </g>
  15.383 +</svg>
    16.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    16.2 +++ b/it/figs/tour-merge-pull.svg	Tue Aug 18 17:19:30 2009 +0200
    16.3 @@ -0,0 +1,288 @@
    16.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    16.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    16.6 +<svg
    16.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    16.8 +   xmlns:cc="http://web.resource.org/cc/"
    16.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   16.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   16.11 +   xmlns="http://www.w3.org/2000/svg"
   16.12 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   16.13 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   16.14 +   width="744.09448819"
   16.15 +   height="1052.3622047"
   16.16 +   id="svg2"
   16.17 +   sodipodi:version="0.32"
   16.18 +   inkscape:version="0.44.1"
   16.19 +   sodipodi:docname="tour-merge-pull.svg"
   16.20 +   sodipodi:docbase="/home/bos/hg/hgbook/en">
   16.21 +  <defs
   16.22 +     id="defs4">
   16.23 +    <marker
   16.24 +       inkscape:stockid="Arrow1Mstart"
   16.25 +       orient="auto"
   16.26 +       refY="0.0"
   16.27 +       refX="0.0"
   16.28 +       id="Arrow1Mstart"
   16.29 +       style="overflow:visible">
   16.30 +      <path
   16.31 +         id="path2973"
   16.32 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   16.33 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
   16.34 +         transform="scale(0.4) translate(10,0)" />
   16.35 +    </marker>
   16.36 +    <marker
   16.37 +       inkscape:stockid="Arrow1Mend"
   16.38 +       orient="auto"
   16.39 +       refY="0.0"
   16.40 +       refX="0.0"
   16.41 +       id="Arrow1Mend"
   16.42 +       style="overflow:visible;">
   16.43 +      <path
   16.44 +         id="path3066"
   16.45 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   16.46 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
   16.47 +         transform="scale(0.4) rotate(180) translate(10,0)" />
   16.48 +    </marker>
   16.49 +  </defs>
   16.50 +  <sodipodi:namedview
   16.51 +     id="base"
   16.52 +     pagecolor="#ffffff"
   16.53 +     bordercolor="#666666"
   16.54 +     borderopacity="1.0"
   16.55 +     gridtolerance="10000"
   16.56 +     guidetolerance="10"
   16.57 +     objecttolerance="10"
   16.58 +     inkscape:pageopacity="0.0"
   16.59 +     inkscape:pageshadow="2"
   16.60 +     inkscape:zoom="1.4"
   16.61 +     inkscape:cx="233.63208"
   16.62 +     inkscape:cy="832.54381"
   16.63 +     inkscape:document-units="px"
   16.64 +     inkscape:current-layer="layer1"
   16.65 +     inkscape:window-width="906"
   16.66 +     inkscape:window-height="620"
   16.67 +     inkscape:window-x="237"
   16.68 +     inkscape:window-y="103" />
   16.69 +  <metadata
   16.70 +     id="metadata7">
   16.71 +    <rdf:RDF>
   16.72 +      <cc:Work
   16.73 +         rdf:about="">
   16.74 +        <dc:format>image/svg+xml</dc:format>
   16.75 +        <dc:type
   16.76 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
   16.77 +      </cc:Work>
   16.78 +    </rdf:RDF>
   16.79 +  </metadata>
   16.80 +  <g
   16.81 +     inkscape:label="Layer 1"
   16.82 +     inkscape:groupmode="layer"
   16.83 +     id="layer1">
   16.84 +    <text
   16.85 +       xml:space="preserve"
   16.86 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
   16.87 +       x="173.57143"
   16.88 +       y="443.79074"
   16.89 +       id="text2832"><tspan
   16.90 +         sodipodi:role="line"
   16.91 +         id="tspan2834"
   16.92 +         x="173.57143"
   16.93 +         y="443.79074" /></text>
   16.94 +    <rect
   16.95 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
   16.96 +       id="rect1878"
   16.97 +       width="94.285713"
   16.98 +       height="20.714285"
   16.99 +       x="138"
  16.100 +       y="479.50504" />
  16.101 +    <text
  16.102 +       xml:space="preserve"
  16.103 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  16.104 +       x="162.09892"
  16.105 +       y="493.12619"
  16.106 +       id="text1872"><tspan
  16.107 +         sodipodi:role="line"
  16.108 +         id="tspan1874"
  16.109 +         x="162.09892"
  16.110 +         y="493.12619"
  16.111 +         style="font-family:Courier"><tspan
  16.112 +   style="font-weight:bold"
  16.113 +   id="tspan1876">0</tspan>: 0a04</tspan></text>
  16.114 +    <rect
  16.115 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  16.116 +       id="rect2800"
  16.117 +       width="94.285713"
  16.118 +       height="20.714285"
  16.119 +       x="138"
  16.120 +       y="432.63004" />
  16.121 +    <text
  16.122 +       xml:space="preserve"
  16.123 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  16.124 +       x="162.09892"
  16.125 +       y="446.25119"
  16.126 +       id="text2794"><tspan
  16.127 +         sodipodi:role="line"
  16.128 +         id="tspan2796"
  16.129 +         x="162.09892"
  16.130 +         y="446.25119"
  16.131 +         style="font-family:Courier"><tspan
  16.132 +   id="tspan2868"
  16.133 +   style="font-weight:bold">1</tspan>: 82e5</tspan></text>
  16.134 +    <rect
  16.135 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  16.136 +       id="rect2810"
  16.137 +       width="94.285713"
  16.138 +       height="20.714285"
  16.139 +       x="138"
  16.140 +       y="385.75504" />
  16.141 +    <text
  16.142 +       xml:space="preserve"
  16.143 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  16.144 +       x="162.09892"
  16.145 +       y="399.37619"
  16.146 +       id="text2804"><tspan
  16.147 +         sodipodi:role="line"
  16.148 +         id="tspan2806"
  16.149 +         x="162.09892"
  16.150 +         y="399.37619"
  16.151 +         style="font-family:Courier"><tspan
  16.152 +   style="font-weight:bold"
  16.153 +   id="tspan2866">2</tspan>: fef8</tspan></text>
  16.154 +    <rect
  16.155 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  16.156 +       id="rect2820"
  16.157 +       width="94.285713"
  16.158 +       height="20.714285"
  16.159 +       x="138"
  16.160 +       y="338.88007" />
  16.161 +    <text
  16.162 +       xml:space="preserve"
  16.163 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  16.164 +       x="162.09892"
  16.165 +       y="352.50122"
  16.166 +       id="text2814"><tspan
  16.167 +         sodipodi:role="line"
  16.168 +         id="tspan2816"
  16.169 +         x="162.09892"
  16.170 +         y="352.50122"
  16.171 +         style="font-family:Courier"><tspan
  16.172 +   style="font-weight:bold"
  16.173 +   id="tspan2864">3</tspan>: 0272</tspan></text>
  16.174 +    <rect
  16.175 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  16.176 +       id="rect2830"
  16.177 +       width="94.285713"
  16.178 +       height="20.714285"
  16.179 +       x="138"
  16.180 +       y="292.00504" />
  16.181 +    <text
  16.182 +       xml:space="preserve"
  16.183 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  16.184 +       x="162.09892"
  16.185 +       y="305.62619"
  16.186 +       id="text2824"><tspan
  16.187 +         sodipodi:role="line"
  16.188 +         id="tspan2826"
  16.189 +         x="162.09892"
  16.190 +         y="305.62619"
  16.191 +         style="font-family:Courier"><tspan
  16.192 +   style="font-weight:bold"
  16.193 +   id="tspan2862">4</tspan>: 2278</tspan></text>
  16.194 +    <path
  16.195 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  16.196 +       d="M 185.14286,478.50504 L 185.14286,454.34432"
  16.197 +       id="path2894"
  16.198 +       inkscape:connector-type="polyline" />
  16.199 +    <path
  16.200 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  16.201 +       d="M 185.14286,431.63004 L 185.14286,407.46932"
  16.202 +       id="path2896"
  16.203 +       inkscape:connector-type="polyline" />
  16.204 +    <path
  16.205 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  16.206 +       d="M 185.14286,384.75504 L 185.14286,360.59435"
  16.207 +       id="path2898"
  16.208 +       inkscape:connector-type="polyline" />
  16.209 +    <path
  16.210 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  16.211 +       d="M 185.14286,337.88007 L 185.14286,313.71932"
  16.212 +       id="path2900"
  16.213 +       inkscape:connector-type="polyline" />
  16.214 +    <rect
  16.215 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  16.216 +       id="rect2863"
  16.217 +       width="94.285713"
  16.218 +       height="20.714285"
  16.219 +       x="91.428574"
  16.220 +       y="244.71933" />
  16.221 +    <text
  16.222 +       xml:space="preserve"
  16.223 +       style="font-size:12.00001812px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  16.224 +       x="116.09886"
  16.225 +       y="258.80865"
  16.226 +       id="text1965"
  16.227 +       transform="scale(1.000002,0.999998)"><tspan
  16.228 +         sodipodi:role="line"
  16.229 +         id="tspan1967"
  16.230 +         x="116.09886"
  16.231 +         y="258.80865"
  16.232 +         style="font-family:Courier"><tspan
  16.233 +   style="font-weight:bold"
  16.234 +   id="tspan1973">5</tspan>: 1c34</tspan></text>
  16.235 +    <path
  16.236 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1.00000143px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
  16.237 +       d="M 173.95727,291.00504 L 149.75702,266.43361"
  16.238 +       id="path1971"
  16.239 +       inkscape:connector-type="polyline"
  16.240 +       inkscape:connection-end="#rect2863"
  16.241 +       inkscape:connection-start="#rect2830" />
  16.242 +    <rect
  16.243 +       style="fill:#78a5ad;fill-opacity:1;stroke:#507b84;stroke-width:2.00000286;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  16.244 +       id="rect2911"
  16.245 +       width="94.285995"
  16.246 +       height="20.714283"
  16.247 +       x="186.71414"
  16.248 +       y="198.6479" />
  16.249 +    <text
  16.250 +       xml:space="preserve"
  16.251 +       style="font-size:12.00001812px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  16.252 +       x="210.81311"
  16.253 +       y="212.26949"
  16.254 +       id="text2913"
  16.255 +       transform="scale(1.000002,0.999998)"><tspan
  16.256 +         sodipodi:role="line"
  16.257 +         id="tspan2915"
  16.258 +         x="210.81311"
  16.259 +         y="212.26949"
  16.260 +         style="font-family:Courier"><tspan
  16.261 +   id="tspan1966"
  16.262 +   style="font-weight:bold">6</tspan>: 7643</tspan></text>
  16.263 +    <path
  16.264 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1.00000143px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
  16.265 +       d="M 191.06908,291.00504 L 227.93092,220.36218"
  16.266 +       id="path2919"
  16.267 +       inkscape:connector-type="polyline"
  16.268 +       inkscape:connection-start="#rect2830" />
  16.269 +    <text
  16.270 +       xml:space="preserve"
  16.271 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  16.272 +       x="295.28571"
  16.273 +       y="211.80988"
  16.274 +       id="text2871"><tspan
  16.275 +         sodipodi:role="line"
  16.276 +         id="tspan2873"
  16.277 +         x="295.28571"
  16.278 +         y="211.80988">punta (e testa)</tspan></text>
  16.279 +    <text
  16.280 +       xml:space="preserve"
  16.281 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  16.282 +       x="76"
  16.283 +       y="259.16046"
  16.284 +       id="text2875"><tspan
  16.285 +         sodipodi:role="line"
  16.286 +         id="tspan2877"
  16.287 +         x="76"
  16.288 +         y="259.16046"
  16.289 +         style="text-align:end;text-anchor:end">testa</tspan></text>
  16.290 +  </g>
  16.291 +</svg>
    17.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    17.2 +++ b/it/figs/tour-merge-sep-repos.svg	Tue Aug 18 17:19:30 2009 +0200
    17.3 @@ -0,0 +1,466 @@
    17.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    17.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    17.6 +<svg
    17.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    17.8 +   xmlns:cc="http://web.resource.org/cc/"
    17.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   17.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   17.11 +   xmlns="http://www.w3.org/2000/svg"
   17.12 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   17.13 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   17.14 +   width="744.09448819"
   17.15 +   height="1052.3622047"
   17.16 +   id="svg2"
   17.17 +   sodipodi:version="0.32"
   17.18 +   inkscape:version="0.44.1"
   17.19 +   sodipodi:docname="tour-merge-sep-repos.svg">
   17.20 +  <defs
   17.21 +     id="defs4">
   17.22 +    <marker
   17.23 +       inkscape:stockid="Arrow1Mstart"
   17.24 +       orient="auto"
   17.25 +       refY="0.0"
   17.26 +       refX="0.0"
   17.27 +       id="Arrow1Mstart"
   17.28 +       style="overflow:visible">
   17.29 +      <path
   17.30 +         id="path2973"
   17.31 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   17.32 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
   17.33 +         transform="scale(0.4) translate(10,0)" />
   17.34 +    </marker>
   17.35 +    <marker
   17.36 +       inkscape:stockid="Arrow1Mend"
   17.37 +       orient="auto"
   17.38 +       refY="0.0"
   17.39 +       refX="0.0"
   17.40 +       id="Arrow1Mend"
   17.41 +       style="overflow:visible;">
   17.42 +      <path
   17.43 +         id="path3066"
   17.44 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   17.45 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
   17.46 +         transform="scale(0.4) rotate(180) translate(10,0)" />
   17.47 +    </marker>
   17.48 +  </defs>
   17.49 +  <sodipodi:namedview
   17.50 +     id="base"
   17.51 +     pagecolor="#ffffff"
   17.52 +     bordercolor="#666666"
   17.53 +     borderopacity="1.0"
   17.54 +     gridtolerance="10000"
   17.55 +     guidetolerance="10"
   17.56 +     objecttolerance="10"
   17.57 +     inkscape:pageopacity="0.0"
   17.58 +     inkscape:pageshadow="2"
   17.59 +     inkscape:zoom="1.4"
   17.60 +     inkscape:cx="307.20351"
   17.61 +     inkscape:cy="716.87911"
   17.62 +     inkscape:document-units="px"
   17.63 +     inkscape:current-layer="layer1"
   17.64 +     inkscape:window-width="906"
   17.65 +     inkscape:window-height="620"
   17.66 +     inkscape:window-x="5"
   17.67 +     inkscape:window-y="49" />
   17.68 +  <metadata
   17.69 +     id="metadata7">
   17.70 +    <rdf:RDF>
   17.71 +      <cc:Work
   17.72 +         rdf:about="">
   17.73 +        <dc:format>image/svg+xml</dc:format>
   17.74 +        <dc:type
   17.75 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
   17.76 +      </cc:Work>
   17.77 +    </rdf:RDF>
   17.78 +  </metadata>
   17.79 +  <g
   17.80 +     inkscape:label="Layer 1"
   17.81 +     inkscape:groupmode="layer"
   17.82 +     id="layer1">
   17.83 +    <text
   17.84 +       xml:space="preserve"
   17.85 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
   17.86 +       x="173.57143"
   17.87 +       y="443.79074"
   17.88 +       id="text2832"><tspan
   17.89 +         sodipodi:role="line"
   17.90 +         id="tspan2834"
   17.91 +         x="173.57143"
   17.92 +         y="443.79074" /></text>
   17.93 +    <rect
   17.94 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
   17.95 +       id="rect1878"
   17.96 +       width="94.285713"
   17.97 +       height="20.714285"
   17.98 +       x="138"
   17.99 +       y="479.50504" />
  17.100 +    <text
  17.101 +       xml:space="preserve"
  17.102 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.103 +       x="162.09892"
  17.104 +       y="493.12619"
  17.105 +       id="text1872"><tspan
  17.106 +         sodipodi:role="line"
  17.107 +         id="tspan1874"
  17.108 +         x="162.09892"
  17.109 +         y="493.12619"
  17.110 +         style="font-family:Courier"><tspan
  17.111 +   style="font-weight:bold"
  17.112 +   id="tspan1876">0</tspan>: 0a04</tspan></text>
  17.113 +    <rect
  17.114 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.115 +       id="rect2800"
  17.116 +       width="94.285713"
  17.117 +       height="20.714285"
  17.118 +       x="138"
  17.119 +       y="432.63004" />
  17.120 +    <text
  17.121 +       xml:space="preserve"
  17.122 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.123 +       x="162.09892"
  17.124 +       y="446.25119"
  17.125 +       id="text2794"><tspan
  17.126 +         sodipodi:role="line"
  17.127 +         id="tspan2796"
  17.128 +         x="162.09892"
  17.129 +         y="446.25119"
  17.130 +         style="font-family:Courier"><tspan
  17.131 +   id="tspan2868"
  17.132 +   style="font-weight:bold">1</tspan>: 82e5</tspan></text>
  17.133 +    <rect
  17.134 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.135 +       id="rect2810"
  17.136 +       width="94.285713"
  17.137 +       height="20.714285"
  17.138 +       x="138"
  17.139 +       y="385.75504" />
  17.140 +    <text
  17.141 +       xml:space="preserve"
  17.142 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.143 +       x="162.09892"
  17.144 +       y="399.37619"
  17.145 +       id="text2804"><tspan
  17.146 +         sodipodi:role="line"
  17.147 +         id="tspan2806"
  17.148 +         x="162.09892"
  17.149 +         y="399.37619"
  17.150 +         style="font-family:Courier"><tspan
  17.151 +   style="font-weight:bold"
  17.152 +   id="tspan2866">2</tspan>: fef8</tspan></text>
  17.153 +    <rect
  17.154 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.155 +       id="rect2820"
  17.156 +       width="94.285713"
  17.157 +       height="20.714285"
  17.158 +       x="138"
  17.159 +       y="338.88007" />
  17.160 +    <text
  17.161 +       xml:space="preserve"
  17.162 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.163 +       x="162.09892"
  17.164 +       y="352.50122"
  17.165 +       id="text2814"><tspan
  17.166 +         sodipodi:role="line"
  17.167 +         id="tspan2816"
  17.168 +         x="162.09892"
  17.169 +         y="352.50122"
  17.170 +         style="font-family:Courier"><tspan
  17.171 +   style="font-weight:bold"
  17.172 +   id="tspan2864">3</tspan>: 0272</tspan></text>
  17.173 +    <rect
  17.174 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.175 +       id="rect2830"
  17.176 +       width="94.285713"
  17.177 +       height="20.714285"
  17.178 +       x="138"
  17.179 +       y="292.00504" />
  17.180 +    <text
  17.181 +       xml:space="preserve"
  17.182 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.183 +       x="162.09892"
  17.184 +       y="305.62619"
  17.185 +       id="text2824"><tspan
  17.186 +         sodipodi:role="line"
  17.187 +         id="tspan2826"
  17.188 +         x="162.09892"
  17.189 +         y="305.62619"
  17.190 +         style="font-family:Courier"><tspan
  17.191 +   style="font-weight:bold"
  17.192 +   id="tspan2862">4</tspan>: 2278</tspan></text>
  17.193 +    <path
  17.194 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  17.195 +       d="M 185.14286,478.50504 L 185.14286,454.34432"
  17.196 +       id="path2894"
  17.197 +       inkscape:connector-type="polyline" />
  17.198 +    <path
  17.199 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  17.200 +       d="M 185.14286,431.63004 L 185.14286,407.46932"
  17.201 +       id="path2896"
  17.202 +       inkscape:connector-type="polyline" />
  17.203 +    <path
  17.204 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  17.205 +       d="M 185.14286,384.75504 L 185.14286,360.59435"
  17.206 +       id="path2898"
  17.207 +       inkscape:connector-type="polyline" />
  17.208 +    <path
  17.209 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  17.210 +       d="M 185.14286,337.88007 L 185.14286,313.71932"
  17.211 +       id="path2900"
  17.212 +       inkscape:connector-type="polyline" />
  17.213 +    <rect
  17.214 +       style="fill:#78a5ad;fill-opacity:1;stroke:#507b84;stroke-width:2.00000286;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.215 +       id="rect1963"
  17.216 +       width="94.285995"
  17.217 +       height="20.714283"
  17.218 +       x="138"
  17.219 +       y="245.18723" />
  17.220 +    <text
  17.221 +       xml:space="preserve"
  17.222 +       style="font-size:12.00001812px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.223 +       x="162.09877"
  17.224 +       y="258.80865"
  17.225 +       id="text1965"
  17.226 +       transform="scale(1.000002,0.999998)"><tspan
  17.227 +         sodipodi:role="line"
  17.228 +         id="tspan1967"
  17.229 +         x="162.09877"
  17.230 +         y="258.80865"
  17.231 +         style="font-family:Courier"><tspan
  17.232 +   style="font-weight:bold"
  17.233 +   id="tspan1973">5</tspan>: 7643</tspan></text>
  17.234 +    <path
  17.235 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1.00000143px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  17.236 +       d="M 185.143,291.06218 L 185.143,266.90143"
  17.237 +       id="path1971"
  17.238 +       inkscape:connector-type="polyline" />
  17.239 +    <text
  17.240 +       xml:space="preserve"
  17.241 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  17.242 +       x="136.90039"
  17.243 +       y="232.25546"
  17.244 +       id="text2921"><tspan
  17.245 +         sodipodi:role="line"
  17.246 +         id="tspan2923"
  17.247 +         x="136.90039"
  17.248 +         y="232.25546">mio-hello</tspan></text>
  17.249 +    <rect
  17.250 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.251 +       id="rect2863"
  17.252 +       width="94.285713"
  17.253 +       height="20.714285"
  17.254 +       x="370.71414"
  17.255 +       y="479.49289" />
  17.256 +    <text
  17.257 +       xml:space="preserve"
  17.258 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.259 +       x="394.81305"
  17.260 +       y="493.11404"
  17.261 +       id="text2865"><tspan
  17.262 +         sodipodi:role="line"
  17.263 +         id="tspan2867"
  17.264 +         x="394.81305"
  17.265 +         y="493.11404"
  17.266 +         style="font-family:Courier"><tspan
  17.267 +   style="font-weight:bold"
  17.268 +   id="tspan2869">0</tspan>: 0a04</tspan></text>
  17.269 +    <rect
  17.270 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.271 +       id="rect2871"
  17.272 +       width="94.285713"
  17.273 +       height="20.714285"
  17.274 +       x="370.71414"
  17.275 +       y="432.61789" />
  17.276 +    <text
  17.277 +       xml:space="preserve"
  17.278 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.279 +       x="394.81305"
  17.280 +       y="446.23904"
  17.281 +       id="text2873"><tspan
  17.282 +         sodipodi:role="line"
  17.283 +         id="tspan2875"
  17.284 +         x="394.81305"
  17.285 +         y="446.23904"
  17.286 +         style="font-family:Courier"><tspan
  17.287 +   id="tspan2877"
  17.288 +   style="font-weight:bold">1</tspan>: 82e5</tspan></text>
  17.289 +    <rect
  17.290 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.291 +       id="rect2879"
  17.292 +       width="94.285713"
  17.293 +       height="20.714285"
  17.294 +       x="370.71414"
  17.295 +       y="385.74289" />
  17.296 +    <text
  17.297 +       xml:space="preserve"
  17.298 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.299 +       x="394.81305"
  17.300 +       y="399.36404"
  17.301 +       id="text2881"><tspan
  17.302 +         sodipodi:role="line"
  17.303 +         id="tspan2883"
  17.304 +         x="394.81305"
  17.305 +         y="399.36404"
  17.306 +         style="font-family:Courier"><tspan
  17.307 +   style="font-weight:bold"
  17.308 +   id="tspan2885">2</tspan>: fef8</tspan></text>
  17.309 +    <rect
  17.310 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.311 +       id="rect2887"
  17.312 +       width="94.285713"
  17.313 +       height="20.714285"
  17.314 +       x="370.71414"
  17.315 +       y="338.86792" />
  17.316 +    <text
  17.317 +       xml:space="preserve"
  17.318 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.319 +       x="394.81305"
  17.320 +       y="352.48907"
  17.321 +       id="text2889"><tspan
  17.322 +         sodipodi:role="line"
  17.323 +         id="tspan2891"
  17.324 +         x="394.81305"
  17.325 +         y="352.48907"
  17.326 +         style="font-family:Courier"><tspan
  17.327 +   style="font-weight:bold"
  17.328 +   id="tspan2893">3</tspan>: 0272</tspan></text>
  17.329 +    <rect
  17.330 +       style="fill:#a5c3c8;fill-opacity:1;stroke:#6396a0;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.331 +       id="rect2895"
  17.332 +       width="94.285713"
  17.333 +       height="20.714285"
  17.334 +       x="370.71414"
  17.335 +       y="291.99289" />
  17.336 +    <text
  17.337 +       xml:space="preserve"
  17.338 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.339 +       x="394.81305"
  17.340 +       y="305.61404"
  17.341 +       id="text2897"><tspan
  17.342 +         sodipodi:role="line"
  17.343 +         id="tspan2899"
  17.344 +         x="394.81305"
  17.345 +         y="305.61404"
  17.346 +         style="font-family:Courier"><tspan
  17.347 +   style="font-weight:bold"
  17.348 +   id="tspan2901">4</tspan>: 2278</tspan></text>
  17.349 +    <path
  17.350 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  17.351 +       d="M 417.85701,478.4929 L 417.85701,454.33218"
  17.352 +       id="path2903"
  17.353 +       inkscape:connector-type="polyline" />
  17.354 +    <path
  17.355 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  17.356 +       d="M 417.85701,431.6179 L 417.85701,407.45718"
  17.357 +       id="path2905"
  17.358 +       inkscape:connector-type="polyline" />
  17.359 +    <path
  17.360 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  17.361 +       d="M 417.85701,384.7429 L 417.85701,360.58221"
  17.362 +       id="path2907"
  17.363 +       inkscape:connector-type="polyline" />
  17.364 +    <path
  17.365 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  17.366 +       d="M 417.85701,337.86793 L 417.85701,313.70718"
  17.367 +       id="path2909"
  17.368 +       inkscape:connector-type="polyline" />
  17.369 +    <rect
  17.370 +       style="fill:#78a5ad;fill-opacity:1;stroke:#507b84;stroke-width:2.00000286;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.371 +       id="rect2911"
  17.372 +       width="94.285995"
  17.373 +       height="20.714283"
  17.374 +       x="370.71414"
  17.375 +       y="245.17511" />
  17.376 +    <text
  17.377 +       xml:space="preserve"
  17.378 +       style="font-size:12.00001812px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Courier"
  17.379 +       x="394.81274"
  17.380 +       y="258.79678"
  17.381 +       id="text2913"
  17.382 +       transform="scale(1.000002,0.999998)"><tspan
  17.383 +         sodipodi:role="line"
  17.384 +         id="tspan2915"
  17.385 +         x="394.81274"
  17.386 +         y="258.79678"
  17.387 +         style="font-family:Courier"><tspan
  17.388 +   style="font-weight:bold"
  17.389 +   id="tspan2917">5</tspan>: 1c34</tspan></text>
  17.390 +    <path
  17.391 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1.00000143px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  17.392 +       d="M 417.85715,291.05004 L 417.85715,266.88929"
  17.393 +       id="path2919"
  17.394 +       inkscape:connector-type="polyline" />
  17.395 +    <text
  17.396 +       xml:space="preserve"
  17.397 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  17.398 +       x="369.61453"
  17.399 +       y="232.25546"
  17.400 +       id="text2925"><tspan
  17.401 +         sodipodi:role="line"
  17.402 +         id="tspan2927"
  17.403 +         x="369.61453"
  17.404 +         y="232.25546">mio-nuovo-hello</tspan></text>
  17.405 +    <text
  17.406 +       xml:space="preserve"
  17.407 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  17.408 +       x="300.54352"
  17.409 +       y="252.12723"
  17.410 +       id="text2933"><tspan
  17.411 +         sodipodi:role="line"
  17.412 +         id="tspan2935"
  17.413 +         x="300.54352"
  17.414 +         y="252.12723"
  17.415 +         style="text-align:center;text-anchor:middle">i cambiamenti più</tspan><tspan
  17.416 +         sodipodi:role="line"
  17.417 +         x="300.54352"
  17.418 +         y="267.12723"
  17.419 +         style="text-align:center;text-anchor:middle"
  17.420 +         id="tspan3132">recenti differiscono</tspan></text>
  17.421 +    <text
  17.422 +       xml:space="preserve"
  17.423 +       style="font-size:12px;font-style:normal;font-weight:normal;text-align:start;text-anchor:start;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  17.424 +       x="255.15436"
  17.425 +       y="398.37112"
  17.426 +       id="text2929"><tspan
  17.427 +         sodipodi:role="line"
  17.428 +         x="255.15436"
  17.429 +         y="398.37112"
  17.430 +         id="tspan3013"
  17.431 +         style="text-align:start;text-anchor:start">cronologia comune</tspan></text>
  17.432 +    <g
  17.433 +       id="g3107"
  17.434 +       transform="translate(0,0.855744)">
  17.435 +      <path
  17.436 +         id="path3101"
  17.437 +         d="M 300.35713,381.29075 L 300.35713,304.50504"
  17.438 +         style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:4, 4;stroke-dashoffset:0;stroke-opacity:1" />
  17.439 +      <path
  17.440 +         id="path3105"
  17.441 +         d="M 291.07142,301.64789 L 309.28571,301.64789"
  17.442 +         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#bfbfbf;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
  17.443 +    </g>
  17.444 +    <path
  17.445 +       style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:black;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:4, 4;stroke-dashoffset:0;stroke-opacity:1"
  17.446 +       d="M 300.53571,486.38926 L 300.53571,409.60355"
  17.447 +       id="path3113" />
  17.448 +    <path
  17.449 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#bfbfbf;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  17.450 +       d="M 291.25,488.49641 L 309.46429,488.49641"
  17.451 +       id="path3115" />
  17.452 +    <text
  17.453 +       xml:space="preserve"
  17.454 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  17.455 +       x="480.71429"
  17.456 +       y="250.91507"
  17.457 +       id="text1949"><tspan
  17.458 +         sodipodi:role="line"
  17.459 +         id="tspan1951"
  17.460 +         x="480.71429"
  17.461 +         y="250.91507"
  17.462 +         style="text-align:start;text-anchor:start">revisione di testa</tspan><tspan
  17.463 +         sodipodi:role="line"
  17.464 +         x="480.71429"
  17.465 +         y="265.91507"
  17.466 +         id="tspan1953"
  17.467 +         style="text-align:start;text-anchor:start">(non ha figli)</tspan></text>
  17.468 +  </g>
  17.469 +</svg>
    18.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    18.2 +++ b/it/figs/undo-manual-merge.dot	Tue Aug 18 17:19:30 2009 +0200
    18.3 @@ -0,0 +1,8 @@
    18.4 +digraph undo_manual {
    18.5 +	"prima modifica" -> "seconda modifica";
    18.6 +	"seconda modifica" -> "terza modifica";
    18.7 +	backout [label="ritira la\nseconda modifica", shape=box];
    18.8 +	"seconda modifica" -> backout;
    18.9 +	"terza modifica" -> "unione\nmanuale";
   18.10 +	backout -> "unione\nmanuale";
   18.11 +}
    19.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    19.2 +++ b/it/figs/undo-manual.dot	Tue Aug 18 17:19:30 2009 +0200
    19.3 @@ -0,0 +1,6 @@
    19.4 +digraph undo_manual {
    19.5 +	"prima modifica" -> "seconda modifica";
    19.6 +	"seconda modifica" -> "terza modifica";
    19.7 +	backout [label="ritira la\nseconda modifica", shape=box];
    19.8 +	"seconda modifica" -> backout;
    19.9 +}
    20.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    20.2 +++ b/it/figs/undo-non-tip.dot	Tue Aug 18 17:19:30 2009 +0200
    20.3 @@ -0,0 +1,9 @@
    20.4 +digraph undo_non_tip {
    20.5 +	"prima modifica" -> "seconda modifica";
    20.6 +	"seconda modifica" -> "terza modifica";
    20.7 +	backout [label="ritira la\nseconda modifica", shape=box];
    20.8 +	"seconda modifica" -> backout;
    20.9 +	merge [label="unione\nautomatica", shape=box];
   20.10 +	"terza modifica" -> merge;
   20.11 +	backout -> merge;
   20.12 +}
    21.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    21.2 +++ b/it/figs/undo-simple.dot	Tue Aug 18 17:19:30 2009 +0200
    21.3 @@ -0,0 +1,4 @@
    21.4 +digraph undo_simple {
    21.5 +	"prima modifica" -> "seconda modifica";
    21.6 +	"seconda modifica" -> "ritira la\nseconda modifica";
    21.7 +}
    22.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    22.2 +++ b/it/figs/wdir-after-commit.svg	Tue Aug 18 17:19:30 2009 +0200
    22.3 @@ -0,0 +1,394 @@
    22.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    22.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    22.6 +<svg
    22.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    22.8 +   xmlns:cc="http://web.resource.org/cc/"
    22.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   22.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   22.11 +   xmlns="http://www.w3.org/2000/svg"
   22.12 +   xmlns:xlink="http://www.w3.org/1999/xlink"
   22.13 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   22.14 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   22.15 +   width="744.09448819"
   22.16 +   height="1052.3622047"
   22.17 +   id="svg5971"
   22.18 +   sodipodi:version="0.32"
   22.19 +   inkscape:version="0.44.1"
   22.20 +   sodipodi:docbase="/home/bos/hg/hgbook/en"
   22.21 +   sodipodi:docname="wdir-after-commit.svg">
   22.22 +  <defs
   22.23 +     id="defs5973">
   22.24 +    <linearGradient
   22.25 +       inkscape:collect="always"
   22.26 +       xlink:href="#linearGradient6049"
   22.27 +       id="linearGradient6445"
   22.28 +       gradientUnits="userSpaceOnUse"
   22.29 +       gradientTransform="matrix(1.000474,0,0,0.790947,-240.246,50.9948)"
   22.30 +       x1="333.91171"
   22.31 +       y1="488.79077"
   22.32 +       x2="508.94543"
   22.33 +       y2="263.79077" />
   22.34 +    <marker
   22.35 +       inkscape:stockid="Arrow1Mstart"
   22.36 +       orient="auto"
   22.37 +       refY="0.0"
   22.38 +       refX="0.0"
   22.39 +       id="Arrow1Mstart"
   22.40 +       style="overflow:visible">
   22.41 +      <path
   22.42 +         id="path4855"
   22.43 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   22.44 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
   22.45 +         transform="scale(0.4) translate(10,0)" />
   22.46 +    </marker>
   22.47 +    <linearGradient
   22.48 +       id="linearGradient6049">
   22.49 +      <stop
   22.50 +         style="stop-color:#686868;stop-opacity:1;"
   22.51 +         offset="0"
   22.52 +         id="stop6051" />
   22.53 +      <stop
   22.54 +         style="stop-color:#f0f0f0;stop-opacity:1;"
   22.55 +         offset="1"
   22.56 +         id="stop6053" />
   22.57 +    </linearGradient>
   22.58 +    <marker
   22.59 +       inkscape:stockid="Arrow1Mend"
   22.60 +       orient="auto"
   22.61 +       refY="0.0"
   22.62 +       refX="0.0"
   22.63 +       id="Arrow1Mend"
   22.64 +       style="overflow:visible;">
   22.65 +      <path
   22.66 +         id="path4852"
   22.67 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   22.68 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
   22.69 +         transform="scale(0.4) rotate(180) translate(10,0)" />
   22.70 +    </marker>
   22.71 +    <linearGradient
   22.72 +       inkscape:collect="always"
   22.73 +       xlink:href="#linearGradient6049"
   22.74 +       id="linearGradient6083"
   22.75 +       gradientUnits="userSpaceOnUse"
   22.76 +       gradientTransform="translate(-240.0462,-8.633237e-6)"
   22.77 +       x1="333.91171"
   22.78 +       y1="488.79077"
   22.79 +       x2="508.94543"
   22.80 +       y2="263.79077" />
   22.81 +    <linearGradient
   22.82 +       inkscape:collect="always"
   22.83 +       xlink:href="#linearGradient6049"
   22.84 +       id="linearGradient6142"
   22.85 +       gradientUnits="userSpaceOnUse"
   22.86 +       gradientTransform="translate(-42.00893,-30.49544)"
   22.87 +       x1="333.91171"
   22.88 +       y1="488.79077"
   22.89 +       x2="508.94543"
   22.90 +       y2="263.79077" />
   22.91 +    <linearGradient
   22.92 +       inkscape:collect="always"
   22.93 +       xlink:href="#linearGradient6049"
   22.94 +       id="linearGradient6193"
   22.95 +       gradientUnits="userSpaceOnUse"
   22.96 +       gradientTransform="translate(-240.0462,-8.633237e-6)"
   22.97 +       x1="333.91171"
   22.98 +       y1="488.79077"
   22.99 +       x2="508.94543"
  22.100 +       y2="263.79077" />
  22.101 +    <linearGradient
  22.102 +       inkscape:collect="always"
  22.103 +       xlink:href="#linearGradient6049"
  22.104 +       id="linearGradient6216"
  22.105 +       gradientUnits="userSpaceOnUse"
  22.106 +       gradientTransform="translate(-6.0462,-0.664361)"
  22.107 +       x1="333.91171"
  22.108 +       y1="488.79077"
  22.109 +       x2="508.94543"
  22.110 +       y2="263.79077" />
  22.111 +    <linearGradient
  22.112 +       inkscape:collect="always"
  22.113 +       xlink:href="#linearGradient6049"
  22.114 +       id="linearGradient6232"
  22.115 +       gradientUnits="userSpaceOnUse"
  22.116 +       gradientTransform="matrix(1.000474,0,0,0.790947,222.8399,50.85693)"
  22.117 +       x1="333.91171"
  22.118 +       y1="488.79077"
  22.119 +       x2="508.94543"
  22.120 +       y2="263.79077" />
  22.121 +    <linearGradient
  22.122 +       inkscape:collect="always"
  22.123 +       xlink:href="#linearGradient6049"
  22.124 +       id="linearGradient6772"
  22.125 +       gradientUnits="userSpaceOnUse"
  22.126 +       gradientTransform="matrix(1.000474,0,0,0.790947,222.8399,50.85693)"
  22.127 +       x1="333.91171"
  22.128 +       y1="488.79077"
  22.129 +       x2="508.94543"
  22.130 +       y2="263.79077" />
  22.131 +  </defs>
  22.132 +  <sodipodi:namedview
  22.133 +     id="base"
  22.134 +     pagecolor="#ffffff"
  22.135 +     bordercolor="#666666"
  22.136 +     borderopacity="1.0"
  22.137 +     gridtolerance="10000"
  22.138 +     guidetolerance="10"
  22.139 +     objecttolerance="10"
  22.140 +     inkscape:pageopacity="0.0"
  22.141 +     inkscape:pageshadow="2"
  22.142 +     inkscape:zoom="0.90509668"
  22.143 +     inkscape:cx="390.0539"
  22.144 +     inkscape:cy="690.49342"
  22.145 +     inkscape:document-units="px"
  22.146 +     inkscape:current-layer="layer1"
  22.147 +     showguides="true"
  22.148 +     inkscape:guide-bbox="true"
  22.149 +     inkscape:window-width="906"
  22.150 +     inkscape:window-height="620"
  22.151 +     inkscape:window-x="0"
  22.152 +     inkscape:window-y="25">
  22.153 +    <sodipodi:guide
  22.154 +       orientation="vertical"
  22.155 +       position="-1.4285714"
  22.156 +       id="guide6022" />
  22.157 +  </sodipodi:namedview>
  22.158 +  <metadata
  22.159 +     id="metadata5976">
  22.160 +    <rdf:RDF>
  22.161 +      <cc:Work
  22.162 +         rdf:about="">
  22.163 +        <dc:format>image/svg+xml</dc:format>
  22.164 +        <dc:type
  22.165 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  22.166 +      </cc:Work>
  22.167 +    </rdf:RDF>
  22.168 +  </metadata>
  22.169 +  <g
  22.170 +     inkscape:label="Layer 1"
  22.171 +     inkscape:groupmode="layer"
  22.172 +     id="layer1">
  22.173 +    <rect
  22.174 +       y="245.98355"
  22.175 +       x="328.23956"
  22.176 +       height="258.57144"
  22.177 +       width="174.28572"
  22.178 +       id="rect6047"
  22.179 +       style="fill:url(#linearGradient6216);fill-opacity:1;stroke:#686868;stroke-width:0.74800003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  22.180 +    <g
  22.181 +       id="g6261"
  22.182 +       transform="translate(234,0)">
  22.183 +      <rect
  22.184 +         y="258.7149"
  22.185 +         x="114.11369"
  22.186 +         height="44.537449"
  22.187 +         width="134.53746"
  22.188 +         id="rect5983"
  22.189 +         style="fill:#b1b1b1;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1" />
  22.190 +      <text
  22.191 +         id="text5985"
  22.192 +         y="284.47562"
  22.193 +         x="138.7962"
  22.194 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  22.195 +         xml:space="preserve"><tspan
  22.196 +           style="font-family:Courier"
  22.197 +           y="284.47562"
  22.198 +           x="138.7962"
  22.199 +           id="tspan5987"
  22.200 +           sodipodi:role="line">dfbbb33f3fa3</tspan></text>
  22.201 +    </g>
  22.202 +    <rect
  22.203 +       style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1"
  22.204 +       id="rect5996"
  22.205 +       width="134.53746"
  22.206 +       height="44.537449"
  22.207 +       x="348.11371"
  22.208 +       y="320.38159" />
  22.209 +    <text
  22.210 +       xml:space="preserve"
  22.211 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  22.212 +       x="372.7962"
  22.213 +       y="346.1423"
  22.214 +       id="text5998"><tspan
  22.215 +         sodipodi:role="line"
  22.216 +         id="tspan6000"
  22.217 +         x="372.7962"
  22.218 +         y="346.1423"
  22.219 +         style="font-family:Courier">e7639888bb2f</tspan></text>
  22.220 +    <rect
  22.221 +       style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1"
  22.222 +       id="rect6004"
  22.223 +       width="134.53746"
  22.224 +       height="44.537449"
  22.225 +       x="348.11371"
  22.226 +       y="382.04825" />
  22.227 +    <text
  22.228 +       xml:space="preserve"
  22.229 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  22.230 +       x="370.65421"
  22.231 +       y="407.80896"
  22.232 +       id="text6006"><tspan
  22.233 +         sodipodi:role="line"
  22.234 +         id="tspan6008"
  22.235 +         x="370.65421"
  22.236 +         y="407.80896"
  22.237 +         style="font-family:Courier">7b064d8bac5e</tspan></text>
  22.238 +    <path
  22.239 +       inkscape:connector-type="polyline"
  22.240 +       id="path6018"
  22.241 +       d="M 415.38242,303.62646 L 415.38242,320.00744"
  22.242 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1" />
  22.243 +    <path
  22.244 +       inkscape:connection-end="#rect6004"
  22.245 +       inkscape:connector-type="polyline"
  22.246 +       id="path6020"
  22.247 +       d="M 415.38242,365.29315 L 415.38243,381.67412"
  22.248 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1" />
  22.249 +    <rect
  22.250 +       style="fill:#ededed;fill-opacity:1;stroke:#797979;stroke-width:0.74800003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  22.251 +       id="rect6039"
  22.252 +       width="134.53746"
  22.253 +       height="44.537449"
  22.254 +       x="348.11359"
  22.255 +       y="443.71487" />
  22.256 +    <text
  22.257 +       xml:space="preserve"
  22.258 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#979797;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  22.259 +       x="372.79706"
  22.260 +       y="469.47556"
  22.261 +       id="text6041"><tspan
  22.262 +         sodipodi:role="line"
  22.263 +         id="tspan6043"
  22.264 +         x="372.79706"
  22.265 +         y="469.47556"
  22.266 +         style="fill:#979797;fill-opacity:1;font-family:Courier">000000000000</tspan></text>
  22.267 +    <path
  22.268 +       inkscape:connection-end="#rect6039"
  22.269 +       inkscape:connector-type="polyline"
  22.270 +       id="path6045"
  22.271 +       d="M 415.38238,426.95981 L 415.38235,443.34087"
  22.272 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#686868;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1" />
  22.273 +    <text
  22.274 +       xml:space="preserve"
  22.275 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  22.276 +       x="327.66046"
  22.277 +       y="231.36218"
  22.278 +       id="text6102"><tspan
  22.279 +         sodipodi:role="line"
  22.280 +         id="tspan6104"
  22.281 +         x="327.66046"
  22.282 +         y="231.36218">Cronologia nel repository</tspan></text>
  22.283 +    <rect
  22.284 +       y="245.94225"
  22.285 +       x="557.28418"
  22.286 +       height="204.51619"
  22.287 +       width="174.36833"
  22.288 +       id="rect6140"
  22.289 +       style="fill:url(#linearGradient6232);fill-opacity:1;stroke:#686868;stroke-width:0.66539276;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  22.290 +    <g
  22.291 +       id="g6130"
  22.292 +       transform="translate(262.3254,24.38544)">
  22.293 +      <rect
  22.294 +         style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1"
  22.295 +         id="rect6106"
  22.296 +         width="134.53746"
  22.297 +         height="44.537449"
  22.298 +         x="314.87415"
  22.299 +         y="257.95059" />
  22.300 +      <text
  22.301 +         xml:space="preserve"
  22.302 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  22.303 +         x="339.55664"
  22.304 +         y="283.7113"
  22.305 +         id="text6108"><tspan
  22.306 +           sodipodi:role="line"
  22.307 +           id="tspan6110"
  22.308 +           x="339.55664"
  22.309 +           y="283.7113"
  22.310 +           style="font-family:Courier">dfbbb33f3fa3</tspan></text>
  22.311 +    </g>
  22.312 +    <g
  22.313 +       id="g6135"
  22.314 +       transform="translate(263.0396,49.83106)">
  22.315 +      <rect
  22.316 +         inkscape:transform-center-y="102.85714"
  22.317 +         inkscape:transform-center-x="129.28571"
  22.318 +         style="fill:#ededed;fill-opacity:1;stroke:#797979;stroke-width:0.74800003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  22.319 +         id="rect6112"
  22.320 +         width="134.53746"
  22.321 +         height="44.537449"
  22.322 +         x="314.15985"
  22.323 +         y="326.52203" />
  22.324 +      <text
  22.325 +         inkscape:transform-center-y="102.7311"
  22.326 +         inkscape:transform-center-x="128.69672"
  22.327 +         xml:space="preserve"
  22.328 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:#979797;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  22.329 +         x="338.84335"
  22.330 +         y="352.28271"
  22.331 +         id="text6114"><tspan
  22.332 +           sodipodi:role="line"
  22.333 +           id="tspan6116"
  22.334 +           x="338.84335"
  22.335 +           y="352.28271"
  22.336 +           style="fill:#979797;fill-opacity:1;font-family:Courier">000000000000</tspan></text>
  22.337 +    </g>
  22.338 +    <text
  22.339 +       xml:space="preserve"
  22.340 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  22.341 +       x="576.63208"
  22.342 +       y="270.479"
  22.343 +       id="text6118"><tspan
  22.344 +         sodipodi:role="line"
  22.345 +         id="tspan6120"
  22.346 +         x="576.63208"
  22.347 +         y="270.479">Primo genitore</tspan></text>
  22.348 +    <text
  22.349 +       xml:space="preserve"
  22.350 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  22.351 +       x="576.07544"
  22.352 +       y="364.49615"
  22.353 +       id="text6122"><tspan
  22.354 +         sodipodi:role="line"
  22.355 +         id="tspan6124"
  22.356 +         x="576.07544"
  22.357 +         y="364.49615">Secondo genitore</tspan></text>
  22.358 +    <text
  22.359 +       xml:space="preserve"
  22.360 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  22.361 +       x="556.61743"
  22.362 +       y="231.36218"
  22.363 +       id="text6195"><tspan
  22.364 +         sodipodi:role="line"
  22.365 +         id="tspan6197"
  22.366 +         x="556.61743"
  22.367 +         y="231.36218">Genitori della directory di lavoro</tspan></text>
  22.368 +    <path
  22.369 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
  22.370 +       d="M 576.82542,297.63008 L 483.02528,287.95831"
  22.371 +       id="path6266"
  22.372 +       inkscape:connector-type="polyline"
  22.373 +       inkscape:connection-start="#g6130"
  22.374 +       inkscape:connection-end="#g6261" />
  22.375 +    <path
  22.376 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  22.377 +       d="M 665.12232,418.17579 L 665.12232,418.17579"
  22.378 +       id="path6270"
  22.379 +       inkscape:connector-type="polyline" />
  22.380 +    <text
  22.381 +       xml:space="preserve"
  22.382 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  22.383 +       x="316.86407"
  22.384 +       y="275.6496"
  22.385 +       id="text6573"><tspan
  22.386 +         sodipodi:role="line"
  22.387 +         id="tspan6575"
  22.388 +         x="316.86407"
  22.389 +         y="275.6496"
  22.390 +         style="text-align:end;text-anchor:end">Nuovo</tspan><tspan
  22.391 +         sodipodi:role="line"
  22.392 +         x="316.86407"
  22.393 +         y="290.6496"
  22.394 +         id="tspan6577"
  22.395 +         style="text-align:end;text-anchor:end">changeset</tspan></text>
  22.396 +  </g>
  22.397 +</svg>
    23.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    23.2 +++ b/it/figs/wdir-branch.svg	Tue Aug 18 17:19:30 2009 +0200
    23.3 @@ -0,0 +1,418 @@
    23.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    23.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    23.6 +<svg
    23.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    23.8 +   xmlns:cc="http://web.resource.org/cc/"
    23.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   23.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   23.11 +   xmlns="http://www.w3.org/2000/svg"
   23.12 +   xmlns:xlink="http://www.w3.org/1999/xlink"
   23.13 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   23.14 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   23.15 +   width="744.09448819"
   23.16 +   height="1052.3622047"
   23.17 +   id="svg5971"
   23.18 +   sodipodi:version="0.32"
   23.19 +   inkscape:version="0.44.1"
   23.20 +   sodipodi:docbase="/home/bos/hg/hgbook/en"
   23.21 +   sodipodi:docname="wdir-branch.svg">
   23.22 +  <defs
   23.23 +     id="defs5973">
   23.24 +    <marker
   23.25 +       inkscape:stockid="Arrow1Mstart"
   23.26 +       orient="auto"
   23.27 +       refY="0.0"
   23.28 +       refX="0.0"
   23.29 +       id="Arrow1Mstart"
   23.30 +       style="overflow:visible">
   23.31 +      <path
   23.32 +         id="path4855"
   23.33 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   23.34 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
   23.35 +         transform="scale(0.4) translate(10,0)" />
   23.36 +    </marker>
   23.37 +    <linearGradient
   23.38 +       id="linearGradient6049">
   23.39 +      <stop
   23.40 +         style="stop-color:#686868;stop-opacity:1;"
   23.41 +         offset="0"
   23.42 +         id="stop6051" />
   23.43 +      <stop
   23.44 +         style="stop-color:#f0f0f0;stop-opacity:1;"
   23.45 +         offset="1"
   23.46 +         id="stop6053" />
   23.47 +    </linearGradient>
   23.48 +    <marker
   23.49 +       inkscape:stockid="Arrow1Mend"
   23.50 +       orient="auto"
   23.51 +       refY="0.0"
   23.52 +       refX="0.0"
   23.53 +       id="Arrow1Mend"
   23.54 +       style="overflow:visible;">
   23.55 +      <path
   23.56 +         id="path4852"
   23.57 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   23.58 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
   23.59 +         transform="scale(0.4) rotate(180) translate(10,0)" />
   23.60 +    </marker>
   23.61 +    <linearGradient
   23.62 +       inkscape:collect="always"
   23.63 +       xlink:href="#linearGradient6049"
   23.64 +       id="linearGradient6083"
   23.65 +       gradientUnits="userSpaceOnUse"
   23.66 +       gradientTransform="translate(-240.0462,-8.633237e-6)"
   23.67 +       x1="333.91171"
   23.68 +       y1="488.79077"
   23.69 +       x2="508.94543"
   23.70 +       y2="263.79077" />
   23.71 +    <linearGradient
   23.72 +       inkscape:collect="always"
   23.73 +       xlink:href="#linearGradient6049"
   23.74 +       id="linearGradient6142"
   23.75 +       gradientUnits="userSpaceOnUse"
   23.76 +       gradientTransform="translate(-42.00893,-30.49544)"
   23.77 +       x1="333.91171"
   23.78 +       y1="488.79077"
   23.79 +       x2="508.94543"
   23.80 +       y2="263.79077" />
   23.81 +    <linearGradient
   23.82 +       inkscape:collect="always"
   23.83 +       xlink:href="#linearGradient6049"
   23.84 +       id="linearGradient6193"
   23.85 +       gradientUnits="userSpaceOnUse"
   23.86 +       gradientTransform="translate(-240.0462,-8.633237e-6)"
   23.87 +       x1="333.91171"
   23.88 +       y1="488.79077"
   23.89 +       x2="508.94543"
   23.90 +       y2="263.79077" />
   23.91 +    <linearGradient
   23.92 +       inkscape:collect="always"
   23.93 +       xlink:href="#linearGradient6049"
   23.94 +       id="linearGradient6216"
   23.95 +       gradientUnits="userSpaceOnUse"
   23.96 +       gradientTransform="matrix(1.000474,0,0,0.790947,-240.246,50.9948)"
   23.97 +       x1="333.91171"
   23.98 +       y1="488.79077"
   23.99 +       x2="508.94543"
  23.100 +       y2="263.79077" />
  23.101 +    <linearGradient
  23.102 +       inkscape:collect="always"
  23.103 +       xlink:href="#linearGradient6049"
  23.104 +       id="linearGradient6232"
  23.105 +       gradientUnits="userSpaceOnUse"
  23.106 +       gradientTransform="matrix(1.000473,0,0,0.790947,-11.16012,50.85693)"
  23.107 +       x1="333.91171"
  23.108 +       y1="488.79077"
  23.109 +       x2="508.94543"
  23.110 +       y2="263.79077" />
  23.111 +    <linearGradient
  23.112 +       inkscape:collect="always"
  23.113 +       xlink:href="#linearGradient6049"
  23.114 +       id="linearGradient6445"
  23.115 +       gradientUnits="userSpaceOnUse"
  23.116 +       gradientTransform="matrix(1.000474,0,0,0.790947,-240.246,50.9948)"
  23.117 +       x1="333.91171"
  23.118 +       y1="488.79077"
  23.119 +       x2="508.94543"
  23.120 +       y2="263.79077" />
  23.121 +    <linearGradient
  23.122 +       inkscape:collect="always"
  23.123 +       xlink:href="#linearGradient6049"
  23.124 +       id="linearGradient6974"
  23.125 +       gradientUnits="userSpaceOnUse"
  23.126 +       gradientTransform="matrix(1.911882,0,0,0.789965,-574.7896,51.22599)"
  23.127 +       x1="333.91171"
  23.128 +       y1="488.79077"
  23.129 +       x2="508.94543"
  23.130 +       y2="263.79077" />
  23.131 +    <linearGradient
  23.132 +       inkscape:collect="always"
  23.133 +       xlink:href="#linearGradient6049"
  23.134 +       id="linearGradient6996"
  23.135 +       gradientUnits="userSpaceOnUse"
  23.136 +       gradientTransform="matrix(1.000473,0,0,0.790947,112.8399,50.85693)"
  23.137 +       x1="333.91171"
  23.138 +       y1="488.79077"
  23.139 +       x2="508.94543"
  23.140 +       y2="263.79077" />
  23.141 +  </defs>
  23.142 +  <sodipodi:namedview
  23.143 +     id="base"
  23.144 +     pagecolor="#ffffff"
  23.145 +     bordercolor="#666666"
  23.146 +     borderopacity="1.0"
  23.147 +     gridtolerance="10000"
  23.148 +     guidetolerance="10"
  23.149 +     objecttolerance="10"
  23.150 +     inkscape:pageopacity="0.0"
  23.151 +     inkscape:pageshadow="2"
  23.152 +     inkscape:zoom="0.90509668"
  23.153 +     inkscape:cx="345.85973"
  23.154 +     inkscape:cy="690.49342"
  23.155 +     inkscape:document-units="px"
  23.156 +     inkscape:current-layer="layer1"
  23.157 +     showguides="true"
  23.158 +     inkscape:guide-bbox="true"
  23.159 +     inkscape:window-width="906"
  23.160 +     inkscape:window-height="620"
  23.161 +     inkscape:window-x="0"
  23.162 +     inkscape:window-y="25">
  23.163 +    <sodipodi:guide
  23.164 +       orientation="vertical"
  23.165 +       position="-1.4285714"
  23.166 +       id="guide6022" />
  23.167 +  </sodipodi:namedview>
  23.168 +  <metadata
  23.169 +     id="metadata5976">
  23.170 +    <rdf:RDF>
  23.171 +      <cc:Work
  23.172 +         rdf:about="">
  23.173 +        <dc:format>image/svg+xml</dc:format>
  23.174 +        <dc:type
  23.175 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  23.176 +      </cc:Work>
  23.177 +    </rdf:RDF>
  23.178 +  </metadata>
  23.179 +  <g
  23.180 +     inkscape:label="Layer 1"
  23.181 +     inkscape:groupmode="layer"
  23.182 +     id="layer1">
  23.183 +    <rect
  23.184 +       y="246.06918"
  23.185 +       x="64.325172"
  23.186 +       height="204.26233"
  23.187 +       width="333.2135"
  23.188 +       id="rect6047"
  23.189 +       style="fill:url(#linearGradient6974);fill-opacity:1;stroke:#686868;stroke-width:0.91925466;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  23.190 +    <g
  23.191 +       id="g1935">
  23.192 +      <rect
  23.193 +         y="266.24374"
  23.194 +         x="84.113708"
  23.195 +         height="44.537449"
  23.196 +         width="134.53746"
  23.197 +         id="rect5996"
  23.198 +         style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1" />
  23.199 +      <text
  23.200 +         id="text5998"
  23.201 +         y="292.00446"
  23.202 +         x="108.7962"
  23.203 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  23.204 +         xml:space="preserve"><tspan
  23.205 +           style="font-family:Courier"
  23.206 +           y="292.00446"
  23.207 +           x="108.7962"
  23.208 +           id="tspan6000"
  23.209 +           sodipodi:role="line">e7639888bb2f</tspan></text>
  23.210 +    </g>
  23.211 +    <g
  23.212 +       id="g6976"
  23.213 +       transform="translate(70,0)">
  23.214 +      <rect
  23.215 +         y="327.9104"
  23.216 +         x="40.113693"
  23.217 +         height="44.537449"
  23.218 +         width="134.53746"
  23.219 +         id="rect6004"
  23.220 +         style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1" />
  23.221 +      <text
  23.222 +         id="text6006"
  23.223 +         y="353.67111"
  23.224 +         x="62.654205"
  23.225 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  23.226 +         xml:space="preserve"><tspan
  23.227 +           style="font-family:Courier"
  23.228 +           y="353.67111"
  23.229 +           x="62.654205"
  23.230 +           id="tspan6008"
  23.231 +           sodipodi:role="line">7b064d8bac5e</tspan></text>
  23.232 +    </g>
  23.233 +    <path
  23.234 +       inkscape:connector-type="polyline"
  23.235 +       id="path6020"
  23.236 +       d="M 160.92915,311.15532 L 167.83571,327.53627"
  23.237 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
  23.238 +       inkscape:connection-end="#g6976"
  23.239 +       inkscape:connection-start="#g1935" />
  23.240 +    <rect
  23.241 +       style="fill:#ededed;fill-opacity:1;stroke:#797979;stroke-width:0.74800003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  23.242 +       id="rect6039"
  23.243 +       width="134.53746"
  23.244 +       height="44.537449"
  23.245 +       x="110.11359"
  23.246 +       y="389.57703" />
  23.247 +    <text
  23.248 +       xml:space="preserve"
  23.249 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#979797;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  23.250 +       x="134.79706"
  23.251 +       y="415.33771"
  23.252 +       id="text6041"><tspan
  23.253 +         sodipodi:role="line"
  23.254 +         id="tspan6043"
  23.255 +         x="134.79706"
  23.256 +         y="415.33771"
  23.257 +         style="fill:#979797;fill-opacity:1;font-family:Courier">000000000000</tspan></text>
  23.258 +    <path
  23.259 +       inkscape:connection-end="#rect6039"
  23.260 +       inkscape:connector-type="polyline"
  23.261 +       id="path6045"
  23.262 +       d="M 177.38238,372.82195 L 177.38235,389.20303"
  23.263 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#686868;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1" />
  23.264 +    <rect
  23.265 +       y="245.94225"
  23.266 +       x="447.28412"
  23.267 +       height="204.51619"
  23.268 +       width="174.36833"
  23.269 +       id="rect6140"
  23.270 +       style="fill:url(#linearGradient6996);fill-opacity:1;stroke:#686868;stroke-width:0.66539276;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  23.271 +    <g
  23.272 +       id="g6130"
  23.273 +       transform="translate(152.3254,24.38544)">
  23.274 +      <rect
  23.275 +         style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1"
  23.276 +         id="rect6106"
  23.277 +         width="134.53746"
  23.278 +         height="44.537449"
  23.279 +         x="314.87415"
  23.280 +         y="257.95059" />
  23.281 +      <text
  23.282 +         xml:space="preserve"
  23.283 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  23.284 +         x="339.55664"
  23.285 +         y="283.7113"
  23.286 +         id="text6108"><tspan
  23.287 +           sodipodi:role="line"
  23.288 +           id="tspan6110"
  23.289 +           x="339.55664"
  23.290 +           y="283.7113"
  23.291 +           style="font-family:Courier">ffb20e1701ea</tspan></text>
  23.292 +    </g>
  23.293 +    <g
  23.294 +       id="g6135"
  23.295 +       transform="translate(153.0396,49.83106)">
  23.296 +      <rect
  23.297 +         inkscape:transform-center-y="102.85714"
  23.298 +         inkscape:transform-center-x="129.28571"
  23.299 +         style="fill:#ededed;fill-opacity:1;stroke:#797979;stroke-width:0.74800003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  23.300 +         id="rect6112"
  23.301 +         width="134.53746"
  23.302 +         height="44.537449"
  23.303 +         x="314.15985"
  23.304 +         y="326.52203" />
  23.305 +      <text
  23.306 +         inkscape:transform-center-y="102.7311"
  23.307 +         inkscape:transform-center-x="128.69672"
  23.308 +         xml:space="preserve"
  23.309 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:#979797;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  23.310 +         x="338.84335"
  23.311 +         y="352.28271"
  23.312 +         id="text6114"><tspan
  23.313 +           sodipodi:role="line"
  23.314 +           id="tspan6116"
  23.315 +           x="338.84335"
  23.316 +           y="352.28271"
  23.317 +           style="fill:#979797;fill-opacity:1;font-family:Courier">000000000000</tspan></text>
  23.318 +    </g>
  23.319 +    <text
  23.320 +       xml:space="preserve"
  23.321 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  23.322 +       x="466.63208"
  23.323 +       y="270.479"
  23.324 +       id="text6118"><tspan
  23.325 +         sodipodi:role="line"
  23.326 +         id="tspan6120"
  23.327 +         x="466.63208"
  23.328 +         y="270.479">Primo genitore</tspan></text>
  23.329 +    <text
  23.330 +       xml:space="preserve"
  23.331 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  23.332 +       x="466.07544"
  23.333 +       y="364.49615"
  23.334 +       id="text6122"><tspan
  23.335 +         sodipodi:role="line"
  23.336 +         id="tspan6124"
  23.337 +         x="466.07544"
  23.338 +         y="364.49615">Secondo genitore</tspan></text>
  23.339 +    <text
  23.340 +       xml:space="preserve"
  23.341 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  23.342 +       x="446.61743"
  23.343 +       y="231.36218"
  23.344 +       id="text6195"><tspan
  23.345 +         sodipodi:role="line"
  23.346 +         id="tspan6197"
  23.347 +         x="446.61743"
  23.348 +         y="231.36218">Genitori della directory di lavoro</tspan></text>
  23.349 +    <path
  23.350 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
  23.351 +       d="M 466.82542,300.21999 L 377.00207,294.39744"
  23.352 +       id="path6266"
  23.353 +       inkscape:connector-type="polyline"
  23.354 +       inkscape:connection-start="#g6130"
  23.355 +       inkscape:connection-end="#rect1925" />
  23.356 +    <path
  23.357 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  23.358 +       d="M 665.12232,418.17579 L 665.12232,418.17579"
  23.359 +       id="path6270"
  23.360 +       inkscape:connector-type="polyline" />
  23.361 +    <g
  23.362 +       id="g2845">
  23.363 +      <rect
  23.364 +         y="266.24374"
  23.365 +         x="242.09048"
  23.366 +         height="44.537449"
  23.367 +         width="134.53746"
  23.368 +         id="rect1925"
  23.369 +         style="fill:#9f9f9f;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1" />
  23.370 +      <text
  23.371 +         id="text1927"
  23.372 +         y="292.00446"
  23.373 +         x="266.77298"
  23.374 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  23.375 +         xml:space="preserve"><tspan
  23.376 +           style="font-family:Courier"
  23.377 +           y="292.00446"
  23.378 +           x="266.77298"
  23.379 +           id="tspan1929"
  23.380 +           sodipodi:role="line">ffb20e1701ea</tspan></text>
  23.381 +    </g>
  23.382 +    <path
  23.383 +       inkscape:connector-type="polyline"
  23.384 +       id="path1933"
  23.385 +       d="M 260.89978,311.15532 L 225.84185,327.53627"
  23.386 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
  23.387 +       inkscape:connection-end="#g6976" />
  23.388 +    <text
  23.389 +       xml:space="preserve"
  23.390 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  23.391 +       x="109.45568"
  23.392 +       y="231.4554"
  23.393 +       id="text2837"><tspan
  23.394 +         sodipodi:role="line"
  23.395 +         id="tspan2839"
  23.396 +         x="109.45568"
  23.397 +         y="231.4554">Testa preesistente</tspan></text>
  23.398 +    <text
  23.399 +       xml:space="preserve"
  23.400 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  23.401 +       x="237.54184"
  23.402 +       y="231.4554"
  23.403 +       id="text2841"><tspan
  23.404 +         sodipodi:role="line"
  23.405 +         id="tspan2843"
  23.406 +         x="237.54184"
  23.407 +         y="231.4554">Testa appena creata (e punta)</tspan></text>
  23.408 +    <path
  23.409 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
  23.410 +       d="M 148.05048,235.87482 L 149.94915,265.86962"
  23.411 +       id="path2850"
  23.412 +       inkscape:connector-type="polyline"
  23.413 +       inkscape:connection-end="#g1935" />
  23.414 +    <path
  23.415 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
  23.416 +       d="M 303.83495,238.08453 L 306.87874,265.86962"
  23.417 +       id="path2852"
  23.418 +       inkscape:connector-type="polyline"
  23.419 +       inkscape:connection-end="#g2845" />
  23.420 +  </g>
  23.421 +</svg>
    24.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    24.2 +++ b/it/figs/wdir-merge.svg	Tue Aug 18 17:19:30 2009 +0200
    24.3 @@ -0,0 +1,425 @@
    24.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    24.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    24.6 +<svg
    24.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    24.8 +   xmlns:cc="http://web.resource.org/cc/"
    24.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   24.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   24.11 +   xmlns="http://www.w3.org/2000/svg"
   24.12 +   xmlns:xlink="http://www.w3.org/1999/xlink"
   24.13 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   24.14 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   24.15 +   width="744.09448819"
   24.16 +   height="1052.3622047"
   24.17 +   id="svg5971"
   24.18 +   sodipodi:version="0.32"
   24.19 +   inkscape:version="0.44.1"
   24.20 +   sodipodi:docbase="/home/bos/hg/hgbook/en"
   24.21 +   sodipodi:docname="wdir-merge.svg">
   24.22 +  <defs
   24.23 +     id="defs5973">
   24.24 +    <marker
   24.25 +       inkscape:stockid="Arrow1Mstart"
   24.26 +       orient="auto"
   24.27 +       refY="0.0"
   24.28 +       refX="0.0"
   24.29 +       id="Arrow1Mstart"
   24.30 +       style="overflow:visible">
   24.31 +      <path
   24.32 +         id="path4855"
   24.33 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   24.34 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
   24.35 +         transform="scale(0.4) translate(10,0)" />
   24.36 +    </marker>
   24.37 +    <linearGradient
   24.38 +       id="linearGradient6049">
   24.39 +      <stop
   24.40 +         style="stop-color:#686868;stop-opacity:1;"
   24.41 +         offset="0"
   24.42 +         id="stop6051" />
   24.43 +      <stop
   24.44 +         style="stop-color:#f0f0f0;stop-opacity:1;"
   24.45 +         offset="1"
   24.46 +         id="stop6053" />
   24.47 +    </linearGradient>
   24.48 +    <marker
   24.49 +       inkscape:stockid="Arrow1Mend"
   24.50 +       orient="auto"
   24.51 +       refY="0.0"
   24.52 +       refX="0.0"
   24.53 +       id="Arrow1Mend"
   24.54 +       style="overflow:visible;">
   24.55 +      <path
   24.56 +         id="path4852"
   24.57 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   24.58 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
   24.59 +         transform="scale(0.4) rotate(180) translate(10,0)" />
   24.60 +    </marker>
   24.61 +    <linearGradient
   24.62 +       inkscape:collect="always"
   24.63 +       xlink:href="#linearGradient6049"
   24.64 +       id="linearGradient6083"
   24.65 +       gradientUnits="userSpaceOnUse"
   24.66 +       gradientTransform="translate(-240.0462,-8.633237e-6)"
   24.67 +       x1="333.91171"
   24.68 +       y1="488.79077"
   24.69 +       x2="508.94543"
   24.70 +       y2="263.79077" />
   24.71 +    <linearGradient
   24.72 +       inkscape:collect="always"
   24.73 +       xlink:href="#linearGradient6049"
   24.74 +       id="linearGradient6142"
   24.75 +       gradientUnits="userSpaceOnUse"
   24.76 +       gradientTransform="translate(-42.00893,-30.49544)"
   24.77 +       x1="333.91171"
   24.78 +       y1="488.79077"
   24.79 +       x2="508.94543"
   24.80 +       y2="263.79077" />
   24.81 +    <linearGradient
   24.82 +       inkscape:collect="always"
   24.83 +       xlink:href="#linearGradient6049"
   24.84 +       id="linearGradient6193"
   24.85 +       gradientUnits="userSpaceOnUse"
   24.86 +       gradientTransform="translate(-240.0462,-8.633237e-6)"
   24.87 +       x1="333.91171"
   24.88 +       y1="488.79077"
   24.89 +       x2="508.94543"
   24.90 +       y2="263.79077" />
   24.91 +    <linearGradient
   24.92 +       inkscape:collect="always"
   24.93 +       xlink:href="#linearGradient6049"
   24.94 +       id="linearGradient6216"
   24.95 +       gradientUnits="userSpaceOnUse"
   24.96 +       gradientTransform="matrix(1.000474,0,0,0.790947,-240.246,50.9948)"
   24.97 +       x1="333.91171"
   24.98 +       y1="488.79077"
   24.99 +       x2="508.94543"
  24.100 +       y2="263.79077" />
  24.101 +    <linearGradient
  24.102 +       inkscape:collect="always"
  24.103 +       xlink:href="#linearGradient6049"
  24.104 +       id="linearGradient6232"
  24.105 +       gradientUnits="userSpaceOnUse"
  24.106 +       gradientTransform="matrix(1.000473,0,0,0.790947,-11.16012,50.85693)"
  24.107 +       x1="333.91171"
  24.108 +       y1="488.79077"
  24.109 +       x2="508.94543"
  24.110 +       y2="263.79077" />
  24.111 +    <linearGradient
  24.112 +       inkscape:collect="always"
  24.113 +       xlink:href="#linearGradient6049"
  24.114 +       id="linearGradient6445"
  24.115 +       gradientUnits="userSpaceOnUse"
  24.116 +       gradientTransform="matrix(1.000474,0,0,0.790947,-240.246,50.9948)"
  24.117 +       x1="333.91171"
  24.118 +       y1="488.79077"
  24.119 +       x2="508.94543"
  24.120 +       y2="263.79077" />
  24.121 +    <linearGradient
  24.122 +       inkscape:collect="always"
  24.123 +       xlink:href="#linearGradient6049"
  24.124 +       id="linearGradient6974"
  24.125 +       gradientUnits="userSpaceOnUse"
  24.126 +       gradientTransform="matrix(1.911882,0,0,0.789965,-574.7896,51.22599)"
  24.127 +       x1="333.91171"
  24.128 +       y1="488.79077"
  24.129 +       x2="508.94543"
  24.130 +       y2="263.79077" />
  24.131 +    <linearGradient
  24.132 +       inkscape:collect="always"
  24.133 +       xlink:href="#linearGradient6049"
  24.134 +       id="linearGradient6996"
  24.135 +       gradientUnits="userSpaceOnUse"
  24.136 +       gradientTransform="matrix(1.000473,0,0,0.790947,112.8399,50.85693)"
  24.137 +       x1="333.91171"
  24.138 +       y1="488.79077"
  24.139 +       x2="508.94543"
  24.140 +       y2="263.79077" />
  24.141 +  </defs>
  24.142 +  <sodipodi:namedview
  24.143 +     id="base"
  24.144 +     pagecolor="#ffffff"
  24.145 +     bordercolor="#666666"
  24.146 +     borderopacity="1.0"
  24.147 +     gridtolerance="10000"
  24.148 +     guidetolerance="10"
  24.149 +     objecttolerance="10"
  24.150 +     inkscape:pageopacity="0.0"
  24.151 +     inkscape:pageshadow="2"
  24.152 +     inkscape:zoom="1.28"
  24.153 +     inkscape:cx="345.85973"
  24.154 +     inkscape:cy="690.49342"
  24.155 +     inkscape:document-units="px"
  24.156 +     inkscape:current-layer="layer1"
  24.157 +     showguides="true"
  24.158 +     inkscape:guide-bbox="true"
  24.159 +     inkscape:window-width="906"
  24.160 +     inkscape:window-height="620"
  24.161 +     inkscape:window-x="0"
  24.162 +     inkscape:window-y="25">
  24.163 +    <sodipodi:guide
  24.164 +       orientation="vertical"
  24.165 +       position="-1.4285714"
  24.166 +       id="guide6022" />
  24.167 +  </sodipodi:namedview>
  24.168 +  <metadata
  24.169 +     id="metadata5976">
  24.170 +    <rdf:RDF>
  24.171 +      <cc:Work
  24.172 +         rdf:about="">
  24.173 +        <dc:format>image/svg+xml</dc:format>
  24.174 +        <dc:type
  24.175 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  24.176 +      </cc:Work>
  24.177 +    </rdf:RDF>
  24.178 +  </metadata>
  24.179 +  <g
  24.180 +     inkscape:label="Layer 1"
  24.181 +     inkscape:groupmode="layer"
  24.182 +     id="layer1">
  24.183 +    <rect
  24.184 +       y="246.06918"
  24.185 +       x="64.325172"
  24.186 +       height="204.26233"
  24.187 +       width="333.2135"
  24.188 +       id="rect6047"
  24.189 +       style="fill:url(#linearGradient6974);fill-opacity:1;stroke:#686868;stroke-width:0.91925466;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  24.190 +    <g
  24.191 +       id="g6976"
  24.192 +       transform="translate(70,0)">
  24.193 +      <rect
  24.194 +         y="327.9104"
  24.195 +         x="40.113693"
  24.196 +         height="44.537449"
  24.197 +         width="134.53746"
  24.198 +         id="rect6004"
  24.199 +         style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1" />
  24.200 +      <text
  24.201 +         id="text6006"
  24.202 +         y="353.67111"
  24.203 +         x="62.654205"
  24.204 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  24.205 +         xml:space="preserve"><tspan
  24.206 +           style="font-family:Courier"
  24.207 +           y="353.67111"
  24.208 +           x="62.654205"
  24.209 +           id="tspan6008"
  24.210 +           sodipodi:role="line">7b064d8bac5e</tspan></text>
  24.211 +    </g>
  24.212 +    <path
  24.213 +       inkscape:connector-type="polyline"
  24.214 +       id="path6020"
  24.215 +       d="M 160.92915,311.15532 L 167.83571,327.53627"
  24.216 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
  24.217 +       inkscape:connection-end="#g6976"
  24.218 +       inkscape:connection-start="#g1935" />
  24.219 +    <rect
  24.220 +       style="fill:#ededed;fill-opacity:1;stroke:#797979;stroke-width:0.74800003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  24.221 +       id="rect6039"
  24.222 +       width="134.53746"
  24.223 +       height="44.537449"
  24.224 +       x="110.11359"
  24.225 +       y="389.57703" />
  24.226 +    <text
  24.227 +       xml:space="preserve"
  24.228 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#979797;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  24.229 +       x="134.79706"
  24.230 +       y="415.33771"
  24.231 +       id="text6041"><tspan
  24.232 +         sodipodi:role="line"
  24.233 +         id="tspan6043"
  24.234 +         x="134.79706"
  24.235 +         y="415.33771"
  24.236 +         style="fill:#979797;fill-opacity:1;font-family:Courier">000000000000</tspan></text>
  24.237 +    <path
  24.238 +       inkscape:connection-end="#rect6039"
  24.239 +       inkscape:connector-type="polyline"
  24.240 +       id="path6045"
  24.241 +       d="M 177.38238,372.82195 L 177.38235,389.20303"
  24.242 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#686868;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1" />
  24.243 +    <rect
  24.244 +       y="245.94225"
  24.245 +       x="447.28412"
  24.246 +       height="204.51619"
  24.247 +       width="174.36833"
  24.248 +       id="rect6140"
  24.249 +       style="fill:url(#linearGradient6996);fill-opacity:1;stroke:#686868;stroke-width:0.66539276;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  24.250 +    <g
  24.251 +       id="g6130"
  24.252 +       transform="translate(152.3254,24.38544)">
  24.253 +      <rect
  24.254 +         style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1"
  24.255 +         id="rect6106"
  24.256 +         width="134.53746"
  24.257 +         height="44.537449"
  24.258 +         x="314.87415"
  24.259 +         y="257.95059" />
  24.260 +      <text
  24.261 +         xml:space="preserve"
  24.262 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  24.263 +         x="339.55664"
  24.264 +         y="283.7113"
  24.265 +         id="text6108"><tspan
  24.266 +           sodipodi:role="line"
  24.267 +           id="tspan6110"
  24.268 +           x="339.55664"
  24.269 +           y="283.7113"
  24.270 +           style="font-family:Courier">ffb20e1701ea</tspan></text>
  24.271 +    </g>
  24.272 +    <g
  24.273 +       id="g6135"
  24.274 +       transform="translate(153.0396,49.83106)">
  24.275 +      <rect
  24.276 +         inkscape:transform-center-y="102.85714"
  24.277 +         inkscape:transform-center-x="129.28571"
  24.278 +         style="fill:#d4d4d4;fill-opacity:1;stroke:#797979;stroke-width:0.74800003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  24.279 +         id="rect6112"
  24.280 +         width="134.53746"
  24.281 +         height="44.537449"
  24.282 +         x="314.15985"
  24.283 +         y="326.52203" />
  24.284 +      <text
  24.285 +         inkscape:transform-center-y="102.7311"
  24.286 +         inkscape:transform-center-x="128.69672"
  24.287 +         xml:space="preserve"
  24.288 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:#979797;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  24.289 +         x="338.84335"
  24.290 +         y="352.28271"
  24.291 +         id="text6114"><tspan
  24.292 +           sodipodi:role="line"
  24.293 +           id="tspan6116"
  24.294 +           x="338.84335"
  24.295 +           y="352.28271"
  24.296 +           style="fill:black;fill-opacity:1;font-family:Courier">e7639888bb2f</tspan></text>
  24.297 +    </g>
  24.298 +    <text
  24.299 +       xml:space="preserve"
  24.300 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  24.301 +       x="466.63208"
  24.302 +       y="270.479"
  24.303 +       id="text6118"><tspan
  24.304 +         sodipodi:role="line"
  24.305 +         id="tspan6120"
  24.306 +         x="466.63208"
  24.307 +         y="270.479">Primo genitore (invariato)</tspan></text>
  24.308 +    <text
  24.309 +       xml:space="preserve"
  24.310 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  24.311 +       x="466.07544"
  24.312 +       y="364.49615"
  24.313 +       id="text6122"><tspan
  24.314 +         sodipodi:role="line"
  24.315 +         id="tspan6124"
  24.316 +         x="466.07544"
  24.317 +         y="364.49615">Secondo genitore</tspan></text>
  24.318 +    <text
  24.319 +       xml:space="preserve"
  24.320 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  24.321 +       x="446.61743"
  24.322 +       y="231.36218"
  24.323 +       id="text6195"><tspan
  24.324 +         sodipodi:role="line"
  24.325 +         id="tspan6197"
  24.326 +         x="446.61743"
  24.327 +         y="231.36218">Genitori della directory di lavoro</tspan></text>
  24.328 +    <path
  24.329 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
  24.330 +       d="M 466.82542,300.21999 L 377.00207,294.39744"
  24.331 +       id="path6266"
  24.332 +       inkscape:connector-type="polyline"
  24.333 +       inkscape:connection-start="#g6130"
  24.334 +       inkscape:connection-end="#rect1925" />
  24.335 +    <path
  24.336 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  24.337 +       d="M 665.12232,418.17579 L 665.12232,418.17579"
  24.338 +       id="path6270"
  24.339 +       inkscape:connector-type="polyline" />
  24.340 +    <g
  24.341 +       id="g2845">
  24.342 +      <rect
  24.343 +         y="266.24374"
  24.344 +         x="242.09048"
  24.345 +         height="44.537449"
  24.346 +         width="134.53746"
  24.347 +         id="rect1925"
  24.348 +         style="fill:#9f9f9f;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1" />
  24.349 +      <text
  24.350 +         id="text1927"
  24.351 +         y="292.00446"
  24.352 +         x="266.77298"
  24.353 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  24.354 +         xml:space="preserve"><tspan
  24.355 +           style="font-family:Courier"
  24.356 +           y="292.00446"
  24.357 +           x="266.77298"
  24.358 +           id="tspan1929"
  24.359 +           sodipodi:role="line">ffb20e1701ea</tspan></text>
  24.360 +    </g>
  24.361 +    <path
  24.362 +       inkscape:connector-type="polyline"
  24.363 +       id="path1933"
  24.364 +       d="M 260.89978,311.15532 L 225.84185,327.53627"
  24.365 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1;display:inline"
  24.366 +       inkscape:connection-end="#g6976" />
  24.367 +    <text
  24.368 +       xml:space="preserve"
  24.369 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  24.370 +       x="109.45568"
  24.371 +       y="231.4554"
  24.372 +       id="text2837"><tspan
  24.373 +         sodipodi:role="line"
  24.374 +         id="tspan2839"
  24.375 +         x="109.45568"
  24.376 +         y="231.4554">Testa preesistente</tspan></text>
  24.377 +    <text
  24.378 +       xml:space="preserve"
  24.379 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  24.380 +       x="237.54184"
  24.381 +       y="231.4554"
  24.382 +       id="text2841"><tspan
  24.383 +         sodipodi:role="line"
  24.384 +         id="tspan2843"
  24.385 +         x="237.54184"
  24.386 +         y="231.4554">Testa appena creata (e punta)</tspan></text>
  24.387 +    <path
  24.388 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
  24.389 +       d="M 148.05048,235.87482 L 149.94915,265.86962"
  24.390 +       id="path2850"
  24.391 +       inkscape:connector-type="polyline"
  24.392 +       inkscape:connection-end="#g1935" />
  24.393 +    <path
  24.394 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)"
  24.395 +       d="M 303.83495,238.08453 L 306.87874,265.86962"
  24.396 +       id="path2852"
  24.397 +       inkscape:connector-type="polyline"
  24.398 +       inkscape:connection-end="#g2845" />
  24.399 +    <path
  24.400 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
  24.401 +       d="M 466.82545,379.17944 L 219.0253,307.95488"
  24.402 +       id="path3016"
  24.403 +       inkscape:connector-type="polyline"
  24.404 +       inkscape:connection-start="#g6135"
  24.405 +       inkscape:connection-end="#g1935" />
  24.406 +    <g
  24.407 +       id="g1935">
  24.408 +      <rect
  24.409 +         y="266.24374"
  24.410 +         x="84.113708"
  24.411 +         height="44.537449"
  24.412 +         width="134.53746"
  24.413 +         id="rect5996"
  24.414 +         style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1" />
  24.415 +      <text
  24.416 +         id="text5998"
  24.417 +         y="292.00446"
  24.418 +         x="108.7962"
  24.419 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  24.420 +         xml:space="preserve"><tspan
  24.421 +           style="font-family:Courier"
  24.422 +           y="292.00446"
  24.423 +           x="108.7962"
  24.424 +           id="tspan6000"
  24.425 +           sodipodi:role="line">e7639888bb2f</tspan></text>
  24.426 +    </g>
  24.427 +  </g>
  24.428 +</svg>
    25.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    25.2 +++ b/it/figs/wdir-pre-branch.svg	Tue Aug 18 17:19:30 2009 +0200
    25.3 @@ -0,0 +1,364 @@
    25.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    25.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    25.6 +<svg
    25.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    25.8 +   xmlns:cc="http://web.resource.org/cc/"
    25.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   25.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   25.11 +   xmlns="http://www.w3.org/2000/svg"
   25.12 +   xmlns:xlink="http://www.w3.org/1999/xlink"
   25.13 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   25.14 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   25.15 +   width="744.09448819"
   25.16 +   height="1052.3622047"
   25.17 +   id="svg5971"
   25.18 +   sodipodi:version="0.32"
   25.19 +   inkscape:version="0.44.1"
   25.20 +   sodipodi:docbase="/home/bos/hg/hgbook/en"
   25.21 +   sodipodi:docname="wdir-branch.svg">
   25.22 +  <defs
   25.23 +     id="defs5973">
   25.24 +    <marker
   25.25 +       inkscape:stockid="Arrow1Mstart"
   25.26 +       orient="auto"
   25.27 +       refY="0.0"
   25.28 +       refX="0.0"
   25.29 +       id="Arrow1Mstart"
   25.30 +       style="overflow:visible">
   25.31 +      <path
   25.32 +         id="path4855"
   25.33 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   25.34 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
   25.35 +         transform="scale(0.4) translate(10,0)" />
   25.36 +    </marker>
   25.37 +    <linearGradient
   25.38 +       id="linearGradient6049">
   25.39 +      <stop
   25.40 +         style="stop-color:#686868;stop-opacity:1;"
   25.41 +         offset="0"
   25.42 +         id="stop6051" />
   25.43 +      <stop
   25.44 +         style="stop-color:#f0f0f0;stop-opacity:1;"
   25.45 +         offset="1"
   25.46 +         id="stop6053" />
   25.47 +    </linearGradient>
   25.48 +    <marker
   25.49 +       inkscape:stockid="Arrow1Mend"
   25.50 +       orient="auto"
   25.51 +       refY="0.0"
   25.52 +       refX="0.0"
   25.53 +       id="Arrow1Mend"
   25.54 +       style="overflow:visible;">
   25.55 +      <path
   25.56 +         id="path4852"
   25.57 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   25.58 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
   25.59 +         transform="scale(0.4) rotate(180) translate(10,0)" />
   25.60 +    </marker>
   25.61 +    <linearGradient
   25.62 +       inkscape:collect="always"
   25.63 +       xlink:href="#linearGradient6049"
   25.64 +       id="linearGradient6083"
   25.65 +       gradientUnits="userSpaceOnUse"
   25.66 +       gradientTransform="translate(-240.0462,-8.633237e-6)"
   25.67 +       x1="333.91171"
   25.68 +       y1="488.79077"
   25.69 +       x2="508.94543"
   25.70 +       y2="263.79077" />
   25.71 +    <linearGradient
   25.72 +       inkscape:collect="always"
   25.73 +       xlink:href="#linearGradient6049"
   25.74 +       id="linearGradient6142"
   25.75 +       gradientUnits="userSpaceOnUse"
   25.76 +       gradientTransform="translate(-42.00893,-30.49544)"
   25.77 +       x1="333.91171"
   25.78 +       y1="488.79077"
   25.79 +       x2="508.94543"
   25.80 +       y2="263.79077" />
   25.81 +    <linearGradient
   25.82 +       inkscape:collect="always"
   25.83 +       xlink:href="#linearGradient6049"
   25.84 +       id="linearGradient6193"
   25.85 +       gradientUnits="userSpaceOnUse"
   25.86 +       gradientTransform="translate(-240.0462,-8.633237e-6)"
   25.87 +       x1="333.91171"
   25.88 +       y1="488.79077"
   25.89 +       x2="508.94543"
   25.90 +       y2="263.79077" />
   25.91 +    <linearGradient
   25.92 +       inkscape:collect="always"
   25.93 +       xlink:href="#linearGradient6049"
   25.94 +       id="linearGradient6216"
   25.95 +       gradientUnits="userSpaceOnUse"
   25.96 +       gradientTransform="matrix(1.000474,0,0,0.790947,-240.246,50.9948)"
   25.97 +       x1="333.91171"
   25.98 +       y1="488.79077"
   25.99 +       x2="508.94543"
  25.100 +       y2="263.79077" />
  25.101 +    <linearGradient
  25.102 +       inkscape:collect="always"
  25.103 +       xlink:href="#linearGradient6049"
  25.104 +       id="linearGradient6232"
  25.105 +       gradientUnits="userSpaceOnUse"
  25.106 +       gradientTransform="matrix(1.000473,0,0,0.790947,-11.16012,50.85693)"
  25.107 +       x1="333.91171"
  25.108 +       y1="488.79077"
  25.109 +       x2="508.94543"
  25.110 +       y2="263.79077" />
  25.111 +    <linearGradient
  25.112 +       inkscape:collect="always"
  25.113 +       xlink:href="#linearGradient6049"
  25.114 +       id="linearGradient6445"
  25.115 +       gradientUnits="userSpaceOnUse"
  25.116 +       gradientTransform="matrix(1.000474,0,0,0.790947,-240.246,50.9948)"
  25.117 +       x1="333.91171"
  25.118 +       y1="488.79077"
  25.119 +       x2="508.94543"
  25.120 +       y2="263.79077" />
  25.121 +    <linearGradient
  25.122 +       inkscape:collect="always"
  25.123 +       xlink:href="#linearGradient6049"
  25.124 +       id="linearGradient6974"
  25.125 +       gradientUnits="userSpaceOnUse"
  25.126 +       gradientTransform="matrix(1.000474,0,0,0.790947,-314.246,50.85694)"
  25.127 +       x1="333.91171"
  25.128 +       y1="488.79077"
  25.129 +       x2="508.94543"
  25.130 +       y2="263.79077" />
  25.131 +    <linearGradient
  25.132 +       inkscape:collect="always"
  25.133 +       xlink:href="#linearGradient6049"
  25.134 +       id="linearGradient6996"
  25.135 +       gradientUnits="userSpaceOnUse"
  25.136 +       gradientTransform="matrix(1.000473,0,0,0.790947,-85.16012,50.85693)"
  25.137 +       x1="333.91171"
  25.138 +       y1="488.79077"
  25.139 +       x2="508.94543"
  25.140 +       y2="263.79077" />
  25.141 +  </defs>
  25.142 +  <sodipodi:namedview
  25.143 +     id="base"
  25.144 +     pagecolor="#ffffff"
  25.145 +     bordercolor="#666666"
  25.146 +     borderopacity="1.0"
  25.147 +     gridtolerance="10000"
  25.148 +     guidetolerance="10"
  25.149 +     objecttolerance="10"
  25.150 +     inkscape:pageopacity="0.0"
  25.151 +     inkscape:pageshadow="2"
  25.152 +     inkscape:zoom="0.90509668"
  25.153 +     inkscape:cx="390.0539"
  25.154 +     inkscape:cy="690.49342"
  25.155 +     inkscape:document-units="px"
  25.156 +     inkscape:current-layer="layer1"
  25.157 +     showguides="true"
  25.158 +     inkscape:guide-bbox="true"
  25.159 +     inkscape:window-width="906"
  25.160 +     inkscape:window-height="620"
  25.161 +     inkscape:window-x="0"
  25.162 +     inkscape:window-y="25">
  25.163 +    <sodipodi:guide
  25.164 +       orientation="vertical"
  25.165 +       position="-1.4285714"
  25.166 +       id="guide6022" />
  25.167 +  </sodipodi:namedview>
  25.168 +  <metadata
  25.169 +     id="metadata5976">
  25.170 +    <rdf:RDF>
  25.171 +      <cc:Work
  25.172 +         rdf:about="">
  25.173 +        <dc:format>image/svg+xml</dc:format>
  25.174 +        <dc:type
  25.175 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  25.176 +      </cc:Work>
  25.177 +    </rdf:RDF>
  25.178 +  </metadata>
  25.179 +  <g
  25.180 +     inkscape:label="Layer 1"
  25.181 +     inkscape:groupmode="layer"
  25.182 +     id="layer1">
  25.183 +    <rect
  25.184 +       y="245.94225"
  25.185 +       x="20.198257"
  25.186 +       height="204.51619"
  25.187 +       width="174.36833"
  25.188 +       id="rect6047"
  25.189 +       style="fill:url(#linearGradient6974);fill-opacity:1;stroke:#686868;stroke-width:0.66539276;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  25.190 +    <rect
  25.191 +       style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1"
  25.192 +       id="rect5996"
  25.193 +       width="134.53746"
  25.194 +       height="44.537449"
  25.195 +       x="40.113693"
  25.196 +       y="266.24374" />
  25.197 +    <text
  25.198 +       xml:space="preserve"
  25.199 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  25.200 +       x="64.796204"
  25.201 +       y="292.00446"
  25.202 +       id="text5998"><tspan
  25.203 +         sodipodi:role="line"
  25.204 +         id="tspan6000"
  25.205 +         x="64.796204"
  25.206 +         y="292.00446"
  25.207 +         style="font-family:Courier">e7639888bb2f</tspan></text>
  25.208 +    <g
  25.209 +       id="g6976">
  25.210 +      <rect
  25.211 +         y="327.9104"
  25.212 +         x="40.113693"
  25.213 +         height="44.537449"
  25.214 +         width="134.53746"
  25.215 +         id="rect6004"
  25.216 +         style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1" />
  25.217 +      <text
  25.218 +         id="text6006"
  25.219 +         y="353.67111"
  25.220 +         x="62.654205"
  25.221 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  25.222 +         xml:space="preserve"><tspan
  25.223 +           style="font-family:Courier"
  25.224 +           y="353.67111"
  25.225 +           x="62.654205"
  25.226 +           id="tspan6008"
  25.227 +           sodipodi:role="line">7b064d8bac5e</tspan></text>
  25.228 +    </g>
  25.229 +    <path
  25.230 +       inkscape:connection-end="#rect6004"
  25.231 +       inkscape:connector-type="polyline"
  25.232 +       id="path6020"
  25.233 +       d="M 107.38242,311.15529 L 107.38242,327.53626"
  25.234 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1" />
  25.235 +    <rect
  25.236 +       style="fill:#ededed;fill-opacity:1;stroke:#797979;stroke-width:0.74800003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  25.237 +       id="rect6039"
  25.238 +       width="134.53746"
  25.239 +       height="44.537449"
  25.240 +       x="40.113571"
  25.241 +       y="389.57703" />
  25.242 +    <text
  25.243 +       xml:space="preserve"
  25.244 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:#979797;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  25.245 +       x="64.797073"
  25.246 +       y="415.33771"
  25.247 +       id="text6041"><tspan
  25.248 +         sodipodi:role="line"
  25.249 +         id="tspan6043"
  25.250 +         x="64.797073"
  25.251 +         y="415.33771"
  25.252 +         style="fill:#979797;fill-opacity:1;font-family:Courier">000000000000</tspan></text>
  25.253 +    <path
  25.254 +       inkscape:connection-end="#rect6039"
  25.255 +       inkscape:connector-type="polyline"
  25.256 +       id="path6045"
  25.257 +       d="M 107.38238,372.82195 L 107.38235,389.20301"
  25.258 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#686868;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1" />
  25.259 +    <text
  25.260 +       xml:space="preserve"
  25.261 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  25.262 +       x="19.660461"
  25.263 +       y="231.36218"
  25.264 +       id="text6102"><tspan
  25.265 +         sodipodi:role="line"
  25.266 +         id="tspan6104"
  25.267 +         x="19.660461"
  25.268 +         y="231.36218">Cronologia nel repository</tspan></text>
  25.269 +    <rect
  25.270 +       y="245.94225"
  25.271 +       x="249.28412"
  25.272 +       height="204.51619"
  25.273 +       width="174.36833"
  25.274 +       id="rect6140"
  25.275 +       style="fill:url(#linearGradient6996);fill-opacity:1;stroke:#686868;stroke-width:0.66539276;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  25.276 +    <g
  25.277 +       id="g6130"
  25.278 +       transform="translate(-45.67459,24.38544)">
  25.279 +      <rect
  25.280 +         style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1"
  25.281 +         id="rect6106"
  25.282 +         width="134.53746"
  25.283 +         height="44.537449"
  25.284 +         x="314.87415"
  25.285 +         y="257.95059" />
  25.286 +      <text
  25.287 +         xml:space="preserve"
  25.288 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  25.289 +         x="339.55664"
  25.290 +         y="283.7113"
  25.291 +         id="text6108"><tspan
  25.292 +           sodipodi:role="line"
  25.293 +           id="tspan6110"
  25.294 +           x="339.55664"
  25.295 +           y="283.7113"
  25.296 +           style="font-family:Courier">7b064d8bac5e</tspan></text>
  25.297 +    </g>
  25.298 +    <g
  25.299 +       id="g6135"
  25.300 +       transform="translate(-44.96042,49.83106)">
  25.301 +      <rect
  25.302 +         inkscape:transform-center-y="102.85714"
  25.303 +         inkscape:transform-center-x="129.28571"
  25.304 +         style="fill:#ededed;fill-opacity:1;stroke:#797979;stroke-width:0.74800003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  25.305 +         id="rect6112"
  25.306 +         width="134.53746"
  25.307 +         height="44.537449"
  25.308 +         x="314.15985"
  25.309 +         y="326.52203" />
  25.310 +      <text
  25.311 +         inkscape:transform-center-y="102.7311"
  25.312 +         inkscape:transform-center-x="128.69672"
  25.313 +         xml:space="preserve"
  25.314 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:#979797;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  25.315 +         x="338.84335"
  25.316 +         y="352.28271"
  25.317 +         id="text6114"><tspan
  25.318 +           sodipodi:role="line"
  25.319 +           id="tspan6116"
  25.320 +           x="338.84335"
  25.321 +           y="352.28271"
  25.322 +           style="fill:#979797;fill-opacity:1;font-family:Courier">000000000000</tspan></text>
  25.323 +    </g>
  25.324 +    <text
  25.325 +       xml:space="preserve"
  25.326 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  25.327 +       x="268.63208"
  25.328 +       y="270.479"
  25.329 +       id="text6118"><tspan
  25.330 +         sodipodi:role="line"
  25.331 +         id="tspan6120"
  25.332 +         x="268.63208"
  25.333 +         y="270.479">Primo genitore</tspan></text>
  25.334 +    <text
  25.335 +       xml:space="preserve"
  25.336 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  25.337 +       x="268.07544"
  25.338 +       y="364.49615"
  25.339 +       id="text6122"><tspan
  25.340 +         sodipodi:role="line"
  25.341 +         id="tspan6124"
  25.342 +         x="268.07544"
  25.343 +         y="364.49615">Secondo genitore</tspan></text>
  25.344 +    <text
  25.345 +       xml:space="preserve"
  25.346 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  25.347 +       x="248.61746"
  25.348 +       y="231.36218"
  25.349 +       id="text6195"><tspan
  25.350 +         sodipodi:role="line"
  25.351 +         id="tspan6197"
  25.352 +         x="248.61746"
  25.353 +         y="231.36218">Genitori della directory di lavoro</tspan></text>
  25.354 +    <path
  25.355 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
  25.356 +       d="M 268.82543,318.06163 L 175.02528,336.72225"
  25.357 +       id="path6266"
  25.358 +       inkscape:connector-type="polyline"
  25.359 +       inkscape:connection-end="#g6976"
  25.360 +       inkscape:connection-start="#g6130" />
  25.361 +    <path
  25.362 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  25.363 +       d="M 665.12232,418.17579 L 665.12232,418.17579"
  25.364 +       id="path6270"
  25.365 +       inkscape:connector-type="polyline" />
  25.366 +  </g>
  25.367 +</svg>
    26.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    26.2 +++ b/it/figs/wdir.svg	Tue Aug 18 17:19:30 2009 +0200
    26.3 @@ -0,0 +1,348 @@
    26.4 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    26.5 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
    26.6 +<svg
    26.7 +   xmlns:dc="http://purl.org/dc/elements/1.1/"
    26.8 +   xmlns:cc="http://web.resource.org/cc/"
    26.9 +   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   26.10 +   xmlns:svg="http://www.w3.org/2000/svg"
   26.11 +   xmlns="http://www.w3.org/2000/svg"
   26.12 +   xmlns:xlink="http://www.w3.org/1999/xlink"
   26.13 +   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   26.14 +   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   26.15 +   width="744.09448819"
   26.16 +   height="1052.3622047"
   26.17 +   id="svg5971"
   26.18 +   sodipodi:version="0.32"
   26.19 +   inkscape:version="0.44.1"
   26.20 +   sodipodi:docbase="/home/bos/hg/hgbook/en"
   26.21 +   sodipodi:docname="wdir.svg">
   26.22 +  <defs
   26.23 +     id="defs5973">
   26.24 +    <marker
   26.25 +       inkscape:stockid="Arrow1Mstart"
   26.26 +       orient="auto"
   26.27 +       refY="0.0"
   26.28 +       refX="0.0"
   26.29 +       id="Arrow1Mstart"
   26.30 +       style="overflow:visible">
   26.31 +      <path
   26.32 +         id="path4855"
   26.33 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   26.34 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none"
   26.35 +         transform="scale(0.4) translate(10,0)" />
   26.36 +    </marker>
   26.37 +    <linearGradient
   26.38 +       id="linearGradient6049">
   26.39 +      <stop
   26.40 +         style="stop-color:#686868;stop-opacity:1;"
   26.41 +         offset="0"
   26.42 +         id="stop6051" />
   26.43 +      <stop
   26.44 +         style="stop-color:#f0f0f0;stop-opacity:1;"
   26.45 +         offset="1"
   26.46 +         id="stop6053" />
   26.47 +    </linearGradient>
   26.48 +    <marker
   26.49 +       inkscape:stockid="Arrow1Mend"
   26.50 +       orient="auto"
   26.51 +       refY="0.0"
   26.52 +       refX="0.0"
   26.53 +       id="Arrow1Mend"
   26.54 +       style="overflow:visible;">
   26.55 +      <path
   26.56 +         id="path4852"
   26.57 +         d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
   26.58 +         style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
   26.59 +         transform="scale(0.4) rotate(180) translate(10,0)" />
   26.60 +    </marker>
   26.61 +    <linearGradient
   26.62 +       inkscape:collect="always"
   26.63 +       xlink:href="#linearGradient6049"
   26.64 +       id="linearGradient6083"
   26.65 +       gradientUnits="userSpaceOnUse"
   26.66 +       gradientTransform="translate(-240.0462,-8.633237e-6)"
   26.67 +       x1="333.91171"
   26.68 +       y1="488.79077"
   26.69 +       x2="508.94543"
   26.70 +       y2="263.79077" />
   26.71 +    <linearGradient
   26.72 +       inkscape:collect="always"
   26.73 +       xlink:href="#linearGradient6049"
   26.74 +       id="linearGradient6142"
   26.75 +       gradientUnits="userSpaceOnUse"
   26.76 +       gradientTransform="translate(-42.00893,-30.49544)"
   26.77 +       x1="333.91171"
   26.78 +       y1="488.79077"
   26.79 +       x2="508.94543"
   26.80 +       y2="263.79077" />
   26.81 +    <linearGradient
   26.82 +       inkscape:collect="always"
   26.83 +       xlink:href="#linearGradient6049"
   26.84 +       id="linearGradient6193"
   26.85 +       gradientUnits="userSpaceOnUse"
   26.86 +       gradientTransform="translate(-240.0462,-8.633237e-6)"
   26.87 +       x1="333.91171"
   26.88 +       y1="488.79077"
   26.89 +       x2="508.94543"
   26.90 +       y2="263.79077" />
   26.91 +    <linearGradient
   26.92 +       inkscape:collect="always"
   26.93 +       xlink:href="#linearGradient6049"
   26.94 +       id="linearGradient6216"
   26.95 +       gradientUnits="userSpaceOnUse"
   26.96 +       gradientTransform="matrix(1.000474,0,0,0.790947,-240.246,50.9948)"
   26.97 +       x1="333.91171"
   26.98 +       y1="488.79077"
   26.99 +       x2="508.94543"
  26.100 +       y2="263.79077" />
  26.101 +    <linearGradient
  26.102 +       inkscape:collect="always"
  26.103 +       xlink:href="#linearGradient6049"
  26.104 +       id="linearGradient6232"
  26.105 +       gradientUnits="userSpaceOnUse"
  26.106 +       gradientTransform="matrix(1.000473,0,0,0.790947,-11.16012,50.85693)"
  26.107 +       x1="333.91171"
  26.108 +       y1="488.79077"
  26.109 +       x2="508.94543"
  26.110 +       y2="263.79077" />
  26.111 +    <linearGradient
  26.112 +       inkscape:collect="always"
  26.113 +       xlink:href="#linearGradient6049"
  26.114 +       id="linearGradient6445"
  26.115 +       gradientUnits="userSpaceOnUse"
  26.116 +       gradientTransform="matrix(1.000474,0,0,0.790947,-240.246,50.9948)"
  26.117 +       x1="333.91171"
  26.118 +       y1="488.79077"
  26.119 +       x2="508.94543"
  26.120 +       y2="263.79077" />
  26.121 +  </defs>
  26.122 +  <sodipodi:namedview
  26.123 +     id="base"
  26.124 +     pagecolor="#ffffff"
  26.125 +     bordercolor="#666666"
  26.126 +     borderopacity="1.0"
  26.127 +     gridtolerance="10000"
  26.128 +     guidetolerance="10"
  26.129 +     objecttolerance="10"
  26.130 +     inkscape:pageopacity="0.0"
  26.131 +     inkscape:pageshadow="2"
  26.132 +     inkscape:zoom="0.90509668"
  26.133 +     inkscape:cx="390.0539"
  26.134 +     inkscape:cy="690.49342"
  26.135 +     inkscape:document-units="px"
  26.136 +     inkscape:current-layer="layer1"
  26.137 +     showguides="true"
  26.138 +     inkscape:guide-bbox="true"
  26.139 +     inkscape:window-width="906"
  26.140 +     inkscape:window-height="620"
  26.141 +     inkscape:window-x="0"
  26.142 +     inkscape:window-y="25">
  26.143 +    <sodipodi:guide
  26.144 +       orientation="vertical"
  26.145 +       position="-1.4285714"
  26.146 +       id="guide6022" />
  26.147 +  </sodipodi:namedview>
  26.148 +  <metadata
  26.149 +     id="metadata5976">
  26.150 +    <rdf:RDF>
  26.151 +      <cc:Work
  26.152 +         rdf:about="">
  26.153 +        <dc:format>image/svg+xml</dc:format>
  26.154 +        <dc:type
  26.155 +           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  26.156 +      </cc:Work>
  26.157 +    </rdf:RDF>
  26.158 +  </metadata>
  26.159 +  <g
  26.160 +     inkscape:label="Layer 1"
  26.161 +     inkscape:groupmode="layer"
  26.162 +     id="layer1">
  26.163 +    <g
  26.164 +       id="g6431"
  26.165 +       transform="translate(0,-0.137863)">
  26.166 +      <rect
  26.167 +         style="fill:url(#linearGradient6445);fill-opacity:1;stroke:#686868;stroke-width:0.66539276;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  26.168 +         id="rect6047"
  26.169 +         width="174.36833"
  26.170 +         height="204.51619"
  26.171 +         x="94.198257"
  26.172 +         y="246.08011" />
  26.173 +      <rect
  26.174 +         y="266.38159"
  26.175 +         x="114.11369"
  26.176 +         height="44.537449"
  26.177 +         width="134.53746"
  26.178 +         id="rect5996"
  26.179 +         style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1" />
  26.180 +      <text
  26.181 +         id="text5998"
  26.182 +         y="292.1423"
  26.183 +         x="138.7962"
  26.184 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  26.185 +         xml:space="preserve"><tspan
  26.186 +           style="font-family:Courier"
  26.187 +           y="292.1423"
  26.188 +           x="138.7962"
  26.189 +           id="tspan6000"
  26.190 +           sodipodi:role="line">e7639888bb2f</tspan></text>
  26.191 +      <rect
  26.192 +         y="328.04825"
  26.193 +         x="114.11369"
  26.194 +         height="44.537449"
  26.195 +         width="134.53746"
  26.196 +         id="rect6004"
  26.197 +         style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1" />
  26.198 +      <text
  26.199 +         id="text6006"
  26.200 +         y="353.80896"
  26.201 +         x="136.65421"
  26.202 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  26.203 +         xml:space="preserve"><tspan
  26.204 +           style="font-family:Courier"
  26.205 +           y="353.80896"
  26.206 +           x="136.65421"
  26.207 +           id="tspan6008"
  26.208 +           sodipodi:role="line">7b064d8bac5e</tspan></text>
  26.209 +      <path
  26.210 +         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  26.211 +         d="M 181.38242,311.29315 L 181.38242,327.67412"
  26.212 +         id="path6020"
  26.213 +         inkscape:connector-type="polyline"
  26.214 +         inkscape:connection-end="#rect6004" />
  26.215 +      <rect
  26.216 +         y="389.71487"
  26.217 +         x="114.11357"
  26.218 +         height="44.537449"
  26.219 +         width="134.53746"
  26.220 +         id="rect6039"
  26.221 +         style="fill:#ededed;fill-opacity:1;stroke:#797979;stroke-width:0.74800003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
  26.222 +      <text
  26.223 +         id="text6041"
  26.224 +         y="415.47556"
  26.225 +         x="138.79707"
  26.226 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:#979797;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  26.227 +         xml:space="preserve"><tspan
  26.228 +           style="fill:#979797;fill-opacity:1;font-family:Courier"
  26.229 +           y="415.47556"
  26.230 +           x="138.79707"
  26.231 +           id="tspan6043"
  26.232 +           sodipodi:role="line">000000000000</tspan></text>
  26.233 +      <path
  26.234 +         style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#686868;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-opacity:1"
  26.235 +         d="M 181.38238,372.95981 L 181.38235,389.34087"
  26.236 +         id="path6045"
  26.237 +         inkscape:connector-type="polyline"
  26.238 +         inkscape:connection-end="#rect6039" />
  26.239 +    </g>
  26.240 +    <text
  26.241 +       xml:space="preserve"
  26.242 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  26.243 +       x="93.660484"
  26.244 +       y="231.36218"
  26.245 +       id="text6102"><tspan
  26.246 +         sodipodi:role="line"
  26.247 +         id="tspan6104"
  26.248 +         x="93.660484"
  26.249 +         y="231.36218">Cronologia nel repository</tspan></text>
  26.250 +    <g
  26.251 +       id="g6416">
  26.252 +      <rect
  26.253 +         style="fill:url(#linearGradient6232);fill-opacity:1;stroke:#686868;stroke-width:0.66539276;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  26.254 +         id="rect6140"
  26.255 +         width="174.36833"
  26.256 +         height="204.51619"
  26.257 +         x="323.28412"
  26.258 +         y="245.94225" />
  26.259 +      <g
  26.260 +         transform="translate(28.32541,24.38544)"
  26.261 +         id="g6130">
  26.262 +        <rect
  26.263 +           y="257.95059"
  26.264 +           x="314.87415"
  26.265 +           height="44.537449"
  26.266 +           width="134.53746"
  26.267 +           id="rect6106"
  26.268 +           style="fill:#d4d4d4;fill-opacity:1;stroke:black;stroke-width:0.7482574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.49651474, 0.74825737;stroke-dashoffset:0;stroke-opacity:1" />
  26.269 +        <text
  26.270 +           id="text6108"
  26.271 +           y="283.7113"
  26.272 +           x="339.55664"
  26.273 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  26.274 +           xml:space="preserve"><tspan
  26.275 +             style="font-family:Courier"
  26.276 +             y="283.7113"
  26.277 +             x="339.55664"
  26.278 +             id="tspan6110"
  26.279 +             sodipodi:role="line">e7639888bb2f</tspan></text>
  26.280 +      </g>
  26.281 +      <g
  26.282 +         transform="translate(29.03958,49.83106)"
  26.283 +         id="g6135">
  26.284 +        <rect
  26.285 +           y="326.52203"
  26.286 +           x="314.15985"
  26.287 +           height="44.537449"
  26.288 +           width="134.53746"
  26.289 +           id="rect6112"
  26.290 +           style="fill:#ededed;fill-opacity:1;stroke:#797979;stroke-width:0.74800003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  26.291 +           inkscape:transform-center-x="129.28571"
  26.292 +           inkscape:transform-center-y="102.85714" />
  26.293 +        <text
  26.294 +           id="text6114"
  26.295 +           y="352.28271"
  26.296 +           x="338.84335"
  26.297 +           style="font-size:12px;font-style:normal;font-weight:normal;fill:#979797;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  26.298 +           xml:space="preserve"
  26.299 +           inkscape:transform-center-x="128.69672"
  26.300 +           inkscape:transform-center-y="102.7311"><tspan
  26.301 +             style="fill:#979797;fill-opacity:1;font-family:Courier"
  26.302 +             y="352.28271"
  26.303 +             x="338.84335"
  26.304 +             id="tspan6116"
  26.305 +             sodipodi:role="line">000000000000</tspan></text>
  26.306 +      </g>
  26.307 +      <text
  26.308 +         id="text6118"
  26.309 +         y="270.479"
  26.310 +         x="342.63208"
  26.311 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  26.312 +         xml:space="preserve"><tspan
  26.313 +           y="270.479"
  26.314 +           x="342.63208"
  26.315 +           id="tspan6120"
  26.316 +           sodipodi:role="line">Primo genitore</tspan></text>
  26.317 +      <text
  26.318 +         id="text6122"
  26.319 +         y="364.49615"
  26.320 +         x="342.07544"
  26.321 +         style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  26.322 +         xml:space="preserve"><tspan
  26.323 +           y="364.49615"
  26.324 +           x="342.07544"
  26.325 +           id="tspan6124"
  26.326 +           sodipodi:role="line">Secondo genitore</tspan></text>
  26.327 +    </g>
  26.328 +    <text
  26.329 +       xml:space="preserve"
  26.330 +       style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Times New Roman"
  26.331 +       x="322.61746"
  26.332 +       y="231.36218"
  26.333 +       id="text6195"><tspan
  26.334 +         sodipodi:role="line"
  26.335 +         id="tspan6197"
  26.336 +         x="322.61746"
  26.337 +         y="231.36218">Genitori della directory di lavoro</tspan></text>
  26.338 +    <path
  26.339 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
  26.340 +       d="M 342.82543,299.89384 L 249.02528,293.36123"
  26.341 +       id="path6266"
  26.342 +       inkscape:connector-type="polyline"
  26.343 +       inkscape:connection-start="#g6130"
  26.344 +       inkscape:connection-end="#rect5996" />
  26.345 +    <path
  26.346 +       style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:black;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  26.347 +       d="M 665.12232,418.17579 L 665.12232,418.17579"
  26.348 +       id="path6270"
  26.349 +       inkscape:connector-type="polyline" />
  26.350 +  </g>
  26.351 +</svg>