Rev 32: Update apache2-dav configuration. in http://bazaar.launchpad.net/%7Evila/bzr/local-test-server

Vincent Ladeuil v.ladeuil+lp at free.fr
Sun Jun 8 23:40:01 BST 2008


At http://bazaar.launchpad.net/%7Evila/bzr/local-test-server

------------------------------------------------------------
revno: 32
revision-id: v.ladeuil+lp at free.fr-20080608223958-idas8o43j1ti0rtg
parent: v.ladeuil+lp at free.fr-20080607135150-q54tpjz6vxloydd2
committer: Vincent Ladeuil <v.ladeuil+lp at free.fr>
branch nick: local_test_server
timestamp: Mon 2008-06-09 00:39:58 +0200
message:
  Update apache2-dav configuration.
  
  * test_server.py: 
  Fix missing import.
  
  * configs/apache2-dav.conf:
  (DavDepthInfinity): Is required for
  iter_files_recursive (otherwise we need to issue a request for
  every dir, instead of a single request for the whole tree).
modified:
  configs/apache2-dav.conf       apache2dav.conf-20080604211810-6j1dwqo255dl2bc6-1
  test_server.py                 test_server.py-20080530070615-f555godexnk7frms-1
-------------- next part --------------
=== modified file 'configs/apache2-dav.conf'
--- a/configs/apache2-dav.conf	2008-06-07 13:51:50 +0000
+++ b/configs/apache2-dav.conf	2008-06-08 22:39:58 +0000
@@ -55,10 +55,8 @@
 	# bzr (to they the least) and provide no benefits in our
 	# case. So just turn it off.
 	DirectorySlash Off
-#	AuthType Basic
-#	AuthName bzr
-#	AuthUserFile %(etc_dir)s/basic.users
-#	<LimitExcept GET OPTIONS>
-#		Require valid-user
-#	</LimitExcept>
+        # We need to activate the following which is off by
+        # default. For good security reasons which don't apply to
+        # bzr directories ;)
+        DavDepthInfinity on
 </Directory>

=== modified file 'test_server.py'
--- a/test_server.py	2008-06-07 13:51:50 +0000
+++ b/test_server.py	2008-06-08 22:39:58 +0000
@@ -26,6 +26,7 @@
 
 
 from bzrlib import (
+    errors,
     osutils,
     tests,
     transport,



More information about the bazaar-commits mailing list