VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/testmanager/cgi/index.py@ 76583

Last change on this file since 76583 was 76553, checked in by vboxsync, 6 years ago

scm --update-copyright-year

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3# $Id: index.py 76553 2019-01-01 01:45:53Z vboxsync $
4
5"""
6CGI - Web UI - Main (index) page.
7"""
8
9__copyright__ = \
10"""
11Copyright (C) 2012-2019 Oracle Corporation
12
13This file is part of VirtualBox Open Source Edition (OSE), as
14available from http://www.virtualbox.org. This file is free software;
15you can redistribute it and/or modify it under the terms of the GNU
16General Public License (GPL) as published by the Free Software
17Foundation, in version 2 as it comes in the "COPYING" file of the
18VirtualBox OSE distribution. VirtualBox OSE is distributed in the
19hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
20
21The contents of this file may alternatively be used under the terms
22of the Common Development and Distribution License Version 1.0
23(CDDL) only, as it comes in the "COPYING.CDDL" file of the
24VirtualBox OSE distribution, in which case the provisions of the
25CDDL are applicable instead of those of the GPL.
26
27You may elect to license modified versions of this file under the
28terms and conditions of either the GPL or the CDDL or both.
29"""
30__version__ = "$Revision: 76553 $"
31
32
33# Standard python imports.
34import os
35import sys
36
37# Only the main script needs to modify the path.
38g_ksValidationKitDir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))));
39sys.path.append(g_ksValidationKitDir);
40
41# Validation Kit imports.
42from testmanager import config;
43from testmanager.core.webservergluecgi import WebServerGlueCgi;
44from testmanager.webui.wuimain import WuiMain;
45
46
47def main():
48 """
49 Main function a la C/C++. Returns exit code.
50 """
51
52 oSrvGlue = WebServerGlueCgi(g_ksValidationKitDir, fHtmlOutput = False);
53 try:
54 oWui = WuiMain(oSrvGlue);
55 oWui.dispatchRequest();
56 oSrvGlue.flush();
57 except Exception as oXcpt:
58 return oSrvGlue.errorPage('Internal error: %s' % (str(oXcpt),), sys.exc_info());
59
60 return 0;
61
62if __name__ == '__main__':
63 if config.g_kfProfileIndex:
64 from testmanager.debug import cgiprofiling;
65 sys.exit(cgiprofiling.profileIt(main));
66 else:
67 sys.exit(main());
68
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette