# HG changeset patch # User Paul Boddie # Date 1414161074 -7200 # Node ID 156e52fab8b6599de61994fccd55502a8f5a4f1a # Parent 87086ecd0c903366cd3c83f5348e0c76c8ce6867 Changed the publication directory location; added comments. diff -r 87086ecd0c90 -r 156e52fab8b6 imip_store.py --- a/imip_store.py Fri Oct 24 00:25:32 2014 +0200 +++ b/imip_store.py Fri Oct 24 16:31:14 2014 +0200 @@ -5,8 +5,13 @@ from os import makedirs from vCalendar import iterwrite +# The location of the stored calendar information. + STORE_DIR = "/var/lib/imip-agent/store" -PUBLISH_DIR = "/var/www/imip-agent" + +# The location of published static free/busy information. + +PUBLISH_DIR = "/var/www/imip-agent/static" def check_dir(base, dir): return commonprefix([base, abspath(dir)]) == base