My favorites | Sign in
Logo
          
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
<appendix id="svn.webdav">
<title>WebDAV e autoversionamento</title>

<simplesect>

<para lang="en">WebDAV is an extension to HTTP, and is growing more and more
popular as a standard for file-sharing. Today's operating
systems are becoming extremely Web-aware, and many now have
built-in support for mounting <quote>shares</quote> exported by
WebDAV servers.</para>

<para>WebDAV è una estensione di HTTP, e sta diventando sempre piú popolare
come standard per la condivisione di file. Gli odierni sistemi
operativi sono diventati estremamente orientati al web, e molti hanno oggi
il supporto integrato per montare <quote>condivisioni</quote> esportate da
server WebDAV.</para>

<para lang="en">If you use Apache/mod_dav_svn as your Subversion network
server, then to some extent, you are also running a WebDAV
server. This appendix gives some background on the nature of
this protocol, how Subversion uses it, and how well Subversion
interoperates with other software that is WebDAV-aware.</para>

<para>Se si utilizza Apache/mod_dav_svn come server di rete per Subversion,
allora in parte, si sta anche eseguendo un server WebDAV.
Questa appendice fornisce informazioni sulla natura di
questo protocollo, come Subversion lo utilizza, e quanto Subversion
interagisce bene con altri software che supportano WebDAV.</para>

</simplesect>

<!-- ================================================================= -->
<!-- ================================================================= -->
<!-- ================================================================= -->
<sect1 id="svn.webdav.basic">
<title>Concetti base di WebDAV</title>

<para lang="en">This section provides a very brief, very general overview to
the ideas behind WebDAV. It should lay the foundation for
understanding WebDAV compatibility issues between clients and
servers.</para>

<para>Questa sezione fornisce una descrizione molto concisa e generica
delle idee dietro WebDAV. Dovrebbe costituire la base per
capire i problemi di compatibilità di WebDAV tra client e server.</para>

<!-- =============================================================== -->
<sect2 id="svn.webdav.basic.original">
<title>WebDAV originale</title>

<para lang="en">RFC 2518 defines a set of concepts and accompanying
extension methods to HTTP 1.1 that make the web into a more
universal read/write medium. The basic idea is that a
WebDAV-compliant web server can act like a generic file
server; clients can mount shared folders that behave much like
NFS or SMB filesystems.</para>

<para>RFC 2518 definisce un insieme di concetti e metodi di estensione
accompagnatori a HTTP 1.1 che ha fatto del web un mezzo di lettura/scrittura
piú universale. L'idea di base è che un server web compatibile con
WebDAV può operare come file server generico; i client possono
montare cartelle condivise che si comportano in modo simile
a filesystem NFS o SMB.</para>

<para lang="en">The tragedy, though, is that the RFC 2518 WebDAV
specification does not provide any sort of model for version
control, despite the <quote>V</quote> in DAV. Basic WebDAV
clients and servers assume only one version of each file or
directory exists, and can be repeatedly overwritten.</para>

<para>Tuttavia, la tragedia è che l'RFC 2518 con le specifiche di WebDAV
non fornisce nessuna sorta di modello per il controllo di
versione, a dispetto della <quote>V</quote> in DAV. I client e i server
base di WebDAV assumono che esista solamente una versione di ciascun file o
directory, e che questa possa essere ripetutamente sovrascritta.</para>

<para lang="en">Here are the concepts and terms introduced in basic
WebDAV:</para>

<para>Qui ci sono i concetti e i termini introdotti in WebDAV di base:</para>

<variablelist>

<varlistentry>
<term lang="en">Resources</term>

<term>Risorse</term>

<listitem>
<para lang="en"> WebDAV lingo refers to any server-side object
(that can be described with a URI) as a
<firstterm>resource</firstterm>.</para>

<para> Il linguaggio di WebDAV si riferisce a ogni oggetto lato server
(che può essere descritto con un URI) come una
<firstterm>risorsa</firstterm>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term lang="en">New write methods</term>

<term>Nuovi metodi di scrittura</term>

<listitem>
<para lang="en">Beyond the standard HTTP <literal>PUT</literal>
method (which creates or overwrites a web resource),
WebDAV defines new <literal>COPY</literal> and
<literal>MOVE</literal> methods for duplicating or
rearranging resources.</para>

<para>Oltre al metodo standard <literal>PUT</literal>
di HTTP (che crea o sovrascrive una risorsa web),
WebDAV definisce i nuovi metodi <literal>COPY</literal> e
<literal>MOVE</literal> per duplicare o riorganizzare le
risorse.</para>
</listitem>
</varlistentry>

<varlistentry>
<term lang="en">Collections</term>

<term>Collezioni</term>

<listitem>
<para lang="en">A <firstterm>collection</firstterm> is the WebDAV
term for a grouping of resources. In most cases, it
is analogous to a directory. Whereas file resources
can be written or created with a
<literal>PUT</literal> method, collection resources
are created with the new <literal>MKCOL</literal>
method.</para>

<para>Una <firstterm>collezione</firstterm> è il termine WebDAV
per un raggruppamento di risorse. Nella maggior parte dei casi,
è l'equivalente di una directory. Considerando che le risorse file
possono essere scritte o create con un metodo
<literal>PUT</literal>, le risorse collezione
sono create con il nuovo metodo <literal>MKCOL</literal>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term lang="en">Properties</term>

<term>Proprietà</term>

<listitem>
<para lang="en">This is the same idea present in
Subversion&mdash;metadata attached to files and
collections. A client can list or retrieve properties
attached to a resource with the new
<literal>PROPFIND</literal> method, and can change
them with the <literal>PROPPATCH</literal> method.
Some properties are wholly created and controlled by
users (e.g. a property called <quote>color</quote>),
and others are wholly created and controlled by the
WebDAV server (e.g. a property that contains the last
modification time of a file). The former kind are
called <firstterm>dead properties</firstterm>, and the
latter kind are called <firstterm>live
properties</firstterm>.</para>

<para>Questa è la stessa idea presente in
Subversion&mdash;metadati annessi a file e
collezioni. Un client può elencare o recuperare le proprietà
annesse ad una risorsa con il nuovo metodo
<literal>PROPFIND</literal>, e può modificarle
con il metodo <literal>PROPPATCH</literal>.
Alcune proprietà sono interamente create e controllate dagli
utenti (es. una proprietà chiamata <quote>colore</quote>),
e altre sono interamente create e controllate dal
server WebDAV (es. una proprietà che contiene l'ora dell'ultima
modifica di un file). Le prime sono
chiamate <firstterm>proprietà morte</firstterm>, e le
ultime <firstterm>proprietà vive</firstterm>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term lang="en">Locking</term>

<term>Bloccaggio</term>

<listitem>
<para lang="en">A WebDAV server may decide to offer a locking
feature to clients&mdash;this part of the
specification is optional, although most WebDAV
servers do offer the feature. If present, then
clients can use the new <literal>LOCK</literal> and
<literal>UNLOCK</literal> methods to mediate access to
a resource. In most cases these methods are used to
create exclusive write locks (as discussed in <xref
linkend="svn.basic.vsn-models.lock-unlock"/>), although shared write
locks are also possible in some server
implementations.</para>

<para>Un server WebDAV può decidere di offrire una funzionalità di
bloccaggio ai client&mdash;questa parte della specifica è
opzionale, anche se la maggior parte dei server WebDAV
offrono questa caratteristica. Se presente, allora i
client possono usare i nuovi metodi <literal>LOCK</literal> e
<literal>UNLOCK</literal> per mediare l'accesso a una
risorsa. Nella maggior parte dei casi questi metodi sono utilizzati
per creare blocchi di scrittura esclusivi (come discusso in <xref
linkend="svn.basic.vsn-models.lock-unlock"/>), anche se in
qualche implementazione
sono anche possibili blocchi di scrittura condivisa.</para>

</listitem>
</varlistentry>

<varlistentry>
<term lang="en">Access control</term>

<term>Controllo dell'accesso</term>

<listitem>
<para lang="en">A more recent specification (RFC 3744) defines a
system for defining access control lists (ACLs) on
WebDAV resources. Some clients and servers have begun
to implement this feature.</para>

<para>Una specifica più recente (RFC 3744) definisce un
sistema per definire liste di controllo di accesso (ACL) su
risorse WebDAV. Alcuni client e server hanno iniziato ad
implementare questa caratteristica.</para>
</listitem>
</varlistentry>

</variablelist>

</sect2>

<!-- =============================================================== -->
<sect2 id="svn.webdav.basic.deltav">
<title>Estensioni DeltaV</title>

<para lang="en">Because RFC 2518 left out versioning concepts, another
committee was left with the responsibility of writing RFC
3253, which adds versioning to WebDAV,
a.k.a. <quote>DeltaV</quote>. WebDAV/DeltaV clients and
servers are often called just <quote>DeltaV</quote> programs,
since DeltaV implies the existence of basic WebDAV.</para>

<para>Dato che RFC 2518 non si occupa dei concetti di versionamento, ad un altro
comitato è stata lasciata la responsabilità di scrivere RFC
3253, la quale aggiunge il versionamento a WebDAV,
anche conosciuta come <quote>DeltaV</quote>. I client e i server WebDAV/DeltaV
sono spesso chiamati solamente programmi <quote>DeltaV</quote>,
poiché DeltaV implica l'esistenza del WebDAV di base.</para>

<para lang="en">DeltaV introduces a whole slew of new acronyms, but don't
be intimidated. The ideas are fairly straightforward:</para>

<para>DeltaV introduce un grande numero di nuovi acronimi, ma non c'è da
spaventarsi. Le idee sono ragionevolmente dirette:</para>

<variablelist>

<varlistentry>
<term lang="en">Per-resource versioning</term>

<term>Versionamento per risorsa</term>

<listitem>
<para lang="en">Like CVS and other version-control systems,
DeltaV assumes that each resource has a potentially
infinite number of states. A client begins by placing
a resource under version control using the new
<literal>VERSION-CONTROL</literal> method.</para>

<para>Come CVS e altri sistemi di controllo di versione,
DeltaV assume che ogni risorsa ha potenzialmente un numero
infinito di stati. Un client inizia mettendo
una risorsa sotto controllo di versione utilizzando il nuovo metodo
<literal>VERSION-CONTROL</literal>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term lang="en">Server-side working-copy model</term>

<term>Modello di copia di lavoro lato server</term>

<listitem>
<para lang="en">Some DeltaV servers support the ability to create
a virtual workspace on the server, where all of your
work is performed. Clients use the
<literal>MKWORKSPACE</literal> method to create a
private area, then indicate they want to change
specific resources by <quote>checking them out</quote>
into the workspace, editing them, and <quote>checking
them in</quote> again. In HTTP terms, the sequence of
methods would be <literal>CHECKOUT</literal>,
<literal>PUT</literal>,
<literal>CHECKIN</literal>.</para>

<para>Alcuni server DeltaV permettono di creare
un spazio di lavoro virtuale sul server, dove viene svolto
tutto il proprio lavoro. I client utilizzano il metodo
<literal>MKWORKSPACE</literal> per creare un'area privata,
quindi indicano che vogliono cambiare specifiche risorse
<quote>facendone il check out</quote>
nello spazio di lavoro, le modificano, e <quote>ne fanno il check in
</quote>. In termini HTTP, la sequenza di metodi
dovrebbe essere <literal>CHECKOUT</literal>,
<literal>PUT</literal>,
<literal>CHECKIN</literal>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term lang="en">Client-side working-copy model</term>

<term>Modello di copia di lavoro lato client</term>

<listitem>
<para lang="en">Some DeltaV servers also support the idea that the
client may have a private working copy on local disk.
When the client wants to commit changes to the server,
it begins by creating a temporary server transaction
(called an <firstterm>activity</firstterm>) with the
<literal>MKACTIVITY</literal> method. The client then
performs a <literal>CHECKOUT</literal> on each
resource it wishes to change and sends
<literal>PUT</literal> requests. Finally, the client
performs a <literal>CHECKIN</literal> resource, or
sends a <literal>MERGE</literal> request to check in
all resources at once.</para>

<para>Altri server DeltaV supportano anche l'idea che il
client possa avere una copia di lavoro privata sul disco locale.
Quando il client vuole fare il commit dei cambiamenti sul server,
inizia col creare una transazione temporanea con il server
(chiamata un'<firstterm>attività</firstterm>) con il metodo
<literal>MKACTIVITY</literal>. Il client poi
esegue un <literal>CHECKOUT</literal> su ogni
risorsa che vorrebbe cambiare e invia delle richieste
<literal>PUT</literal>. Infine, il client
esegue un <literal>CHECKIN</literal> della risorsa, o
invia una richiesta <literal>MERGE</literal> per fare il check in
di tutte le risorse in una volta sola.</para>
</listitem>
</varlistentry>

<varlistentry>
<term lang="en">Configurations</term>

<term>Configurazioni</term>

<listitem>
<para lang="en">DeltaV allows you define flexible collections of
resources called <quote>configurations</quote>, which
don't necessarily correspond to particular
directories. A configuration can be made to point to
specific versions of files, and then a
<quote>baseline</quote> snapshot can be made, much
like a tag.</para>

<para>DeltaV permette di definire collezioni flessibili di risorse
chiamate <quote>configurazioni</quote>, che non
corrispondono necessariamente a particolari directory.
Una configurazione può essere creata per puntare a specifiche
versioni di file, e poi può essere creata una fotografia
<quote>base</quote>, in modo molto simile
a una targa.</para>
</listitem>
</varlistentry>

<varlistentry>
<term lang="en">Extensibility</term>

<term>Estendibilità</term>

<listitem>
<para lang="en">DeltaV defines a new method,
<literal>REPORT</literal>, which allows the client and
server to perform customized data exchanges. While
DeltaV defines a number of standardized history reports
that a client can request, the server is also free
to define custom reports. The client sends a
<literal>REPORT</literal> request with a
properly-labeled XML body full of custom data; assuming
the server understands the specific report-type, it
responds with an equally custom XML body. This
technique is very similar to XML-RPC.</para>

<para>DeltaV definisce un nuovo metodo,
<literal>REPORT</literal>, che permette al client e al
server di effettuare scambi di dati personalizzati. Mentre
DeltaV definisce un numero di report storici standardizzati
che un client può richiedere, il server è anche libero
di definire report personalizzati. Il client invia una richiesta
<literal>REPORT</literal> con un corpo XML propriamente
etichettato pieno di dati personalizzati; assumendo
che il server capisca lo specifico tipo di report, risponde
con un corpo XML ugualmente personalizzato. Questa
tecnica è molto simile a XML-RPC.</para>
</listitem>
</varlistentry>

</variablelist>

</sect2>

</sect1>

<!-- ================================================================= -->
<!-- ================================================================= -->
<!-- ================================================================= -->
<sect1 id="svn.webdav.svn-and-deltav">
<title>Subversion e DeltaV</title>

<para lang="en">The original WebDAV standard has been widely successful.
Every modern computer operating system has a general WebDAV
client built-in (details to follow), and a number of popular
standalone applications are also able to speak WebDAV &mdash;
Microsoft Office, Dreamweaver, and Photoshop to name a few. On
the server end, the Apache webserver has been able to provide
WebDAV services since 1998 and is considered the de-facto
open-source standard. There are several other commercial WebDAV
servers available, including Microsoft's own IIS.</para>

<para>Lo standard originale di WebDAV ha avuto un ampio successo.
Ogni sistema operativo moderno per computer possiede un client WebDAV
generico integrato (particolari a seguire), e un numero di
di applicazioni tra le più diffuse sono capaci di parlare WebDAV &mdash;
Microsoft Office, Dreamweaver, e Photoshop per nominarne alcune. Sul lato
server, il server web Apache è stato capace di fornire servizi
WebDAV dal 1998 ed è considerato lo standard open source di fatto.
Ci sono molti altri server commerciali WebDAV
disponibili, incluso Microsoft IIS.</para>

<para lang="en">DeltaV, unfortunately, has not been so successful. It's
very difficult to find any DeltaV clients or servers. The few
that do exist are relatively unknown commercial products, and
thus it's very difficult to test interoperability. It's not
entirely clear as to why DeltaV has remained stagnant. Some
argue that the specification is just too complex, others argue
that while WebDAV's features have mass appeal (even the least
technical users appreciate network file-sharing), version
control features aren't interesting or necessary for most users.
Finally, some have argued that DeltaV remains unpopular because
there's still no open-source server product which implements
it.</para>

<para>DeltaV, sfortunatamente, non è stato cosi' di successo. È
molto difficile trovare un client o un server DeltaV. I pochi
che esistono sono prodotti commerciali relativamente sconosciuti, e
dei quali è molto difficile testare l'interoperabilità. Non è
pienamente chiaro il perché DeltaV è rimasto stagnante. Alcuni
dicono che le specifiche sono semplicemente troppo complesse, altri dicono
che mentre le caratteristiche di WebDAV hanno un consenso di massa (anche
l'utente meno tecnico apprezza la condivisione dei file in rete), le
caratteristiche del controllo di versione non sono interessanti o necessarie
per la maggior parte degli utenti.
Infine, alcuni hanno detto che DeltaV rimane impopolare perché
non ci sono ancora server open source che lo implementino.</para>

<para lang="en">When Subversion was still in its design phase, it seemed
like a great idea to use Apache httpd as the main network
server. It already had a module to provide WebDAV services.
DeltaV was a relatively new specification. The hope was that
the Subversion server module (mod_dav_svn) would eventually
evolve into an open-source DeltaV reference implementation.
Unfortunately, DeltaV has a very specific versioning model that
doesn't quite line up with Subversion's model. Some concepts
were mappable, others were not.</para>

<para>Quando Subversion era ancora nella sua fase di disegno, sembrò
una grande idea utilizzare Apache httpd come server di rete
principale. Questo ha già un modulo che fornisce i servizi WebDAV.
DeltaV era una specifica relativamente nuova. La speranza era che
il modulo server di Subversion (mod_dav_svn) fosse eventualmente
evoluto in una implementazione open source di riferimento di DeltaV.
Sfortunatamente, DeltaV ha un modello di versionamento molto specifico che
non si allinea abbastanza con il modello di Subversion. Alcuni concetti
erano mappabili, altri no.</para>

<para lang="en">The upshot is that</para>

<para>Il risultato è questo</para>

<orderedlist>

<listitem>
<para lang="en">The Subversion client is not a fully-implemented DeltaV
client.</para>

<para>Il client Subversion non è un client DeltaV completamente
implementato.</para>

<para lang="en">The client needs certain things from the server that
DeltaV cannot provide, and thus is largely dependent on a
number of Subversion-specific <literal>REPORT</literal>
requests that only mod_dav_svn understands.</para>

<para>Il client ha bisogno di certe cose dal server che
DeltaV non può fornire, e così è in gran parte dipendente da un
numero di richieste <literal>REPORT</literal> specifiche di Subversion
che solamente mod_dav_svn comprende.</para>
</listitem>

<listitem>
<para lang="en">mod_dav_svn is not a fully-implemented DeltaV server.</para>

<para>mod_dav_svn non è un server DeltaV completamente implementato.</para>

<para lang="en">Many portions of the DeltaV specification were irrelevant to
Subversion, and thus left unimplemented.</para>

<para>Molte parti delle specifiche di DeltaV erano irrilevanti a
Subversion, e così non sono state implementate.</para>
</listitem>

</orderedlist>

<para lang="en">There is still some debate in the developer community as to
whether or not it's worthwhile to remedy either of these
situations. It's fairly unrealistic to change Subversion's
design to match DeltaV, so there's probably no way the client
can ever learn to get everything it needs from a general DeltaV
server. On the other hand,
mod_dav_svn <emphasis>could</emphasis> be further developed to
implement all of DeltaV, but it's hard to find motivation to do
so&mdash;there are almost no DeltaV clients to interoperate
with.</para>

<para>Ci sono ancora alcuni dibattiti nella comunità degli sviluppatori
se sia o no utile rimediare a questa situazione. È ragionevolmente
irrealistico cambiare il disegno di Subversion
per corrispondere a DeltaV, così non c'è modo che
il client possa imparare ad ottenere tutto ciò di cui ha bisogno da un server DeltaV
generico. D'altra parte,
mod_dav_svn <emphasis>potrebbe</emphasis> essere ulteriormente sviluppato
per implementare tutto DeltaV, ma è difficile trovare una motivazione per
fare ciò&mdash;non c'è praticamente nessun client DeltaV con cui interoperare.</para>

</sect1>

<!-- ================================================================= -->
<!-- ================================================================= -->
<!-- ================================================================= -->
<sect1 id="svn.webdav.autoversioning">
<title>Autoversionamento</title>

<para lang="en">While the Subversion client is not a full DeltaV client, nor
the Subversion server a full DeltaV server, there's still a
glimmer of WebDAV interoperability to be happy about: it's
called autoversioning.</para>

<para>Sebbene il client Subversion client non sia un client DeltaV completo, e nemmeno
il server Subversion sia un server DeltaV completo, c'è ancora un
barlume di interoperabilità WebDAV di cui essere felici: questo è chiamato
autoversionamento.</para>

<para lang="en">Autoversioning is an optional feature defined in the DeltaV
standard. A typical DeltaV server will reject an ignorant
WebDAV client attempting to do a <literal>PUT</literal> to a
file that's under version control. To change a
version-controlled file, the server expects a series proper
versioning requests: something like
<literal>MKACTIVITY</literal>, <literal>CHECKOUT</literal>,
<literal>PUT</literal>, <literal>CHECKIN</literal>. But if the
DeltaV server supports autoversioning, then write-requests from
basic WebDAV clients are accepted. The server behaves as if the
client had issued the proper series of versioning requests,
performing a commit under the hood. In other words, it allows a
DeltaV server to interoperate with ordinary WebDAV
clients that don't understand versioning.</para>

<para>L'autoversionamento è una caratteristica opzionale definita nello standard
DeltaV. Un tipico server DeltaV rifiuterà un ignaro client
WebDAV che tenta di fare una <literal>PUT</literal> su un file
che è sotto controllo di versione. Per cambiare un file sotto
controllo di versione, il server prevede una serie adeguata di richieste
di versionamento: qualcosa come
<literal>MKACTIVITY</literal>, <literal>CHECKOUT</literal>,
<literal>PUT</literal>, <literal>CHECKIN</literal>. Ma se il server
DeltaV supporta l'autoversionamento, allora le rischieste di scrittura da
client base WebDAV sono accettate. Il server si comporta come se il
client avesse pubblicato l'adeguata serie di richieste di versionamento,
eseguendo un commit interno al sistema. In altre parole, questo permette
a un server DeltaV di interoperare con i client ordinari WebDAV
che non capiscono il versionamento.</para>

<para lang="en">Because so many operating systems already have integrated
WebDAV clients, the use case for this feature borders on
fantastical: imagine an office of ordinary users running
Microsoft Windows or Mac OS. Each user <quote>mounts</quote>
the Subversion repository, which appears to be an ordinary
network folder. They use the shared folder as they always do:
open files, edit them, save them. Meanwhile, the server is
automatically versioning everything. Any administrator (or
knowledgeable user) can still use a Subversion client to search
history and retrieve older versions of data.</para>

<para>Dato che così tanti sistemi operativi hanno già dei client WebDAV
integrati, il caso d'uso per questa caratteristica confina con il
fantastico: immaginate un officio con utenti ordinari che usano
Microsoft Windows o Mac OS. Ogni utente <quote>monta</quote>
il repository Subversion, che appare essere una cartella di rete ordinaria.
Utilizzano la cartella condivisa come sempre fanno:
aprono file, li modificano, li salvano. Nel frattempo, il server sta
automaticamente versionando ogni cosa. Ogni amministratore (o
utente informato) può ancora utilizzare un client Subversion per cercare
nello storico e recuperare vecchie versioni dei dati.</para>

<para lang="en">This scenario isn't fiction: it's real and it works, as of
Subversion 1.2 and later. To activate autoversioning in
mod_dav_svn, use the <literal>SVNAutoversioning</literal>
directive within the <filename>httpd.conf</filename> Location
block, like so:</para>

<para>Questo scenario non è finzione: è reale e funziona, a partire da
Subversion 1.2 e successivi. Per attivare l'autoversionamento in
mod_dav_svn, utilizzare la direttiva <literal>SVNAutoversioning</literal>
all'interno del blocco Location in <filename>httpd.conf</filename>,
in questo modo:</para>

<screen>
&lt;Location /repos&gt;
DAV svn
SVNPath /path/to/repository
SVNAutoversioning on
&lt;/Location&gt;
</screen>

<para lang="en">When SVNAutoversioning is active, write requests from WebDAV
clients result in automatic commits. A generic log message is
auto-generated and attached to each revision.</para>

<para>Quando SVNAutoversioning è attivo, le richieste di scritture da client
WebDAV risultano in commit automatici. Un generico messaggio di log message
viene generato automaticamente e attaccato ad ogni revisione.</para>

<para lang="en">Before activating this feature, however, understand what
you're getting into. WebDAV clients tend to do
<emphasis>many</emphasis> write requests, resulting in a huge
number of automatically committed revisions. For example, when
saving data, many clients will do a <literal>PUT</literal> of a
0-byte file (as a way of reserving a name) followed by another
<literal>PUT</literal> with the real filedata. The single
file-write results in two separate commits. Also consider that
many applications auto-save every few minutes, resulting in even
more commits.</para>

<para>Prima di attivare questa caratteristica, comunque, occorre
capire in cosa si sta entrando. I client WebDAV tendono a fare
<emphasis>molte</emphasis> richieste di scrittura, risultando in un gran
numero di commit automatici di revisioni. Per esempio, quando si salvano
i dati, molti client faranno un <literal>PUT</literal> di un file
di 0-byte (un modo per riservare il nome) seguito da un altro
<literal>PUT</literal> con i dati reali del file. La singola
scrittura di file risulta in due commit separati. Inoltre considerare che
molte applicazioni salvano automaticamente ogni pochi minuti, risultando in
ulteriori commit aggiuntivi.</para>

<para lang="en">If you have a post-commit hook program that sends email, you
may want to disable email generation either altogether, or on
certain sections of the repository; it depends on whether you
think the influx of emails will still prove to be valuable
notifications or not. Also, a smart post-commit hook program
can distinguish between a transaction created via autoversioning
and one created through a normal <command>svn commit</command>.
The trick is to look for a revision property
named <literal>svn:autoversioned</literal>. If present, the
commit was made by a generic WebDAV client.</para>

<para>Se si un aggancio post-commit che invia email,
si potrebbe voler disabilitare la generazione di email complessivamente, o su
determinate sezioni del repository; dipende se si pensa
che l'influsso delle email risulterà essere ancora notifiche importanti
o no. Inoltre, un programma astuto
può distinguere tra una transazione creata via autoversionamento
e una create attraverso un normale <command>svn commit</command>.
Il trucco è cercare un proprietà di revisione
nominata <literal>svn:autoversioned</literal>. Se presente, il
commit è stato fatto da un client WebDAV generico.</para>

<para lang="en">Another feature that may be a useful complement
for <literal>SVNAutoversioning</literal> comes from
Apache's <literal>mod_mime</literal> module. If a generic
WebDAV client adds a new file to the repository, there's no
opportunity for the user to set the
the <literal>svn:mime-type</literal> property. This might cause
the file to appear as <quote>generic</quote> icon when viewed
within a WebDAV shared folder, not having an association with
any application. One remedy is to have a sysadmin (or other
Subversion-knowledgable person) check out a working copy and
manually set the <literal>svn:mime-type</literal> property on
necessary files. But there's potentially no end to such cleanup
tasks. Instead, you can use
the <literal>ModMimeUsePathInfo</literal> directive in
your Subversion <literal>&lt;Location&gt;</literal>
block:</para>

<para>Un'altra caratteristica che può essere un utile complemento
per <literal>SVNAutoversioning</literal> deriva dal modulo
Apache <literal>mod_mime</literal>. Se un client
WebDAV generico aggiunge un nuovo file al repository, non ci sono
opportunità per l'utente di impostare la proprietà
<literal>svn:mime-type</literal>. Questo può causare
che il file appaia con un'icona <quote>generica</quote> quando visualizzato
all'interno di una cartella condivisa WebDAV, non avendo un'associato con
alcuna applicazione. Un rimedio chiedere ad un amministratore di sistema (o altra
persona che conosce Subversion) di fare il check out di una copia di lavoro
ed impostare manualmente la proprietà <literal>svn:mime-type</literal> sui
file necessari. Ma potrebbe potenzialmente non esserci una fine a questi
compiti di pulizia. Invece, si può utilizzare
la direttiva <literal>ModMimeUsePathInfo</literal> nel proprio
blocco Subversion <literal>&lt;Location&gt;</literal>:</para>

<screen>
&lt;Location /repos&gt;
DAV svn
SVNPath /path/to/repository
SVNAutoversioning on

ModMimeUsePathInfo on

&lt;/Location&gt;
</screen>

<para lang="en">This directive allows <literal>mod_mime</literal> to attempt
automatic deduction of the mime-type on new files that enter the
repository via autoversioning. The module looks at the file's
named extension and possibly the contents as well; if the file
matches some common patterns, then the the
file's <literal>svn;mime-type</literal> property will be set
automatically.</para>

<para>Questa direttiva permette a <literal>mod_mime</literal> di provare
a dedurre automaticamente il mime-type del nuovo file che entra nel
repository via autoversionamento. Il modulo cerca nell'estensione del nome
del file e possibilmente anche nei contenuti; se il file
corrisponde a qualche modello comune, allora la proprietà del
file <literal>svn;mime-type</literal> verrà impostata
automaticamente.</para>

</sect1>

<!-- ================================================================= -->
<!-- ================================================================= -->
<!-- ================================================================= -->
<sect1 id="svn.webdav.clients">
<title>Interoperabilità tra client</title>

<para lang="en">All WebDAV clients fall into one of three
categories&mdash;standalone applications, file-explorer
extensions, or filesystem implementations. These categories
broadly define the types of WebDAV functionality available to
users. <xref linkend="svn.webdav.clients.tbl-1"/> gives our
categorization and a quick description of some common pieces of
WebDAV-enabled software. More details about these software
offerings, as well as their general category, can be found in
the sections that follow.</para>

<para>Tutti i client WebDAV ricadono in una di tre
categorie&mdash;applicazioni autonome, estesioni di esporatori
di file, o implementazioni di filesystem. Queste categorie
definiscono largamente i tipi di funzionalità di WebDAV disponibili agli
utenti. <xref linkend="svn.webdav.clients.tbl-1"/> fornisce la
categorizzazione ed una descrizione veloce di alcuni software comuni
abilitati a WebDAV. Maggiori dettagli circa l'offerta di questi
software, così come la loro categoria generale, possono essere trovati
nelle sezioni che seguono.</para>

<table id="svn.webdav.clients.tbl-1-en" lang="en">
<title>Common WebDAV Clients</title>
<tgroup cols="3">
<thead>
<row>
<entry>Software</entry>

<entry>Category</entry>

<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>Adobe Photoshop</entry>
<entry>Standalone WebDAV applications</entry>
<entry>Image editing software, allowing direct opening
from, and writing to, WebDAV URLs</entry>
</row>
<row>
<entry>Cadaver</entry>
<entry>Standalone WebDAV applications</entry>
<entry>Command-line WebDAV client supporting file transfer,
tree, and locking operations</entry>
</row>
<row>
<entry>DAV Explorer</entry>
<entry>Standalone WebDAV applications</entry>
<entry>GUI tool for exploring WebDAV shares</entry>
</row>
<row>
<entry>davfs2</entry>
<entry>WebDAV filesystem implementation</entry>
<entry>Linux file system driver that allows you to mount a WebDAV share</entry>
</row>
<row>
<entry>GNOME Nautilus</entry>
<entry>File-explorer WebDAV extensions</entry>
<entry>GUI file explorer able to perform tree
operations on a WebDAV share</entry>
</row>
<row>
<entry>KDE Konqueror</entry>
<entry>File-explorer WebDAV extensions</entry>
<entry>GUI file explorer able to perform tree
operations on a WebDAV share</entry>
</row>
<row>
<entry>Mac OS X</entry>
<entry>WebDAV filesystem implementation</entry>
<entry>Operating system with built-in support for mounting
WebDAV shares locally</entry>
</row>
<row>
<entry>Macromedia Dreamweaver</entry>
<entry>Standalone WebDAV applications</entry>
<entry>Web production software able to directly read from
and write to WebDAV URLs</entry>
</row>
<row>
<entry>Microsoft Office</entry>
<entry>Standalone WebDAV applications</entry>
<entry>Office productivity suite with several components
able to directly read from and write to WebDAV
URLs</entry>
</row>
<row>
<entry>Microsoft Web Folders</entry>
<entry>File-explorer WebDAV extensions</entry>
<entry>GUI file explorer program able to perform tree
operations on a WebDAV share</entry>
</row>
<row>
<entry>Novell NetDrive</entry>
<entry>WebDAV filesystem implementation</entry>
<entry>Drive-mapping program for assigning Windows drive
letters to a mounted remote WebDAV share</entry>
</row>
<row>
<entry>SRT WebDrive</entry>
<entry>WebDAV filesystem implementation</entry>
<entry>File transfer software which, among other things,
allows the assignment of Windows drive letters to a
mounted remote WebDAV share</entry>
</row>

</tbody>
</tgroup>
</table>

<table id="svn.webdav.clients.tbl-1">
<title>Client WebDAV comuni</title>
<tgroup cols="3">
<thead>
<row>
<entry>Software</entry>

<entry>Categoria</entry>

<entry>Descrizione</entry>
</row>
</thead>
<tbody>
<row>
<entry>Adobe Photoshop</entry>
<entry>Applicazioni WebDAV autonome</entry>
<entry>Software per la modifica di immagini, permette l'apertura diretta
da, e la scrittura su, URL WebDAV</entry>
</row>
<row>
<entry>Cadaver</entry>
<entry>Applicazioni WebDAV autonome</entry>
<entry>Client WebDAV a riga di comando che supporta il trasferimento
di file, alberi, e operazioni di bloccaggio</entry>
</row>
<row>
<entry>DAV Explorer</entry>
<entry>Applicazioni WebDAV autonome</entry>
<entry>Strumento con interfaccia grafica per esplorare condivisioni WebDAV</entry>
</row>
<row>
<entry>davfs2</entry>
<entry>Implementazione del filesystem WebDAV</entry>
<entry>Driver di filesystem per Linux che permette di montare una
condivisione WebDAV</entry>
</row>
<row>
<entry>GNOME Nautilus</entry>
<entry>Estensioni WebDAV per esploratore di file</entry>
<entry>Esploratore di file con interfaccia grafica capace
di eseguire operazioni su alberi su condivisioni WebDAV</entry>
</row>
<row>
<entry>KDE Konqueror</entry>
<entry>Estensioni WebDAV per esploratore di file</entry>
<entry>Esploratore di file con interfaccia grafica capace
di eseguire operazioni sull'albero in una condivisioni WebDAV</entry>
</row>
<row>
<entry>Mac OS X</entry>
<entry>Implemntazione del filesystem WebDAV</entry>
<entry>Sistema operativo con supporto integrato per montare
condivisioni WebDAV localmente</entry>
</row>
<row>
<entry>Macromedia Dreamweaver</entry>
<entry>Applicazioni WebDAV autonome</entry>
<entry>Software di produzione Web capace di leggere direttamente da
e scrivere su un URL WebDAV</entry>
</row>
<row>
<entry>Microsoft Office</entry>
<entry>Applicazioni WebDAV autonome</entry>
<entry>Suite di produzione per ufficio con vari componenti
capaci di leggere direttamente da e scrivere su un URL WebDAV</entry>
</row>
<row>
<entry>Microsoft Web Folders</entry>
<entry>Estensioni WebDAV per esploratore di file</entry>
<entry>Programma con interfaccia grafica capace di eseguire operazioni
sull'albero in una condivisione WebDAV</entry>
</row>
<row>
<entry>Novell NetDrive</entry>
<entry>Implementazione del filesystem WebDAV</entry>
<entry>Programma di mappatura unità per assegnare una lettere di
unità Windows a una condivisione remota WebDAV montata</entry>
</row>
<row>
<entry>SRT WebDrive</entry>
<entry>Implementazione del filesystem WebDAV</entry>
<entry>Software di trasferimento file che, tra l'altro,
permette di assegnare una lettera di unità Windows
a una condivisione remota WebDAV montata</entry>
</row>

</tbody>
</tgroup>
</table>

<!-- =============================================================== -->
<sect2 id="svn.webdav.clients.standalone">
<title>Applicazioni WebDAV autonome</title>

<para lang="en">A WebDAV application is a program which contains built-in
functionality for speaking WebDAV protocols with a WebDAV
server. We'll cover some of the most popular programs with
this kind of WebDAV support.</para>

<para>Un'applicazione WebDAV è un programma che contiene
funzionalità integrate per parlare il protocollo WebDAV con un server WebDAV.
Verranno trattati alcuni dei più popolari programmi con questo tipo
di supporto a WebDAV.</para>

<sect3 id="svn.webdav.clients.standalone.windows">
<title>Microsoft Office, Dreamweaver, Photoshop</title>

<para lang="en">On Windows, there are several well-known applications
that contain integrated WebDAV client functionality, such as
Microsoft's Office,
<footnote>
<para>WebDAV support was removed from Microsoft Access for
some reason, but exists in the rest of the Office
suite.</para>
</footnote>
Adobe's Photoshop, and Macromedia's Dreamweaver programs.
They're able to directly open and save to URLs, and tend to
make heavy use of WebDAV locks when editing a file.</para>

<para>Su Windows, ci sono varie applicazioni ben conosciute
che contiene funzionalità integrate di client WebDAV, come i programmi
Microsoft Office,
<footnote>
<para>Il supporto a WebDAV è stato rimosso da Microsoft Access per
qualche ragione, ma esiste nel resto della suite.</para>
</footnote>
Adobe Photoshop, e Macromedia Dreamweaver.
Sono capaci direttamente di aprire e salvare URL, e tendono a fare
largo uso di bloccaggi WebDAV quando modificano un file.</para>

<para lang="en">Note that while many of these programs also exist for
the Mac OS X, they do not appear to support WebDAV directly
on that platform. In fact, on Mac OS X, the
<guimenu>File-&gt;Open</guimenu> dialog box doesn't allow
one to type a path or URL at all. It's likely that the
WebDAV features were deliberately left out of Macintosh
versions of these programs, since OS X already provides such
excellent low-level filesystem support for WebDAV.</para>

<para>Notare che mentre molti di questi programmi esistono anche per
Mac OS X, sembra che non supportino direttamente WebDAV
su questa piattaforma. Infatti, su Mac OS X, il box di dialogo
<guimenu>File-&gt;Apri</guimenu> non permette affatto
di digitare un percorso o un URL. È probabile che le caratteristiche
WebDAV siano state deliberatamente lasciate fuori dalle versioni Macintosh
di questi programmi, dato che OS X fornisce già un eccellente
supporto al filesystem a basso livello per WebDAV.</para>

</sect3>

<sect3 id="svn.webdav.clients.standalone.free">
<title>Cadaver, esploratore DAV</title>

<para lang="en">Cadaver is a bare-bones Unix commandline program for
browsing and changing WebDAV shares. Like the Subversion
client, it uses the neon HTTP library&mdash;not surprisingly,
both neon and cadaver are written by the same author. Cadaver
is free software (GPL license) and is available at <ulink
url="http://www.webdav.org/cadaver/"/>.</para>

<para>Cadaver è un programma a linea di comando Unix per
navigare e modificare le condivisioni WebDAV. Come il client Subversion,
utilizza la libreria HTTP neon&mdash;non sorprendentemente,
dato che sia neon che cadaver sono scritti dallo stesso autore. Cadaver
è un software libero (licenza GPL) ed è disponibile a <ulink
url="http://www.webdav.org/cadaver/"/>.</para>

<para lang="en">Using cadaver is similar to using a commandline FTP
program, and thus it's extremely useful for basic WebDAV
debugging. It can be used to upload or download files in a
pinch, and also to examine properties, copy, move, lock or
unlock files:</para>

<para>Utilizzare cadaver è simile a utilizzare un programma a linea di
comando FTP, e così è estremamente utile per il debug di base WebDAV.
Può essere utilizzato per caricare o scaricare file in un
baleno, e anche per esaminare proprietà, copiare, spostare, bloccare o
sbloccare file:</para>

<screen>
$ cadaver http://host/repos
dav:/repos/&gt; ls
Listing collection `/repos/': succeeded.
Coll: &gt; foobar 0 May 10 16:19
&gt; playwright.el 2864 May 4 16:18
&gt; proofbypoem.txt 1461 May 5 15:09
&gt; westcoast.jpg 66737 May 5 15:09

dav:/repos/&gt; put README
Uploading README to `/repos/README':
Progress: [=============================&gt;] 100.0% of 357 bytes succeeded.

dav:/repos/&gt; get proofbypoem.txt
Downloading `/repos/proofbypoem.txt' to proofbypoem.txt:
Progress: [=============================&gt;] 100.0% of 1461 bytes succeeded.
</screen>

<para lang="en">DAV Explorer is another standalone WebDAV client, written
in Java. It's under a free Apache-like license and is
available at <ulink url="http://www.ics.uci.edu/~webdav/"/>.
DAV Explorer does everything cadaver does, but has the
advantages of being portable and being more user-friendly GUI
application. It's also one of the first clients to support
the new WebDAV Access Control Protocol (RFC 3744).</para>

<para>DAV Explorer è un altro client WebDAV, scritto
in Java. È sotto una licenza libera tipo quella di Apache ed è
disponibile a <ulink url="http://www.ics.uci.edu/~webdav/"/>.
DAV Explorer fa tutto quello che fa cadaver, ma ha il vantaggio
di essere portabile e dispone di un'interfaccia grafica molto più
amichevole. È anche uno dei primi client a supportare
il nuovo protocollo per il controllo di accesso di WebDAV (RFC 3744).</para>

<para lang="en">Of course, DAV Explorer's ACL support is useless in this
case, since mod_dav_svn doesn't support it. The fact that
both Cadaver and DAV Explorer support some limited DeltaV
commands isn't particularly useful either, since they don't
allow <literal>MKACTIVITY</literal> requests. But it's not
relevant anyway; we're assuming all of these clients are
operating against an autoversioning repository.</para>

<para>Naturalmente, il supporto ACL (lista di controllo accesso) di DAV Explorer
non è utile in questo caso, dato che mod_dav_svn non lo supporta.
Neanche il fatto che sia Cadaver che DAV Explorer supportino
alcuni comandi DeltaV è particolarmente utile, fino a quando non
permetteranno richieste <literal>MKACTIVITY</literal>. Ma non è comunque
rilevante; si assume che tutti questi client operino
su un repository autoversionante.</para>

</sect3>
</sect2>

<!-- =============================================================== -->
<sect2 id="svn.webdav.clients.file-explorer-extensions">
<title>File-explorer WebDAV extensions</title>

<para lang="en">Some popular file explorer GUI programs support WebDAV
extensions which allow a user to browse a DAV share as if it
was just another directory on the local computer, and allowing
basic tree editing operations on the items in that share. For
example, Windows Explorer is able to browse a WebDAV server as
a <quote>network place</quote>. Users can drag files to and
from the desktop, or can rename, copy, or delete files in the
usual way. But because it's only a feature of the
file-explorer, the DAV share isn't visible to ordinary
applications. All DAV interaction must happen through the
explorer interface.</para>

<para>Alcuni popolari gestori di file
supportano le estensioni WebDAV che permettono ad un utente di esplorare
una condivisione DAV come se fosse
un'altra directory sul computer locale, e permettendo
semplice operazioni di modifica all'alberatura sugli elementi nella condivisione.
Ad esempio, Windows Explorer è capace di navigare un server WebDAV
come una <quote>risorsa di rete</quote>. Gli utenti possono trascinare i file sulla
e dalla scrivania, o possono rinominare, copiare, o eliminare file nel
modo usuale. Ma dato che è solo una caratteristica del gestore,
la condivisione DAV non è visibile alle applicazioni
ordinarie. Tutte le interazioni DAV devono accadere attraverso
l'interfaccia del gestore.</para>

<sect3 id="svn.webdav.clients.file-explorer-extensions.windows">
<title>Microsoft Web Folders</title>

<para lang="en">Microsoft was one of the original backers of the WebDAV
specification, and first started shipping a client in Windows
98, known as <quote>Web Folders</quote>. This client was also
shipped in Windows NT4 and 2000.</para>

<para>Microsoft è stata uno dei promotori originali della
specifica WebDAV, ed iniziò per prima distribuendo un client in Windows
98, conosciuto come <quote>Cartelle Web</quote>. Questo client è stato
anche distribuito in Windows NT4 e 2000.</para>

<para lang="en">The original Web Folders client was an extension to
Explorer, the main GUI program used to browse filesystems. It
works well enough. In Windows 98, the feature might need to
be explicitly installed if Web Folders aren't already visible
inside <quote>My Computer</quote>. In Windows 2000, simply
add a new <quote>network place</quote>, enter the URL, and the
WebDAV share will pop up for browsing.</para>

<para>Il client originale Cartelle Web era un'estensione ad
Explorer, l'interfaccia grafica principale per navigare i filesystem.
Funziona abbastanza bene. In Windows 98, la caratteristica può aver bisogno
di essere esplicitamente installata se Cartelle Web non sono già visibili
all'interno di <quote>Risorse del computer</quote>. In Windows 2000,
basta semplicemente aggiungere una nuova <quote>risorsa di rete</quote>,
inserire l'URL, e la condivisione WebDAV verrà mostrata, pronta all'uso.</para>

<para lang="en">With the release of Windows XP, Microsoft started shipping
a new implementation of Web Folders, known as the <quote>WebDAV
mini-redirector</quote>. The new implementation is a
filesystem-level client, allowing WebDAV shares to be mounted
as drive letters. Unfortunately, this implementation is
incredibly buggy. The client usually tries to convert http
URLs (<literal>http://host/repos</literal>) into UNC share
notation (<literal>\\host\repos</literal>); it also often
tries to use Windows Domain authentication to respond to
basic-auth HTTP challenges, sending usernames as
<literal>HOST\username</literal>. These interoperability
problems are severe and documented in numerous places around
the web, to the frustration of many users. Even Greg Stein,
the original author of Apache's WebDAV module, recommends
against trying to use XP Web Folders against an Apache
server.</para>

<para>COn il rilascio di Windows XP, Microsoft ha iniziato a distribuire
una nuova implementazione di Cartelle Web, conosciuta come <quote>WebDAV
mini-redirector</quote>. La nuova implementazione è un client
a livello di filesystem, che permette alle condivisioni WebDAV di essere montate
come lettere di unità. Sfortunatamente, questa implementazione è
incredibilmente piena di errori. Il client solitamente prova a convertire
gli URL http (<literal>http://host/repos</literal>) in una condivisione
con notazione UNC (<literal>\\host\repos</literal>); prova anche spesso
ad utilizzare l'autenticazione di dominio Windows per rispondere
a richieste basic-auth HTTP, inviando il nome utente come
<literal>HOST\username</literal>. Questi problemi di interoperabilità
sono gravi e documentati in numerosi posti sul
web, per la frustrazione di molti utenti. Anche Greg Stein,
l'autore originale del modulo WebDAV di Apache, suggerisce
di non provare a utilizzare Cartelle Web di XP per accedere ad un server
Apache.</para>

<para lang="en">It turns out that the original
<quote>Explorer-only</quote> Web Folders implementation isn't
dead in XP, it's just buried. It's still possible to find it
by using this technique:</para>

<para>Risulta che l'originale implementazione Cartelle Web
<quote>solo Explorer</quote> non è morta in
XP, è solamente nascosta. È ancora possibile trovarla
utilizzando questa tecnica:</para>

<orderedlist>

<listitem>
<para lang="en">Go to 'Network Places'.</para>

<para>Andare in 'Risorse di rete'.</para>
</listitem>

<listitem>
<para lang="en">Add a new network place.</para>

<para>Aggiungere una nuova risorsa di rete.</para>
</listitem>

<listitem>
<para lang="en">When prompted, enter the URL of the repository, but
<emphasis>include a port number</emphasis> in the URL.
For example, <literal>http://host/repos</literal> would be
entered as <literal>http://host:80/repos</literal> instead.
</para>

<para>Quando richiesto, inserire l'URL del repository, ma
<emphasis>includere un numero di porta</emphasis> nell'URL.
Per esempio, <literal>http://host/repos</literal> dovrebbe invece essere
inserito come <literal>http://host:80/repos</literal>.
</para>
</listitem>

<listitem>
<para lang="en">Respond to any authentication prompts.</para>

<para>Rispondere ad ogni richiesta di autenticazione.</para>
</listitem>

</orderedlist>

<para lang="en">There are a number of other rumored workarounds to the
problems, but none of them seem to work on all versions and
patchlevels of Windows XP. In our tests, only the previous
algorithm seems to work consistently on every system. The
general consensus of the WebDAV community is that you should
avoid the new Web Folders implementation and use the old one
instead, and that if you need real a real filesystem-level
client for Windows XP, then use a third-party program like
WebDrive or NetDrive.</para>

<para>Corre voce che ci siano un numero di altri stratagemmi per ovviare ai vari
problemi, ma nessuno di loro sembra funzionare in tutte le versioni
e livelli di patch di Windows XP. Nelle nostre prove, solo l'algoritmo
precedente sembra funzionare in modo consistente su ogni sistema. Il
generale consenso della comunità WebDAV è che si dovrebbe
evitare la nuova implementazione di Cartelle Web ed utilizzare invece
la vecchia, e che se si ha realmente bisogno di un client
per Windows XP al reale livello di filesystem, utilizzare un programma
di terze parti come WebDrive o NetDrive.</para>

<para lang="en">A final tip: if you're attempting to use XP Web Folders,
make sure you have the absolute latest version from
Microsoft. For example, Microsoft released a bug-fixed
version in January 2005, available at
<ulink url="http://support.microsoft.com/?kbid=892211"/>.
In particular, this release is known to fix a bug whereby
browsing a DAV share shows an unexpected infinite
recursion.</para>

<para>Un consiglio finale: se si tenta di utilizzare Cartelle Web di XP,
occorre essere sicuri di avere la versione più recente da
Microsoft. Per esempio, Microsoft ha rilasciato una versione
corretta nel gennaio 2005, disponibile su
<ulink url="http://support.microsoft.com/?kbid=892211"/>.
In particolare, è noto che questo rilascio corregge un errore per il quale
l'esplorazione di una condivisione DAV genera un'inaspettata ricorsione
infinita.</para>

</sect3>

<sect3 id="svn.webdav.clients.file-explorer-extensions.linux-de">
<title>Nautilus, Konqueror</title>

<para lang="en">Nautilus is the official file manager/browser for the
GNOME desktop (<ulink url="http://www.gnome.org"/>), and
Konqueror is the manager/browser for KDE desktop (<ulink
url="http://www.kde.org"/>). Both of these applications have
an explorer-level WebDAV client built-in, and operate just
fine against an autoversioning repository.</para>

<para>Nautilus è il gestore file/navigatore ufficiale del desktop
GNOME (<ulink url="http://www.gnome.org"/>), e
Konqueror è il gestore file/navigatore per il desktop KDE (<ulink
url="http://www.kde.org"/>). Entrambe queste applicazioni
hanno un client WebDAV integrato a livello esploratore, e operano
correttamente su un repository autoversionante.</para>

<para lang="en">In GNOME's Nautilus, from the <guimenu>File
menu</guimenu>, select <guimenuitem>Open
location</guimenuitem> and enter the URL. The repository
should then be displayed like any other filesystem.</para>

<para>In Nautilus di GNOME, dal <guimenu>menu File</guimenu>,
selezionare <guimenuitem>Apri posizione
</guimenuitem> e inserire l'URL. Il repository
dovrebbe quindi essere visualizzato come ogni altro filesystem.</para>

<para lang="en">In KDE's Konqueror, you need to use the
<literal>webdav://</literal> scheme when entering the URL in
the location bar. If you enter an <literal>http://</literal>
URL, Konqueror will behave like an ordinary web browser.
You'll likely see the generic HTML directory listing produced
by mod_dav_svn. By entering
<literal>webdav://host/repos</literal> instead of
<literal>http://host/repos</literal>, Konqueror becomes a
WebDAV client and displays the repository as a
filesystem.</para>

<para>In Konqueror di KDE, occorre utilizzare lo schema
<literal>webdav://</literal> quando si inserisce l'URL nella barra
della posizione. Se si inserisce un URL <literal>http://</literal>,
Konqueror si comporterà come un ordinario navigatore web.
Probabilmente si vedrà la generica lista HTML per directory prodotta da
mod_dav_svn. Inserendo
<literal>webdav://host/repos</literal> invece di
<literal>http://host/repos</literal>, Konqueror diventa un client
WebDAV e visualizza il repository come un filesystem.</para>

</sect3>
</sect2>

<sect2 id="svn.webdav.clients.fs-impl">
<title>Implementazione del filesystem WebDAV</title>

<para lang="en">The WebDAV filesystem implementation is arguably the best
sort of WebDAV client. It's implemented as a low-level
filesystem module, typically within the operating system's
kernel. This means that the DAV share is mounted like any
other network filesystem, similar to mounting an NFS share on
Unix, or attaching an SMB share as drive-letter in Windows.
As a result, this sort of client provides completely
transparent read/write WebDAV access to all programs.
Applications aren't even aware that WebDAV requests are
happening.</para>

<para>L'implementazione del filesystem WebDAV è indiscutibilmente la miglior
sorta di client WebDAV. È implementato come un modulo del filesystem
a basso livello, tipicamente all'interno del kernel del
sistema operativo. Questo significa che la condivisione DAV è montata come
ogni altro filesystem di rete, similmente al montaggio di una condivisione
NFS su Unix, o al collegamento di una condivisione SMB come lettera di unità in Windows.
Di conseguenza, questa sorta di client provvede ad un accesso lettura/scrittura WebDAV
completamente trasparente per tutti i programmi.
Le applicazioni non si accorgono in nessun modo del fatto che le richieste WebDAV
stanno accadendo.</para>

<sect3 id="svn.webdav.clients.fs-impl.windows">
<title>WebDrive, NetDrive</title>

<para lang="en">Both WebDrive and NetDrive are excellent commercial
products which allows a WebDAV share to be attached as drive
letters in Windows. We've had nothing but success with
these products. At the time of writing, WebDrive can be
purchased from South River Technologies (<ulink
url="http://www.southrivertech.com"/>). NetDrive ships with
Netware, is free of charge, and can be found by searching
the web for <quote>netdrive.exe</quote>. Though it is
freely available online, users are required to have a
Netware license. (If any of that sounds odd to you, you're
not alone. See this page on Novell's website: <ulink
url="http://www.novell.com/coolsolutions/qna/999.html"/>)</para>

<para>Sia WebDrive che NetDrive sono eccellenti prodotti commerciali
che permettono a una condivisione WebDAV di essere connessa come
lettera disco in Windows. Non abbiamo sperimentato altro ch successi con
questi prodotti. Al momento della scrittura, WebDrive può essere
acquistato da South River Technologies (<ulink
url="http://www.southrivertech.com"/>). NetDrive viene distribuito con
Netware, è gratuito, e può essere trovato ricercando <quote>netdrive.exe</quote>
sul web. Benché sia liberamente disponibile online,
agli utenti è richiesto avere una licenza Netware.
(Se la cosa vi pare strana, non siete i soli.
Vedere la pagina sul sito web di: <ulink
url="http://www.novell.com/coolsolutions/qna/999.html"/>)</para>

</sect3>

<sect3 id="svn.webdav.clients.fs-impl.macosx">
<title>Mac OS X</title>

<para lang="en">Apple's OS X operating system has an integrated
filesystem-level WebDAV client. From the Finder, select the
<guimenuitem>Connect to Server</guimenuitem> item from the
<guimenu>Go menu</guimenu>. Enter a WebDAV URL, and it
appears as a disk on the desktop, just like any other mounted
volume.<footnote><para lang="en">From the Darwin terminal, one can also
run <literal>mount -t webdav URL
/mountpoint</literal></para></footnote>.</para>

<para>Il sistema operativo OS X di Apple un client WebDAV integrato
a livello di filesystem. Dal Finder, selezionare l'elemento
<guimenuitem>Connessione al server</guimenuitem> dal
<guimenu>menu Vai</guimenu>. Inserire un URL WebDAV, e questo apparirà
come un disco sulla scrivania, proprio come ogni altro volume
montato.<footnote><para>Dal terminale Darwin, si può anche eseguire
<literal>mount -t webdav URL
/mountpoint</literal></para></footnote>.</para>

<para lang="en">Note that if your mod_dav_svn is older than version 1.2,
OS X will refuse to mount the share as read-write; it will
appear as read-only. This is because the OS X insists on
locking support for read-write shares, and the ability to lock
files first appeared in Subversion 1.2.</para>

<para>Notare che se il proprio mod_dav_svn è più vecchio della versione 1.2,
OS X si rifiuterà di montare la condivisione in lettura-scrittura;
apparirà come di sola lettura. Questo succede perché OS X esige il
supporto al bloccaggio per le condivisioni lettura-scrittura, e l'abilità di
bloccare i file è apparsa per la prima volta in Subversion 1.2.</para>

<para lang="en">One more word of warning: OS X's WebDAV client can
sometimes be overly sensitive to HTTP redirects. If OS X is
unable to mount the repository at all, you may need to enable
the BrowserMatch directive in the Apache server's
<filename>httpd.conf</filename>:</para>

<para>Una parola in più di avvertimento: il client WebDAV
può qualche volta essere eccessivamente sensibile alle
redirezioni HTTP. Se OS X non è affatto capace
di montare il repository, si può aver bisogno di abilitare
la direttiva BrowserMatch in <filename>httpd.conf</filename>
del server Apache:</para>

<screen>
BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
</screen>

</sect3>

<sect3 id="svn.webdav.clients.fs-impl.linux">
<title>Linux davfs2</title>

<para lang="en">Linux davfs2 is a filesystem module for the Linux kernel,
whose development is located at <ulink
url="http://dav.sourceforge.net/"/>. Once installed, a WebDAV
network share can be mounted with the usual Linux mount
command:</para>

<para>Linux davfs2 è un modulo di filesystem per il kernel Linux,
il cui sviluppo è situato a <ulink
url="http://dav.sourceforge.net/"/>. Una volta installato,
una condivisione di rete WebDAV può essere montata con l'usuale comando
mount di Linux:</para>

<screen>
$ mount.davfs http://host/repos /mnt/dav
</screen>

</sect3>
</sect2>
</sect1>

</appendix>

<!--
local variables:
sgml-parent-document: ("book.xml" "appendix")
end:
-->
Show details Hide details

Change log

r2534 by andreaz on Nov 15, 2006   Diff
Pdf generation problem resolved
Go to: 

Older revisions

r2530 by maxb on Nov 12, 2006   Diff
Italian translation: Delete <entry
lang="en"> additional entries within
tables,
which turned out to be what was
causing the PDF build to malfunction.
...
r2509 by ender on Nov 01, 2006   Diff
First pass completed. Need more
reviews, IMHO
r2508 by ender on Oct 31, 2006   Diff
Some more work
All revisions of this file

File info

Size: 73074 bytes, 1458 lines

File properties

svn:mime-type
text/xml
svn:eol-style
native
Hosted by Google Code