<%@ LANGUAGE = Python %> <% # -*-python-*- # # Copyright (C) 1999-2012 The ViewCVS Group. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the ViewVC # distribution or at http://viewvc.org/license-1.html. # # For more information, visit http://viewvc.org/ # # ----------------------------------------------------------------------- # # query.asp: View CVS/SVN commit database by web browser # # ----------------------------------------------------------------------- # # This is a teeny stub to launch the main ViewVC app. It checks the load # average, then loads the (precompiled) query.py file and runs it. # # ----------------------------------------------------------------------- # ######################################################################### # # INSTALL-TIME CONFIGURATION # # These values will be set during the installation process. During # development, they will remain None. # LIBRARY_DIR = None CONF_PATHNAME = None ######################################################################### # # Adjust sys.path to include our library directory # import sys if LIBRARY_DIR: if not LIBRARY_DIR in sys.path: sys.path.insert(0, LIBRARY_DIR) ######################################################################### import sapi import viewvc import query server = sapi.AspServer(Server, Request, Response, Application) try: cfg = viewvc.load_config(CONF_PATHNAME, server) viewvc_base_url = cfg.query.viewvc_base_url if viewvc_base_url is None: viewvc_base_url = "viewvc.asp" query.main(server, cfg, viewvc_base_url) finally: s.close() %>