Package pulp :: Package server :: Package webservices :: Package controllers
[hide private]
[frames] | no frames]

Source Code for Package pulp.server.webservices.controllers

 1  #!/usr/bin/env python 
 2  # -*- coding: utf-8 -*- 
 3  # 
 4  # Copyright © 2010 Red Hat, Inc. 
 5  # 
 6  # This software is licensed to you under the GNU General Public License, 
 7  # version 2 (GPLv2). There is NO WARRANTY for this software, express or 
 8  # implied, including the implied warranties of MERCHANTABILITY or FITNESS 
 9  # FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 
10  # along with this software; if not, see 
11  # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. 
12  # 
13  # Red Hat trademarks are not licensed under GPLv2. No permission is 
14  # granted to use or replicate Red Hat trademarks that are incorporated 
15  # in this software or its documentation. 
16   
17  # These imports are necessary to load the URLs into the web application, 
18  # even though they aren't used directly by this module 
19  import audit 
20  import consumergroups 
21  import consumers 
22  import packages 
23  import repositories 
24  import users 
25  import errata 
26  import test 
27   
28  __all__ = [ 
29      'audit', 
30      'consumergroups', 
31      'consumers',  
32      'packages',  
33      'repositories', 
34      'users', 
35      'errata', 
36      'test', 
37  ] 
38