diff --git a/higgins/api/config.py b/higgins/api/config.py index c13830217..ce0fca0a2 100644 --- a/higgins/api/config.py +++ b/higgins/api/config.py @@ -12,59 +12,9 @@ # License for the specific language governing permissions and limitations # under the License. -# Server Specific Configurations -server = { - 'port': '8080', - 'host': '0.0.0.0' -} - # Pecan Application Configurations app = { 'root': 'higgins.controllers.root.RootController', 'modules': ['higgins'], - 'static_root': '%(confdir)s/public', - 'template_path': '%(confdir)s/higgins/templates', 'debug': True, - 'errors': { - 404: '/error/404', - '__force_dict__': True - } } - -logging = { - 'root': {'level': 'INFO', 'handlers': ['console']}, - 'loggers': { - 'higgins': {'level': 'DEBUG', 'handlers': ['console'], - 'propagate': False}, - 'pecan': {'level': 'DEBUG', 'handlers': ['console'], - 'propagate': False}, - 'py.warnings': {'handlers': ['console']}, - '__force_dict__': True - }, - 'handlers': { - 'console': { - 'level': 'DEBUG', - 'class': 'logging.StreamHandler', - 'formatter': 'color' - } - }, - 'formatters': { - 'simple': { - 'format': ('%(asctime)s %(levelname)-5.5s [%(name)s]' - '[%(threadName)s] %(message)s') - }, - 'color': { - '()': 'pecan.log.ColorFormatter', - 'format': ('%(asctime)s [%(padded_color_levelname)s] [%(name)s]' - '[%(threadName)s] %(message)s'), - '__force_dict__': True - } - } -} - -# Custom Configurations must be in Python dictionary format:: -# -# foo = {'bar':'baz'} -# -# All configurations are accessible at:: -# pecan.conf diff --git a/higgins/api/templates/error.html b/higgins/api/templates/error.html deleted file mode 100644 index f2d979614..000000000 --- a/higgins/api/templates/error.html +++ /dev/null @@ -1,12 +0,0 @@ -<%inherit file="layout.html" /> - -## provide definitions for blocks we want to redefine -<%def name="title()"> - Server Error ${status} - - -## now define the body of the template -
-

Server Error ${status}

-
-

${message}

diff --git a/higgins/api/templates/index.html b/higgins/api/templates/index.html deleted file mode 100644 index f17c3862e..000000000 --- a/higgins/api/templates/index.html +++ /dev/null @@ -1,34 +0,0 @@ -<%inherit file="layout.html" /> - -## provide definitions for blocks we want to redefine -<%def name="title()"> - Welcome to Pecan! - - -## now define the body of the template -
-

-
- -
- -

This is a sample Pecan project.

- -

- Instructions for getting started can be found online at pecanpy.org -

- -

- ...or you can search the documentation here: -

- -
-
- - -
- Enter search terms or a module, class or function name. -
- -
diff --git a/higgins/api/templates/layout.html b/higgins/api/templates/layout.html deleted file mode 100644 index 409085919..000000000 --- a/higgins/api/templates/layout.html +++ /dev/null @@ -1,22 +0,0 @@ - - - ${self.title()} - ${self.style()} - ${self.javascript()} - - - ${self.body()} - - - -<%def name="title()"> - Default Title - - -<%def name="style()"> - - - -<%def name="javascript()"> - - diff --git a/higgins/public/css/style.css b/higgins/public/css/style.css deleted file mode 100644 index 55c9db54a..000000000 --- a/higgins/public/css/style.css +++ /dev/null @@ -1,43 +0,0 @@ -body { - background: #311F00; - color: white; - font-family: 'Helvetica Neue', 'Helvetica', 'Verdana', sans-serif; - padding: 1em 2em; -} - -a { - color: #FAFF78; - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - -div#content { - width: 800px; - margin: 0 auto; -} - -form { - margin: 0; - padding: 0; - border: 0; -} - -fieldset { - border: 0; -} - -input.error { - background: #FAFF78; -} - -header { - text-align: center; -} - -h1, h2, h3, h4, h5, h6 { - font-family: 'Futura-CondensedExtraBold', 'Futura', 'Helvetica', sans-serif; - text-transform: uppercase; -}