diff options
author | Peter Bex <peter@more-magic.net> | 2011-05-26 22:53:47 +0200 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2011-05-26 22:53:47 +0200 |
commit | 8c354ca51c685a3df503265ca83f4b5250514383 (patch) | |
tree | 1647fc4b70885491378722ede1d46de733747521 /README | |
parent | 8afd70d7a49f12bffebba040b626b3947434f922 (diff) | |
download | pseudo-meta-egg-info-8c354ca51c685a3df503265ca83f4b5250514383.tar.gz |
Add a quick 'n dirty README
Diffstat (limited to 'README')
-rw-r--r-- | README | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +This is a really hacky plugin for spiffy that allows you to serve +automatically-generated release-info files and files-list files +(the latter of which serves as the files section of a meta-file) +for an SVN repository. + +You can use it like this: + +(use spiffy spiffy-uri-match pseudo-meta-egg-info) + +;; Trailing slash is mandatory here! +;; By default this uses the Chicken repo +(egg-repo "http://example.com/your-egg-repo/eggs/release/4/") + +(vhost-map `((".*" + . ,(uri-match/spiffy + `(((/ "release-info") (GET ,release-info)) + ((/ "files-list") (GET ,files-list))))))) +(start-server) |