Skip to content

Commit eb721b6

Browse files
author
Richard Jones
committed
minor changes
1 parent 2e64b82 commit eb721b6

File tree

2 files changed

+13
-18
lines changed

2 files changed

+13
-18
lines changed

doc/installation.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Installing 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
248248
restrict access to your tracker to only use HTTPS. Access will be slower
249249
than 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+
251260
Copy the ``cgi-bin/roundup.cgi`` file to your web server's ``cgi-bin``
252261
directory. You will need to configure it to tell it where your tracker home
253262
is. You can do this either:

roundup/templates/classic/html/style.css

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff 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

129127
table.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

139136
table.list tr.normal td {
140-
background-color: white;
137+
background-color: #efefef;
141138
}
142139

143140
table.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-
157144
table.list tr.navigation th {
158145
text-align: right;
159146
}
160147
table.list tr.navigation th:first-child {
161-
border-right: none;
162148
text-align: left;
163149
}
164150

0 commit comments

Comments
 (0)