Changeset 1761
- Timestamp:
- 05/30/05 01:08:20 (3 years ago)
- Files:
-
- trunk/swish_website/Make_Daily.sh (added)
- trunk/swish_website/Make_Release.sh (added)
- trunk/swish_website/README (modified) (2 diffs)
- trunk/swish_website/lib/config/site (modified) (1 diff)
- trunk/swish_website/lib/etc/httpd.conf (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/swish_website/README
r1614 r1761 17 17 -> src - web source docs. 18 18 -> public_html - output files. This is DocumentRoot 19 -> dirs_public - download, archive, and swish-daily dirs 19 distribution - symlink to the swish-releases tarball directory[1] 20 swish-daily - symlink to swish-daily tarball directory 20 21 -> bin - bin/build script and other utilities 21 22 -> lib/config - site config templates. … … 25 26 -> lib/pod_toc - top-level index for pod docs 26 27 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 avaiable via 30 the /distribution and /swish-daily URLs. Originally, these were outside of 31 document root (public_html) in dirs_public and accesed with Alias in 32 httpd.conf. And lib/config/site set their locations for generating the 33 index.html pages listing the files. 27 34 28 35 trunk/swish_website/lib/config/site
r1611 r1761 11 11 topdir = self.topdir 12 12 webroot = self.src_dir 13 download = "${self.topdir}/ dirs_public/download"14 archive = "${self.topdir}/ dirs_public/download/old"15 daily = "${self.topdir}/ dirs_public/swish-daily"13 download = "${self.topdir}/public_html/distribution" 14 archive = "${self.topdir}/public_html/distribution/old" 15 daily = "${self.topdir}/public_html/swish-daily" 16 16 } 17 17 trunk/swish_website/lib/etc/httpd.conf
r1587 r1761 3 3 4 4 # Set the download and swish-daily directories 5 Alias [% site.url.download %]/ [% topdir %]/dirs_public/download/ 6 Alias [% site.url.daily %]/ [% topdir %]/dirs_public/swish-daily/ 5 # Just use public_html/{distribution,swish-daily} symlinks 6 #Alias [% site.url.download %]/ [% topdir %]/dirs_public/download/ 7 #Alias [% site.url.daily %]/ [% topdir %]/dirs_public/swish-daily/ 7 8 8 9 # Alias [% site.url.list_archives %]/ [% topdir %]/dirs_pubic/hypermail/
