Beispiel #1
0
def main():
  """this comment to appease pylint."""
  if deploy.is_local_development():
    logging.info("deploy.is_local_development()==True")
  else:
    # we have lots of debug and info's
    logging.getLogger().setLevel(logging.INFO)
  run_wsgi_app(APPLICATION)
Beispiel #2
0
def main():
    """this comment to appease pylint."""
    if deploy.is_local_development():
        logging.info("deploy.is_local_development()==True")
    else:
        # we have lots of debug and info's
        logging.getLogger().setLevel(logging.INFO)
    run_wsgi_app(APPLICATION)
Beispiel #3
0
     (urls.URL_PARTNERS, views.partner_page_view),
     (urls.URL_OLD_HOME, views.home_page_redir_view),
     (urls.URL_DATAHUB_DASHBOARD, views.datahub_dashboard_view),
     (urls.URL_API_SEARCH, views.search_view),
     (urls.URL_UI_SNIPPETS, views.ui_snippets_view),

     (urls.URL_REDIRECT, views.redirect_view),
     (urls.URL_HOME4HOLIDAYS, views.home4holidays_redir_view), # this is a redirect

     (urls.URL_CONSUMER_UI_SEARCH_REDIR, views.consumer_ui_search_redir_view),
     (urls.URL_CONSUMER_UI_SEARCH, views.consumer_ui_search_view),
     (urls.URL_CONSUMER_UI_REPORT, views.consumer_ui_search_view),
    ] 
    + [ (url, views.static_content) for url in
         urls.CONTENT_FILES.iterkeys() ] 
    + [ ('/.*', views.not_found_handler) ],
    debug=deploy.is_local_development())


def main():
  """this comment to appease pylint."""
  if deploy.is_local_development():
    logging.info("deploy.is_local_development()==True")
  else:
    # we have lots of debug and info's
    logging.getLogger().setLevel(logging.INFO)
  run_wsgi_app(APPLICATION)

if __name__ == "__main__":
  main()
Beispiel #4
0
    [
        (urls.URL_HOME, views.home_page_view),
        (urls.URL_PARTNERS, views.partner_page_view),
        (urls.URL_OLD_HOME, views.home_page_redir_view),
        (urls.URL_DATAHUB_DASHBOARD, views.datahub_dashboard_view),
        (urls.URL_API_SEARCH, views.search_view),
        (urls.URL_UI_SNIPPETS, views.ui_snippets_view),
        (urls.URL_REDIRECT, views.redirect_view),
        (urls.URL_HOME4HOLIDAYS, views.home4holidays_redir_view),  # this is a redirect
        (urls.URL_CONSUMER_UI_SEARCH_REDIR, views.consumer_ui_search_redir_view),
        (urls.URL_CONSUMER_UI_SEARCH, views.consumer_ui_search_view),
        (urls.URL_CONSUMER_UI_REPORT, views.consumer_ui_search_view),
    ]
    + [(url, views.static_content) for url in urls.CONTENT_FILES.iterkeys()]
    + [("/.*", views.not_found_handler)],
    debug=deploy.is_local_development(),
)


def main():
    """this comment to appease pylint."""
    if deploy.is_local_development():
        logging.info("deploy.is_local_development()==True")
    else:
        # we have lots of debug and info's
        logging.getLogger().setLevel(logging.INFO)
    run_wsgi_app(APPLICATION)


if __name__ == "__main__":
    main()