X-Git-Url: http://git.cascardo.info/?p=cascardo%2Fipsilon.git;a=blobdiff_plain;f=ipsilon%2Fipsilon;h=db82e7a9dd299ada51b8d63ed64b7a0e372bd744;hp=46951a5a803263f97664c22cf0eaa0228bcc7488;hb=HEAD;hpb=cd6572b7e45b841f25ab505f2ee38b23959be0ad diff --git a/ipsilon/ipsilon b/ipsilon/ipsilon index 46951a5..db82e7a 100755 --- a/ipsilon/ipsilon +++ b/ipsilon/ipsilon @@ -1,21 +1,6 @@ #!/usr/bin/python # -# Copyright (C) 2013 Simo Sorce -# -# see file 'COPYING' for use and warranty information -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# Copyright (C) 2013 Ipsilon project Contributors, for license see COPYING import sys sys.stdout = sys.stderr @@ -23,6 +8,7 @@ import glob import os import atexit import cherrypy +from ipsilon import find_config from ipsilon.util.data import AdminStore from ipsilon.util import page from ipsilon.root import Root @@ -42,19 +28,15 @@ def nuke_session_locks(): except Exception: # pylint: disable=broad-except pass -cfgfile = None -if (len(sys.argv) > 1): - cfgfile = sys.argv[-1] -elif os.path.isfile('ipsilon.conf'): - cfgfile = 'ipsilon.conf' -elif os.path.isfile('/etc/ipsilon/ipsilon.conf'): - cfgfile = '/etc/ipsilon/ipsilon.conf' -else: - raise IOError("Configuration file not found") +cfgfile = find_config() cherrypy.lib.sessions.SqlSession = ipsilon.util.sessions.SqlSession cherrypy.config.update(cfgfile) +# Force cherrypy logging to work. Note that this ignores the config-file +# setting. +cherrypy.log.screen = True + nuke_session_locks() datastore = AdminStore() @@ -75,12 +57,16 @@ else: template_loaders.append(FileSystemLoader( os.path.join(cherrypy.config['base.dir'], default_template_dir))) -template_env = Environment(loader=ChoiceLoader(template_loaders)) +template_env = Environment(loader=ChoiceLoader(template_loaders), + autoescape=True, + extensions=['jinja2.ext.autoescape']) if __name__ == "__main__": conf = {'/': {'tools.staticdir.root': os.getcwd()}, '/ui': {'tools.staticdir.on': True, - 'tools.staticdir.dir': 'ui'}} + 'tools.staticdir.dir': 'ui'}, + '/cache': {'tools.staticdir.on': True, + 'tools.staticdir.dir': 'cache'}} cherrypy.quickstart(Root('default', template_env), cherrypy.config['base.mount'], conf)