Delete unused files

Removes unused files from services directory

Change-Id: Ia3a5332da334a9a31db69afcedd5e14693e51d07
This commit is contained in:
Nicholas Jones 2017-10-26 12:07:35 -05:00
parent d5ea0345c2
commit e5b5c5981f
19 changed files with 0 additions and 268 deletions

View File

@ -1,12 +0,0 @@
<%inherit file="layout.html" />
## provide definitions for blocks we want to redefine
<%def name="title()">
Server Error ${status}
</%def>
## now define the body of the template
<header>
<h1>Server Error ${status}</h1>
</header>
<p>${message}</p>

View File

@ -1,34 +0,0 @@
<%inherit file="layout.html" />
## provide definitions for blocks we want to redefine
<%def name="title()">
Welcome to Pecan!
</%def>
## now define the body of the template
<header>
<h1><img src="/images/logo.png" /></h1>
</header>
<div id="content">
<p>This is a sample Pecan project.</p>
<p>
Instructions for getting started can be found online at <a
href="http://pecanpy.org" target="window">pecanpy.org</a>
</p>
<p>
...or you can search the documentation here:
</p>
<form method="POST" action="/">
<fieldset>
<input name="q" />
<input type="submit" value="Search" />
</fieldset>
<small>Enter search terms or a module, class or function name.</small>
</form>
</div>

View File

@ -1,22 +0,0 @@
<html>
<head>
<title>${self.title()}</title>
${self.style()}
${self.javascript()}
</head>
<body>
${self.body()}
</body>
</html>
<%def name="title()">
Default Title
</%def>
<%def name="style()">
<link rel="stylesheet" type="text/css" media="screen" href="/css/style.css" />
</%def>
<%def name="javascript()">
<script language="text/javascript" src="/javascript/shared.js"></script>
</%def>

View File

@ -17,13 +17,7 @@ database = {
app = {
'root': 'orm.services.audit_trail_manager.audit_server.controllers.root.RootController',
'modules': ['orm.services.audit_trail_manager.audit_server'],
'static_root': '%(confdir)s/public',
'template_path': '%(confdir)s/audit_server/templates',
'debug': True,
'errors': {
404: '/error/404',
'__force_dict__': True
}
}
logging = {

View File

@ -1,12 +0,0 @@
<%inherit file="layout.html" />
## provide definitions for blocks we want to redefine
<%def name="title()">
Server Error ${status}
</%def>
## now define the body of the template
<header>
<h1>Server Error ${status}</h1>
</header>
<p>${message}</p>

View File

@ -1,34 +0,0 @@
<%inherit file="layout.html" />
## provide definitions for blocks we want to redefine
<%def name="title()">
Welcome to Pecan!
</%def>
## now define the body of the template
<header>
<h1><img src="/images/logo.png" /></h1>
</header>
<div id="content">
<p>This is a sample Pecan project.</p>
<p>
Instructions for getting started can be found online at <a
href="http://pecanpy.org" target="window">pecanpy.org</a>
</p>
<p>
...or you can search the documentation here:
</p>
<form method="POST" action="/">
<fieldset>
<input name="q" />
<input type="submit" value="Search" />
</fieldset>
<small>Enter search terms or a module, class or function name.</small>
</form>
</div>

View File

@ -1,22 +0,0 @@
<html>
<head>
<title>${self.title()}</title>
${self.style()}
${self.javascript()}
</head>
<body>
${self.body()}
</body>
</html>
<%def name="title()">
Default Title
</%def>
<%def name="style()">
<link rel="stylesheet" type="text/css" media="screen" href="/css/style.css" />
</%def>
<%def name="javascript()">
<script language="text/javascript" src="/javascript/shared.js"></script>
</%def>

View File

@ -19,8 +19,6 @@ server = {
app = {
'root': 'orm.services.customer_manager.cms_rest.controllers.root.RootController',
'modules': ['orm.services.customer_manager.cms_rest'],
'static_root': '%(confdir)s/public',
'template_path': '%(confdir)s/cms_rest/templates',
'debug': True,
'hooks': lambda: [TransactionIdHook(), APIErrorHook(), SecurityHeadersHook()]
}

View File

@ -19,12 +19,7 @@ cache_seconds = 0
app = {
'root': 'orm.services.flavor_manager.fms_rest.controllers.root.RootController',
'modules': ['orm.services.flavor_manager.fms_rest'],
'static_root': '%(confdir)s/public',
'template_path': '%(confdir)s/fms_rest/templates',
'debug': True,
'errors': {
'__force_dict__': True
},
'hooks': lambda: [TransIdHook(), APIErrorHook(), SecurityHeadersHook()]
}

View File

@ -8,13 +8,7 @@ server = {
app = {
'root': 'orm.services.id_generator.uuidgen.controllers.root.RootController',
'modules': ['orm.services.id_generator.uuidgen'],
'static_root': '%(confdir)s/public',
'template_path': '%(confdir)s/uuidgen/templates',
'debug': True,
'errors': {
404: '/error/404',
'__force_dict__': True
}
}
logging = {

View File

@ -1,7 +1,6 @@
import logging
import os
from orm.services.id_generator.uuidgen import model
from pecan.commands import CommandRunner
from pecan import make_app
@ -9,7 +8,6 @@ logger = logging.getLogger(__name__)
def setup_app(config):
model.init_model()
app_conf = dict(config.app)
app = make_app(app_conf.pop('root'),

View File

@ -1,14 +0,0 @@
from pecan import conf # noqa
def init_model():
"""This is a stub method which is called at application startup time.
If you need to bind to a parsed database configuration, set up tables or
ORM classes, or perform any database initialization, this is the
recommended place to do it.
For more information working with databases, and some common recipes,
see http://pecan.readthedocs.org/en/latest/databases.html
"""
pass

View File

@ -1,12 +0,0 @@
<%inherit file="layout.html" />
## provide definitions for blocks we want to redefine
<%def name="title()">
Server Error ${status}
</%def>
## now define the body of the template
<header>
<h1>Server Error ${status}</h1>
</header>
<p>${message}</p>

View File

@ -1,34 +0,0 @@
<%inherit file="layout.html" />
## provide definitions for blocks we want to redefine
<%def name="title()">
Welcome to Pecan!
</%def>
## now define the body of the template
<header>
<h1><img src="/images/logo.png" /></h1>
</header>
<div id="content">
<p>This is a sample Pecan project.</p>
<p>
Instructions for getting started can be found online at <a
href="http://pecanpy.org" target="window">pecanpy.org</a>
</p>
<p>
...or you can search the documentation here:
</p>
<form method="POST" action="/">
<fieldset>
<input name="q" />
<input type="submit" value="Search" />
</fieldset>
<small>Enter search terms or a module, class or function name.</small>
</form>
</div>

View File

@ -1,22 +0,0 @@
<html>
<head>
<title>${self.title()}</title>
${self.style()}
${self.javascript()}
</head>
<body>
${self.body()}
</body>
</html>
<%def name="title()">
Default Title
</%def>
<%def name="style()">
<link rel="stylesheet" type="text/css" media="screen" href="/css/style.css" />
</%def>
<%def name="javascript()">
<script language="text/javascript" src="/javascript/shared.js"></script>
</%def>

View File

@ -17,12 +17,7 @@ server = {
app = {
'root': 'orm.services.image_manager.ims.controllers.root.RootController',
'modules': ['orm.services.image_manager.ims'],
'static_root': '%(confdir)s/public',
'template_path': '%(confdir)s/ims/templates',
'debug': True,
'errors': {
'__force_dict__': True
},
'hooks': lambda: [TransIdHook(), APIErrorHook(), SecurityHeadersHook()]
}

View File

@ -17,8 +17,6 @@ server = {
app = {
'root': 'orm.services.region_manager.rms.controllers.root.RootController',
'modules': ['orm.services.region_manager.rms'],
'static_root': '%(confdir)s/public',
'template_path': '%(confdir)s/rms/templates',
'debug': True,
'hooks': lambda: [TransactionIdHook(), APIErrorHook(), SecurityHeadersHook()]
}

View File

@ -1,22 +0,0 @@
-----BEGIN CERTIFICATE-----
MIIDoTCCAomgAwIBAgIJAM1SFBUUEOLCMA0GCSqGSIb3DQEBCwUAMGcxCzAJBgNV
BAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBX
aWRnaXRzIFB0eSBMdGQxIDAeBgNVBAMMF29yZC5sb2NhbC5hdHQuaW5mcmEubmV0
MB4XDTE2MDUwMjE2MDQyMVoXDTE3MDUwMjE2MDQyMVowZzELMAkGA1UEBhMCQVUx
EzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoMGEludGVybmV0IFdpZGdpdHMg
UHR5IEx0ZDEgMB4GA1UEAwwXb3JkLmxvY2FsLmF0dC5pbmZyYS5uZXQwggEiMA0G
CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDAGKa75pvFsWqbdnFif7a+85krdjgF
RZZ2lnRVCdjiwyAI5KEk8awr79vr+3/xOMmEiuMYBkS3EbjnEILlGme+MHepIysB
OHMcLmqVqOZwd/9kiNBViIBX4Ma05zYlCyMjwipgawuwUc1riJPMPTAXuXsjuDVH
0AZQHX22S56vx/y4PtoAW61qcbSaKxCiNPrYb9wom/YMacI4kkL5yA0w0J4UBbWw
95dY8x0bUWjqo+pDUGwaHzSNsy4gRdrV/uHRmNEdnw3rVsRhjSxKoL0QDlnmTfFS
g0qnEafVMZewcL/H9+5hbnsW1xC8mSj0aNGOwYi3WQPF6lfrpRAH73nhAgMBAAGj
UDBOMB0GA1UdDgQWBBR0F2IlR9nD9ahVa+bxhzoJbhAvxTAfBgNVHSMEGDAWgBR0
F2IlR9nD9ahVa+bxhzoJbhAvxTAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBCwUA
A4IBAQChB/YXQLcSI91ClDgn66OKIBrUvOdCi1s7oxphT8URY6Wj1nEUa0I7g3Rj
kUzyBTrUgHn36+R7exo1Zw0LhVyEAphsI0bMSJPJTLwi6qXwHN025/ZAEpeCvMsi
aMB6GiOO+oKWlU3aUGme5+y/u4TIbWdxI3TQPZs+2sRGKZ1mKEPOzdF/25Ao2xXg
eEmg71CST9QhyS+eAfKaM3Tujd/2uyfzZdGlmYYrOjs7cWOx+AF9RcUaeXnheEWz
YTB5xL05CcQlUf/Ahj2bvfBcy/Lu8sASNz9ESJQOnupzcv3tYS/pn7g788Z5TL2P
anwmSyLi6hyiYKP6RE2Rj6kD/jOX
-----END CERTIFICATE-----