75,76d74 < < ** added __description__ variable and verify_installation method - Michael B. Kremer - 12/07/07 ** 80c78 < __version__ = '20071207 MBK' --- > __version__ = '200510242045 TCF' 82d79 < __description__ = 'Creates a tagging environment for pyblosxom.' 94,113d90 < def verify_installation(request): < config = request.getConfiguration() < < ret = 1 < if not config.has_key("tag_url"): < print "missing config property 'tag_url' " < ret = 0 < if not config.has_key("pretext"): < print "missing config property 'pretext' " < ret = 0 < if not config.has_key("posttext"): < print "missing config property 'posttext' " < ret = 0 < if not config.has_key("tagsep"): < print "missing config property 'tagesp' " < ret = 0 < if ret == 0: < print "Please see tags.py for more details on configuring the plugin. " < return ret <