Changeset 1891
- Timestamp:
- 02/06/07 17:45:52 (1 year ago)
- Files:
-
- swish_website/README (modified) (6 diffs)
- swish_website/etc/httpd.conf.tt (modified) (1 diff)
- swish_website/hypermail/index_head.html (modified) (1 diff)
- swish_website/hypermail/message_head.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
swish_website/README
r1889 r1891 10 10 Prerequisites 11 11 ------------- 12 13 The one thing I hate about Perl: 12 14 13 15 HTML-Parser-3.56 … … 18 20 swish-e-2.4.5 19 21 Template-Toolkit-2.15 22 TimeDate-1.16 (for Date::Parse) 23 DateTime-0.36 (let's see how much code can be brought in for simple usage) 24 Params-Validate-0.87 25 DateTime-Locale-0.33 26 DateTime-TimeZone-0.59 27 Module-Build-0.2806 28 Class-Singleton-1.03 29 30 31 20 32 21 33 There are likely other dependencies, depending on your systems base … … 195 207 There's also a Make_Release.sh script. Review it before use. 196 208 197 running --help will show available options.209 Running --help will show available options. 198 210 199 211 … … 281 293 282 294 For debugging locally, say just the web site 295 296 mkdir $ROOT/indexes 283 297 284 298 … … 301 315 302 316 317 Another example, for the p3 machine: 318 319 $ROOT/swish_website/bin/build \ 320 --root $ROOT \ 321 --apache \ 322 --port 8080 \ 323 --ipaddr 70.42.42.162 \ 324 --domain p3.swish-e.org \ 325 --user `whoami` \ 326 --group `whoami` \ 327 --module_dir /usr/lib/httpd/modules \ 328 > httpd.test 329 330 mkdir logs run 331 /usr/sbin/httpd -d $(pwd) -f httpd.test 332 303 333 304 334 indexes … … 332 362 Therefore, must cd to the website directory: 333 363 364 # Note the SWISH_SITE if testing on a different host 365 334 366 335 367 cd $ROOT/swish_website && \ 336 SWISH_SITE=http:// bumby.com:8080\368 SWISH_SITE=http://p3.swish-e.org \ 337 369 SPIDER_QUIET=1 \ 338 370 swish-e \ swish_website/etc/httpd.conf.tt
r1889 r1891 169 169 [% server_name( '' ) %] 170 170 171 ServerAlias www.[% domain %]172 171 ServerAlias p3.[% domain %] 173 172 swish_website/hypermail/index_head.html
r1885 r1891 91 91 92 92 <div class="archiveform"> 93 <form action="/ Discussion/search/swish.cgi" method="get" enctype="application/x-www-form-urlencoded">93 <form action="/search/index.cgi" method="get" enctype="application/x-www-form-urlencoded"> 94 94 <p> 95 <input type="hidden" name=" db" value="archive" />95 <input type="hidden" name="section" value="archive" /> 96 96 <input type="text" name="query" size="20" /> 97 97 <input type="submit" value="Search Archive" /> swish_website/hypermail/message_head.html
r1885 r1891 86 86 87 87 <div class="archiveform"> 88 <form action="/ Discussion/search/swish.cgi" method="get" enctype="application/x-www-form-urlencoded">88 <form action="/search/swish.cgi" method="get" enctype="application/x-www-form-urlencoded"> 89 89 <p> 90 <input type="hidden" name=" db" value="archive" />90 <input type="hidden" name="section" value="archive" /> 91 91 <input type="text" name="query" size="20" /> 92 92 <input type="submit" value="Search Archive" />
