File tree Expand file tree Collapse file tree 2 files changed +13
-18
lines changed
roundup/templates/classic/html Expand file tree Collapse file tree 2 files changed +13
-18
lines changed Original file line number Diff line number Diff line change 22Installing Roundup
33==================
44
5- :Version: $Revision: 1.40 $
5+ :Version: $Revision: 1.41 $
66
77.. contents::
88
@@ -248,6 +248,15 @@ A benefit of using the cgi-bin approach is that it's the easiest way to
248248restrict access to your tracker to only use HTTPS. Access will be slower
249249than through the `stand-alone web server`_ though.
250250
251+ If you're using IIS on a Windows platform, you'll need to run this command
252+ for the cgi to work (it turns on the PATH_INFO cgi variable)::
253+
254+ adsutil.vbs set w3svc/AllowPathInfoForScriptMappings TRUE
255+
256+ The ``adsutil.vbs`` file can be found in either ``c:\inetpub\adminscripts``
257+ or ``c:\winnt\system32\inetsrv\adminsamples\`` or
258+ ``c:\winnt\system32\inetsrv\adminscripts\`` depending on your installation.
259+
251260Copy the ``cgi-bin/roundup.cgi`` file to your web server's ``cgi-bin``
252261directory. You will need to configure it to tell it where your tracker home
253262is. You can do this either:
Original file line number Diff line number Diff line change @@ -112,9 +112,7 @@ table.list th {
112112 padding : 0 4 0 4 ;
113113 color : # 404070 ;
114114 background-color : # eeeeff ;
115- border-right : 1px solid # 404070 ;
116- border-top : 1px solid # 404070 ;
117- border-bottom : 1px solid # 404070 ;
115+ border : 1px solid white;
118116 vertical-align : top;
119117 empty-cells : show;
120118}
@@ -128,37 +126,25 @@ table.list th.group {
128126
129127table .list td {
130128 padding : 0 4 0 4 ;
131- border : 0 2 0 2 ;
132- border-right : 1px solid # 404070 ;
129+ border : 1px solid white;
133130 color : # 404070 ;
134131 background-color : white;
135132 vertical-align : top;
136133 empty-cells : show;
137134}
138135
139136table .list tr .normal td {
140- background-color : white ;
137+ background-color : # efefef ;
141138}
142139
143140table .list tr .alt td {
144141 background-color : # efefef ;
145142}
146143
147- table .list td : first-child {
148- border-left : 1px solid # 404070 ;
149- border-right : 1px solid # 404070 ;
150- }
151-
152- table .list th : first-child {
153- border-left : 1px solid # 404070 ;
154- border-right : 1px solid # 404070 ;
155- }
156-
157144table .list tr .navigation th {
158145 text-align : right;
159146}
160147table .list tr .navigation th : first-child {
161- border-right : none;
162148 text-align : left;
163149}
164150
You can’t perform that action at this time.
0 commit comments