1 |
|
---|
2 | <!DOCTYPE html>
|
---|
3 | <html lang="en">
|
---|
4 | <head>
|
---|
5 | <meta http-equiv="content-type" content="text/html; charset=utf-8">
|
---|
6 | <meta name="robots" content="NONE,NOARCHIVE">
|
---|
7 | <title>TemplateDoesNotExist at /admin/</title>
|
---|
8 | <style type="text/css">
|
---|
9 | html * { padding:0; margin:0; }
|
---|
10 | body * { padding:10px 20px; }
|
---|
11 | body * * { padding:0; }
|
---|
12 | body { font:small sans-serif; }
|
---|
13 | body>div { border-bottom:1px solid #ddd; }
|
---|
14 | h1 { font-weight:normal; }
|
---|
15 | h2 { margin-bottom:.8em; }
|
---|
16 | h2 span { font-size:80%; color:#666; font-weight:normal; }
|
---|
17 | h3 { margin:1em 0 .5em 0; }
|
---|
18 | h4 { margin:0 0 .5em 0; font-weight: normal; }
|
---|
19 | code, pre { font-size: 100%; white-space: pre-wrap; }
|
---|
20 | table { border:1px solid #ccc; border-collapse: collapse; width:100%; background:white; }
|
---|
21 | tbody td, tbody th { vertical-align:top; padding:2px 3px; }
|
---|
22 | thead th { padding:1px 6px 1px 3px; background:#fefefe; text-align:left; font-weight:normal; font-size:11px; border:1px solid #ddd; }
|
---|
23 | tbody th { width:12em; text-align:right; color:#666; padding-right:.5em; }
|
---|
24 | table.vars { margin:5px 0 2px 40px; }
|
---|
25 | table.vars td, table.req td { font-family:monospace; }
|
---|
26 | table td.code { width:100%; }
|
---|
27 | table td.code pre { overflow:hidden; }
|
---|
28 | table.source th { color:#666; }
|
---|
29 | table.source td { font-family:monospace; white-space:pre; border-bottom:1px solid #eee; }
|
---|
30 | ul.traceback { list-style-type:none; color: #222; }
|
---|
31 | ul.traceback li.frame { padding-bottom:1em; color:#666; }
|
---|
32 | ul.traceback li.user { background-color:#e0e0e0; color:#000 }
|
---|
33 | div.context { padding:10px 0; overflow:hidden; }
|
---|
34 | div.context ol { padding-left:30px; margin:0 10px; list-style-position: inside; }
|
---|
35 | div.context ol li { font-family:monospace; white-space:pre; color:#777; cursor:pointer; }
|
---|
36 | div.context ol li pre { display:inline; }
|
---|
37 | div.context ol.context-line li { color:#505050; background-color:#dfdfdf; }
|
---|
38 | div.context ol.context-line li span { position:absolute; right:32px; }
|
---|
39 | .user div.context ol.context-line li { background-color:#bbb; color:#000; }
|
---|
40 | .user div.context ol li { color:#666; }
|
---|
41 | div.commands { margin-left: 40px; }
|
---|
42 | div.commands a { color:#555; text-decoration:none; }
|
---|
43 | .user div.commands a { color: black; }
|
---|
44 | #summary { background: #ffc; }
|
---|
45 | #summary h2 { font-weight: normal; color: #666; }
|
---|
46 | #explanation { background:#eee; }
|
---|
47 | #template, #template-not-exist { background:#f6f6f6; }
|
---|
48 | #template-not-exist ul { margin: 0 0 0 20px; }
|
---|
49 | #unicode-hint { background:#eee; }
|
---|
50 | #traceback { background:#eee; }
|
---|
51 | #requestinfo { background:#f6f6f6; padding-left:120px; }
|
---|
52 | #summary table { border:none; background:transparent; }
|
---|
53 | #requestinfo h2, #requestinfo h3 { position:relative; margin-left:-100px; }
|
---|
54 | #requestinfo h3 { margin-bottom:-1em; }
|
---|
55 | .error { background: #ffc; }
|
---|
56 | .specific { color:#cc3300; font-weight:bold; }
|
---|
57 | h2 span.commands { font-size:.7em;}
|
---|
58 | span.commands a:link {color:#5E5694;}
|
---|
59 | pre.exception_value { font-family: sans-serif; color: #666; font-size: 1.5em; margin: 10px 0 10px 0; }
|
---|
60 | </style>
|
---|
61 |
|
---|
62 | <script type="text/javascript">
|
---|
63 | //<!--
|
---|
64 | function getElementsByClassName(oElm, strTagName, strClassName){
|
---|
65 | // Written by Jonathan Snook, http://www.snook.ca/jon; Add-ons by Robert Nyman, http://www.robertnyman.com
|
---|
66 | var arrElements = (strTagName == "*" && document.all)? document.all :
|
---|
67 | oElm.getElementsByTagName(strTagName);
|
---|
68 | var arrReturnElements = new Array();
|
---|
69 | strClassName = strClassName.replace(/\-/g, "\-");
|
---|
70 | var oRegExp = new RegExp("(^|\s)" + strClassName + "(\s|$)");
|
---|
71 | var oElement;
|
---|
72 | for(var i=0; i<arrElements.length; i++){
|
---|
73 | oElement = arrElements[i];
|
---|
74 | if(oRegExp.test(oElement.className)){
|
---|
75 | arrReturnElements.push(oElement);
|
---|
76 | }
|
---|
77 | }
|
---|
78 | return (arrReturnElements)
|
---|
79 | }
|
---|
80 | function hideAll(elems) {
|
---|
81 | for (var e = 0; e < elems.length; e++) {
|
---|
82 | elems[e].style.display = 'none';
|
---|
83 | }
|
---|
84 | }
|
---|
85 | window.onload = function() {
|
---|
86 | hideAll(getElementsByClassName(document, 'table', 'vars'));
|
---|
87 | hideAll(getElementsByClassName(document, 'ol', 'pre-context'));
|
---|
88 | hideAll(getElementsByClassName(document, 'ol', 'post-context'));
|
---|
89 | hideAll(getElementsByClassName(document, 'div', 'pastebin'));
|
---|
90 | }
|
---|
91 | function toggle() {
|
---|
92 | for (var i = 0; i < arguments.length; i++) {
|
---|
93 | var e = document.getElementById(arguments[i]);
|
---|
94 | if (e) {
|
---|
95 | e.style.display = e.style.display == 'none' ? 'block' : 'none';
|
---|
96 | }
|
---|
97 | }
|
---|
98 | return false;
|
---|
99 | }
|
---|
100 | function varToggle(link, id) {
|
---|
101 | toggle('v' + id);
|
---|
102 | var s = link.getElementsByTagName('span')[0];
|
---|
103 | var uarr = String.fromCharCode(0x25b6);
|
---|
104 | var darr = String.fromCharCode(0x25bc);
|
---|
105 | s.innerHTML = s.innerHTML == uarr ? darr : uarr;
|
---|
106 | return false;
|
---|
107 | }
|
---|
108 | function switchPastebinFriendly(link) {
|
---|
109 | s1 = "Switch to copy-and-paste view";
|
---|
110 | s2 = "Switch back to interactive view";
|
---|
111 | link.innerHTML = link.innerHTML == s1 ? s2 : s1;
|
---|
112 | toggle('browserTraceback', 'pastebinTraceback');
|
---|
113 | return false;
|
---|
114 | }
|
---|
115 | //-->
|
---|
116 | </script>
|
---|
117 |
|
---|
118 | </head>
|
---|
119 | <body>
|
---|
120 | <div id="summary">
|
---|
121 | <h1>TemplateDoesNotExist at /admin/</h1>
|
---|
122 | <pre class="exception_value">admin/index.html</pre>
|
---|
123 | <table class="meta">
|
---|
124 |
|
---|
125 | <tr>
|
---|
126 | <th>Request Method:</th>
|
---|
127 | <td>GET</td>
|
---|
128 | </tr>
|
---|
129 | <tr>
|
---|
130 | <th>Request URL:</th>
|
---|
131 | <td>http://localhost:8000/admin/</td>
|
---|
132 | </tr>
|
---|
133 |
|
---|
134 | <tr>
|
---|
135 | <th>Django Version:</th>
|
---|
136 | <td>1.4</td>
|
---|
137 | </tr>
|
---|
138 |
|
---|
139 | <tr>
|
---|
140 | <th>Exception Type:</th>
|
---|
141 | <td>TemplateDoesNotExist</td>
|
---|
142 | </tr>
|
---|
143 |
|
---|
144 |
|
---|
145 | <tr>
|
---|
146 | <th>Exception Value:</th>
|
---|
147 | <td><pre>admin/index.html</pre></td>
|
---|
148 | </tr>
|
---|
149 |
|
---|
150 |
|
---|
151 | <tr>
|
---|
152 | <th>Exception Location:</th>
|
---|
153 | <td>/media/data/work/clean/rmsagit/django/template/loader.py in select_template, line 193</td>
|
---|
154 | </tr>
|
---|
155 |
|
---|
156 | <tr>
|
---|
157 | <th>Python Executable:</th>
|
---|
158 | <td>/usr/local/opt/python/2.7/bin/python</td>
|
---|
159 | </tr>
|
---|
160 | <tr>
|
---|
161 | <th>Python Version:</th>
|
---|
162 | <td>2.7.2</td>
|
---|
163 | </tr>
|
---|
164 | <tr>
|
---|
165 | <th>Python Path:</th>
|
---|
166 | <td><pre>['/media/data/work/clean/rmsagit',
|
---|
167 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg',
|
---|
168 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/pylint-0.23.0-py2.7.egg',
|
---|
169 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/coverage-3.5-py2.7-linux-x86_64.egg',
|
---|
170 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/logilab_astng-0.21.1-py2.7.egg',
|
---|
171 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/logilab_common-0.56.0-py2.7.egg',
|
---|
172 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/unittest2-0.5.1-py2.7.egg',
|
---|
173 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/MySQL_python-1.2.3-py2.7-linux-x86_64.egg',
|
---|
174 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/BeautifulSoup-3.2.0-py2.7.egg',
|
---|
175 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/Fabric-1.2.0-py2.7.egg',
|
---|
176 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/paramiko-1.7.7.1-py2.7.egg',
|
---|
177 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/pycrypto-2.3-py2.7-linux-x86_64.egg',
|
---|
178 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/selenium-2.6.0-py2.7.egg',
|
---|
179 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/rdflib-3.1.0-py2.7.egg',
|
---|
180 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/Twisted-11.0.0-py2.7-linux-x86_64.egg',
|
---|
181 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/zope.interface-3.8.0-py2.7-linux-x86_64.egg',
|
---|
182 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/South-0.7.3-py2.7.egg',
|
---|
183 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/pycassa-1.2.1-py2.7.egg',
|
---|
184 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/nltk-2.0.1rc2_git-py2.7.egg',
|
---|
185 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/PyYAML-3.10-py2.7-linux-x86_64.egg',
|
---|
186 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/feedparser-5.1-py2.7.egg',
|
---|
187 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/SQLAlchemy-0.7.4-py2.7-linux-x86_64.egg',
|
---|
188 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/gevent-0.13.6-py2.7-linux-x86_64.egg',
|
---|
189 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/greenlet-0.3.3-py2.7-linux-x86_64.egg',
|
---|
190 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/Mako-0.6.1-py2.7.egg',
|
---|
191 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/MarkupSafe-0.15-py2.7-linux-x86_64.egg',
|
---|
192 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/readline-6.2.1-py2.7-linux-x86_64.egg',
|
---|
193 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/Jinja2-2.7_devdev_20120301-py2.7.egg',
|
---|
194 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/distribute-0.6.24-py2.7.egg',
|
---|
195 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/pymongo-2.1.1-py2.7-linux-x86_64.egg',
|
---|
196 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/django_mongodb_engine-0.4.0-py2.7.egg',
|
---|
197 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/djangotoolbox-0.9.2-py2.7.egg',
|
---|
198 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/scikit_learn-0.12_git-py2.7-linux-x86_64.egg',
|
---|
199 | '/usr/local/opt/python/2.7/lib/python27.zip',
|
---|
200 | '/usr/local/opt/python/2.7/lib/python2.7',
|
---|
201 | '/usr/local/opt/python/2.7/lib/python2.7/plat-linux2',
|
---|
202 | '/usr/local/opt/python/2.7/lib/python2.7/lib-tk',
|
---|
203 | '/usr/local/opt/python/2.7/lib/python2.7/lib-old',
|
---|
204 | '/usr/local/opt/python/2.7/lib/python2.7/lib-dynload',
|
---|
205 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages',
|
---|
206 | '/usr/local/opt/python/2.7/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info']</pre></td>
|
---|
207 | </tr>
|
---|
208 | <tr>
|
---|
209 | <th>Server time:</th>
|
---|
210 | <td>Sat, 19 May 2012 16:12:34 -0500</td>
|
---|
211 | </tr>
|
---|
212 | </table>
|
---|
213 | </div>
|
---|
214 |
|
---|
215 |
|
---|
216 | <div id="template-not-exist">
|
---|
217 | <h2>Template-loader postmortem</h2>
|
---|
218 |
|
---|
219 | <p>Django tried loading these templates, in this order:</p>
|
---|
220 | <ul>
|
---|
221 |
|
---|
222 | <li>Using loader <code>django.template.loaders.filesystem.Loader</code>:
|
---|
223 | <ul><li><code>/media/data/work/clean/rmsagit/customers/templates/admin/index.html</code> (File does not exist)</li></ul>
|
---|
224 | </li>
|
---|
225 |
|
---|
226 | <li>Using loader <code>django.template.loaders.app_directories.Loader</code>:
|
---|
227 | <ul><li><code>/media/data/work/clean/rmsagit/customers/templates/admin/index.html</code> (File does not exist)</li></ul>
|
---|
228 | </li>
|
---|
229 |
|
---|
230 | </ul>
|
---|
231 |
|
---|
232 | </div>
|
---|
233 |
|
---|
234 |
|
---|
235 |
|
---|
236 | <div id="traceback">
|
---|
237 | <h2>Traceback <span class="commands"><a href="#" onclick="return switchPastebinFriendly(this);">Switch to copy-and-paste view</a></span></h2>
|
---|
238 |
|
---|
239 | <div id="browserTraceback">
|
---|
240 | <ul class="traceback">
|
---|
241 |
|
---|
242 | <li class="frame django">
|
---|
243 | <code>/media/data/work/clean/rmsagit/django/core/handlers/base.py</code> in <code>get_response</code>
|
---|
244 |
|
---|
245 |
|
---|
246 | <div class="context" id="c140602948425848">
|
---|
247 |
|
---|
248 | <ol start="129" class="pre-context" id="pre140602948425848"><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> raise ValueError("The view %s.%s didn't return an HttpResponse object." % (callback.__module__, view_name))</pre></li><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre></pre></li><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> # If the response supports deferred rendering, apply template</pre></li><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> # response middleware and the render the response</pre></li><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> if hasattr(response, 'render') and callable(response.render):</pre></li><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> for middleware_method in self._template_response_middleware:</pre></li><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> response = middleware_method(request, response)</pre></li></ol>
|
---|
249 |
|
---|
250 | <ol start="136" class="context-line"><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> response = response.render()</pre> <span>...</span></li></ol>
|
---|
251 |
|
---|
252 | <ol start='137' class="post-context" id="post140602948425848"><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre></pre></li><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> except http.Http404, e:</pre></li><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> logger.warning('Not Found: %s', request.path,</pre></li><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> extra={</pre></li><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> 'status_code': 404,</pre></li><li onclick="toggle('pre140602948425848', 'post140602948425848')"><pre> 'request': request</pre></li></ol>
|
---|
253 |
|
---|
254 | </div>
|
---|
255 |
|
---|
256 |
|
---|
257 |
|
---|
258 | <div class="commands">
|
---|
259 |
|
---|
260 | <a href="#" onclick="return varToggle(this, '140602948425848')"><span>▶</span> Local vars</a>
|
---|
261 |
|
---|
262 | </div>
|
---|
263 | <table class="vars" id="v140602948425848">
|
---|
264 | <thead>
|
---|
265 | <tr>
|
---|
266 | <th>Variable</th>
|
---|
267 | <th>Value</th>
|
---|
268 | </tr>
|
---|
269 | </thead>
|
---|
270 | <tbody>
|
---|
271 |
|
---|
272 | <tr>
|
---|
273 | <td>exceptions</td>
|
---|
274 | <td class="code"><pre><module 'django.core.exceptions' from '/media/data/work/clean/rmsagit/django/core/exceptions.pyc'></pre></td>
|
---|
275 | </tr>
|
---|
276 |
|
---|
277 | <tr>
|
---|
278 | <td>callback_args</td>
|
---|
279 | <td class="code"><pre>()</pre></td>
|
---|
280 | </tr>
|
---|
281 |
|
---|
282 | <tr>
|
---|
283 | <td>settings</td>
|
---|
284 | <td class="code"><pre><django.conf.LazySettings object at 0x7fe0bac9e810></pre></td>
|
---|
285 | </tr>
|
---|
286 |
|
---|
287 | <tr>
|
---|
288 | <td>middleware_method</td>
|
---|
289 | <td class="code"><pre><bound method CsrfViewMiddleware.process_view of <django.middleware.csrf.CsrfViewMiddleware object at 0x7fe0b42c2190>></pre></td>
|
---|
290 | </tr>
|
---|
291 |
|
---|
292 | <tr>
|
---|
293 | <td>self</td>
|
---|
294 | <td class="code"><pre><django.core.handlers.wsgi.WSGIHandler object at 0x167c450></pre></td>
|
---|
295 | </tr>
|
---|
296 |
|
---|
297 | <tr>
|
---|
298 | <td>request</td>
|
---|
299 | <td class="code"><pre>"<WSGIRequest\npath:/admin/,\nGET:<QueryDict: {}>,\nPOST:<QueryDict: {}>,\nCOOKIES:{'csrftoken': 'a4765919d2f259f8021905c01a612584',\n 'sessionid': 'c29d5036d67a46c77d1e15b231e876fb'},\nMETA:{'ANDROID_NDK': '/media/data/installs/android/ndk/android-ndk-r7c',\n 'ANDROID_SDK': '/media/data/installs/android/android-sdk-linux_x86',\n 'APPENGINE_HOME': '/media/data/installs/appengine/1.6.1/google_appengine',\n 'CCACHE_DIR': '/media/data/tmp/androidcache',\n 'COLORTERM': 'gnome-terminal',\n 'COMPIZ_CONFIG_PROFILE': 'ubuntu',\n 'CONTENT_LENGTH': '',\n 'CONTENT_TYPE': 'text/plain',\n 'CSRF_COOKIE': 'a4765919d2f259f8021905c01a612584',\n 'DBUS_SESSION_BUS_ADDRESS': 'unix:abstract=/tmp/dbus-HMSXu7Srum,guid=972e48a711ac40709321b7b900000070',\n 'DEFAULTS_PATH': '/usr/share/gconf/ubuntu.default.path',\n 'DESKTOP_SESSION': 'ubuntu',\n 'DISPLAY': ':0.0',\n 'DJANGO_SETTINGS_MODULE': 'settings',\n 'GATEWAY_INTERFACE': 'CGI/1.1',\n 'GDMSESSION': 'ubuntu',\n 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated',\n 'GNOME_KEYRING_CONTROL': '/tmp/keyring-cItQG0',\n 'GNOME_KEYRING_PID': '2417',\n 'GPG_AGENT_INFO': '/tmp/keyring-cItQG0/gpg:0:1',\n 'GRAILS_HOME': '/usr/local/opt/grails/grails-1.3.7/',\n 'GTK_MODULES': 'canberra-gtk-module:canberra-gtk-module',\n 'HOME': '/home/rmsa',\n 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',\n 'HTTP_ACCEPT_CHARSET': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3',\n 'HTTP_ACCEPT_ENCODING': 'gzip,deflate,sdch',\n 'HTTP_ACCEPT_LANGUAGE': 'en-US,en;q=0.8',\n 'HTTP_CONNECTION': 'keep-alive',\n 'HTTP_COOKIE': 'csrftoken=a4765919d2f259f8021905c01a612584; sessionid=c29d5036d67a46c77d1e15b231e876fb',\n 'HTTP_HOST': 'localhost:8000',\n 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.168 Safari/535.19',\n 'JAVA_HOME': '/usr/local/opt/java/jdk1.6.0_26',\n 'LANG': 'en_US.UTF-8',\n 'LANGUAGE': 'en_US:en',\n 'LC_COLLATE': 'en_US.UTF-8',\n 'LC_CTYPE': 'en_US.UTF-8',\n 'LC_MESSAGES': 'en_US.UTF-8',\n 'LESSCLOSE': '/usr/bin/lesspipe %s %s',\n 'LESSOPEN': '| /usr/bin/lesspipe %s',\n 'LOGNAME': 'rmsa',\n 'LS_COLORS': 'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:',\n 'M2': '/media/data/installs/mvn/apache-maven-3.0.3/bin',\n 'M2_HOME': '/media/data/installs/mvn/apache-maven-3.0.3',\n 'MANDATORY_PATH': '/usr/share/gconf/ubuntu.mandatory.path',\n 'OLDPWD': '/media/data/installs/ccnx/ccnx-0.6.0/bin',\n 'PATH': '/home/rmsa/bin:/usr/lib/lightdm/lightdm:/media/data/installs/httpd/v2.2.22/bin:/media/data/installs/android/android-sdk-linux_x86/tools:/home/rmsa/bin:/media/data/installs/android/ndk/android-ndk-r7c:/media/data/installs/appengine/1.6.1/google_appengine:/usr/local/opt/rebar:/media/data/installs/sasylf/1.0.2:/media/data/installs/mvn/apache-maven-3.0.3/bin:/usr/local/opt/wireshark/1.6.1/bin:/usr/local/opt/grails/grails-1.3.7/bin:/usr/local/opt/java/jdk1.6.0_26/bin:/usr/local/opt/python/2.7/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games',\n 'PATH_INFO': u'/admin/',\n 'PWD': '/media/data/work/clean/rmsagit',\n 'QUERY_STRING': '',\n 'REMOTE_ADDR': '127.0.0.1',\n 'REMOTE_HOST': '',\n 'REQUEST_METHOD': 'GET',\n 'RUN_MAIN': 'true',\n 'SCRIPT_NAME': u'',\n 'SERVER_NAME': 'localhost.localdomain',\n 'SERVER_PORT': '8000',\n 'SERVER_PROTOCOL': 'HTTP/1.1',\n 'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.7.2',\n 'SESSION_MANAGER': 'local/ubuntu-mac:@/tmp/.ICE-unix/2428,unix/ubuntu-mac:/tmp/.ICE-unix/2428',\n 'SHELL': '/bin/bash',\n 'SHLVL': '1',\n 'SPEECHD_PORT': '7560',\n 'SSH_AGENT_PID': '2472',\n 'SSH_AUTH_SOCK': '/tmp/keyring-cItQG0/ssh',\n 'TERM': 'xterm',\n 'TZ': 'America/Chicago',\n 'UBUNTU_MENUPROXY': 'libappmenu.so',\n 'USER': 'rmsa',\n 'USE_CCACHE': '1',\n 'WINDOWID': '62914566',\n 'XAUTHORITY': '/home/rmsa/.Xauthority',\n 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-ubuntu:/etc/xdg',\n 'XDG_CURRENT_DESKTOP': 'Unity',\n 'XDG_DATA_DIRS': '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/',\n 'XDG_SEAT_PATH': '/org/freedesktop/DisplayManager/Seat0',\n 'XDG_SESSION_COOKIE': '44732186f646f4d3ea55161e4e0972d3-1337255125.754199-926011670',\n 'XDG_SESSION_PATH': '/org/freedesktop/DisplayManager/Session0',\n '_': '/usr/local/opt/python/2.7/bin/python',\n 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7fe0be864270>,\n 'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0x117f120>,\n 'wsgi.input': <socket._fileobject object at 0x7fe0aca880d0>,\n 'wsgi.multiprocess': False,\n 'wsgi.multithread': True,\n 'wsgi.run_once': False,\n 'wsgi.url_scheme': 'http',\n 'wsgi.version': (1, 0)}>"</pre></td>
|
---|
300 | </tr>
|
---|
301 |
|
---|
302 | <tr>
|
---|
303 | <td>callback</td>
|
---|
304 | <td class="code"><pre><function index at 0x7fe0b42db320></pre></td>
|
---|
305 | </tr>
|
---|
306 |
|
---|
307 | <tr>
|
---|
308 | <td>resolver</td>
|
---|
309 | <td class="code"><pre><RegexURLResolver urls (None:None) ^/></pre></td>
|
---|
310 | </tr>
|
---|
311 |
|
---|
312 | <tr>
|
---|
313 | <td>urlresolvers</td>
|
---|
314 | <td class="code"><pre><module 'django.core.urlresolvers' from '/media/data/work/clean/rmsagit/django/core/urlresolvers.pyc'></pre></td>
|
---|
315 | </tr>
|
---|
316 |
|
---|
317 | <tr>
|
---|
318 | <td>callback_kwargs</td>
|
---|
319 | <td class="code"><pre>{}</pre></td>
|
---|
320 | </tr>
|
---|
321 |
|
---|
322 | <tr>
|
---|
323 | <td>response</td>
|
---|
324 | <td class="code"><pre><django.template.response.TemplateResponse object at 0x7fe0ad1559d0></pre></td>
|
---|
325 | </tr>
|
---|
326 |
|
---|
327 | <tr>
|
---|
328 | <td>urlconf</td>
|
---|
329 | <td class="code"><pre>'urls'</pre></td>
|
---|
330 | </tr>
|
---|
331 |
|
---|
332 | </tbody>
|
---|
333 | </table>
|
---|
334 |
|
---|
335 | </li>
|
---|
336 |
|
---|
337 | <li class="frame django">
|
---|
338 | <code>/media/data/work/clean/rmsagit/django/template/response.py</code> in <code>render</code>
|
---|
339 |
|
---|
340 |
|
---|
341 | <div class="context" id="c140602948425704">
|
---|
342 |
|
---|
343 | <ol start="97" class="pre-context" id="pre140602948425704"><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre></pre></li><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre> If the content has already been rendered, this is a no-op.</pre></li><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre></pre></li><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre> Returns the baked response instance.</pre></li><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre> """</pre></li><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre> retval = self</pre></li><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre> if not self._is_rendered:</pre></li></ol>
|
---|
344 |
|
---|
345 | <ol start="104" class="context-line"><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre> self._set_content(self.rendered_content)</pre> <span>...</span></li></ol>
|
---|
346 |
|
---|
347 | <ol start='105' class="post-context" id="post140602948425704"><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre> for post_callback in self._post_render_callbacks:</pre></li><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre> newretval = post_callback(retval)</pre></li><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre> if newretval is not None:</pre></li><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre> retval = newretval</pre></li><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre> return retval</pre></li><li onclick="toggle('pre140602948425704', 'post140602948425704')"><pre></pre></li></ol>
|
---|
348 |
|
---|
349 | </div>
|
---|
350 |
|
---|
351 |
|
---|
352 |
|
---|
353 | <div class="commands">
|
---|
354 |
|
---|
355 | <a href="#" onclick="return varToggle(this, '140602948425704')"><span>▶</span> Local vars</a>
|
---|
356 |
|
---|
357 | </div>
|
---|
358 | <table class="vars" id="v140602948425704">
|
---|
359 | <thead>
|
---|
360 | <tr>
|
---|
361 | <th>Variable</th>
|
---|
362 | <th>Value</th>
|
---|
363 | </tr>
|
---|
364 | </thead>
|
---|
365 | <tbody>
|
---|
366 |
|
---|
367 | <tr>
|
---|
368 | <td>self</td>
|
---|
369 | <td class="code"><pre><django.template.response.TemplateResponse object at 0x7fe0ad1559d0></pre></td>
|
---|
370 | </tr>
|
---|
371 |
|
---|
372 | <tr>
|
---|
373 | <td>retval</td>
|
---|
374 | <td class="code"><pre><django.template.response.TemplateResponse object at 0x7fe0ad1559d0></pre></td>
|
---|
375 | </tr>
|
---|
376 |
|
---|
377 | </tbody>
|
---|
378 | </table>
|
---|
379 |
|
---|
380 | </li>
|
---|
381 |
|
---|
382 | <li class="frame django">
|
---|
383 | <code>/media/data/work/clean/rmsagit/django/template/response.py</code> in <code>rendered_content</code>
|
---|
384 |
|
---|
385 |
|
---|
386 | <div class="context" id="c140602948425992">
|
---|
387 |
|
---|
388 | <ol start="72" class="pre-context" id="pre140602948425992"><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> """Returns the freshly rendered content for the template and context</pre></li><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> described by the TemplateResponse.</pre></li><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre></pre></li><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> This *does not* set the final content of the response. To set the</pre></li><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> response content, you must either call render(), or set the</pre></li><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> content explicitly using the value of this property.</pre></li><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> """</pre></li></ol>
|
---|
389 |
|
---|
390 | <ol start="79" class="context-line"><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> template = self.resolve_template(self.template_name)</pre> <span>...</span></li></ol>
|
---|
391 |
|
---|
392 | <ol start='80' class="post-context" id="post140602948425992"><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> context = self.resolve_context(self.context_data)</pre></li><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> content = template.render(context)</pre></li><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> return content</pre></li><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre></pre></li><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> def add_post_render_callback(self, callback):</pre></li><li onclick="toggle('pre140602948425992', 'post140602948425992')"><pre> """Adds a new post-rendering callback.</pre></li></ol>
|
---|
393 |
|
---|
394 | </div>
|
---|
395 |
|
---|
396 |
|
---|
397 |
|
---|
398 | <div class="commands">
|
---|
399 |
|
---|
400 | <a href="#" onclick="return varToggle(this, '140602948425992')"><span>▶</span> Local vars</a>
|
---|
401 |
|
---|
402 | </div>
|
---|
403 | <table class="vars" id="v140602948425992">
|
---|
404 | <thead>
|
---|
405 | <tr>
|
---|
406 | <th>Variable</th>
|
---|
407 | <th>Value</th>
|
---|
408 | </tr>
|
---|
409 | </thead>
|
---|
410 | <tbody>
|
---|
411 |
|
---|
412 | <tr>
|
---|
413 | <td>self</td>
|
---|
414 | <td class="code"><pre><django.template.response.TemplateResponse object at 0x7fe0ad1559d0></pre></td>
|
---|
415 | </tr>
|
---|
416 |
|
---|
417 | </tbody>
|
---|
418 | </table>
|
---|
419 |
|
---|
420 | </li>
|
---|
421 |
|
---|
422 | <li class="frame django">
|
---|
423 | <code>/media/data/work/clean/rmsagit/django/template/response.py</code> in <code>resolve_template</code>
|
---|
424 |
|
---|
425 |
|
---|
426 | <div class="context" id="c140602948425920">
|
---|
427 |
|
---|
428 | <ol start="48" class="pre-context" id="pre140602948425920"><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre> del obj_dict[attr]</pre></li><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre></pre></li><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre> return obj_dict</pre></li><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre></pre></li><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre> def resolve_template(self, template):</pre></li><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre> "Accepts a template object, path-to-template or list of paths"</pre></li><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre> if isinstance(template, (list, tuple)):</pre></li></ol>
|
---|
429 |
|
---|
430 | <ol start="55" class="context-line"><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre> return loader.select_template(template)</pre> <span>...</span></li></ol>
|
---|
431 |
|
---|
432 | <ol start='56' class="post-context" id="post140602948425920"><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre> elif isinstance(template, basestring):</pre></li><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre> return loader.get_template(template)</pre></li><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre> else:</pre></li><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre> return template</pre></li><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre></pre></li><li onclick="toggle('pre140602948425920', 'post140602948425920')"><pre> def resolve_context(self, context):</pre></li></ol>
|
---|
433 |
|
---|
434 | </div>
|
---|
435 |
|
---|
436 |
|
---|
437 |
|
---|
438 | <div class="commands">
|
---|
439 |
|
---|
440 | <a href="#" onclick="return varToggle(this, '140602948425920')"><span>▶</span> Local vars</a>
|
---|
441 |
|
---|
442 | </div>
|
---|
443 | <table class="vars" id="v140602948425920">
|
---|
444 | <thead>
|
---|
445 | <tr>
|
---|
446 | <th>Variable</th>
|
---|
447 | <th>Value</th>
|
---|
448 | </tr>
|
---|
449 | </thead>
|
---|
450 | <tbody>
|
---|
451 |
|
---|
452 | <tr>
|
---|
453 | <td>self</td>
|
---|
454 | <td class="code"><pre><django.template.response.TemplateResponse object at 0x7fe0ad1559d0></pre></td>
|
---|
455 | </tr>
|
---|
456 |
|
---|
457 | <tr>
|
---|
458 | <td>template</td>
|
---|
459 | <td class="code"><pre>['admin/index.html']</pre></td>
|
---|
460 | </tr>
|
---|
461 |
|
---|
462 | </tbody>
|
---|
463 | </table>
|
---|
464 |
|
---|
465 | </li>
|
---|
466 |
|
---|
467 | <li class="frame django">
|
---|
468 | <code>/media/data/work/clean/rmsagit/django/template/loader.py</code> in <code>select_template</code>
|
---|
469 |
|
---|
470 |
|
---|
471 | <div class="context" id="c140602948425776">
|
---|
472 |
|
---|
473 | <ol start="186" class="pre-context" id="pre140602948425776"><li onclick="toggle('pre140602948425776', 'post140602948425776')"><pre> try:</pre></li><li onclick="toggle('pre140602948425776', 'post140602948425776')"><pre> return get_template(template_name)</pre></li><li onclick="toggle('pre140602948425776', 'post140602948425776')"><pre> except TemplateDoesNotExist, e:</pre></li><li onclick="toggle('pre140602948425776', 'post140602948425776')"><pre> if e.args[0] not in not_found:</pre></li><li onclick="toggle('pre140602948425776', 'post140602948425776')"><pre> not_found.append(e.args[0])</pre></li><li onclick="toggle('pre140602948425776', 'post140602948425776')"><pre> continue</pre></li><li onclick="toggle('pre140602948425776', 'post140602948425776')"><pre> # If we get here, none of the templates could be loaded</pre></li></ol>
|
---|
474 |
|
---|
475 | <ol start="193" class="context-line"><li onclick="toggle('pre140602948425776', 'post140602948425776')"><pre> raise TemplateDoesNotExist(', '.join(not_found))</pre> <span>...</span></li></ol>
|
---|
476 |
|
---|
477 | <ol start='194' class="post-context" id="post140602948425776"><li onclick="toggle('pre140602948425776', 'post140602948425776')"><pre></pre></li><li onclick="toggle('pre140602948425776', 'post140602948425776')"><pre>add_to_builtins('django.template.loader_tags')</pre></li></ol>
|
---|
478 |
|
---|
479 | </div>
|
---|
480 |
|
---|
481 |
|
---|
482 |
|
---|
483 | <div class="commands">
|
---|
484 |
|
---|
485 | <a href="#" onclick="return varToggle(this, '140602948425776')"><span>▶</span> Local vars</a>
|
---|
486 |
|
---|
487 | </div>
|
---|
488 | <table class="vars" id="v140602948425776">
|
---|
489 | <thead>
|
---|
490 | <tr>
|
---|
491 | <th>Variable</th>
|
---|
492 | <th>Value</th>
|
---|
493 | </tr>
|
---|
494 | </thead>
|
---|
495 | <tbody>
|
---|
496 |
|
---|
497 | <tr>
|
---|
498 | <td>template_name</td>
|
---|
499 | <td class="code"><pre>'admin/index.html'</pre></td>
|
---|
500 | </tr>
|
---|
501 |
|
---|
502 | <tr>
|
---|
503 | <td>not_found</td>
|
---|
504 | <td class="code"><pre>['admin/index.html']</pre></td>
|
---|
505 | </tr>
|
---|
506 |
|
---|
507 | <tr>
|
---|
508 | <td>e</td>
|
---|
509 | <td class="code"><pre>TemplateDoesNotExist('admin/index.html',)</pre></td>
|
---|
510 | </tr>
|
---|
511 |
|
---|
512 | <tr>
|
---|
513 | <td>template_name_list</td>
|
---|
514 | <td class="code"><pre>['admin/index.html']</pre></td>
|
---|
515 | </tr>
|
---|
516 |
|
---|
517 | </tbody>
|
---|
518 | </table>
|
---|
519 |
|
---|
520 | </li>
|
---|
521 |
|
---|
522 | </ul>
|
---|
523 | </div>
|
---|
524 |
|
---|
525 | <form action="http://dpaste.com/" name="pasteform" id="pasteform" method="post">
|
---|
526 |
|
---|
527 | <div id="pastebinTraceback" class="pastebin">
|
---|
528 | <input type="hidden" name="language" value="PythonConsole">
|
---|
529 | <input type="hidden" name="title" value="TemplateDoesNotExist at /admin/">
|
---|
530 | <input type="hidden" name="source" value="Django Dpaste Agent">
|
---|
531 | <input type="hidden" name="poster" value="Django">
|
---|
532 | <textarea name="content" id="traceback_area" cols="140" rows="25">
|
---|
533 | Environment:
|
---|
534 |
|
---|
535 |
|
---|
536 | Request Method: GET
|
---|
537 | Request URL: http://localhost:8000/admin/
|
---|
538 |
|
---|
539 | Django Version: 1.4
|
---|
540 | Python Version: 2.7.2
|
---|
541 | Installed Applications:
|
---|
542 | ('django.contrib.auth',
|
---|
543 | 'django.contrib.contenttypes',
|
---|
544 | 'django.contrib.sessions',
|
---|
545 | 'django.contrib.messages',
|
---|
546 | 'django.contrib.staticfiles',
|
---|
547 | 'django.contrib.admin',
|
---|
548 | 'customers',
|
---|
549 | 'keyerror_django_client',
|
---|
550 | 'django_jenkins')
|
---|
551 | Installed Middleware:
|
---|
552 | ('django.middleware.common.CommonMiddleware',
|
---|
553 | 'django.contrib.sessions.middleware.SessionMiddleware',
|
---|
554 | 'django.middleware.csrf.CsrfViewMiddleware',
|
---|
555 | 'django.contrib.auth.middleware.AuthenticationMiddleware',
|
---|
556 | 'django.contrib.messages.middleware.MessageMiddleware',
|
---|
557 | 'django.contrib.messages.middleware.MessageMiddleware',
|
---|
558 | 'middleware_console_error_messages.ConsoleExceptionMiddleware')
|
---|
559 |
|
---|
560 | Template Loader Error:
|
---|
561 | Django tried loading these templates, in this order:
|
---|
562 | Using loader django.template.loaders.filesystem.Loader:
|
---|
563 | /media/data/work/clean/rmsagit/customers/templates/admin/index.html (File does not exist)
|
---|
564 | Using loader django.template.loaders.app_directories.Loader:
|
---|
565 | /media/data/work/clean/rmsagit/customers/templates/admin/index.html (File does not exist)
|
---|
566 |
|
---|
567 |
|
---|
568 |
|
---|
569 | Traceback:
|
---|
570 | File "/media/data/work/clean/rmsagit/django/core/handlers/base.py" in get_response
|
---|
571 | 136. response = response.render()
|
---|
572 | File "/media/data/work/clean/rmsagit/django/template/response.py" in render
|
---|
573 | 104. self._set_content(self.rendered_content)
|
---|
574 | File "/media/data/work/clean/rmsagit/django/template/response.py" in rendered_content
|
---|
575 | 79. template = self.resolve_template(self.template_name)
|
---|
576 | File "/media/data/work/clean/rmsagit/django/template/response.py" in resolve_template
|
---|
577 | 55. return loader.select_template(template)
|
---|
578 | File "/media/data/work/clean/rmsagit/django/template/loader.py" in select_template
|
---|
579 | 193. raise TemplateDoesNotExist(', '.join(not_found))
|
---|
580 |
|
---|
581 | Exception Type: TemplateDoesNotExist at /admin/
|
---|
582 | Exception Value: admin/index.html
|
---|
583 | </textarea>
|
---|
584 | <br><br>
|
---|
585 | <input type="submit" value="Share this traceback on a public Web site">
|
---|
586 | </div>
|
---|
587 | </form>
|
---|
588 | </div>
|
---|
589 |
|
---|
590 |
|
---|
591 |
|
---|
592 | <div id="requestinfo">
|
---|
593 | <h2>Request information</h2>
|
---|
594 |
|
---|
595 |
|
---|
596 | <h3 id="get-info">GET</h3>
|
---|
597 |
|
---|
598 | <p>No GET data</p>
|
---|
599 |
|
---|
600 |
|
---|
601 | <h3 id="post-info">POST</h3>
|
---|
602 |
|
---|
603 | <p>No POST data</p>
|
---|
604 |
|
---|
605 | <h3 id="files-info">FILES</h3>
|
---|
606 |
|
---|
607 | <p>No FILES data</p>
|
---|
608 |
|
---|
609 |
|
---|
610 |
|
---|
611 | <h3 id="cookie-info">COOKIES</h3>
|
---|
612 |
|
---|
613 | <table class="req">
|
---|
614 | <thead>
|
---|
615 | <tr>
|
---|
616 | <th>Variable</th>
|
---|
617 | <th>Value</th>
|
---|
618 | </tr>
|
---|
619 | </thead>
|
---|
620 | <tbody>
|
---|
621 |
|
---|
622 | <tr>
|
---|
623 | <td>csrftoken</td>
|
---|
624 | <td class="code"><pre>'a4765919d2f259f8021905c01a612584'</pre></td>
|
---|
625 | </tr>
|
---|
626 |
|
---|
627 | <tr>
|
---|
628 | <td>sessionid</td>
|
---|
629 | <td class="code"><pre>'c29d5036d67a46c77d1e15b231e876fb'</pre></td>
|
---|
630 | </tr>
|
---|
631 |
|
---|
632 | </tbody>
|
---|
633 | </table>
|
---|
634 |
|
---|
635 |
|
---|
636 | <h3 id="meta-info">META</h3>
|
---|
637 | <table class="req">
|
---|
638 | <thead>
|
---|
639 | <tr>
|
---|
640 | <th>Variable</th>
|
---|
641 | <th>Value</th>
|
---|
642 | </tr>
|
---|
643 | </thead>
|
---|
644 | <tbody>
|
---|
645 |
|
---|
646 | <tr>
|
---|
647 | <td>RUN_MAIN</td>
|
---|
648 | <td class="code"><pre>'true'</pre></td>
|
---|
649 | </tr>
|
---|
650 |
|
---|
651 | <tr>
|
---|
652 | <td>SERVER_SOFTWARE</td>
|
---|
653 | <td class="code"><pre>'WSGIServer/0.1 Python/2.7.2'</pre></td>
|
---|
654 | </tr>
|
---|
655 |
|
---|
656 | <tr>
|
---|
657 | <td>LC_CTYPE</td>
|
---|
658 | <td class="code"><pre>'en_US.UTF-8'</pre></td>
|
---|
659 | </tr>
|
---|
660 |
|
---|
661 | <tr>
|
---|
662 | <td>SCRIPT_NAME</td>
|
---|
663 | <td class="code"><pre>u''</pre></td>
|
---|
664 | </tr>
|
---|
665 |
|
---|
666 | <tr>
|
---|
667 | <td>REQUEST_METHOD</td>
|
---|
668 | <td class="code"><pre>'GET'</pre></td>
|
---|
669 | </tr>
|
---|
670 |
|
---|
671 | <tr>
|
---|
672 | <td>SERVER_PROTOCOL</td>
|
---|
673 | <td class="code"><pre>'HTTP/1.1'</pre></td>
|
---|
674 | </tr>
|
---|
675 |
|
---|
676 | <tr>
|
---|
677 | <td>CONTENT_LENGTH</td>
|
---|
678 | <td class="code"><pre>''</pre></td>
|
---|
679 | </tr>
|
---|
680 |
|
---|
681 | <tr>
|
---|
682 | <td>SHELL</td>
|
---|
683 | <td class="code"><pre>'/bin/bash'</pre></td>
|
---|
684 | </tr>
|
---|
685 |
|
---|
686 | <tr>
|
---|
687 | <td>XDG_DATA_DIRS</td>
|
---|
688 | <td class="code"><pre>'/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/'</pre></td>
|
---|
689 | </tr>
|
---|
690 |
|
---|
691 | <tr>
|
---|
692 | <td>MANDATORY_PATH</td>
|
---|
693 | <td class="code"><pre>'/usr/share/gconf/ubuntu.mandatory.path'</pre></td>
|
---|
694 | </tr>
|
---|
695 |
|
---|
696 | <tr>
|
---|
697 | <td>JAVA_HOME</td>
|
---|
698 | <td class="code"><pre>'/usr/local/opt/java/jdk1.6.0_26'</pre></td>
|
---|
699 | </tr>
|
---|
700 |
|
---|
701 | <tr>
|
---|
702 | <td>DBUS_SESSION_BUS_ADDRESS</td>
|
---|
703 | <td class="code"><pre>'unix:abstract=/tmp/dbus-HMSXu7Srum,guid=972e48a711ac40709321b7b900000070'</pre></td>
|
---|
704 | </tr>
|
---|
705 |
|
---|
706 | <tr>
|
---|
707 | <td>LC_MESSAGES</td>
|
---|
708 | <td class="code"><pre>'en_US.UTF-8'</pre></td>
|
---|
709 | </tr>
|
---|
710 |
|
---|
711 | <tr>
|
---|
712 | <td>HTTP_ACCEPT</td>
|
---|
713 | <td class="code"><pre>'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'</pre></td>
|
---|
714 | </tr>
|
---|
715 |
|
---|
716 | <tr>
|
---|
717 | <td>DESKTOP_SESSION</td>
|
---|
718 | <td class="code"><pre>'ubuntu'</pre></td>
|
---|
719 | </tr>
|
---|
720 |
|
---|
721 | <tr>
|
---|
722 | <td>wsgi.version</td>
|
---|
723 | <td class="code"><pre>(1, 0)</pre></td>
|
---|
724 | </tr>
|
---|
725 |
|
---|
726 | <tr>
|
---|
727 | <td>GTK_MODULES</td>
|
---|
728 | <td class="code"><pre>'canberra-gtk-module:canberra-gtk-module'</pre></td>
|
---|
729 | </tr>
|
---|
730 |
|
---|
731 | <tr>
|
---|
732 | <td>wsgi.multiprocess</td>
|
---|
733 | <td class="code"><pre>False</pre></td>
|
---|
734 | </tr>
|
---|
735 |
|
---|
736 | <tr>
|
---|
737 | <td>CCACHE_DIR</td>
|
---|
738 | <td class="code"><pre>'/media/data/tmp/androidcache'</pre></td>
|
---|
739 | </tr>
|
---|
740 |
|
---|
741 | <tr>
|
---|
742 | <td>GRAILS_HOME</td>
|
---|
743 | <td class="code"><pre>'/usr/local/opt/grails/grails-1.3.7/'</pre></td>
|
---|
744 | </tr>
|
---|
745 |
|
---|
746 | <tr>
|
---|
747 | <td>wsgi.errors</td>
|
---|
748 | <td class="code"><pre><open file '<stderr>', mode 'w' at 0x7fe0be864270></pre></td>
|
---|
749 | </tr>
|
---|
750 |
|
---|
751 | <tr>
|
---|
752 | <td>HTTP_COOKIE</td>
|
---|
753 | <td class="code"><pre>'csrftoken=a4765919d2f259f8021905c01a612584; sessionid=c29d5036d67a46c77d1e15b231e876fb'</pre></td>
|
---|
754 | </tr>
|
---|
755 |
|
---|
756 | <tr>
|
---|
757 | <td>GNOME_DESKTOP_SESSION_ID</td>
|
---|
758 | <td class="code"><pre>'this-is-deprecated'</pre></td>
|
---|
759 | </tr>
|
---|
760 |
|
---|
761 | <tr>
|
---|
762 | <td>XDG_CURRENT_DESKTOP</td>
|
---|
763 | <td class="code"><pre>'Unity'</pre></td>
|
---|
764 | </tr>
|
---|
765 |
|
---|
766 | <tr>
|
---|
767 | <td>USER</td>
|
---|
768 | <td class="code"><pre>'rmsa'</pre></td>
|
---|
769 | </tr>
|
---|
770 |
|
---|
771 | <tr>
|
---|
772 | <td>M2</td>
|
---|
773 | <td class="code"><pre>'/media/data/installs/mvn/apache-maven-3.0.3/bin'</pre></td>
|
---|
774 | </tr>
|
---|
775 |
|
---|
776 | <tr>
|
---|
777 | <td>QUERY_STRING</td>
|
---|
778 | <td class="code"><pre>''</pre></td>
|
---|
779 | </tr>
|
---|
780 |
|
---|
781 | <tr>
|
---|
782 | <td>HTTP_ACCEPT_CHARSET</td>
|
---|
783 | <td class="code"><pre>'ISO-8859-1,utf-8;q=0.7,*;q=0.3'</pre></td>
|
---|
784 | </tr>
|
---|
785 |
|
---|
786 | <tr>
|
---|
787 | <td>HTTP_USER_AGENT</td>
|
---|
788 | <td class="code"><pre>'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.168 Safari/535.19'</pre></td>
|
---|
789 | </tr>
|
---|
790 |
|
---|
791 | <tr>
|
---|
792 | <td>HTTP_CONNECTION</td>
|
---|
793 | <td class="code"><pre>'keep-alive'</pre></td>
|
---|
794 | </tr>
|
---|
795 |
|
---|
796 | <tr>
|
---|
797 | <td>XAUTHORITY</td>
|
---|
798 | <td class="code"><pre>'/home/rmsa/.Xauthority'</pre></td>
|
---|
799 | </tr>
|
---|
800 |
|
---|
801 | <tr>
|
---|
802 | <td>LANGUAGE</td>
|
---|
803 | <td class="code"><pre>'en_US:en'</pre></td>
|
---|
804 | </tr>
|
---|
805 |
|
---|
806 | <tr>
|
---|
807 | <td>SESSION_MANAGER</td>
|
---|
808 | <td class="code"><pre>'local/ubuntu-mac:@/tmp/.ICE-unix/2428,unix/ubuntu-mac:/tmp/.ICE-unix/2428'</pre></td>
|
---|
809 | </tr>
|
---|
810 |
|
---|
811 | <tr>
|
---|
812 | <td>SHLVL</td>
|
---|
813 | <td class="code"><pre>'1'</pre></td>
|
---|
814 | </tr>
|
---|
815 |
|
---|
816 | <tr>
|
---|
817 | <td>ANDROID_SDK</td>
|
---|
818 | <td class="code"><pre>'/media/data/installs/android/android-sdk-linux_x86'</pre></td>
|
---|
819 | </tr>
|
---|
820 |
|
---|
821 | <tr>
|
---|
822 | <td>wsgi.url_scheme</td>
|
---|
823 | <td class="code"><pre>'http'</pre></td>
|
---|
824 | </tr>
|
---|
825 |
|
---|
826 | <tr>
|
---|
827 | <td>COMPIZ_CONFIG_PROFILE</td>
|
---|
828 | <td class="code"><pre>'ubuntu'</pre></td>
|
---|
829 | </tr>
|
---|
830 |
|
---|
831 | <tr>
|
---|
832 | <td>WINDOWID</td>
|
---|
833 | <td class="code"><pre>'62914566'</pre></td>
|
---|
834 | </tr>
|
---|
835 |
|
---|
836 | <tr>
|
---|
837 | <td>M2_HOME</td>
|
---|
838 | <td class="code"><pre>'/media/data/installs/mvn/apache-maven-3.0.3'</pre></td>
|
---|
839 | </tr>
|
---|
840 |
|
---|
841 | <tr>
|
---|
842 | <td>GPG_AGENT_INFO</td>
|
---|
843 | <td class="code"><pre>'/tmp/keyring-cItQG0/gpg:0:1'</pre></td>
|
---|
844 | </tr>
|
---|
845 |
|
---|
846 | <tr>
|
---|
847 | <td>GDMSESSION</td>
|
---|
848 | <td class="code"><pre>'ubuntu'</pre></td>
|
---|
849 | </tr>
|
---|
850 |
|
---|
851 | <tr>
|
---|
852 | <td>wsgi.multithread</td>
|
---|
853 | <td class="code"><pre>True</pre></td>
|
---|
854 | </tr>
|
---|
855 |
|
---|
856 | <tr>
|
---|
857 | <td>XDG_SEAT_PATH</td>
|
---|
858 | <td class="code"><pre>'/org/freedesktop/DisplayManager/Seat0'</pre></td>
|
---|
859 | </tr>
|
---|
860 |
|
---|
861 | <tr>
|
---|
862 | <td>_</td>
|
---|
863 | <td class="code"><pre>'/usr/local/opt/python/2.7/bin/python'</pre></td>
|
---|
864 | </tr>
|
---|
865 |
|
---|
866 | <tr>
|
---|
867 | <td>LS_COLORS</td>
|
---|
868 | <td class="code"><pre>'rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36:'</pre></td>
|
---|
869 | </tr>
|
---|
870 |
|
---|
871 | <tr>
|
---|
872 | <td>XDG_CONFIG_DIRS</td>
|
---|
873 | <td class="code"><pre>'/etc/xdg/xdg-ubuntu:/etc/xdg'</pre></td>
|
---|
874 | </tr>
|
---|
875 |
|
---|
876 | <tr>
|
---|
877 | <td>UBUNTU_MENUPROXY</td>
|
---|
878 | <td class="code"><pre>'libappmenu.so'</pre></td>
|
---|
879 | </tr>
|
---|
880 |
|
---|
881 | <tr>
|
---|
882 | <td>DJANGO_SETTINGS_MODULE</td>
|
---|
883 | <td class="code"><pre>'settings'</pre></td>
|
---|
884 | </tr>
|
---|
885 |
|
---|
886 | <tr>
|
---|
887 | <td>COLORTERM</td>
|
---|
888 | <td class="code"><pre>'gnome-terminal'</pre></td>
|
---|
889 | </tr>
|
---|
890 |
|
---|
891 | <tr>
|
---|
892 | <td>wsgi.file_wrapper</td>
|
---|
893 | <td class="code"><pre>''</pre></td>
|
---|
894 | </tr>
|
---|
895 |
|
---|
896 | <tr>
|
---|
897 | <td>CSRF_COOKIE</td>
|
---|
898 | <td class="code"><pre>'a4765919d2f259f8021905c01a612584'</pre></td>
|
---|
899 | </tr>
|
---|
900 |
|
---|
901 | <tr>
|
---|
902 | <td>HTTP_ACCEPT_ENCODING</td>
|
---|
903 | <td class="code"><pre>'gzip,deflate,sdch'</pre></td>
|
---|
904 | </tr>
|
---|
905 |
|
---|
906 | <tr>
|
---|
907 | <td>HOME</td>
|
---|
908 | <td class="code"><pre>'/home/rmsa'</pre></td>
|
---|
909 | </tr>
|
---|
910 |
|
---|
911 | <tr>
|
---|
912 | <td>DISPLAY</td>
|
---|
913 | <td class="code"><pre>':0.0'</pre></td>
|
---|
914 | </tr>
|
---|
915 |
|
---|
916 | <tr>
|
---|
917 | <td>LANG</td>
|
---|
918 | <td class="code"><pre>'en_US.UTF-8'</pre></td>
|
---|
919 | </tr>
|
---|
920 |
|
---|
921 | <tr>
|
---|
922 | <td>SERVER_PORT</td>
|
---|
923 | <td class="code"><pre>'8000'</pre></td>
|
---|
924 | </tr>
|
---|
925 |
|
---|
926 | <tr>
|
---|
927 | <td>HTTP_HOST</td>
|
---|
928 | <td class="code"><pre>'localhost:8000'</pre></td>
|
---|
929 | </tr>
|
---|
930 |
|
---|
931 | <tr>
|
---|
932 | <td>LESSOPEN</td>
|
---|
933 | <td class="code"><pre>'| /usr/bin/lesspipe %s'</pre></td>
|
---|
934 | </tr>
|
---|
935 |
|
---|
936 | <tr>
|
---|
937 | <td>LESSCLOSE</td>
|
---|
938 | <td class="code"><pre>'/usr/bin/lesspipe %s %s'</pre></td>
|
---|
939 | </tr>
|
---|
940 |
|
---|
941 | <tr>
|
---|
942 | <td>GNOME_KEYRING_PID</td>
|
---|
943 | <td class="code"><pre>'2417'</pre></td>
|
---|
944 | </tr>
|
---|
945 |
|
---|
946 | <tr>
|
---|
947 | <td>wsgi.run_once</td>
|
---|
948 | <td class="code"><pre>False</pre></td>
|
---|
949 | </tr>
|
---|
950 |
|
---|
951 | <tr>
|
---|
952 | <td>LC_COLLATE</td>
|
---|
953 | <td class="code"><pre>'en_US.UTF-8'</pre></td>
|
---|
954 | </tr>
|
---|
955 |
|
---|
956 | <tr>
|
---|
957 | <td>HTTP_ACCEPT_LANGUAGE</td>
|
---|
958 | <td class="code"><pre>'en-US,en;q=0.8'</pre></td>
|
---|
959 | </tr>
|
---|
960 |
|
---|
961 | <tr>
|
---|
962 | <td>PATH_INFO</td>
|
---|
963 | <td class="code"><pre>u'/admin/'</pre></td>
|
---|
964 | </tr>
|
---|
965 |
|
---|
966 | <tr>
|
---|
967 | <td>ANDROID_NDK</td>
|
---|
968 | <td class="code"><pre>'/media/data/installs/android/ndk/android-ndk-r7c'</pre></td>
|
---|
969 | </tr>
|
---|
970 |
|
---|
971 | <tr>
|
---|
972 | <td>LOGNAME</td>
|
---|
973 | <td class="code"><pre>'rmsa'</pre></td>
|
---|
974 | </tr>
|
---|
975 |
|
---|
976 | <tr>
|
---|
977 | <td>PATH</td>
|
---|
978 | <td class="code"><pre>'/home/rmsa/bin:/usr/lib/lightdm/lightdm:/media/data/installs/httpd/v2.2.22/bin:/media/data/installs/android/android-sdk-linux_x86/tools:/home/rmsa/bin:/media/data/installs/android/ndk/android-ndk-r7c:/media/data/installs/appengine/1.6.1/google_appengine:/usr/local/opt/rebar:/media/data/installs/sasylf/1.0.2:/media/data/installs/mvn/apache-maven-3.0.3/bin:/usr/local/opt/wireshark/1.6.1/bin:/usr/local/opt/grails/grails-1.3.7/bin:/usr/local/opt/java/jdk1.6.0_26/bin:/usr/local/opt/python/2.7/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games'</pre></td>
|
---|
979 | </tr>
|
---|
980 |
|
---|
981 | <tr>
|
---|
982 | <td>GNOME_KEYRING_CONTROL</td>
|
---|
983 | <td class="code"><pre>'/tmp/keyring-cItQG0'</pre></td>
|
---|
984 | </tr>
|
---|
985 |
|
---|
986 | <tr>
|
---|
987 | <td>SSH_AGENT_PID</td>
|
---|
988 | <td class="code"><pre>'2472'</pre></td>
|
---|
989 | </tr>
|
---|
990 |
|
---|
991 | <tr>
|
---|
992 | <td>TERM</td>
|
---|
993 | <td class="code"><pre>'xterm'</pre></td>
|
---|
994 | </tr>
|
---|
995 |
|
---|
996 | <tr>
|
---|
997 | <td>XDG_SESSION_PATH</td>
|
---|
998 | <td class="code"><pre>'/org/freedesktop/DisplayManager/Session0'</pre></td>
|
---|
999 | </tr>
|
---|
1000 |
|
---|
1001 | <tr>
|
---|
1002 | <td>XDG_SESSION_COOKIE</td>
|
---|
1003 | <td class="code"><pre>'44732186f646f4d3ea55161e4e0972d3-1337255125.754199-926011670'</pre></td>
|
---|
1004 | </tr>
|
---|
1005 |
|
---|
1006 | <tr>
|
---|
1007 | <td>SERVER_NAME</td>
|
---|
1008 | <td class="code"><pre>'localhost.localdomain'</pre></td>
|
---|
1009 | </tr>
|
---|
1010 |
|
---|
1011 | <tr>
|
---|
1012 | <td>DEFAULTS_PATH</td>
|
---|
1013 | <td class="code"><pre>'/usr/share/gconf/ubuntu.default.path'</pre></td>
|
---|
1014 | </tr>
|
---|
1015 |
|
---|
1016 | <tr>
|
---|
1017 | <td>APPENGINE_HOME</td>
|
---|
1018 | <td class="code"><pre>'/media/data/installs/appengine/1.6.1/google_appengine'</pre></td>
|
---|
1019 | </tr>
|
---|
1020 |
|
---|
1021 | <tr>
|
---|
1022 | <td>SSH_AUTH_SOCK</td>
|
---|
1023 | <td class="code"><pre>'/tmp/keyring-cItQG0/ssh'</pre></td>
|
---|
1024 | </tr>
|
---|
1025 |
|
---|
1026 | <tr>
|
---|
1027 | <td>wsgi.input</td>
|
---|
1028 | <td class="code"><pre><socket._fileobject object at 0x7fe0aca880d0></pre></td>
|
---|
1029 | </tr>
|
---|
1030 |
|
---|
1031 | <tr>
|
---|
1032 | <td>TZ</td>
|
---|
1033 | <td class="code"><pre>'America/Chicago'</pre></td>
|
---|
1034 | </tr>
|
---|
1035 |
|
---|
1036 | <tr>
|
---|
1037 | <td>GATEWAY_INTERFACE</td>
|
---|
1038 | <td class="code"><pre>'CGI/1.1'</pre></td>
|
---|
1039 | </tr>
|
---|
1040 |
|
---|
1041 | <tr>
|
---|
1042 | <td>REMOTE_HOST</td>
|
---|
1043 | <td class="code"><pre>''</pre></td>
|
---|
1044 | </tr>
|
---|
1045 |
|
---|
1046 | <tr>
|
---|
1047 | <td>OLDPWD</td>
|
---|
1048 | <td class="code"><pre>'/media/data/installs/ccnx/ccnx-0.6.0/bin'</pre></td>
|
---|
1049 | </tr>
|
---|
1050 |
|
---|
1051 | <tr>
|
---|
1052 | <td>REMOTE_ADDR</td>
|
---|
1053 | <td class="code"><pre>'127.0.0.1'</pre></td>
|
---|
1054 | </tr>
|
---|
1055 |
|
---|
1056 | <tr>
|
---|
1057 | <td>SPEECHD_PORT</td>
|
---|
1058 | <td class="code"><pre>'7560'</pre></td>
|
---|
1059 | </tr>
|
---|
1060 |
|
---|
1061 | <tr>
|
---|
1062 | <td>PWD</td>
|
---|
1063 | <td class="code"><pre>'/media/data/work/clean/rmsagit'</pre></td>
|
---|
1064 | </tr>
|
---|
1065 |
|
---|
1066 | <tr>
|
---|
1067 | <td>CONTENT_TYPE</td>
|
---|
1068 | <td class="code"><pre>'text/plain'</pre></td>
|
---|
1069 | </tr>
|
---|
1070 |
|
---|
1071 | <tr>
|
---|
1072 | <td>USE_CCACHE</td>
|
---|
1073 | <td class="code"><pre>'1'</pre></td>
|
---|
1074 | </tr>
|
---|
1075 |
|
---|
1076 | </tbody>
|
---|
1077 | </table>
|
---|
1078 |
|
---|
1079 |
|
---|
1080 | <h3 id="settings-info">Settings</h3>
|
---|
1081 | <h4>Using settings module <code>settings</code></h4>
|
---|
1082 | <table class="req">
|
---|
1083 | <thead>
|
---|
1084 | <tr>
|
---|
1085 | <th>Setting</th>
|
---|
1086 | <th>Value</th>
|
---|
1087 | </tr>
|
---|
1088 | </thead>
|
---|
1089 | <tbody>
|
---|
1090 |
|
---|
1091 | <tr>
|
---|
1092 | <td>MONGOREPLICASET</td>
|
---|
1093 | <td class="code"><pre>'devreplset'</pre></td>
|
---|
1094 | </tr>
|
---|
1095 |
|
---|
1096 | <tr>
|
---|
1097 | <td>USE_L10N</td>
|
---|
1098 | <td class="code"><pre>True</pre></td>
|
---|
1099 | </tr>
|
---|
1100 |
|
---|
1101 | <tr>
|
---|
1102 | <td>USE_THOUSAND_SEPARATOR</td>
|
---|
1103 | <td class="code"><pre>False</pre></td>
|
---|
1104 | </tr>
|
---|
1105 |
|
---|
1106 | <tr>
|
---|
1107 | <td>CSRF_COOKIE_SECURE</td>
|
---|
1108 | <td class="code"><pre>False</pre></td>
|
---|
1109 | </tr>
|
---|
1110 |
|
---|
1111 | <tr>
|
---|
1112 | <td>PASSWORD_MATCH_THRESHOLD</td>
|
---|
1113 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1114 | </tr>
|
---|
1115 |
|
---|
1116 | <tr>
|
---|
1117 | <td>LANGUAGE_CODE</td>
|
---|
1118 | <td class="code"><pre>'en-us'</pre></td>
|
---|
1119 | </tr>
|
---|
1120 |
|
---|
1121 | <tr>
|
---|
1122 | <td>ROOT_URLCONF</td>
|
---|
1123 | <td class="code"><pre>'urls'</pre></td>
|
---|
1124 | </tr>
|
---|
1125 |
|
---|
1126 | <tr>
|
---|
1127 | <td>MANAGERS</td>
|
---|
1128 | <td class="code"><pre>()</pre></td>
|
---|
1129 | </tr>
|
---|
1130 |
|
---|
1131 | <tr>
|
---|
1132 | <td>PASSWORD_COMMON_SEQUENCES</td>
|
---|
1133 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1134 | </tr>
|
---|
1135 |
|
---|
1136 | <tr>
|
---|
1137 | <td>DEFAULT_CHARSET</td>
|
---|
1138 | <td class="code"><pre>'utf-8'</pre></td>
|
---|
1139 | </tr>
|
---|
1140 |
|
---|
1141 | <tr>
|
---|
1142 | <td>STATIC_ROOT</td>
|
---|
1143 | <td class="code"><pre>'/static/'</pre></td>
|
---|
1144 | </tr>
|
---|
1145 |
|
---|
1146 | <tr>
|
---|
1147 | <td>POSINPUTMONTHLYCUSTOMERTEST</td>
|
---|
1148 | <td class="code"><pre>'posinputmonthlycustomertest'</pre></td>
|
---|
1149 | </tr>
|
---|
1150 |
|
---|
1151 | <tr>
|
---|
1152 | <td>MESSAGE_STORAGE</td>
|
---|
1153 | <td class="code"><pre>'django.contrib.messages.storage.fallback.FallbackStorage'</pre></td>
|
---|
1154 | </tr>
|
---|
1155 |
|
---|
1156 | <tr>
|
---|
1157 | <td>EMAIL_SUBJECT_PREFIX</td>
|
---|
1158 | <td class="code"><pre>'[Django] '</pre></td>
|
---|
1159 | </tr>
|
---|
1160 |
|
---|
1161 | <tr>
|
---|
1162 | <td>SEND_BROKEN_LINK_EMAILS</td>
|
---|
1163 | <td class="code"><pre>False</pre></td>
|
---|
1164 | </tr>
|
---|
1165 |
|
---|
1166 | <tr>
|
---|
1167 | <td>PASSWORD_MIN_LENGTH</td>
|
---|
1168 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1169 | </tr>
|
---|
1170 |
|
---|
1171 | <tr>
|
---|
1172 | <td>URL_VALIDATOR_USER_AGENT</td>
|
---|
1173 | <td class="code"><pre>'Django/1.4 (https://www.djangoproject.com)'</pre></td>
|
---|
1174 | </tr>
|
---|
1175 |
|
---|
1176 | <tr>
|
---|
1177 | <td>STATICFILES_FINDERS</td>
|
---|
1178 | <td class="code"><pre>('django.contrib.staticfiles.finders.FileSystemFinder',
|
---|
1179 | 'django.contrib.staticfiles.finders.AppDirectoriesFinder')</pre></td>
|
---|
1180 | </tr>
|
---|
1181 |
|
---|
1182 | <tr>
|
---|
1183 | <td>SESSION_COOKIE_DOMAIN</td>
|
---|
1184 | <td class="code"><pre>None</pre></td>
|
---|
1185 | </tr>
|
---|
1186 |
|
---|
1187 | <tr>
|
---|
1188 | <td>SESSION_COOKIE_NAME</td>
|
---|
1189 | <td class="code"><pre>'sessionid'</pre></td>
|
---|
1190 | </tr>
|
---|
1191 |
|
---|
1192 | <tr>
|
---|
1193 | <td>ADMIN_FOR</td>
|
---|
1194 | <td class="code"><pre>()</pre></td>
|
---|
1195 | </tr>
|
---|
1196 |
|
---|
1197 | <tr>
|
---|
1198 | <td>TIME_INPUT_FORMATS</td>
|
---|
1199 | <td class="code"><pre>('%H:%M:%S', '%H:%M')</pre></td>
|
---|
1200 | </tr>
|
---|
1201 |
|
---|
1202 | <tr>
|
---|
1203 | <td>DATABASES</td>
|
---|
1204 | <td class="code"><pre>{'default': {'ENGINE': 'django.db.backends.mysql',
|
---|
1205 | 'HOST': '127.0.0.1',
|
---|
1206 | 'NAME': 'rmsa',
|
---|
1207 | 'OPTIONS': {},
|
---|
1208 | 'PASSWORD': u'********************',
|
---|
1209 | 'PORT': 3307,
|
---|
1210 | 'TEST_CHARSET': None,
|
---|
1211 | 'TEST_COLLATION': None,
|
---|
1212 | 'TEST_MIRROR': None,
|
---|
1213 | 'TEST_NAME': None,
|
---|
1214 | 'TIME_ZONE': 'America/Chicago',
|
---|
1215 | 'USER': 'root'}}</pre></td>
|
---|
1216 | </tr>
|
---|
1217 |
|
---|
1218 | <tr>
|
---|
1219 | <td>PASSWORD_COMPLEXITY</td>
|
---|
1220 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1221 | </tr>
|
---|
1222 |
|
---|
1223 | <tr>
|
---|
1224 | <td>PLANOUTPUTCUSTOMERTEST122011</td>
|
---|
1225 | <td class="code"><pre>'planoutputcustomertest122011'</pre></td>
|
---|
1226 | </tr>
|
---|
1227 |
|
---|
1228 | <tr>
|
---|
1229 | <td>FILE_UPLOAD_PERMISSIONS</td>
|
---|
1230 | <td class="code"><pre>None</pre></td>
|
---|
1231 | </tr>
|
---|
1232 |
|
---|
1233 | <tr>
|
---|
1234 | <td>FILE_UPLOAD_HANDLERS</td>
|
---|
1235 | <td class="code"><pre>('django.core.files.uploadhandler.MemoryFileUploadHandler',
|
---|
1236 | 'django.core.files.uploadhandler.TemporaryFileUploadHandler')</pre></td>
|
---|
1237 | </tr>
|
---|
1238 |
|
---|
1239 | <tr>
|
---|
1240 | <td>DEFAULT_CONTENT_TYPE</td>
|
---|
1241 | <td class="code"><pre>'text/html'</pre></td>
|
---|
1242 | </tr>
|
---|
1243 |
|
---|
1244 | <tr>
|
---|
1245 | <td>APPEND_SLASH</td>
|
---|
1246 | <td class="code"><pre>True</pre></td>
|
---|
1247 | </tr>
|
---|
1248 |
|
---|
1249 | <tr>
|
---|
1250 | <td>FIRST_DAY_OF_WEEK</td>
|
---|
1251 | <td class="code"><pre>0</pre></td>
|
---|
1252 | </tr>
|
---|
1253 |
|
---|
1254 | <tr>
|
---|
1255 | <td>DATABASE_ROUTERS</td>
|
---|
1256 | <td class="code"><pre>['customers.dbRouter.myDBRouter']</pre></td>
|
---|
1257 | </tr>
|
---|
1258 |
|
---|
1259 | <tr>
|
---|
1260 | <td>YEAR_MONTH_FORMAT</td>
|
---|
1261 | <td class="code"><pre>'F Y'</pre></td>
|
---|
1262 | </tr>
|
---|
1263 |
|
---|
1264 | <tr>
|
---|
1265 | <td>STATICFILES_STORAGE</td>
|
---|
1266 | <td class="code"><pre>'django.contrib.staticfiles.storage.StaticFilesStorage'</pre></td>
|
---|
1267 | </tr>
|
---|
1268 |
|
---|
1269 | <tr>
|
---|
1270 | <td>CACHES</td>
|
---|
1271 | <td class="code"><pre>{'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
---|
1272 | 'LOCATION': ''}}</pre></td>
|
---|
1273 | </tr>
|
---|
1274 |
|
---|
1275 | <tr>
|
---|
1276 | <td>NONRELDB</td>
|
---|
1277 | <td class="code"><pre>'mongo'</pre></td>
|
---|
1278 | </tr>
|
---|
1279 |
|
---|
1280 | <tr>
|
---|
1281 | <td>SERVER_EMAIL</td>
|
---|
1282 | <td class="code"><pre>'root@localhost'</pre></td>
|
---|
1283 | </tr>
|
---|
1284 |
|
---|
1285 | <tr>
|
---|
1286 | <td>SESSION_COOKIE_PATH</td>
|
---|
1287 | <td class="code"><pre>'/'</pre></td>
|
---|
1288 | </tr>
|
---|
1289 |
|
---|
1290 | <tr>
|
---|
1291 | <td>USE_X_FORWARDED_HOST</td>
|
---|
1292 | <td class="code"><pre>False</pre></td>
|
---|
1293 | </tr>
|
---|
1294 |
|
---|
1295 | <tr>
|
---|
1296 | <td>DEV</td>
|
---|
1297 | <td class="code"><pre>'DEV'</pre></td>
|
---|
1298 | </tr>
|
---|
1299 |
|
---|
1300 | <tr>
|
---|
1301 | <td>PLANLOADERDIR</td>
|
---|
1302 | <td class="code"><pre>'/media/data/work/clean/rmsagit/settings/../plans_to_load/'</pre></td>
|
---|
1303 | </tr>
|
---|
1304 |
|
---|
1305 | <tr>
|
---|
1306 | <td>MIDDLEWARE_CLASSES</td>
|
---|
1307 | <td class="code"><pre>('django.middleware.common.CommonMiddleware',
|
---|
1308 | 'django.contrib.sessions.middleware.SessionMiddleware',
|
---|
1309 | 'django.middleware.csrf.CsrfViewMiddleware',
|
---|
1310 | 'django.contrib.auth.middleware.AuthenticationMiddleware',
|
---|
1311 | 'django.contrib.messages.middleware.MessageMiddleware',
|
---|
1312 | 'django.contrib.messages.middleware.MessageMiddleware',
|
---|
1313 | 'middleware_console_error_messages.ConsoleExceptionMiddleware')</pre></td>
|
---|
1314 | </tr>
|
---|
1315 |
|
---|
1316 | <tr>
|
---|
1317 | <td>USE_I18N</td>
|
---|
1318 | <td class="code"><pre>True</pre></td>
|
---|
1319 | </tr>
|
---|
1320 |
|
---|
1321 | <tr>
|
---|
1322 | <td>THOUSAND_SEPARATOR</td>
|
---|
1323 | <td class="code"><pre>','</pre></td>
|
---|
1324 | </tr>
|
---|
1325 |
|
---|
1326 | <tr>
|
---|
1327 | <td>SECRET_KEY</td>
|
---|
1328 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1329 | </tr>
|
---|
1330 |
|
---|
1331 | <tr>
|
---|
1332 | <td>LANGUAGE_COOKIE_NAME</td>
|
---|
1333 | <td class="code"><pre>'django_language'</pre></td>
|
---|
1334 | </tr>
|
---|
1335 |
|
---|
1336 | <tr>
|
---|
1337 | <td>DEFAULT_INDEX_TABLESPACE</td>
|
---|
1338 | <td class="code"><pre>''</pre></td>
|
---|
1339 | </tr>
|
---|
1340 |
|
---|
1341 | <tr>
|
---|
1342 | <td>TRANSACTIONS_MANAGED</td>
|
---|
1343 | <td class="code"><pre>False</pre></td>
|
---|
1344 | </tr>
|
---|
1345 |
|
---|
1346 | <tr>
|
---|
1347 | <td>LOGGING_CONFIG</td>
|
---|
1348 | <td class="code"><pre>'django.utils.log.dictConfig'</pre></td>
|
---|
1349 | </tr>
|
---|
1350 |
|
---|
1351 | <tr>
|
---|
1352 | <td>TEMPLATE_LOADERS</td>
|
---|
1353 | <td class="code"><pre>('django.template.loaders.filesystem.Loader',
|
---|
1354 | 'django.template.loaders.app_directories.Loader')</pre></td>
|
---|
1355 | </tr>
|
---|
1356 |
|
---|
1357 | <tr>
|
---|
1358 | <td>WSGI_APPLICATION</td>
|
---|
1359 | <td class="code"><pre>None</pre></td>
|
---|
1360 | </tr>
|
---|
1361 |
|
---|
1362 | <tr>
|
---|
1363 | <td>TEMPLATE_DEBUG</td>
|
---|
1364 | <td class="code"><pre>False</pre></td>
|
---|
1365 | </tr>
|
---|
1366 |
|
---|
1367 | <tr>
|
---|
1368 | <td>X_FRAME_OPTIONS</td>
|
---|
1369 | <td class="code"><pre>'SAMEORIGIN'</pre></td>
|
---|
1370 | </tr>
|
---|
1371 |
|
---|
1372 | <tr>
|
---|
1373 | <td>AUTHENTICATION_BACKENDS</td>
|
---|
1374 | <td class="code"><pre>('django.contrib.auth.backends.ModelBackend',)</pre></td>
|
---|
1375 | </tr>
|
---|
1376 |
|
---|
1377 | <tr>
|
---|
1378 | <td>FORCE_SCRIPT_NAME</td>
|
---|
1379 | <td class="code"><pre>None</pre></td>
|
---|
1380 | </tr>
|
---|
1381 |
|
---|
1382 | <tr>
|
---|
1383 | <td>CACHE_BACKEND</td>
|
---|
1384 | <td class="code"><pre>'locmem://'</pre></td>
|
---|
1385 | </tr>
|
---|
1386 |
|
---|
1387 | <tr>
|
---|
1388 | <td>DB_SYSTEM</td>
|
---|
1389 | <td class="code"><pre>'remote-mongo'</pre></td>
|
---|
1390 | </tr>
|
---|
1391 |
|
---|
1392 | <tr>
|
---|
1393 | <td>SIGNING_BACKEND</td>
|
---|
1394 | <td class="code"><pre>'django.core.signing.TimestampSigner'</pre></td>
|
---|
1395 | </tr>
|
---|
1396 |
|
---|
1397 | <tr>
|
---|
1398 | <td>SESSION_COOKIE_SECURE</td>
|
---|
1399 | <td class="code"><pre>False</pre></td>
|
---|
1400 | </tr>
|
---|
1401 |
|
---|
1402 | <tr>
|
---|
1403 | <td>PASSWORD_DICTIONARY</td>
|
---|
1404 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1405 | </tr>
|
---|
1406 |
|
---|
1407 | <tr>
|
---|
1408 | <td>CSRF_COOKIE_DOMAIN</td>
|
---|
1409 | <td class="code"><pre>None</pre></td>
|
---|
1410 | </tr>
|
---|
1411 |
|
---|
1412 | <tr>
|
---|
1413 | <td>FILE_CHARSET</td>
|
---|
1414 | <td class="code"><pre>'utf-8'</pre></td>
|
---|
1415 | </tr>
|
---|
1416 |
|
---|
1417 | <tr>
|
---|
1418 | <td>DEBUG</td>
|
---|
1419 | <td class="code"><pre>True</pre></td>
|
---|
1420 | </tr>
|
---|
1421 |
|
---|
1422 | <tr>
|
---|
1423 | <td>SESSION_FILE_PATH</td>
|
---|
1424 | <td class="code"><pre>None</pre></td>
|
---|
1425 | </tr>
|
---|
1426 |
|
---|
1427 | <tr>
|
---|
1428 | <td>DEFAULT_FILE_STORAGE</td>
|
---|
1429 | <td class="code"><pre>'django.core.files.storage.FileSystemStorage'</pre></td>
|
---|
1430 | </tr>
|
---|
1431 |
|
---|
1432 | <tr>
|
---|
1433 | <td>INSTALLED_APPS</td>
|
---|
1434 | <td class="code"><pre>('django.contrib.auth',
|
---|
1435 | 'django.contrib.contenttypes',
|
---|
1436 | 'django.contrib.sessions',
|
---|
1437 | 'django.contrib.messages',
|
---|
1438 | 'django.contrib.staticfiles',
|
---|
1439 | 'django.contrib.admin',
|
---|
1440 | 'customers',
|
---|
1441 | 'keyerror_django_client',
|
---|
1442 | 'django_jenkins')</pre></td>
|
---|
1443 | </tr>
|
---|
1444 |
|
---|
1445 | <tr>
|
---|
1446 | <td>LANGUAGES</td>
|
---|
1447 | <td class="code"><pre>(('ar', 'Arabic'),
|
---|
1448 | ('az', 'Azerbaijani'),
|
---|
1449 | ('bg', 'Bulgarian'),
|
---|
1450 | ('bn', 'Bengali'),
|
---|
1451 | ('bs', 'Bosnian'),
|
---|
1452 | ('ca', 'Catalan'),
|
---|
1453 | ('cs', 'Czech'),
|
---|
1454 | ('cy', 'Welsh'),
|
---|
1455 | ('da', 'Danish'),
|
---|
1456 | ('de', 'German'),
|
---|
1457 | ('el', 'Greek'),
|
---|
1458 | ('en', 'English'),
|
---|
1459 | ('en-gb', 'British English'),
|
---|
1460 | ('eo', 'Esperanto'),
|
---|
1461 | ('es', 'Spanish'),
|
---|
1462 | ('es-ar', 'Argentinian Spanish'),
|
---|
1463 | ('es-mx', 'Mexican Spanish'),
|
---|
1464 | ('es-ni', 'Nicaraguan Spanish'),
|
---|
1465 | ('et', 'Estonian'),
|
---|
1466 | ('eu', 'Basque'),
|
---|
1467 | ('fa', 'Persian'),
|
---|
1468 | ('fi', 'Finnish'),
|
---|
1469 | ('fr', 'French'),
|
---|
1470 | ('fy-nl', 'Frisian'),
|
---|
1471 | ('ga', 'Irish'),
|
---|
1472 | ('gl', 'Galician'),
|
---|
1473 | ('he', 'Hebrew'),
|
---|
1474 | ('hi', 'Hindi'),
|
---|
1475 | ('hr', 'Croatian'),
|
---|
1476 | ('hu', 'Hungarian'),
|
---|
1477 | ('id', 'Indonesian'),
|
---|
1478 | ('is', 'Icelandic'),
|
---|
1479 | ('it', 'Italian'),
|
---|
1480 | ('ja', 'Japanese'),
|
---|
1481 | ('ka', 'Georgian'),
|
---|
1482 | ('kk', 'Kazakh'),
|
---|
1483 | ('km', 'Khmer'),
|
---|
1484 | ('kn', 'Kannada'),
|
---|
1485 | ('ko', 'Korean'),
|
---|
1486 | ('lt', 'Lithuanian'),
|
---|
1487 | ('lv', 'Latvian'),
|
---|
1488 | ('mk', 'Macedonian'),
|
---|
1489 | ('ml', 'Malayalam'),
|
---|
1490 | ('mn', 'Mongolian'),
|
---|
1491 | ('nb', 'Norwegian Bokmal'),
|
---|
1492 | ('ne', 'Nepali'),
|
---|
1493 | ('nl', 'Dutch'),
|
---|
1494 | ('nn', 'Norwegian Nynorsk'),
|
---|
1495 | ('pa', 'Punjabi'),
|
---|
1496 | ('pl', 'Polish'),
|
---|
1497 | ('pt', 'Portuguese'),
|
---|
1498 | ('pt-br', 'Brazilian Portuguese'),
|
---|
1499 | ('ro', 'Romanian'),
|
---|
1500 | ('ru', 'Russian'),
|
---|
1501 | ('sk', 'Slovak'),
|
---|
1502 | ('sl', 'Slovenian'),
|
---|
1503 | ('sq', 'Albanian'),
|
---|
1504 | ('sr', 'Serbian'),
|
---|
1505 | ('sr-latn', 'Serbian Latin'),
|
---|
1506 | ('sv', 'Swedish'),
|
---|
1507 | ('sw', 'Swahili'),
|
---|
1508 | ('ta', 'Tamil'),
|
---|
1509 | ('te', 'Telugu'),
|
---|
1510 | ('th', 'Thai'),
|
---|
1511 | ('tr', 'Turkish'),
|
---|
1512 | ('tt', 'Tatar'),
|
---|
1513 | ('uk', 'Ukrainian'),
|
---|
1514 | ('ur', 'Urdu'),
|
---|
1515 | ('vi', 'Vietnamese'),
|
---|
1516 | ('zh-cn', 'Simplified Chinese'),
|
---|
1517 | ('zh-tw', 'Traditional Chinese'))</pre></td>
|
---|
1518 | </tr>
|
---|
1519 |
|
---|
1520 | <tr>
|
---|
1521 | <td>COMMENTS_ALLOW_PROFANITIES</td>
|
---|
1522 | <td class="code"><pre>False</pre></td>
|
---|
1523 | </tr>
|
---|
1524 |
|
---|
1525 | <tr>
|
---|
1526 | <td>INSTALLED_APPS_LIST</td>
|
---|
1527 | <td class="code"><pre>['django.contrib.auth',
|
---|
1528 | 'django.contrib.contenttypes',
|
---|
1529 | 'django.contrib.sessions',
|
---|
1530 | 'django.contrib.messages',
|
---|
1531 | 'django.contrib.staticfiles',
|
---|
1532 | 'django.contrib.admin',
|
---|
1533 | 'customers']</pre></td>
|
---|
1534 | </tr>
|
---|
1535 |
|
---|
1536 | <tr>
|
---|
1537 | <td>STATICFILES_DIRS</td>
|
---|
1538 | <td class="code"><pre>('/media/data/work/clean/rmsagit/static/customers/',
|
---|
1539 | '/media/data/work/clean/rmsagit/static/')</pre></td>
|
---|
1540 | </tr>
|
---|
1541 |
|
---|
1542 | <tr>
|
---|
1543 | <td>KEYERROR_ENABLED</td>
|
---|
1544 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1545 | </tr>
|
---|
1546 |
|
---|
1547 | <tr>
|
---|
1548 | <td>PREPEND_WWW</td>
|
---|
1549 | <td class="code"><pre>False</pre></td>
|
---|
1550 | </tr>
|
---|
1551 |
|
---|
1552 | <tr>
|
---|
1553 | <td>SECURE_PROXY_SSL_HEADER</td>
|
---|
1554 | <td class="code"><pre>None</pre></td>
|
---|
1555 | </tr>
|
---|
1556 |
|
---|
1557 | <tr>
|
---|
1558 | <td>PASSWORD_RESET_TIMEOUT_DAYS</td>
|
---|
1559 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1560 | </tr>
|
---|
1561 |
|
---|
1562 | <tr>
|
---|
1563 | <td>SESSION_COOKIE_HTTPONLY</td>
|
---|
1564 | <td class="code"><pre>True</pre></td>
|
---|
1565 | </tr>
|
---|
1566 |
|
---|
1567 | <tr>
|
---|
1568 | <td>DEBUG_PROPAGATE_EXCEPTIONS</td>
|
---|
1569 | <td class="code"><pre>False</pre></td>
|
---|
1570 | </tr>
|
---|
1571 |
|
---|
1572 | <tr>
|
---|
1573 | <td>MONTH_DAY_FORMAT</td>
|
---|
1574 | <td class="code"><pre>'F j'</pre></td>
|
---|
1575 | </tr>
|
---|
1576 |
|
---|
1577 | <tr>
|
---|
1578 | <td>LOGIN_URL</td>
|
---|
1579 | <td class="code"><pre>'/login/'</pre></td>
|
---|
1580 | </tr>
|
---|
1581 |
|
---|
1582 | <tr>
|
---|
1583 | <td>SESSION_EXPIRE_AT_BROWSER_CLOSE</td>
|
---|
1584 | <td class="code"><pre>False</pre></td>
|
---|
1585 | </tr>
|
---|
1586 |
|
---|
1587 | <tr>
|
---|
1588 | <td>DBCONFIGURATIONVALUE</td>
|
---|
1589 | <td class="code"><pre>None</pre></td>
|
---|
1590 | </tr>
|
---|
1591 |
|
---|
1592 | <tr>
|
---|
1593 | <td>PLANLOADERDIR_ENV</td>
|
---|
1594 | <td class="code"><pre>{'ALPHA': '/media/data/work/clean/rmsagit/settings/../plans_to_load/',
|
---|
1595 | 'BETA': '/data/dropbox/rmsabackup/Dropbox/Plans/',
|
---|
1596 | 'DARREN': '/media/data/work/clean/rmsagit/settings/../plans_to_load/',
|
---|
1597 | 'DEV': '/media/data/work/clean/rmsagit/settings/../plans_to_load/',
|
---|
1598 | 'LOCAL': '/media/data/work/clean/rmsagit/settings/../plans_to_load/'}</pre></td>
|
---|
1599 | </tr>
|
---|
1600 |
|
---|
1601 | <tr>
|
---|
1602 | <td>TIME_FORMAT</td>
|
---|
1603 | <td class="code"><pre>'P'</pre></td>
|
---|
1604 | </tr>
|
---|
1605 |
|
---|
1606 | <tr>
|
---|
1607 | <td>KEYERROR_SECRET_KEY</td>
|
---|
1608 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1609 | </tr>
|
---|
1610 |
|
---|
1611 | <tr>
|
---|
1612 | <td>DATE_INPUT_FORMATS</td>
|
---|
1613 | <td class="code"><pre>('%Y-%m-%d',
|
---|
1614 | '%m/%d/%Y',
|
---|
1615 | '%m/%d/%y',
|
---|
1616 | '%b %d %Y',
|
---|
1617 | '%b %d, %Y',
|
---|
1618 | '%d %b %Y',
|
---|
1619 | '%d %b, %Y',
|
---|
1620 | '%B %d %Y',
|
---|
1621 | '%B %d, %Y',
|
---|
1622 | '%d %B %Y',
|
---|
1623 | '%d %B, %Y')</pre></td>
|
---|
1624 | </tr>
|
---|
1625 |
|
---|
1626 | <tr>
|
---|
1627 | <td>CSRF_COOKIE_NAME</td>
|
---|
1628 | <td class="code"><pre>'csrftoken'</pre></td>
|
---|
1629 | </tr>
|
---|
1630 |
|
---|
1631 | <tr>
|
---|
1632 | <td>EMAIL_HOST_PASSWORD</td>
|
---|
1633 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1634 | </tr>
|
---|
1635 |
|
---|
1636 | <tr>
|
---|
1637 | <td>AUTH_PROFILE_MODULE</td>
|
---|
1638 | <td class="code"><pre>'customers.UserProfile'</pre></td>
|
---|
1639 | </tr>
|
---|
1640 |
|
---|
1641 | <tr>
|
---|
1642 | <td>USE_TZ</td>
|
---|
1643 | <td class="code"><pre>False</pre></td>
|
---|
1644 | </tr>
|
---|
1645 |
|
---|
1646 | <tr>
|
---|
1647 | <td>CACHE_MIDDLEWARE_ALIAS</td>
|
---|
1648 | <td class="code"><pre>'default'</pre></td>
|
---|
1649 | </tr>
|
---|
1650 |
|
---|
1651 | <tr>
|
---|
1652 | <td>SETTINGS_DBF_MONGO</td>
|
---|
1653 | <td class="code"><pre>'MONGO'</pre></td>
|
---|
1654 | </tr>
|
---|
1655 |
|
---|
1656 | <tr>
|
---|
1657 | <td>SESSION_SAVE_EVERY_REQUEST</td>
|
---|
1658 | <td class="code"><pre>False</pre></td>
|
---|
1659 | </tr>
|
---|
1660 |
|
---|
1661 | <tr>
|
---|
1662 | <td>ADMIN_MEDIA_PREFIX</td>
|
---|
1663 | <td class="code"><pre>'/static/admin/'</pre></td>
|
---|
1664 | </tr>
|
---|
1665 |
|
---|
1666 | <tr>
|
---|
1667 | <td>NUMBER_GROUPING</td>
|
---|
1668 | <td class="code"><pre>0</pre></td>
|
---|
1669 | </tr>
|
---|
1670 |
|
---|
1671 | <tr>
|
---|
1672 | <td>SESSION_ENGINE</td>
|
---|
1673 | <td class="code"><pre>'django.contrib.sessions.backends.db'</pre></td>
|
---|
1674 | </tr>
|
---|
1675 |
|
---|
1676 | <tr>
|
---|
1677 | <td>CSRF_FAILURE_VIEW</td>
|
---|
1678 | <td class="code"><pre>'django.views.csrf.csrf_failure'</pre></td>
|
---|
1679 | </tr>
|
---|
1680 |
|
---|
1681 | <tr>
|
---|
1682 | <td>CSRF_COOKIE_PATH</td>
|
---|
1683 | <td class="code"><pre>'/'</pre></td>
|
---|
1684 | </tr>
|
---|
1685 |
|
---|
1686 | <tr>
|
---|
1687 | <td>LOGIN_REDIRECT_URL</td>
|
---|
1688 | <td class="code"><pre>'/home/'</pre></td>
|
---|
1689 | </tr>
|
---|
1690 |
|
---|
1691 | <tr>
|
---|
1692 | <td>LOGGING</td>
|
---|
1693 | <td class="code"><pre>{'disable_existing_loggers': False,
|
---|
1694 | 'filters': {'require_debug_false': {'()': 'django.utils.log.RequireDebugFalse'}},
|
---|
1695 | 'handlers': {'mail_admins': {'class': 'django.utils.log.AdminEmailHandler',
|
---|
1696 | 'filters': ['require_debug_false'],
|
---|
1697 | 'level': 'ERROR'}},
|
---|
1698 | 'loggers': {'django.request': {'handlers': ['mail_admins'],
|
---|
1699 | 'level': 'ERROR',
|
---|
1700 | 'propagate': True}},
|
---|
1701 | 'version': 1}</pre></td>
|
---|
1702 | </tr>
|
---|
1703 |
|
---|
1704 | <tr>
|
---|
1705 | <td>IGNORABLE_404_URLS</td>
|
---|
1706 | <td class="code"><pre>()</pre></td>
|
---|
1707 | </tr>
|
---|
1708 |
|
---|
1709 | <tr>
|
---|
1710 | <td>SERVERNAME</td>
|
---|
1711 | <td class="code"><pre>'ubuntu-mac'</pre></td>
|
---|
1712 | </tr>
|
---|
1713 |
|
---|
1714 | <tr>
|
---|
1715 | <td>LOCALE_PATHS</td>
|
---|
1716 | <td class="code"><pre>()</pre></td>
|
---|
1717 | </tr>
|
---|
1718 |
|
---|
1719 | <tr>
|
---|
1720 | <td>TEMPLATE_STRING_IF_INVALID</td>
|
---|
1721 | <td class="code"><pre>''</pre></td>
|
---|
1722 | </tr>
|
---|
1723 |
|
---|
1724 | <tr>
|
---|
1725 | <td>BETA</td>
|
---|
1726 | <td class="code"><pre>'BETA'</pre></td>
|
---|
1727 | </tr>
|
---|
1728 |
|
---|
1729 | <tr>
|
---|
1730 | <td>LOGOUT_URL</td>
|
---|
1731 | <td class="code"><pre>'/accounts/logout/'</pre></td>
|
---|
1732 | </tr>
|
---|
1733 |
|
---|
1734 | <tr>
|
---|
1735 | <td>EMAIL_USE_TLS</td>
|
---|
1736 | <td class="code"><pre>False</pre></td>
|
---|
1737 | </tr>
|
---|
1738 |
|
---|
1739 | <tr>
|
---|
1740 | <td>FIXTURE_DIRS</td>
|
---|
1741 | <td class="code"><pre>()</pre></td>
|
---|
1742 | </tr>
|
---|
1743 |
|
---|
1744 | <tr>
|
---|
1745 | <td>EMAIL_HOST</td>
|
---|
1746 | <td class="code"><pre>'localhost'</pre></td>
|
---|
1747 | </tr>
|
---|
1748 |
|
---|
1749 | <tr>
|
---|
1750 | <td>DATE_FORMAT</td>
|
---|
1751 | <td class="code"><pre>'N j, Y'</pre></td>
|
---|
1752 | </tr>
|
---|
1753 |
|
---|
1754 | <tr>
|
---|
1755 | <td>MONGOURL</td>
|
---|
1756 | <td class="code"><pre>'50.57.86.173:27017'</pre></td>
|
---|
1757 | </tr>
|
---|
1758 |
|
---|
1759 | <tr>
|
---|
1760 | <td>MEDIA_ROOT</td>
|
---|
1761 | <td class="code"><pre>'media/'</pre></td>
|
---|
1762 | </tr>
|
---|
1763 |
|
---|
1764 | <tr>
|
---|
1765 | <td>DEFAULT_EXCEPTION_REPORTER_FILTER</td>
|
---|
1766 | <td class="code"><pre>'django.views.debug.SafeExceptionReporterFilter'</pre></td>
|
---|
1767 | </tr>
|
---|
1768 |
|
---|
1769 | <tr>
|
---|
1770 | <td>ADMINS</td>
|
---|
1771 | <td class="code"><pre>()</pre></td>
|
---|
1772 | </tr>
|
---|
1773 |
|
---|
1774 | <tr>
|
---|
1775 | <td>FORMAT_MODULE_PATH</td>
|
---|
1776 | <td class="code"><pre>None</pre></td>
|
---|
1777 | </tr>
|
---|
1778 |
|
---|
1779 | <tr>
|
---|
1780 | <td>DEFAULT_FROM_EMAIL</td>
|
---|
1781 | <td class="code"><pre>'webmaster@localhost'</pre></td>
|
---|
1782 | </tr>
|
---|
1783 |
|
---|
1784 | <tr>
|
---|
1785 | <td>KEY</td>
|
---|
1786 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1787 | </tr>
|
---|
1788 |
|
---|
1789 | <tr>
|
---|
1790 | <td>MEDIA_URL</td>
|
---|
1791 | <td class="code"><pre>'/media/'</pre></td>
|
---|
1792 | </tr>
|
---|
1793 |
|
---|
1794 | <tr>
|
---|
1795 | <td>DATETIME_FORMAT</td>
|
---|
1796 | <td class="code"><pre>'N j, Y, P'</pre></td>
|
---|
1797 | </tr>
|
---|
1798 |
|
---|
1799 | <tr>
|
---|
1800 | <td>TEMPLATE_DIRS</td>
|
---|
1801 | <td class="code"><pre>('/media/data/work/clean/rmsagit/customers/templates',)</pre></td>
|
---|
1802 | </tr>
|
---|
1803 |
|
---|
1804 | <tr>
|
---|
1805 | <td>SITE_ID</td>
|
---|
1806 | <td class="code"><pre>'4d421623b2207acdc500001d'</pre></td>
|
---|
1807 | </tr>
|
---|
1808 |
|
---|
1809 | <tr>
|
---|
1810 | <td>DISALLOWED_USER_AGENTS</td>
|
---|
1811 | <td class="code"><pre>()</pre></td>
|
---|
1812 | </tr>
|
---|
1813 |
|
---|
1814 | <tr>
|
---|
1815 | <td>ALLOWED_INCLUDE_ROOTS</td>
|
---|
1816 | <td class="code"><pre>()</pre></td>
|
---|
1817 | </tr>
|
---|
1818 |
|
---|
1819 | <tr>
|
---|
1820 | <td>PASSWORD_MAX_LENGTH</td>
|
---|
1821 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1822 | </tr>
|
---|
1823 |
|
---|
1824 | <tr>
|
---|
1825 | <td>DBCONFIGURATION</td>
|
---|
1826 | <td class="code"><pre><settingsmodule.db.dbconfiguration.Enum object at 0x7fe0acce7590></pre></td>
|
---|
1827 | </tr>
|
---|
1828 |
|
---|
1829 | <tr>
|
---|
1830 | <td>DECIMAL_SEPARATOR</td>
|
---|
1831 | <td class="code"><pre>'.'</pre></td>
|
---|
1832 | </tr>
|
---|
1833 |
|
---|
1834 | <tr>
|
---|
1835 | <td>PROJECT_DIR</td>
|
---|
1836 | <td class="code"><pre>'/media/data/work/clean/rmsagit'</pre></td>
|
---|
1837 | </tr>
|
---|
1838 |
|
---|
1839 | <tr>
|
---|
1840 | <td>MONGOURL_ENV</td>
|
---|
1841 | <td class="code"><pre>{'ALPHA': '50.57.100.166:27017',
|
---|
1842 | 'BETA': '50.57.88.50:27017',
|
---|
1843 | 'DARREN': '50.57.118.89:27017',
|
---|
1844 | 'DEV': '50.57.86.173:27017',
|
---|
1845 | 'LOCAL': '50.57.86.173:27017'}</pre></td>
|
---|
1846 | </tr>
|
---|
1847 |
|
---|
1848 | <tr>
|
---|
1849 | <td>TEST_RUNNER</td>
|
---|
1850 | <td class="code"><pre>'django.test.simple.DjangoTestSuiteRunner'</pre></td>
|
---|
1851 | </tr>
|
---|
1852 |
|
---|
1853 | <tr>
|
---|
1854 | <td>SHORT_DATE_FORMAT</td>
|
---|
1855 | <td class="code"><pre>'m/d/Y'</pre></td>
|
---|
1856 | </tr>
|
---|
1857 |
|
---|
1858 | <tr>
|
---|
1859 | <td>CACHE_MIDDLEWARE_KEY_PREFIX</td>
|
---|
1860 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1861 | </tr>
|
---|
1862 |
|
---|
1863 | <tr>
|
---|
1864 | <td>TIME_ZONE</td>
|
---|
1865 | <td class="code"><pre>'America/Chicago'</pre></td>
|
---|
1866 | </tr>
|
---|
1867 |
|
---|
1868 | <tr>
|
---|
1869 | <td>DARREN</td>
|
---|
1870 | <td class="code"><pre>'DARREN'</pre></td>
|
---|
1871 | </tr>
|
---|
1872 |
|
---|
1873 | <tr>
|
---|
1874 | <td>FILE_UPLOAD_MAX_MEMORY_SIZE</td>
|
---|
1875 | <td class="code"><pre>2621440</pre></td>
|
---|
1876 | </tr>
|
---|
1877 |
|
---|
1878 | <tr>
|
---|
1879 | <td>SERVERCONFIGURATION</td>
|
---|
1880 | <td class="code"><pre><settingsmodule.servers.serverconfiguration.Enum object at 0x7fe0acce7050></pre></td>
|
---|
1881 | </tr>
|
---|
1882 |
|
---|
1883 | <tr>
|
---|
1884 | <td>EMAIL_BACKEND</td>
|
---|
1885 | <td class="code"><pre>'django.core.mail.backends.smtp.EmailBackend'</pre></td>
|
---|
1886 | </tr>
|
---|
1887 |
|
---|
1888 | <tr>
|
---|
1889 | <td>PLANLOADERDONEDIR</td>
|
---|
1890 | <td class="code"><pre>'/media/data/work/clean/rmsagit/settings/../plans_to_load/done/'</pre></td>
|
---|
1891 | </tr>
|
---|
1892 |
|
---|
1893 | <tr>
|
---|
1894 | <td>DEFAULT_TABLESPACE</td>
|
---|
1895 | <td class="code"><pre>''</pre></td>
|
---|
1896 | </tr>
|
---|
1897 |
|
---|
1898 | <tr>
|
---|
1899 | <td>TEMPLATE_CONTEXT_PROCESSORS</td>
|
---|
1900 | <td class="code"><pre>('django.core.context_processors.debug',
|
---|
1901 | 'django.core.context_processors.i18n',
|
---|
1902 | 'django.core.context_processors.media',
|
---|
1903 | 'django.core.context_processors.static',
|
---|
1904 | 'django.contrib.auth.context_processors.auth',
|
---|
1905 | 'django.contrib.messages.context_processors.messages',
|
---|
1906 | 'django.core.context_processors.request',
|
---|
1907 | 'customers.context_processors.get_user_profile')</pre></td>
|
---|
1908 | </tr>
|
---|
1909 |
|
---|
1910 | <tr>
|
---|
1911 | <td>SESSION_COOKIE_AGE</td>
|
---|
1912 | <td class="code"><pre>1209600</pre></td>
|
---|
1913 | </tr>
|
---|
1914 |
|
---|
1915 | <tr>
|
---|
1916 | <td>SETTINGS_MODULE</td>
|
---|
1917 | <td class="code"><pre>'settings'</pre></td>
|
---|
1918 | </tr>
|
---|
1919 |
|
---|
1920 | <tr>
|
---|
1921 | <td>USE_ETAGS</td>
|
---|
1922 | <td class="code"><pre>False</pre></td>
|
---|
1923 | </tr>
|
---|
1924 |
|
---|
1925 | <tr>
|
---|
1926 | <td>LANGUAGES_BIDI</td>
|
---|
1927 | <td class="code"><pre>('he', 'ar', 'fa')</pre></td>
|
---|
1928 | </tr>
|
---|
1929 |
|
---|
1930 | <tr>
|
---|
1931 | <td>FILE_UPLOAD_TEMP_DIR</td>
|
---|
1932 | <td class="code"><pre>None</pre></td>
|
---|
1933 | </tr>
|
---|
1934 |
|
---|
1935 | <tr>
|
---|
1936 | <td>INTERNAL_IPS</td>
|
---|
1937 | <td class="code"><pre>()</pre></td>
|
---|
1938 | </tr>
|
---|
1939 |
|
---|
1940 | <tr>
|
---|
1941 | <td>STATIC_URL</td>
|
---|
1942 | <td class="code"><pre>'/static/'</pre></td>
|
---|
1943 | </tr>
|
---|
1944 |
|
---|
1945 | <tr>
|
---|
1946 | <td>EMAIL_PORT</td>
|
---|
1947 | <td class="code"><pre>25</pre></td>
|
---|
1948 | </tr>
|
---|
1949 |
|
---|
1950 | <tr>
|
---|
1951 | <td>LOCAL</td>
|
---|
1952 | <td class="code"><pre>'LOCAL'</pre></td>
|
---|
1953 | </tr>
|
---|
1954 |
|
---|
1955 | <tr>
|
---|
1956 | <td>SHORT_DATETIME_FORMAT</td>
|
---|
1957 | <td class="code"><pre>'m/d/Y P'</pre></td>
|
---|
1958 | </tr>
|
---|
1959 |
|
---|
1960 | <tr>
|
---|
1961 | <td>PASSWORD_HASHERS</td>
|
---|
1962 | <td class="code"><pre>u'********************'</pre></td>
|
---|
1963 | </tr>
|
---|
1964 |
|
---|
1965 | <tr>
|
---|
1966 | <td>ABSOLUTE_URL_OVERRIDES</td>
|
---|
1967 | <td class="code"><pre>{}</pre></td>
|
---|
1968 | </tr>
|
---|
1969 |
|
---|
1970 | <tr>
|
---|
1971 | <td>CACHE_MIDDLEWARE_SECONDS</td>
|
---|
1972 | <td class="code"><pre>600</pre></td>
|
---|
1973 | </tr>
|
---|
1974 |
|
---|
1975 | <tr>
|
---|
1976 | <td>MONGOREPLICASET_ENV</td>
|
---|
1977 | <td class="code"><pre>{'ALPHA': 'prealphareplset',
|
---|
1978 | 'BETA': 'alphareplset',
|
---|
1979 | 'DARREN': 'darrenreplset',
|
---|
1980 | 'DEV': 'devreplset',
|
---|
1981 | 'LOCAL': 'devreplset'}</pre></td>
|
---|
1982 | </tr>
|
---|
1983 |
|
---|
1984 | <tr>
|
---|
1985 | <td>DATETIME_INPUT_FORMATS</td>
|
---|
1986 | <td class="code"><pre>('%Y-%m-%d %H:%M:%S',
|
---|
1987 | '%Y-%m-%d %H:%M:%S.%f',
|
---|
1988 | '%Y-%m-%d %H:%M',
|
---|
1989 | '%Y-%m-%d',
|
---|
1990 | '%m/%d/%Y %H:%M:%S',
|
---|
1991 | '%m/%d/%Y %H:%M:%S.%f',
|
---|
1992 | '%m/%d/%Y %H:%M',
|
---|
1993 | '%m/%d/%Y',
|
---|
1994 | '%m/%d/%y %H:%M:%S',
|
---|
1995 | '%m/%d/%y %H:%M:%S.%f',
|
---|
1996 | '%m/%d/%y %H:%M',
|
---|
1997 | '%m/%d/%y')</pre></td>
|
---|
1998 | </tr>
|
---|
1999 |
|
---|
2000 | <tr>
|
---|
2001 | <td>PLANLOADERDONEDIR_ENV</td>
|
---|
2002 | <td class="code"><pre>{'ALPHA': '/media/data/work/clean/rmsagit/settings/../plans_to_load/done/',
|
---|
2003 | 'BETA': '/data/dropbox/rmsabackup/Dropbox/Loaded_Plans/',
|
---|
2004 | 'DARREN': '/media/data/work/clean/rmsagit/settings/../plans_to_load/done/',
|
---|
2005 | 'DEV': '/media/data/work/clean/rmsagit/settings/../plans_to_load/done/',
|
---|
2006 | 'LOCAL': '/media/data/work/clean/rmsagit/settings/../plans_to_load/done/'}</pre></td>
|
---|
2007 | </tr>
|
---|
2008 |
|
---|
2009 | <tr>
|
---|
2010 | <td>ALPHA</td>
|
---|
2011 | <td class="code"><pre>'ALPHA'</pre></td>
|
---|
2012 | </tr>
|
---|
2013 |
|
---|
2014 | <tr>
|
---|
2015 | <td>EMAIL_HOST_USER</td>
|
---|
2016 | <td class="code"><pre>''</pre></td>
|
---|
2017 | </tr>
|
---|
2018 |
|
---|
2019 | <tr>
|
---|
2020 | <td>PROFANITIES_LIST</td>
|
---|
2021 | <td class="code"><pre>u'********************'</pre></td>
|
---|
2022 | </tr>
|
---|
2023 |
|
---|
2024 | </tbody>
|
---|
2025 | </table>
|
---|
2026 |
|
---|
2027 | </div>
|
---|
2028 |
|
---|
2029 | <div id="explanation">
|
---|
2030 | <p>
|
---|
2031 | You're seeing this error because you have <code>DEBUG = True</code> in your
|
---|
2032 | Django settings file. Change that to <code>False</code>, and Django will
|
---|
2033 | display a standard 500 page.
|
---|
2034 | </p>
|
---|
2035 | </div>
|
---|
2036 |
|
---|
2037 | </body>
|
---|
2038 | </html>
|
---|