Changeset 1819
- Timestamp:
- 09/18/06 16:19:23 (2 years ago)
- Files:
-
- trunk/swish_website/README (modified) (3 diffs)
- trunk/swish_website/bin/build (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/swish_website/README
r1761 r1819 27 27 28 28 [1] these two (three including the "old" dir) directories are read when 29 building the index listings for the downloads, plus they must be avai able via29 building the index listings for the downloads, plus they must be available via 30 30 the /distribution and /swish-daily URLs. Originally, these were outside of 31 document root (public_html) in dirs_public and acces ed with Alias in31 document root (public_html) in dirs_public and accessed with Alias in 32 32 httpd.conf. And lib/config/site set their locations for generating the 33 33 index.html pages listing the files. … … 46 46 (Or symlink as needed -- which is what I did.) 47 47 48 Also in lib/config/site you might want to define dwhere swish-daily and48 Also in lib/config/site you might want to define where swish-daily and 49 49 the download dirs are set. Currently to /distribution and /swish-daily. 50 50 The download and swish-daily pages link files to those dirs. … … 53 53 complains about. 54 54 55 Those output director eis can be overridden. see bin/build --help for55 Those output directories can be overridden. see bin/build --help for 56 56 help. "dirs_public" can be set in lib/conifg/site. 57 57 trunk/swish_website/bin/build
r1818 r1819 261 261 unshift @INC, $plugin_dir; 262 262 263 require My::POD;264 265 263 266 264 # Build include paths - reverse so -includ=foo will be pre-pended to path … … 346 344 OUTPUT_PATH => $dest, 347 345 PLUGIN_BASE => ['My'], 346 347 # Fix for ignoring case in TT verson 2.15 when loading plugins 348 PLUGINS => { 349 POD => 'My::POD', 350 }, 351 348 352 PRE_PROCESS => 'config/main', 349 353 WRAPPER => 'page/wrapper.tt', … … 352 356 RECURSION => 1, 353 357 # DEBUG => $config->debug ? DEBUG_PROVIDER : 0, 354 } ) || die Temp ate->error;358 } ) || die Template->error; 355 359 356 360 my $self = bless { … … 674 678 $self->template->process( $in_file, $vars, $output ) || warn $self->template->error . "\n"; 675 679 680 676 681 $self->logfile('Process', $in_file, length $capture || (stat $outpath)[7]); 677 682 return 1 if $self->config->dryrun;
