Package backend :: Package server :: Module apacheServer
[hide private]
[frames] | no frames]

Source Code for Module backend.server.apacheServer

 1  # 
 2  # Copyright (c) 2008--2015 Red Hat, Inc. 
 3  # 
 4  # This software is licensed to you under the GNU General Public License, 
 5  # version 2 (GPLv2). There is NO WARRANTY for this software, express or 
 6  # implied, including the implied warranties of MERCHANTABILITY or FITNESS 
 7  # FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 
 8  # along with this software; if not, see 
 9  # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. 
10  # 
11  # Red Hat trademarks are not licensed under GPLv2. No permission is 
12  # granted to use or replicate Red Hat trademarks that are incorporated 
13  # in this software or its documentation. 
14  # 
15   
16  # global module imports 
17  from apacheHandler import apacheHandler 
18  apache_server = apacheHandler() 
19  HeaderParserHandler = apache_server.headerParserHandler 
20  Handler = apache_server.handler 
21  CleanupHandler = apache_server.cleanupHandler 
22  LogHandler = apache_server.logHandler 
23   
24   
25  # Instantiate external entry points: 
26  #HeaderParserHandler = HandlerWrap("headerParserHandler", init=1) 
27  #Handler             = HandlerWrap("handler") 
28  #CleanupHandler      = HandlerWrap("cleanupHandler") 
29  #LogHandler          = HandlerWrap("logHandler") 
30