From 3ab5200f2f618bd855c5e9de446e431fb31bf596 Mon Sep 17 00:00:00 2001 From: richard Date: Fri, 21 Mar 2003 05:05:16 +0000 Subject: [PATCH] minor changes git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1612 57a73879-2fb5-44c3-a270-3262357dd7e2 --- doc/installation.txt | 11 ++++++++++- roundup/templates/classic/html/style.css | 20 +++----------------- 2 files changed, 13 insertions(+), 18 deletions(-) diff --git a/doc/installation.txt b/doc/installation.txt index 7607ba0..3d8833b 100644 --- a/doc/installation.txt +++ b/doc/installation.txt @@ -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: diff --git a/roundup/templates/classic/html/style.css b/roundup/templates/classic/html/style.css index fc376d4..da5c4c6 100644 --- a/roundup/templates/classic/html/style.css +++ b/roundup/templates/classic/html/style.css @@ -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; } -- 2.30.2