Package base :: Package includes :: Module appglobals
[hide private]

Source Code for Module base.includes.appglobals

 1  #!/usr/bin/env python 
 2   
 3  """ 
 4    Site-wide globals variables 
 5   
 6    @package base.includes 
 7    @see <a href='http://drupy.net'>Drupy Homepage</a> 
 8    @see <a href='http://drupal.org'>Drupal Homepage</a> 
 9    @note Drupy is a port of the Drupal project. 
10    @author Brendon Crawford 
11    @copyright 2008 Brendon Crawford 
12    @contact message144 at users dot sourceforge dot net 
13    @created 2008-01-10 
14    @version 0.1 
15    @note License: 
16   
17      This program is free software; you can redistribute it and/or 
18      modify it under the terms of the GNU General Public License 
19      as published by the Free Software Foundation; either version 2 
20      of the License, or (at your option) any later version. 
21   
22      This program is distributed in the hope that it will be useful, 
23      but WITHOUT ANY WARRANTY; without even the implied warranty of 
24      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
25      GNU General Public License for more details. 
26   
27      You should have received a copy of the GNU General Public License 
28      along with this program; if not, write to: 
29       
30      The Free Software Foundation, Inc., 
31      51 Franklin Street, Fifth Floor, 
32      Boston, MA  02110-1301, 
33      USA 
34  """ 
35   
36  __version__ = "$Revision: 1 $" 
37   
38  # 
39  # The following are within the settings namespace 
40  # 
41   
42  #conf = None 
43  #cookie_domain = None 
44  #db_prefix = None 
45  #db_url = None 
46  #update_free_access = None 
47  #base_url = None 
48   
49  # 
50  # The following are within the appglobals namespace 
51  # 
52   
53  active_db = None 
54  base_path = None 
55  base_root = None 
56  base_theme_info = None 
57  base_url = None 
58  channel = None 
59  custom_theme = None 
60  db_type = None 
61  element = None 
62  forum_topic_list_header = None 
63  id = None 
64  image = None 
65  installed_profile = None 
66  install_locale = None 
67  item = None 
68  items = None 
69  language = None 
70  last_result = None 
71  menu_admin = None 
72  multibyte = None 
73  nid = None 
74  pager_page_array = None 
75  pager_total = None 
76  pager_total_items = None 
77  profile = None 
78  queries = None 
79  recent_activity = None 
80  tag = None 
81  theme = None 
82  theme_engine = None 
83  theme_info = None 
84  theme_key = None 
85  theme_path = None 
86  timers = None 
87  update_mode = None 
88  user = None 
89  xrds_current_service = None 
90  xrds_open_elements = None 
91  xrds_services = None 
92