Package backend :: Module _apache
[hide private]
[frames] | no frames]

Source Code for Module backend._apache

 1  #!/usr/bin/python2 
 2  # 
 3  # Copyright (c) 2008--2018 Red Hat, Inc. 
 4  # 
 5  # This software is licensed to you under the GNU General Public License, 
 6  # version 2 (GPLv2). There is NO WARRANTY for this software, express or 
 7  # implied, including the implied warranties of MERCHANTABILITY or FITNESS 
 8  # FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 
 9  # along with this software; if not, see 
10  # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. 
11  # 
12  # Red Hat trademarks are not licensed under GPLv2. No permission is 
13  # granted to use or replicate Red Hat trademarks that are incorporated 
14  # in this software or its documentation. 
15  # 
16  # 
17  # this is a dummy module that makes pychecker happy and provides 
18  # the _apache module, whcih is normally provided by mod_python 
19  # when a script runs under it 
20   
21  SERVER_RETURN = 0 
22   
23   
24 -def log_error(*_args):
25 pass
26 27
28 -def make_table(*_args):
29 pass
30 31
32 -def parse_qs(*_args):
33 pass
34 35
36 -def parse_qsl(*_args):
37 pass
38 39 status = None 40 table = None 41 config_tree = None 42 server_root = None 43 mpm_query = None 44 45 # Variables for apache 2+ 46 exists_config_define = None 47 stat = None 48 49 AP_CONN_UNKNOWN = None 50 AP_CONN_CLOSE = None 51 AP_CONN_KEEPALIVE = None 52 53 APR_NOFILE = None 54 APR_REG = None 55 APR_DIR = None 56 APR_CHR = None 57 APR_BLK = None 58 APR_PIPE = None 59 APR_LNK = None 60 APR_SOCK = None 61 APR_UNKFILE = None 62