]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commit
tweak webish to use resource_filename to find css and html files
authorrobk-tahoe <robk-tahoe@allmydata.com>
Wed, 23 Jan 2008 00:44:58 +0000 (17:44 -0700)
committerrobk-tahoe <robk-tahoe@allmydata.com>
Wed, 23 Jan 2008 00:44:58 +0000 (17:44 -0700)
commit6ef4606534a031a4133eeb8be62e34f2140d7992
tree411e71addee9b35714d252acafe0a12ed124af48
parent284c1652a9cff1055d92d3daba2f015df2f2e947
tweak webish to use resource_filename to find css and html files

using sibpath to find web template files relative to source code is functional
when running from source environments, but not especially flexible when running
from bundled built environments.  the more 'orthodox' mechanism, pkg_resources,
in theory at least, knows how to find resource files in various environments.

this makes the 'web' directory in allmydata into an actual allmydata.web module
(since pkg_resources looks for files relative to a named module, and that module
must be importable) and uses pkg_resources.resource_filename to find the files
therein.
src/allmydata/web/__init__.py [new file with mode: 0644]
src/allmydata/webish.py