Code

minor changes
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 21 Mar 2003 05:05:16 +0000 (05:05 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 21 Mar 2003 05:05:16 +0000 (05:05 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1612 57a73879-2fb5-44c3-a270-3262357dd7e2

doc/installation.txt
roundup/templates/classic/html/style.css

index 7607ba087d8e69665a78d832b0dbf801f2612cc0..3d8833bf8462dd84092262bb933cbb09986eda55 100644 (file)
@@ -2,7 +2,7 @@
 Installing Roundup
 ==================
 
-:Version: $Revision: 1.40 $
+:Version: $Revision: 1.41 $
 
 .. contents::
 
@@ -248,6 +248,15 @@ A benefit of using the cgi-bin approach is that it's the easiest way to
 restrict access to your tracker to only use HTTPS. Access will be slower
 than through the `stand-alone web server`_ though.
 
+If you're using IIS on a Windows platform, you'll need to run this command
+for the cgi to work (it turns on the PATH_INFO cgi variable)::
+
+    adsutil.vbs set w3svc/AllowPathInfoForScriptMappings TRUE
+
+The ``adsutil.vbs`` file can be found in either ``c:\inetpub\adminscripts`` 
+or ``c:\winnt\system32\inetsrv\adminsamples\`` or
+``c:\winnt\system32\inetsrv\adminscripts\`` depending on your installation.
+
 Copy the ``cgi-bin/roundup.cgi`` file to your web server's ``cgi-bin``
 directory. You will need to configure it to tell it where your tracker home
 is. You can do this either:
index fc376d445e6a5a40f37b518c6d8929d1570e574d..da5c4c60a2b030296157e73ac3d7c3b1e898794f 100644 (file)
@@ -112,9 +112,7 @@ table.list th {
   padding: 0 4 0 4;
   color: #404070;
   background-color: #eeeeff;
-  border-right: 1px solid #404070;
-  border-top: 1px solid #404070;
-  border-bottom: 1px solid #404070;
+  border: 1px solid white;
   vertical-align: top;
   empty-cells: show;
 }
@@ -128,8 +126,7 @@ table.list th.group {
 
 table.list td {
   padding: 0 4 0 4;
-  border: 0 2 0 2;
-  border-right: 1px solid #404070;
+  border: 1px solid white;
   color: #404070;
   background-color: white;
   vertical-align: top;
@@ -137,28 +134,17 @@ table.list td {
 }
 
 table.list tr.normal td {
-  background-color: white;
+  background-color: #efefef;
 }
 
 table.list tr.alt td {
   background-color: #efefef;
 }
 
-table.list td:first-child {
-  border-left: 1px solid #404070;
-  border-right: 1px solid #404070;
-}
-
-table.list th:first-child {
-  border-left: 1px solid #404070;
-  border-right: 1px solid #404070;
-}
-
 table.list tr.navigation th {
   text-align: right;
 }
 table.list tr.navigation th:first-child {
-  border-right: none;
   text-align: left;
 }