Esempio n. 1
0
File: app.py Progetto: npk/june
def main():
    init_options()
    application = create_application()
    run_server(application)
Esempio n. 2
0
File: app.py Progetto: zofuthan/july

class HomeHandler(JulyHandler):
    def get(self):
        self.render('home.html')

    def post(self):
        user = self.get_argument('user')
        subject = self.get_argument('subject')
        body = self.get_argument('body')
        dct = dict(user=user, subject=subject, body=body, subtype='html')
        self.redirect('/')
        webservice.post('mail/outbox', dct)


handlers = [
    ('/', HomeHandler),
]


settings = dict(
    template_path=os.path.join(ROOT, 'templates'),
)

application = JulyApplication(handlers=handlers, debug=True, **settings)

application.register_app('july.ext.mail.handlers.app', url_prefix='/mail')

if __name__ == '__main__':
    run_server(application)