Index: web.config
===================================================================
RCS file: /cvs/drupal/drupal/web.config,v
retrieving revision 1.1
diff -u -9 -p -r1.1 web.config
--- web.config	14 Apr 2010 15:54:08 -0000	1.1
+++ web.config	15 Apr 2010 20:50:29 -0000
@@ -1,43 +1,43 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <configuration>
   <system.webServer>
-  <!-- Don't show directory listings for URLs which map to a directory. -->
+    <!-- Don't show directory listings for URLs which map to a directory. -->
     <directoryBrowse enabled="false" />
     <rewrite>
       <rules>
         <rule name="Protect files and directories from prying eyes" stopProcessing="true">
-          <match url="\.(engine|inc|info|install|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl|svn-base)$|^(\..*|Entries.*|Repository|Root|Tag|Template)$" />
+          <match url="\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(\..*|Entries.*|Repository|Root|Tag|Template)$" />
           <action type="CustomResponse" statusCode="403" subStatusCode="0" statusReason="Forbidden" statusDescription="Access is forbidden." />
         </rule>
         <rule name="Force simple error message for requests for non-existent favicon.ico" stopProcessing="true">
           <match url="favicon\.ico" />
           <action type="CustomResponse" statusCode="404" subStatusCode="1" statusReason="File Not Found" statusDescription="The requested file favicon.ico was not found" />
         </rule>
         <!-- Rewrite URLs of the form 'x' to the form 'index.php?q=x'. -->
-        <rule name="Short URLS" stopProcessing="true">
+        <rule name="Short URLs" stopProcessing="true">
           <match url="^(.*)$" ignoreCase="false" />
           <conditions>
             <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
             <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
             <add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" />
           </conditions>
           <action type="Rewrite" url="index.php?q={R:1}" appendQueryString="true" />
         </rule>
       </rules>
     </rewrite>
 
     <httpErrors>
       <remove statusCode="404" subStatusCode="-1" />
       <error statusCode="404" prefixLanguageFilePath="" path="/index.php" responseMode="ExecuteURL" />
     </httpErrors>
 
     <defaultDocument>
-     <!-- Set the default document -->
+      <!-- Set the default document -->
       <files>
         <remove value="index.php" />
         <add value="index.php" />
       </files>
     </defaultDocument>
   </system.webServer>
 </configuration>
 
