| 1 | <!DOCTYPE html>
|
|---|
| 2 | <!-- saved from url=(0044)http://127.0.0.1:8000/warehouse_report/buch/ -->
|
|---|
| 3 | <html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|---|
| 4 |
|
|---|
| 5 | <meta name="robots" content="NONE,NOARCHIVE">
|
|---|
| 6 | <title>TypeError at /warehouse_report/buch/</title>
|
|---|
| 7 | <style type="text/css">
|
|---|
| 8 | html * { padding:0; margin:0; }
|
|---|
| 9 | body * { padding:10px 20px; }
|
|---|
| 10 | body * * { padding:0; }
|
|---|
| 11 | body { font:small sans-serif; }
|
|---|
| 12 | body>div { border-bottom:1px solid #ddd; }
|
|---|
| 13 | h1 { font-weight:normal; }
|
|---|
| 14 | h2 { margin-bottom:.8em; }
|
|---|
| 15 | h2 span { font-size:80%; color:#666; font-weight:normal; }
|
|---|
| 16 | h3 { margin:1em 0 .5em 0; }
|
|---|
| 17 | h4 { margin:0 0 .5em 0; font-weight: normal; }
|
|---|
| 18 | code, pre { font-size: 100%; white-space: pre-wrap; }
|
|---|
| 19 | table { border:1px solid #ccc; border-collapse: collapse; width:100%; background:white; }
|
|---|
| 20 | tbody td, tbody th { vertical-align:top; padding:2px 3px; }
|
|---|
| 21 | thead th { padding:1px 6px 1px 3px; background:#fefefe; text-align:left; font-weight:normal; font-size:11px; border:1px solid #ddd; }
|
|---|
| 22 | tbody th { width:12em; text-align:right; color:#666; padding-right:.5em; }
|
|---|
| 23 | table.vars { margin:5px 0 2px 40px; }
|
|---|
| 24 | table.vars td, table.req td { font-family:monospace; }
|
|---|
| 25 | table td.code { width:100%; }
|
|---|
| 26 | table td.code pre { overflow:hidden; }
|
|---|
| 27 | table.source th { color:#666; }
|
|---|
| 28 | table.source td { font-family:monospace; white-space:pre; border-bottom:1px solid #eee; }
|
|---|
| 29 | ul.traceback { list-style-type:none; color: #222; }
|
|---|
| 30 | ul.traceback li.frame { padding-bottom:1em; color:#666; }
|
|---|
| 31 | ul.traceback li.user { background-color:#e0e0e0; color:#000 }
|
|---|
| 32 | div.context { padding:10px 0; overflow:hidden; }
|
|---|
| 33 | div.context ol { padding-left:30px; margin:0 10px; list-style-position: inside; }
|
|---|
| 34 | div.context ol li { font-family:monospace; white-space:pre; color:#777; cursor:pointer; }
|
|---|
| 35 | div.context ol li pre { display:inline; }
|
|---|
| 36 | div.context ol.context-line li { color:#505050; background-color:#dfdfdf; }
|
|---|
| 37 | div.context ol.context-line li span { position:absolute; right:32px; }
|
|---|
| 38 | .user div.context ol.context-line li { background-color:#bbb; color:#000; }
|
|---|
| 39 | .user div.context ol li { color:#666; }
|
|---|
| 40 | div.commands { margin-left: 40px; }
|
|---|
| 41 | div.commands a { color:#555; text-decoration:none; }
|
|---|
| 42 | .user div.commands a { color: black; }
|
|---|
| 43 | #summary { background: #ffc; }
|
|---|
| 44 | #summary h2 { font-weight: normal; color: #666; }
|
|---|
| 45 | #explanation { background:#eee; }
|
|---|
| 46 | #template, #template-not-exist { background:#f6f6f6; }
|
|---|
| 47 | #template-not-exist ul { margin: 0 0 0 20px; }
|
|---|
| 48 | #unicode-hint { background:#eee; }
|
|---|
| 49 | #traceback { background:#eee; }
|
|---|
| 50 | #requestinfo { background:#f6f6f6; padding-left:120px; }
|
|---|
| 51 | #summary table { border:none; background:transparent; }
|
|---|
| 52 | #requestinfo h2, #requestinfo h3 { position:relative; margin-left:-100px; }
|
|---|
| 53 | #requestinfo h3 { margin-bottom:-1em; }
|
|---|
| 54 | .error { background: #ffc; }
|
|---|
| 55 | .specific { color:#cc3300; font-weight:bold; }
|
|---|
| 56 | h2 span.commands { font-size:.7em;}
|
|---|
| 57 | span.commands a:link {color:#5E5694;}
|
|---|
| 58 | pre.exception_value { font-family: sans-serif; color: #666; font-size: 1.5em; margin: 10px 0 10px 0; }
|
|---|
| 59 | </style>
|
|---|
| 60 |
|
|---|
| 61 | <script type="text/javascript">
|
|---|
| 62 | //<!--
|
|---|
| 63 | function getElementsByClassName(oElm, strTagName, strClassName){
|
|---|
| 64 | // Written by Jonathan Snook, http://www.snook.ca/jon; Add-ons by Robert Nyman, http://www.robertnyman.com
|
|---|
| 65 | var arrElements = (strTagName == "*" && document.all)? document.all :
|
|---|
| 66 | oElm.getElementsByTagName(strTagName);
|
|---|
| 67 | var arrReturnElements = new Array();
|
|---|
| 68 | strClassName = strClassName.replace(/\-/g, "\-");
|
|---|
| 69 | var oRegExp = new RegExp("(^|\s)" + strClassName + "(\s|$)");
|
|---|
| 70 | var oElement;
|
|---|
| 71 | for(var i=0; i<arrElements.length; i++){
|
|---|
| 72 | oElement = arrElements[i];
|
|---|
| 73 | if(oRegExp.test(oElement.className)){
|
|---|
| 74 | arrReturnElements.push(oElement);
|
|---|
| 75 | }
|
|---|
| 76 | }
|
|---|
| 77 | return (arrReturnElements)
|
|---|
| 78 | }
|
|---|
| 79 | function hideAll(elems) {
|
|---|
| 80 | for (var e = 0; e < elems.length; e++) {
|
|---|
| 81 | elems[e].style.display = 'none';
|
|---|
| 82 | }
|
|---|
| 83 | }
|
|---|
| 84 | window.onload = function() {
|
|---|
| 85 | hideAll(getElementsByClassName(document, 'table', 'vars'));
|
|---|
| 86 | hideAll(getElementsByClassName(document, 'ol', 'pre-context'));
|
|---|
| 87 | hideAll(getElementsByClassName(document, 'ol', 'post-context'));
|
|---|
| 88 | hideAll(getElementsByClassName(document, 'div', 'pastebin'));
|
|---|
| 89 | }
|
|---|
| 90 | function toggle() {
|
|---|
| 91 | for (var i = 0; i < arguments.length; i++) {
|
|---|
| 92 | var e = document.getElementById(arguments[i]);
|
|---|
| 93 | if (e) {
|
|---|
| 94 | e.style.display = e.style.display == 'none' ? 'block': 'none';
|
|---|
| 95 | }
|
|---|
| 96 | }
|
|---|
| 97 | return false;
|
|---|
| 98 | }
|
|---|
| 99 | function varToggle(link, id) {
|
|---|
| 100 | toggle('v' + id);
|
|---|
| 101 | var s = link.getElementsByTagName('span')[0];
|
|---|
| 102 | var uarr = String.fromCharCode(0x25b6);
|
|---|
| 103 | var darr = String.fromCharCode(0x25bc);
|
|---|
| 104 | s.innerHTML = s.innerHTML == uarr ? darr : uarr;
|
|---|
| 105 | return false;
|
|---|
| 106 | }
|
|---|
| 107 | function switchPastebinFriendly(link) {
|
|---|
| 108 | s1 = "Switch to copy-and-paste view";
|
|---|
| 109 | s2 = "Switch back to interactive view";
|
|---|
| 110 | link.innerHTML = link.innerHTML == s1 ? s2: s1;
|
|---|
| 111 | toggle('browserTraceback', 'pastebinTraceback');
|
|---|
| 112 | return false;
|
|---|
| 113 | }
|
|---|
| 114 | //-->
|
|---|
| 115 | </script>
|
|---|
| 116 |
|
|---|
| 117 | <style type="text/css"></style><style id="clearly_highlighting_css" type="text/css">/* selection */ html.clearly_highlighting_enabled ::-moz-selection { background: rgba(246, 238, 150, 0.99); } html.clearly_highlighting_enabled ::selection { background: rgba(246, 238, 150, 0.99); } /* cursor */ html.clearly_highlighting_enabled { /* cursor and hot-spot position -- requires a default cursor, after the URL one */ cursor: url("chrome-extension://pioclpoplcdbaefihamjohnefbikjilc/clearly/images/highlight--cursor.png") 14 16, text; } /* highlight tag */ em.clearly_highlight_element { font-style: inherit !important; font-weight: inherit !important; background-image: url("chrome-extension://pioclpoplcdbaefihamjohnefbikjilc/clearly/images/highlight--yellow.png"); background-repeat: repeat-x; background-position: top left; background-size: 100% 100%; } /* the delete-buttons are positioned relative to this */ em.clearly_highlight_element.clearly_highlight_first { position: relative; } /* delete buttons */ em.clearly_highlight_element a.clearly_highlight_delete_element { display: none; cursor: pointer; padding: 0; margin: 0; line-height: 0; position: absolute; width: 34px; height: 34px; left: -17px; top: -17px; background-image: url("chrome-extension://pioclpoplcdbaefihamjohnefbikjilc/clearly/images/highlight--delete-sprite.png"); background-repeat: no-repeat; background-position: 0px 0px; } em.clearly_highlight_element a.clearly_highlight_delete_element:hover { background-position: -34px 0px; } /* retina */ @media (min--moz-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2) { em.clearly_highlight_element { background-image: url("chrome-extension://pioclpoplcdbaefihamjohnefbikjilc/clearly/images/highlight--yellow@2x.png"); } em.clearly_highlight_element a.clearly_highlight_delete_element { background-image: url("chrome-extension://pioclpoplcdbaefihamjohnefbikjilc/clearly/images/highlight--delete-sprite@2x.png"); background-size: 68px 34px; } } </style><style>[touch-action="none"]{ -ms-touch-action: none; touch-action: none; }[touch-action="pan-x"]{ -ms-touch-action: pan-x; touch-action: pan-x; }[touch-action="pan-y"]{ -ms-touch-action: pan-y; touch-action: pan-y; }[touch-action="scroll"],[touch-action="pan-x pan-y"],[touch-action="pan-y pan-x"]{ -ms-touch-action: pan-x pan-y; touch-action: pan-x pan-y; }</style></head>
|
|---|
| 118 | <body>
|
|---|
| 119 | <div id="summary">
|
|---|
| 120 | <h1>TypeError at /warehouse_report/buch/</h1>
|
|---|
| 121 | <pre class="exception_value">__init__() got an unexpected keyword argument 'mimetype'</pre>
|
|---|
| 122 | <table class="meta">
|
|---|
| 123 |
|
|---|
| 124 | <tbody><tr>
|
|---|
| 125 | <th>Request Method:</th>
|
|---|
| 126 | <td>POST</td>
|
|---|
| 127 | </tr>
|
|---|
| 128 | <tr>
|
|---|
| 129 | <th>Request URL:</th>
|
|---|
| 130 | <td>http://127.0.0.1:8000/warehouse_report/buch/</td>
|
|---|
| 131 | </tr>
|
|---|
| 132 |
|
|---|
| 133 | <tr>
|
|---|
| 134 | <th>Django Version:</th>
|
|---|
| 135 | <td>1.7b1</td>
|
|---|
| 136 | </tr>
|
|---|
| 137 |
|
|---|
| 138 | <tr>
|
|---|
| 139 | <th>Exception Type:</th>
|
|---|
| 140 | <td>TypeError</td>
|
|---|
| 141 | </tr>
|
|---|
| 142 |
|
|---|
| 143 |
|
|---|
| 144 | <tr>
|
|---|
| 145 | <th>Exception Value:</th>
|
|---|
| 146 | <td><pre>__init__() got an unexpected keyword argument 'mimetype'</pre></td>
|
|---|
| 147 | </tr>
|
|---|
| 148 |
|
|---|
| 149 |
|
|---|
| 150 | <tr>
|
|---|
| 151 | <th>Exception Location:</th>
|
|---|
| 152 | <td>/usr/local/lib/python2.7/dist-packages/Django-1.7b1-py2.7.egg/django/http/response.py in __init__, line 320</td>
|
|---|
| 153 | </tr>
|
|---|
| 154 |
|
|---|
| 155 | <tr>
|
|---|
| 156 | <th>Python Executable:</th>
|
|---|
| 157 | <td>/usr/bin/python</td>
|
|---|
| 158 | </tr>
|
|---|
| 159 | <tr>
|
|---|
| 160 | <th>Python Version:</th>
|
|---|
| 161 | <td>2.7.5</td>
|
|---|
| 162 | </tr>
|
|---|
| 163 | <tr>
|
|---|
| 164 | <th>Python Path:</th>
|
|---|
| 165 | <td><pre>['/home/ski/Development/DJ17/potolok',
|
|---|
| 166 | '/usr/local/lib/python2.7/dist-packages/Django-1.7b1-py2.7.egg',
|
|---|
| 167 | '/usr/lib/python2.7',
|
|---|
| 168 | '/usr/lib/python2.7/plat-x86_64-linux-gnu',
|
|---|
| 169 | '/usr/lib/python2.7/lib-tk',
|
|---|
| 170 | '/usr/lib/python2.7/lib-old',
|
|---|
| 171 | '/usr/lib/python2.7/lib-dynload',
|
|---|
| 172 | '/usr/local/lib/python2.7/dist-packages',
|
|---|
| 173 | '/usr/lib/python2.7/dist-packages',
|
|---|
| 174 | '/usr/lib/python2.7/dist-packages/PILcompat',
|
|---|
| 175 | '/usr/lib/python2.7/dist-packages/gtk-2.0',
|
|---|
| 176 | '/usr/lib/pymodules/python2.7',
|
|---|
| 177 | '/usr/lib/python2.7/dist-packages/ubuntu-sso-client',
|
|---|
| 178 | '/usr/lib/python2.7/dist-packages/wx-2.8-gtk2-unicode']</pre></td>
|
|---|
| 179 | </tr>
|
|---|
| 180 | <tr>
|
|---|
| 181 | <th>Server time:</th>
|
|---|
| 182 | <td>Пнд, 14 Апр 2014 19:45:46 +0300</td>
|
|---|
| 183 | </tr>
|
|---|
| 184 | </tbody></table>
|
|---|
| 185 | </div>
|
|---|
| 186 |
|
|---|
| 187 |
|
|---|
| 188 |
|
|---|
| 189 |
|
|---|
| 190 | <div id="traceback">
|
|---|
| 191 | <h2>Traceback <span class="commands"><a href="http://127.0.0.1:8000/warehouse_report/buch/#" onclick="return switchPastebinFriendly(this);">Switch to copy-and-paste view</a></span></h2>
|
|---|
| 192 |
|
|---|
| 193 | <div id="browserTraceback">
|
|---|
| 194 | <ul class="traceback">
|
|---|
| 195 |
|
|---|
| 196 | <li class="frame django">
|
|---|
| 197 | <code>/usr/local/lib/python2.7/dist-packages/Django-1.7b1-py2.7.egg/django/core/handlers/base.py</code> in <code>get_response</code>
|
|---|
| 198 |
|
|---|
| 199 |
|
|---|
| 200 | <div class="context" id="c139896621616520">
|
|---|
| 201 |
|
|---|
| 202 | <ol start="106" class="pre-context" id="pre139896621616520" style="display: none;"><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> response = middleware_method(request, callback, callback_args, callback_kwargs)</pre></li><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> if response:</pre></li><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> break</pre></li><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre></pre></li><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> if response is None:</pre></li><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> wrapped_callback = self.make_view_atomic(callback)</pre></li><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> try:</pre></li></ol>
|
|---|
| 203 |
|
|---|
| 204 | <ol start="113" class="context-line"><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> response = wrapped_callback(request, *callback_args, **callback_kwargs)</pre> <span>...</span></li></ol>
|
|---|
| 205 |
|
|---|
| 206 | <ol start="114" class="post-context" id="post139896621616520" style="display: none;"><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> except Exception as e:</pre></li><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> # If the view raised an exception, run it through exception</pre></li><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> # middleware, and if the exception middleware returns a</pre></li><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> # response, use that. Otherwise, reraise the exception.</pre></li><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> for middleware_method in self._exception_middleware:</pre></li><li onclick="toggle('pre139896621616520', 'post139896621616520')"><pre> response = middleware_method(request, e)</pre></li></ol>
|
|---|
| 207 |
|
|---|
| 208 | </div>
|
|---|
| 209 |
|
|---|
| 210 |
|
|---|
| 211 |
|
|---|
| 212 | <div class="commands">
|
|---|
| 213 |
|
|---|
| 214 | <a href="http://127.0.0.1:8000/warehouse_report/buch/#" onclick="return varToggle(this, '139896621616520')"><span>▶</span> Local vars</a>
|
|---|
| 215 |
|
|---|
| 216 | </div>
|
|---|
| 217 | <table class="vars" id="v139896621616520" style="display: none;">
|
|---|
| 218 | <thead>
|
|---|
| 219 | <tr>
|
|---|
| 220 | <th>Variable</th>
|
|---|
| 221 | <th>Value</th>
|
|---|
| 222 | </tr>
|
|---|
| 223 | </thead>
|
|---|
| 224 | <tbody>
|
|---|
| 225 |
|
|---|
| 226 | <tr>
|
|---|
| 227 | <td>e</td>
|
|---|
| 228 | <td class="code"><pre>TypeError("__init__() got an unexpected keyword argument 'mimetype'",)</pre></td>
|
|---|
| 229 | </tr>
|
|---|
| 230 |
|
|---|
| 231 | <tr>
|
|---|
| 232 | <td>callback_args</td>
|
|---|
| 233 | <td class="code"><pre>()</pre></td>
|
|---|
| 234 | </tr>
|
|---|
| 235 |
|
|---|
| 236 | <tr>
|
|---|
| 237 | <td>resolver_match</td>
|
|---|
| 238 | <td class="code"><pre>ResolverMatch(func=<function warehouse_report at 0x7f3c380b87d0>, args=(), kwargs={'r_type': u'buch'}, url_name='Reports', app_name='None', namespace='')</pre></td>
|
|---|
| 239 | </tr>
|
|---|
| 240 |
|
|---|
| 241 | <tr>
|
|---|
| 242 | <td>middleware_method</td>
|
|---|
| 243 | <td class="code"><pre><bound method CsrfViewMiddleware.process_view of <django.middleware.csrf.CsrfViewMiddleware object at 0x7f3c400dadd0>></pre></td>
|
|---|
| 244 | </tr>
|
|---|
| 245 |
|
|---|
| 246 | <tr>
|
|---|
| 247 | <td>self</td>
|
|---|
| 248 | <td class="code"><pre><django.core.handlers.wsgi.WSGIHandler object at 0x265c950></pre></td>
|
|---|
| 249 | </tr>
|
|---|
| 250 |
|
|---|
| 251 | <tr>
|
|---|
| 252 | <td>request</td>
|
|---|
| 253 | <td class="code"><pre>"<WSGIRequest\npath:/warehouse_report/buch/,\nGET:<QueryDict: {}>,\nPOST:<QueryDict: {u'csrfmiddlewaretoken': [u'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU'], u'start_date': [u''], u'end_date': [u''], u'w_set': [u'1']}>,\nCOOKIES:{'__utma': '96992031.1703005798.1387472216.1397489460.1397493931.32',\n '__utmb': '96992031.9.10.1397493931',\n '__utmc': '96992031',\n '__utmz': '96992031.1387472216.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)',\n 'csrftoken': 'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU',\n 'django_language': 'ru',\n 'sessionid': 'n4r23un1j2at4e8xhd92b1ix80x8gfeb'},\nMETA:{'CINNAMON_VERSION': '2.0.14',\n 'CLUTTER_DISABLE_XINPUT': '1',\n 'COLORTERM': 'gnome-terminal',\n 'CONTENT_LENGTH': '82',\n 'CONTENT_TYPE': 'application/x-www-form-urlencoded',\n u'CSRF_COOKIE': u'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU',\n 'DBUS_SESSION_BUS_ADDRESS': 'unix:abstract=/tmp/dbus-tRAElqBaxN,guid=fe2e3165f8bd87120818d377534bc062',\n 'DEFAULTS_PATH': '/usr/share/gconf/default.default.path',\n 'DESKTOP_SESSION': 'default',\n 'DISPLAY': ':0',\n 'DJANGO_SETTINGS_MODULE': 'potolok.settings',\n 'GATEWAY_INTERFACE': 'CGI/1.1',\n 'GDMSESSION': 'default',\n 'GDM_XSERVER_LOCATION': 'local',\n 'GJS_DEBUG_OUTPUT': 'stderr',\n 'GJS_DEBUG_TOPICS': 'JS ERROR;JS LOG',\n 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated',\n 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring-egNCfe',\n 'GNOME_KEYRING_PID': '1640',\n 'GPG_AGENT_INFO': '/run/user/1000/keyring-egNCfe/gpg:0:1',\n 'HISTCONTROL': 'ignorespace',\n 'HOME': '/home/ski',\n 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',\n 'HTTP_ACCEPT_ENCODING': 'gzip,deflate,sdch',\n 'HTTP_ACCEPT_LANGUAGE': 'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4,be;q=0.2',\n 'HTTP_CACHE_CONTROL': 'max-age=0',\n 'HTTP_CONNECTION': 'keep-alive',\n 'HTTP_COOKIE': 'django_language=ru; sessionid=n4r23un1j2at4e8xhd92b1ix80x8gfeb; csrftoken=gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU; __utma=96992031.1703005798.1387472216.1397489460.1397493931.32; __utmb=96992031.9.10.1397493931; __utmc=96992031; __utmz=96992031.1387472216.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)',\n 'HTTP_DNT': '1',\n 'HTTP_HOST': '127.0.0.1:8000',\n 'HTTP_ORIGIN': 'http://127.0.0.1:8000',\n 'HTTP_REFERER': 'http://127.0.0.1:8000/warehouse_reports/',\n 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/33.0.1750.152 Chrome/33.0.1750.152 Safari/537.36',\n 'LANG': 'ru_RU.UTF-8',\n 'LC_ADDRESS': 'be_BY.UTF-8',\n 'LC_IDENTIFICATION': 'be_BY.UTF-8',\n 'LC_MEASUREMENT': 'be_BY.UTF-8',\n 'LC_MONETARY': 'be_BY.UTF-8',\n 'LC_NAME': 'be_BY.UTF-8',\n 'LC_NUMERIC': 'be_BY.UTF-8',\n 'LC_PAPER': 'be_BY.UTF-8',\n 'LC_TELEPHONE': 'be_BY.UTF-8',\n 'LC_TIME': 'be_BY.UTF-8',\n 'LOGNAME': 'ski',\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 'MANDATORY_PATH': '/usr/share/gconf/default.mandatory.path',\n 'MC_SID': '10532',\n 'MC_TMPDIR': '/tmp/mc-ski',\n 'MDMSESSION': 'default',\n 'MDM_LANG': 'ru_RU.UTF-8',\n 'MDM_XSERVER_LOCATION': 'local',\n 'OLDPWD': '/home/ski/Development/DJ17',\n 'PATH': '/home/ski/Development/Dj17/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games',\n 'PATH_INFO': u'/warehouse_report/buch/',\n 'PS1': '(Dj17)${debian_chroot:+($debian_chroot)}\\\\[\\\\033[01;32m\\\\]\\\\u@\\\\h\\\\[\\\\033[01;34m\\\\] \\\\w \\\\$\\\\[\\\\033[00m\\\\] ',\n 'PWD': '/home/ski/Development/DJ17/potolok',\n 'QUERY_STRING': '',\n 'REMOTE_ADDR': '127.0.0.1',\n 'REMOTE_HOST': '',\n 'REQUEST_METHOD': 'POST',\n 'RUN_MAIN': 'true',\n 'SCRIPT_NAME': u'',\n 'SERVER_NAME': 'localhost',\n 'SERVER_PORT': '8000',\n 'SERVER_PROTOCOL': 'HTTP/1.1',\n 'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.7.5+',\n 'SESSION_MANAGER': 'local/Desknop:@/tmp/.ICE-unix/1716,unix/Desknop:/tmp/.ICE-unix/1716',\n 'SHELL': '/bin/bash',\n 'SHLVL': '2',\n 'SSH_AGENT_PID': '1794',\n 'SSH_AUTH_SOCK': '/run/user/1000/keyring-egNCfe/ssh',\n 'TERM': 'xterm',\n 'TEXTDOMAIN': 'im-config',\n 'TEXTDOMAINDIR': '/usr/share/locale/',\n 'TZ': 'Europe/Minsk',\n 'USER': 'ski',\n 'USERNAME': 'ski',\n 'VIRTUAL_ENV': '/home/ski/Development/Dj17',\n 'VTE_VERSION': '3406',\n 'WINDOWID': '46137351',\n 'WINDOWPATH': '7',\n 'XAUTHORITY': '/home/ski/.Xauthority',\n 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-default:/etc/xdg',\n 'XDG_CURRENT_DESKTOP': 'GNOME',\n 'XDG_DATA_DIRS': '/usr/share/default:/usr/share/gnome:/usr/local/share/:/usr/share/:/usr/share/mdm/',\n 'XDG_RUNTIME_DIR': '/run/user/1000',\n 'XDG_SEAT': 'seat0',\n 'XDG_SESSION_COOKIE': 'e277462da3c3b28fea259b0952b2e2ac-1397473378.110678-811336745',\n 'XDG_SESSION_ID': 'c1',\n 'XDG_VTNR': '7',\n '_': '/usr/bin/python',\n 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f3c49d1f1e0>,\n 'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0x28ebc18>,\n 'wsgi.input': <socket._fileobject object at 0x7f3c384c1550>,\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>
|
|---|
| 254 | </tr>
|
|---|
| 255 |
|
|---|
| 256 | <tr>
|
|---|
| 257 | <td>callback</td>
|
|---|
| 258 | <td class="code"><pre><function warehouse_report at 0x7f3c380b87d0></pre></td>
|
|---|
| 259 | </tr>
|
|---|
| 260 |
|
|---|
| 261 | <tr>
|
|---|
| 262 | <td>wrapped_callback</td>
|
|---|
| 263 | <td class="code"><pre><function warehouse_report at 0x7f3c380b87d0></pre></td>
|
|---|
| 264 | </tr>
|
|---|
| 265 |
|
|---|
| 266 | <tr>
|
|---|
| 267 | <td>resolver</td>
|
|---|
| 268 | <td class="code"><pre><RegexURLResolver 'potolok.urls' (None:None) ^/></pre></td>
|
|---|
| 269 | </tr>
|
|---|
| 270 |
|
|---|
| 271 | <tr>
|
|---|
| 272 | <td>callback_kwargs</td>
|
|---|
| 273 | <td class="code"><pre>{'r_type': u'buch'}</pre></td>
|
|---|
| 274 | </tr>
|
|---|
| 275 |
|
|---|
| 276 | <tr>
|
|---|
| 277 | <td>response</td>
|
|---|
| 278 | <td class="code"><pre>None</pre></td>
|
|---|
| 279 | </tr>
|
|---|
| 280 |
|
|---|
| 281 | <tr>
|
|---|
| 282 | <td>urlconf</td>
|
|---|
| 283 | <td class="code"><pre>'potolok.urls'</pre></td>
|
|---|
| 284 | </tr>
|
|---|
| 285 |
|
|---|
| 286 | </tbody>
|
|---|
| 287 | </table>
|
|---|
| 288 |
|
|---|
| 289 | </li>
|
|---|
| 290 |
|
|---|
| 291 | <li class="frame django">
|
|---|
| 292 | <code>/usr/local/lib/python2.7/dist-packages/Django-1.7b1-py2.7.egg/django/contrib/auth/decorators.py</code> in <code>_wrapped_view</code>
|
|---|
| 293 |
|
|---|
| 294 |
|
|---|
| 295 | <div class="context" id="c139896621616448">
|
|---|
| 296 |
|
|---|
| 297 | <ol start="15" class="pre-context" id="pre139896621616448" style="display: none;"><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> that takes the user object and returns True if the user passes.</pre></li><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> """</pre></li><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre></pre></li><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> def decorator(view_func):</pre></li><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> @wraps(view_func, assigned=available_attrs(view_func))</pre></li><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> def _wrapped_view(request, *args, **kwargs):</pre></li><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> if test_func(request.user):</pre></li></ol>
|
|---|
| 298 |
|
|---|
| 299 | <ol start="22" class="context-line"><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> return view_func(request, *args, **kwargs)</pre> <span>...</span></li></ol>
|
|---|
| 300 |
|
|---|
| 301 | <ol start="23" class="post-context" id="post139896621616448" style="display: none;"><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> path = request.build_absolute_uri()</pre></li><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> # urlparse chokes on lazy objects in Python 3, force to str</pre></li><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> resolved_login_url = force_str(</pre></li><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> resolve_url(login_url or settings.LOGIN_URL))</pre></li><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> # If the login url is the same scheme and net location then just</pre></li><li onclick="toggle('pre139896621616448', 'post139896621616448')"><pre> # use the path as the "next" url.</pre></li></ol>
|
|---|
| 302 |
|
|---|
| 303 | </div>
|
|---|
| 304 |
|
|---|
| 305 |
|
|---|
| 306 |
|
|---|
| 307 | <div class="commands">
|
|---|
| 308 |
|
|---|
| 309 | <a href="http://127.0.0.1:8000/warehouse_report/buch/#" onclick="return varToggle(this, '139896621616448')"><span>▶</span> Local vars</a>
|
|---|
| 310 |
|
|---|
| 311 | </div>
|
|---|
| 312 | <table class="vars" id="v139896621616448" style="display: none;">
|
|---|
| 313 | <thead>
|
|---|
| 314 | <tr>
|
|---|
| 315 | <th>Variable</th>
|
|---|
| 316 | <th>Value</th>
|
|---|
| 317 | </tr>
|
|---|
| 318 | </thead>
|
|---|
| 319 | <tbody>
|
|---|
| 320 |
|
|---|
| 321 | <tr>
|
|---|
| 322 | <td>test_func</td>
|
|---|
| 323 | <td class="code"><pre><function <lambda> at 0x7f3c380b8578></pre></td>
|
|---|
| 324 | </tr>
|
|---|
| 325 |
|
|---|
| 326 | <tr>
|
|---|
| 327 | <td>login_url</td>
|
|---|
| 328 | <td class="code"><pre>'/accounts/login/'</pre></td>
|
|---|
| 329 | </tr>
|
|---|
| 330 |
|
|---|
| 331 | <tr>
|
|---|
| 332 | <td>args</td>
|
|---|
| 333 | <td class="code"><pre>()</pre></td>
|
|---|
| 334 | </tr>
|
|---|
| 335 |
|
|---|
| 336 | <tr>
|
|---|
| 337 | <td>request</td>
|
|---|
| 338 | <td class="code"><pre>"<WSGIRequest\npath:/warehouse_report/buch/,\nGET:<QueryDict: {}>,\nPOST:<QueryDict: {u'csrfmiddlewaretoken': [u'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU'], u'start_date': [u''], u'end_date': [u''], u'w_set': [u'1']}>,\nCOOKIES:{'__utma': '96992031.1703005798.1387472216.1397489460.1397493931.32',\n '__utmb': '96992031.9.10.1397493931',\n '__utmc': '96992031',\n '__utmz': '96992031.1387472216.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)',\n 'csrftoken': 'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU',\n 'django_language': 'ru',\n 'sessionid': 'n4r23un1j2at4e8xhd92b1ix80x8gfeb'},\nMETA:{'CINNAMON_VERSION': '2.0.14',\n 'CLUTTER_DISABLE_XINPUT': '1',\n 'COLORTERM': 'gnome-terminal',\n 'CONTENT_LENGTH': '82',\n 'CONTENT_TYPE': 'application/x-www-form-urlencoded',\n u'CSRF_COOKIE': u'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU',\n 'DBUS_SESSION_BUS_ADDRESS': 'unix:abstract=/tmp/dbus-tRAElqBaxN,guid=fe2e3165f8bd87120818d377534bc062',\n 'DEFAULTS_PATH': '/usr/share/gconf/default.default.path',\n 'DESKTOP_SESSION': 'default',\n 'DISPLAY': ':0',\n 'DJANGO_SETTINGS_MODULE': 'potolok.settings',\n 'GATEWAY_INTERFACE': 'CGI/1.1',\n 'GDMSESSION': 'default',\n 'GDM_XSERVER_LOCATION': 'local',\n 'GJS_DEBUG_OUTPUT': 'stderr',\n 'GJS_DEBUG_TOPICS': 'JS ERROR;JS LOG',\n 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated',\n 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring-egNCfe',\n 'GNOME_KEYRING_PID': '1640',\n 'GPG_AGENT_INFO': '/run/user/1000/keyring-egNCfe/gpg:0:1',\n 'HISTCONTROL': 'ignorespace',\n 'HOME': '/home/ski',\n 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',\n 'HTTP_ACCEPT_ENCODING': 'gzip,deflate,sdch',\n 'HTTP_ACCEPT_LANGUAGE': 'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4,be;q=0.2',\n 'HTTP_CACHE_CONTROL': 'max-age=0',\n 'HTTP_CONNECTION': 'keep-alive',\n 'HTTP_COOKIE': 'django_language=ru; sessionid=n4r23un1j2at4e8xhd92b1ix80x8gfeb; csrftoken=gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU; __utma=96992031.1703005798.1387472216.1397489460.1397493931.32; __utmb=96992031.9.10.1397493931; __utmc=96992031; __utmz=96992031.1387472216.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)',\n 'HTTP_DNT': '1',\n 'HTTP_HOST': '127.0.0.1:8000',\n 'HTTP_ORIGIN': 'http://127.0.0.1:8000',\n 'HTTP_REFERER': 'http://127.0.0.1:8000/warehouse_reports/',\n 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/33.0.1750.152 Chrome/33.0.1750.152 Safari/537.36',\n 'LANG': 'ru_RU.UTF-8',\n 'LC_ADDRESS': 'be_BY.UTF-8',\n 'LC_IDENTIFICATION': 'be_BY.UTF-8',\n 'LC_MEASUREMENT': 'be_BY.UTF-8',\n 'LC_MONETARY': 'be_BY.UTF-8',\n 'LC_NAME': 'be_BY.UTF-8',\n 'LC_NUMERIC': 'be_BY.UTF-8',\n 'LC_PAPER': 'be_BY.UTF-8',\n 'LC_TELEPHONE': 'be_BY.UTF-8',\n 'LC_TIME': 'be_BY.UTF-8',\n 'LOGNAME': 'ski',\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 'MANDATORY_PATH': '/usr/share/gconf/default.mandatory.path',\n 'MC_SID': '10532',\n 'MC_TMPDIR': '/tmp/mc-ski',\n 'MDMSESSION': 'default',\n 'MDM_LANG': 'ru_RU.UTF-8',\n 'MDM_XSERVER_LOCATION': 'local',\n 'OLDPWD': '/home/ski/Development/DJ17',\n 'PATH': '/home/ski/Development/Dj17/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games',\n 'PATH_INFO': u'/warehouse_report/buch/',\n 'PS1': '(Dj17)${debian_chroot:+($debian_chroot)}\\\\[\\\\033[01;32m\\\\]\\\\u@\\\\h\\\\[\\\\033[01;34m\\\\] \\\\w \\\\$\\\\[\\\\033[00m\\\\] ',\n 'PWD': '/home/ski/Development/DJ17/potolok',\n 'QUERY_STRING': '',\n 'REMOTE_ADDR': '127.0.0.1',\n 'REMOTE_HOST': '',\n 'REQUEST_METHOD': 'POST',\n 'RUN_MAIN': 'true',\n 'SCRIPT_NAME': u'',\n 'SERVER_NAME': 'localhost',\n 'SERVER_PORT': '8000',\n 'SERVER_PROTOCOL': 'HTTP/1.1',\n 'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.7.5+',\n 'SESSION_MANAGER': 'local/Desknop:@/tmp/.ICE-unix/1716,unix/Desknop:/tmp/.ICE-unix/1716',\n 'SHELL': '/bin/bash',\n 'SHLVL': '2',\n 'SSH_AGENT_PID': '1794',\n 'SSH_AUTH_SOCK': '/run/user/1000/keyring-egNCfe/ssh',\n 'TERM': 'xterm',\n 'TEXTDOMAIN': 'im-config',\n 'TEXTDOMAINDIR': '/usr/share/locale/',\n 'TZ': 'Europe/Minsk',\n 'USER': 'ski',\n 'USERNAME': 'ski',\n 'VIRTUAL_ENV': '/home/ski/Development/Dj17',\n 'VTE_VERSION': '3406',\n 'WINDOWID': '46137351',\n 'WINDOWPATH': '7',\n 'XAUTHORITY': '/home/ski/.Xauthority',\n 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-default:/etc/xdg',\n 'XDG_CURRENT_DESKTOP': 'GNOME',\n 'XDG_DATA_DIRS': '/usr/share/default:/usr/share/gnome:/usr/local/share/:/usr/share/:/usr/share/mdm/',\n 'XDG_RUNTIME_DIR': '/run/user/1000',\n 'XDG_SEAT': 'seat0',\n 'XDG_SESSION_COOKIE': 'e277462da3c3b28fea259b0952b2e2ac-1397473378.110678-811336745',\n 'XDG_SESSION_ID': 'c1',\n 'XDG_VTNR': '7',\n '_': '/usr/bin/python',\n 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f3c49d1f1e0>,\n 'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0x28ebc18>,\n 'wsgi.input': <socket._fileobject object at 0x7f3c384c1550>,\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>
|
|---|
| 339 | </tr>
|
|---|
| 340 |
|
|---|
| 341 | <tr>
|
|---|
| 342 | <td>kwargs</td>
|
|---|
| 343 | <td class="code"><pre>{'r_type': u'buch'}</pre></td>
|
|---|
| 344 | </tr>
|
|---|
| 345 |
|
|---|
| 346 | <tr>
|
|---|
| 347 | <td>redirect_field_name</td>
|
|---|
| 348 | <td class="code"><pre>'next'</pre></td>
|
|---|
| 349 | </tr>
|
|---|
| 350 |
|
|---|
| 351 | <tr>
|
|---|
| 352 | <td>view_func</td>
|
|---|
| 353 | <td class="code"><pre><function warehouse_report at 0x7f3c380b8758></pre></td>
|
|---|
| 354 | </tr>
|
|---|
| 355 |
|
|---|
| 356 | </tbody>
|
|---|
| 357 | </table>
|
|---|
| 358 |
|
|---|
| 359 | </li>
|
|---|
| 360 |
|
|---|
| 361 | <li class="frame user">
|
|---|
| 362 | <code>/home/ski/Development/DJ17/potolok/reports/views.py</code> in <code>warehouse_report</code>
|
|---|
| 363 |
|
|---|
| 364 |
|
|---|
| 365 | <div class="context" id="c139896621616592">
|
|---|
| 366 |
|
|---|
| 367 | <ol start="1443" class="pre-context" id="pre139896621616592" style="display: none;"><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre></pre></li><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre> sheet.write((i+2), 2, u'За период с %s по %s' % (start_date.strftime("%d.%m.%Y").decode('utf-8'), end_date.strftime("%d.%m.%Y").decode('utf-8')))</pre></li><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre></pre></li><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre> book.close()</pre></li><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre></pre></li><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre> # construct response</pre></li><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre> output.seek(0)</pre></li></ol>
|
|---|
| 368 |
|
|---|
| 369 | <ol start="1450" class="context-line"><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre> response = HttpResponse(output.read(), mimetype="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")</pre> <span>...</span></li></ol>
|
|---|
| 370 |
|
|---|
| 371 | <ol start="1451" class="post-context" id="post139896621616592" style="display: none;"><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre> response['Content-Disposition'] = "attachment; filename=warehouse_report.xlsx"</pre></li><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre></pre></li><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre> return response</pre></li><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre></pre></li><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre></pre></li><li onclick="toggle('pre139896621616592', 'post139896621616592')"><pre> #start_date= datetime.datetime.today().replace(hour= 0, minute= 0, second= 0, microsecond= 0, day=1)</pre></li></ol>
|
|---|
| 372 |
|
|---|
| 373 | </div>
|
|---|
| 374 |
|
|---|
| 375 |
|
|---|
| 376 |
|
|---|
| 377 | <div class="commands">
|
|---|
| 378 |
|
|---|
| 379 | <a href="http://127.0.0.1:8000/warehouse_report/buch/#" onclick="return varToggle(this, '139896621616592')"><span>▼</span> Local vars</a>
|
|---|
| 380 |
|
|---|
| 381 | </div>
|
|---|
| 382 | <table class="vars" id="v139896621616592" style="display: block;">
|
|---|
| 383 | <thead>
|
|---|
| 384 | <tr>
|
|---|
| 385 | <th>Variable</th>
|
|---|
| 386 | <th>Value</th>
|
|---|
| 387 | </tr>
|
|---|
| 388 | </thead>
|
|---|
| 389 | <tbody>
|
|---|
| 390 |
|
|---|
| 391 | <tr>
|
|---|
| 392 | <td>a_form</td>
|
|---|
| 393 | <td class="code"><pre><reports.forms.BuchReportForm object at 0x7f3c380bd9d0></pre></td>
|
|---|
| 394 | </tr>
|
|---|
| 395 |
|
|---|
| 396 | <tr>
|
|---|
| 397 | <td>Canvas</td>
|
|---|
| 398 | <td class="code"><pre><class 'warehouse.models.Canvas'></pre></td>
|
|---|
| 399 | </tr>
|
|---|
| 400 |
|
|---|
| 401 | <tr>
|
|---|
| 402 | <td>Min</td>
|
|---|
| 403 | <td class="code"><pre><class 'django.db.models.aggregates.Min'></pre></td>
|
|---|
| 404 | </tr>
|
|---|
| 405 |
|
|---|
| 406 | <tr>
|
|---|
| 407 | <td>Sum</td>
|
|---|
| 408 | <td class="code"><pre><class 'django.db.models.aggregates.Sum'></pre></td>
|
|---|
| 409 | </tr>
|
|---|
| 410 |
|
|---|
| 411 | <tr>
|
|---|
| 412 | <td>sum_parts_c</td>
|
|---|
| 413 | <td class="code"><pre>[]</pre></td>
|
|---|
| 414 | </tr>
|
|---|
| 415 |
|
|---|
| 416 | <tr>
|
|---|
| 417 | <td>arr_parts_c</td>
|
|---|
| 418 | <td class="code"><pre>[]</pre></td>
|
|---|
| 419 | </tr>
|
|---|
| 420 |
|
|---|
| 421 | <tr>
|
|---|
| 422 | <td>Warehouse</td>
|
|---|
| 423 | <td class="code"><pre><class 'warehouse.models.Warehouse'></pre></td>
|
|---|
| 424 | </tr>
|
|---|
| 425 |
|
|---|
| 426 | <tr>
|
|---|
| 427 | <td>HttpResponse</td>
|
|---|
| 428 | <td class="code"><pre><class 'django.http.response.HttpResponse'></pre></td>
|
|---|
| 429 | </tr>
|
|---|
| 430 |
|
|---|
| 431 | <tr>
|
|---|
| 432 | <td>arr_parts</td>
|
|---|
| 433 | <td class="code"><pre>[]</pre></td>
|
|---|
| 434 | </tr>
|
|---|
| 435 |
|
|---|
| 436 | <tr>
|
|---|
| 437 | <td>Arrival</td>
|
|---|
| 438 | <td class="code"><pre><class 'warehouse.models.Arrival'></pre></td>
|
|---|
| 439 | </tr>
|
|---|
| 440 |
|
|---|
| 441 | <tr>
|
|---|
| 442 | <td>sheet</td>
|
|---|
| 443 | <td class="code"><pre><xlsxwriter.worksheet.Worksheet object at 0x7f3c386e9ad0></pre></td>
|
|---|
| 444 | </tr>
|
|---|
| 445 |
|
|---|
| 446 | <tr>
|
|---|
| 447 | <td>iter_result</td>
|
|---|
| 448 | <td class="code"><pre>[]</pre></td>
|
|---|
| 449 | </tr>
|
|---|
| 450 |
|
|---|
| 451 | <tr>
|
|---|
| 452 | <td>r_type</td>
|
|---|
| 453 | <td class="code"><pre>u'buch'</pre></td>
|
|---|
| 454 | </tr>
|
|---|
| 455 |
|
|---|
| 456 | <tr>
|
|---|
| 457 | <td>r_r</td>
|
|---|
| 458 | <td class="code"><pre><function r_r at 0x7f3c385a9938></pre></td>
|
|---|
| 459 | </tr>
|
|---|
| 460 |
|
|---|
| 461 | <tr>
|
|---|
| 462 | <td>ArrivalReportForm</td>
|
|---|
| 463 | <td class="code"><pre><class 'reports.forms.ArrivalReportForm'></pre></td>
|
|---|
| 464 | </tr>
|
|---|
| 465 |
|
|---|
| 466 | <tr>
|
|---|
| 467 | <td>r_parts</td>
|
|---|
| 468 | <td class="code"><pre>[]</pre></td>
|
|---|
| 469 | </tr>
|
|---|
| 470 |
|
|---|
| 471 | <tr>
|
|---|
| 472 | <td>book</td>
|
|---|
| 473 | <td class="code"><pre><xlsxwriter.workbook.Workbook object at 0x7f3c383abcd0></pre></td>
|
|---|
| 474 | </tr>
|
|---|
| 475 |
|
|---|
| 476 | <tr>
|
|---|
| 477 | <td>a_parts</td>
|
|---|
| 478 | <td class="code"><pre>[]</pre></td>
|
|---|
| 479 | </tr>
|
|---|
| 480 |
|
|---|
| 481 | <tr>
|
|---|
| 482 | <td>warehouse</td>
|
|---|
| 483 | <td class="code"><pre><Warehouse: Брестский, Брест ></pre></td>
|
|---|
| 484 | </tr>
|
|---|
| 485 |
|
|---|
| 486 | <tr>
|
|---|
| 487 | <td>merge_lists</td>
|
|---|
| 488 | <td class="code"><pre><function merge_lists at 0x7f3c385a92a8></pre></td>
|
|---|
| 489 | </tr>
|
|---|
| 490 |
|
|---|
| 491 | <tr>
|
|---|
| 492 | <td>w_id</td>
|
|---|
| 493 | <td class="code"><pre>-999999</pre></td>
|
|---|
| 494 | </tr>
|
|---|
| 495 |
|
|---|
| 496 | <tr>
|
|---|
| 497 | <td>Count</td>
|
|---|
| 498 | <td class="code"><pre><class 'django.db.models.aggregates.Count'></pre></td>
|
|---|
| 499 | </tr>
|
|---|
| 500 |
|
|---|
| 501 | <tr>
|
|---|
| 502 | <td>end_date</td>
|
|---|
| 503 | <td class="code"><pre>datetime.datetime(2014, 4, 14, 19, 45, 46, 407257)</pre></td>
|
|---|
| 504 | </tr>
|
|---|
| 505 |
|
|---|
| 506 | <tr>
|
|---|
| 507 | <td>BuchReportForm</td>
|
|---|
| 508 | <td class="code"><pre><class 'reports.forms.BuchReportForm'></pre></td>
|
|---|
| 509 | </tr>
|
|---|
| 510 |
|
|---|
| 511 | <tr>
|
|---|
| 512 | <td>Workbook</td>
|
|---|
| 513 | <td class="code"><pre><class 'xlsxwriter.workbook.Workbook'></pre></td>
|
|---|
| 514 | </tr>
|
|---|
| 515 |
|
|---|
| 516 | <tr>
|
|---|
| 517 | <td>Order</td>
|
|---|
| 518 | <td class="code"><pre><class 'orders.models.Order'></pre></td>
|
|---|
| 519 | </tr>
|
|---|
| 520 |
|
|---|
| 521 | <tr>
|
|---|
| 522 | <td>sum_parts</td>
|
|---|
| 523 | <td class="code"><pre>[]</pre></td>
|
|---|
| 524 | </tr>
|
|---|
| 525 |
|
|---|
| 526 | <tr>
|
|---|
| 527 | <td>Part</td>
|
|---|
| 528 | <td class="code"><pre><class 'warehouse.models.Part'></pre></td>
|
|---|
| 529 | </tr>
|
|---|
| 530 |
|
|---|
| 531 | <tr>
|
|---|
| 532 | <td>i</td>
|
|---|
| 533 | <td class="code"><pre>1</pre></td>
|
|---|
| 534 | </tr>
|
|---|
| 535 |
|
|---|
| 536 | <tr>
|
|---|
| 537 | <td>StringIO</td>
|
|---|
| 538 | <td class="code"><pre><module 'cStringIO' (built-in)></pre></td>
|
|---|
| 539 | </tr>
|
|---|
| 540 |
|
|---|
| 541 | <tr>
|
|---|
| 542 | <td>request</td>
|
|---|
| 543 | <td class="code"><pre>"<WSGIRequest\npath:/warehouse_report/buch/,\nGET:<QueryDict: {}>,\nPOST:<QueryDict: {u'csrfmiddlewaretoken': [u'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU'], u'start_date': [u''], u'end_date': [u''], u'w_set': [u'1']}>,\nCOOKIES:{'__utma': '96992031.1703005798.1387472216.1397489460.1397493931.32',\n '__utmb': '96992031.9.10.1397493931',\n '__utmc': '96992031',\n '__utmz': '96992031.1387472216.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)',\n 'csrftoken': 'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU',\n 'django_language': 'ru',\n 'sessionid': 'n4r23un1j2at4e8xhd92b1ix80x8gfeb'},\nMETA:{'CINNAMON_VERSION': '2.0.14',\n 'CLUTTER_DISABLE_XINPUT': '1',\n 'COLORTERM': 'gnome-terminal',\n 'CONTENT_LENGTH': '82',\n 'CONTENT_TYPE': 'application/x-www-form-urlencoded',\n u'CSRF_COOKIE': u'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU',\n 'DBUS_SESSION_BUS_ADDRESS': 'unix:abstract=/tmp/dbus-tRAElqBaxN,guid=fe2e3165f8bd87120818d377534bc062',\n 'DEFAULTS_PATH': '/usr/share/gconf/default.default.path',\n 'DESKTOP_SESSION': 'default',\n 'DISPLAY': ':0',\n 'DJANGO_SETTINGS_MODULE': 'potolok.settings',\n 'GATEWAY_INTERFACE': 'CGI/1.1',\n 'GDMSESSION': 'default',\n 'GDM_XSERVER_LOCATION': 'local',\n 'GJS_DEBUG_OUTPUT': 'stderr',\n 'GJS_DEBUG_TOPICS': 'JS ERROR;JS LOG',\n 'GNOME_DESKTOP_SESSION_ID': 'this-is-deprecated',\n 'GNOME_KEYRING_CONTROL': '/run/user/1000/keyring-egNCfe',\n 'GNOME_KEYRING_PID': '1640',\n 'GPG_AGENT_INFO': '/run/user/1000/keyring-egNCfe/gpg:0:1',\n 'HISTCONTROL': 'ignorespace',\n 'HOME': '/home/ski',\n 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',\n 'HTTP_ACCEPT_ENCODING': 'gzip,deflate,sdch',\n 'HTTP_ACCEPT_LANGUAGE': 'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4,be;q=0.2',\n 'HTTP_CACHE_CONTROL': 'max-age=0',\n 'HTTP_CONNECTION': 'keep-alive',\n 'HTTP_COOKIE': 'django_language=ru; sessionid=n4r23un1j2at4e8xhd92b1ix80x8gfeb; csrftoken=gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU; __utma=96992031.1703005798.1387472216.1397489460.1397493931.32; __utmb=96992031.9.10.1397493931; __utmc=96992031; __utmz=96992031.1387472216.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)',\n 'HTTP_DNT': '1',\n 'HTTP_HOST': '127.0.0.1:8000',\n 'HTTP_ORIGIN': 'http://127.0.0.1:8000',\n 'HTTP_REFERER': 'http://127.0.0.1:8000/warehouse_reports/',\n 'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/33.0.1750.152 Chrome/33.0.1750.152 Safari/537.36',\n 'LANG': 'ru_RU.UTF-8',\n 'LC_ADDRESS': 'be_BY.UTF-8',\n 'LC_IDENTIFICATION': 'be_BY.UTF-8',\n 'LC_MEASUREMENT': 'be_BY.UTF-8',\n 'LC_MONETARY': 'be_BY.UTF-8',\n 'LC_NAME': 'be_BY.UTF-8',\n 'LC_NUMERIC': 'be_BY.UTF-8',\n 'LC_PAPER': 'be_BY.UTF-8',\n 'LC_TELEPHONE': 'be_BY.UTF-8',\n 'LC_TIME': 'be_BY.UTF-8',\n 'LOGNAME': 'ski',\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 'MANDATORY_PATH': '/usr/share/gconf/default.mandatory.path',\n 'MC_SID': '10532',\n 'MC_TMPDIR': '/tmp/mc-ski',\n 'MDMSESSION': 'default',\n 'MDM_LANG': 'ru_RU.UTF-8',\n 'MDM_XSERVER_LOCATION': 'local',\n 'OLDPWD': '/home/ski/Development/DJ17',\n 'PATH': '/home/ski/Development/Dj17/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games',\n 'PATH_INFO': u'/warehouse_report/buch/',\n 'PS1': '(Dj17)${debian_chroot:+($debian_chroot)}\\\\[\\\\033[01;32m\\\\]\\\\u@\\\\h\\\\[\\\\033[01;34m\\\\] \\\\w \\\\$\\\\[\\\\033[00m\\\\] ',\n 'PWD': '/home/ski/Development/DJ17/potolok',\n 'QUERY_STRING': '',\n 'REMOTE_ADDR': '127.0.0.1',\n 'REMOTE_HOST': '',\n 'REQUEST_METHOD': 'POST',\n 'RUN_MAIN': 'true',\n 'SCRIPT_NAME': u'',\n 'SERVER_NAME': 'localhost',\n 'SERVER_PORT': '8000',\n 'SERVER_PROTOCOL': 'HTTP/1.1',\n 'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.7.5+',\n 'SESSION_MANAGER': 'local/Desknop:@/tmp/.ICE-unix/1716,unix/Desknop:/tmp/.ICE-unix/1716',\n 'SHELL': '/bin/bash',\n 'SHLVL': '2',\n 'SSH_AGENT_PID': '1794',\n 'SSH_AUTH_SOCK': '/run/user/1000/keyring-egNCfe/ssh',\n 'TERM': 'xterm',\n 'TEXTDOMAIN': 'im-config',\n 'TEXTDOMAINDIR': '/usr/share/locale/',\n 'TZ': 'Europe/Minsk',\n 'USER': 'ski',\n 'USERNAME': 'ski',\n 'VIRTUAL_ENV': '/home/ski/Development/Dj17',\n 'VTE_VERSION': '3406',\n 'WINDOWID': '46137351',\n 'WINDOWPATH': '7',\n 'XAUTHORITY': '/home/ski/.Xauthority',\n 'XDG_CONFIG_DIRS': '/etc/xdg/xdg-default:/etc/xdg',\n 'XDG_CURRENT_DESKTOP': 'GNOME',\n 'XDG_DATA_DIRS': '/usr/share/default:/usr/share/gnome:/usr/local/share/:/usr/share/:/usr/share/mdm/',\n 'XDG_RUNTIME_DIR': '/run/user/1000',\n 'XDG_SEAT': 'seat0',\n 'XDG_SESSION_COOKIE': 'e277462da3c3b28fea259b0952b2e2ac-1397473378.110678-811336745',\n 'XDG_SESSION_ID': 'c1',\n 'XDG_VTNR': '7',\n '_': '/usr/bin/python',\n 'wsgi.errors': <open file '<stderr>', mode 'w' at 0x7f3c49d1f1e0>,\n 'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0x28ebc18>,\n 'wsgi.input': <socket._fileobject object at 0x7f3c384c1550>,\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>
|
|---|
| 544 | </tr>
|
|---|
| 545 |
|
|---|
| 546 | <tr>
|
|---|
| 547 | <td>Rest</td>
|
|---|
| 548 | <td class="code"><pre><class 'warehouse.models.Rest'></pre></td>
|
|---|
| 549 | </tr>
|
|---|
| 550 |
|
|---|
| 551 | <tr>
|
|---|
| 552 | <td>start_date</td>
|
|---|
| 553 | <td class="code"><pre>datetime.datetime(2014, 4, 1, 0, 0)</pre></td>
|
|---|
| 554 | </tr>
|
|---|
| 555 |
|
|---|
| 556 | <tr>
|
|---|
| 557 | <td>output</td>
|
|---|
| 558 | <td class="code"><pre><cStringIO.StringO object at 0x7f3c386fa420></pre></td>
|
|---|
| 559 | </tr>
|
|---|
| 560 |
|
|---|
| 561 | </tbody>
|
|---|
| 562 | </table>
|
|---|
| 563 |
|
|---|
| 564 | </li>
|
|---|
| 565 |
|
|---|
| 566 | <li class="frame django">
|
|---|
| 567 | <code>/usr/local/lib/python2.7/dist-packages/Django-1.7b1-py2.7.egg/django/http/response.py</code> in <code>__init__</code>
|
|---|
| 568 |
|
|---|
| 569 |
|
|---|
| 570 | <div class="context" id="c49368960">
|
|---|
| 571 |
|
|---|
| 572 | <ol start="313" class="pre-context" id="pre49368960" style="display: none;"><li onclick="toggle('pre49368960', 'post49368960')"><pre></pre></li><li onclick="toggle('pre49368960', 'post49368960')"><pre> This content that can be read, appended to or replaced.</pre></li><li onclick="toggle('pre49368960', 'post49368960')"><pre> """</pre></li><li onclick="toggle('pre49368960', 'post49368960')"><pre></pre></li><li onclick="toggle('pre49368960', 'post49368960')"><pre> streaming = False</pre></li><li onclick="toggle('pre49368960', 'post49368960')"><pre></pre></li><li onclick="toggle('pre49368960', 'post49368960')"><pre> def __init__(self, content=b'', *args, **kwargs):</pre></li></ol>
|
|---|
| 573 |
|
|---|
| 574 | <ol start="320" class="context-line"><li onclick="toggle('pre49368960', 'post49368960')"><pre> super(HttpResponse, self).__init__(*args, **kwargs)</pre> <span>...</span></li></ol>
|
|---|
| 575 |
|
|---|
| 576 | <ol start="321" class="post-context" id="post49368960" style="display: none;"><li onclick="toggle('pre49368960', 'post49368960')"><pre> # Content is a bytestring. See the `content` property methods.</pre></li><li onclick="toggle('pre49368960', 'post49368960')"><pre> self.content = content</pre></li><li onclick="toggle('pre49368960', 'post49368960')"><pre></pre></li><li onclick="toggle('pre49368960', 'post49368960')"><pre> def serialize(self):</pre></li><li onclick="toggle('pre49368960', 'post49368960')"><pre> """Full HTTP message, including headers, as a bytestring."""</pre></li><li onclick="toggle('pre49368960', 'post49368960')"><pre> return self.serialize_headers() + b'\r\n\r\n' + self.content</pre></li></ol>
|
|---|
| 577 |
|
|---|
| 578 | </div>
|
|---|
| 579 |
|
|---|
| 580 |
|
|---|
| 581 |
|
|---|
| 582 | <div class="commands">
|
|---|
| 583 |
|
|---|
| 584 | <a href="http://127.0.0.1:8000/warehouse_report/buch/#" onclick="return varToggle(this, '49368960')"><span>▶</span> Local vars</a>
|
|---|
| 585 |
|
|---|
| 586 | </div>
|
|---|
| 587 | <table class="vars" id="v49368960" style="display: none;">
|
|---|
| 588 | <thead>
|
|---|
| 589 | <tr>
|
|---|
| 590 | <th>Variable</th>
|
|---|
| 591 | <th>Value</th>
|
|---|
| 592 | </tr>
|
|---|
| 593 | </thead>
|
|---|
| 594 | <tbody>
|
|---|
| 595 |
|
|---|
| 596 | <tr>
|
|---|
| 597 | <td>content</td>
|
|---|
| 598 | <td class="code"><pre>'PK\x03\x04\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eDz\x99\xb0|\x84\x01\x00\x00\x7f\x03\x00\x00\x18\x00\x00\x00xl/worksheets/sheet1.xml\x8d\x93\xc9N\xc30\x10\x86\xef<\x85\xe5;u\xd2\x85\xa5JR\x01\xa5lEBlw7\x99$\x16\x89\'\xb2M\x0bo\x8f\x9dB\xb1\x81\x03\xb7\x19\x7f\xfag\xf9m\'\xb3\xb7\xb6!kPZ\xa0Li<\x88(\x01\x99c!d\x95\xd2\xa7\xc7\xc5\xfe\x11%\xdapY\xf0\x06%\xa4\xf4\x1d4\x9de{\xc9\x06\xd5\x8b\xae\x01\x0c\xb1\x05\xa4NimL7eL\xe75\xb4\\\x0f\xb0\x03iI\x89\xaa\xe5\xc6\xa6\xaab\xbaS\xc0\x8b^\xd46l\x18E\x07\xac\xe5B\xd2m\x85\xa9\xfaO\r,K\x91\xc3\x1c\xf3\xd7\x16\xa4\xd9\x16Q\xd0pc\xc7\xd7\xb5\xe84\xcd\x92BX\xe6\xf6!\n\xca\x94\x9e\xc4\xd3\xe5\x98\xb2,\xe9;?\x0b\xd8h/&\x86\xaf\x1e\xa0\x81\xdc@a\xf7\xa7\xc4-\xb6B|q\xf0\xca\x1eEN\xca~i\x17\xfdPw\x8a\x14P\xf2\xd7\xc6\xdc\xe3\xe6\x12DU\x1b[d\xb2\xeb6\xe7\x86g\x89\xc2\rQ}q\xddq\xe7U<\x8d\x87v\xd0\xdc\x9d\x9e\xd8c+r\x83\xaf\xb3(ak\xdb-\xffd\xa7>\x8bCv\xe6\xb3a\xc8\xe6>\x1b\x85\xec\xdcg\xe3\x90-|6\t\xd9\x85\xcf\x0eBv\xe9\xb3\xc3\x90]\xf9\xec(d\xd7>;\x0e\xd9M\xb0\xfb\x0fc\x96\x01\xfcv\x86Y\xabw~\x8f\xff\xf4\xfbl\xecK\x87?\xa4\xcc\xbb\xb6\x8eWp\xcbU%\xa4&\r\x94V\x14\r\x0e)Q\xdb[\xeec\x83]\x1fM(Y\xa11\xd8~e\xb5}\xe9\xa0\\6\xa2\xa4D4_\x89{L\xbb\xbf\x93}\x00PK\x03\x04\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\x8d\x8eXWG\x01\x00\x00$\x02\x00\x00\x0f\x00\x00\x00xl/workbook.xml\x8dQ\xcbN\xc30\x10\xbc\xf3\x15\xd6\xdei\x1eJ#Z5\xa9\xc4KTB\xc0\xa1\xd0\xb3\x897\x8dU\xc7\x8el\x87\xb4\x7f\xcf:U\n\xdc8\xed\xcexg\xb4\xb3^\xad\x8f\xadb_h\x9d4\xba\x80d\x16\x03C]\x19!\xf5\xbe\x80\xf7\xed\xe3\xf5\r0\xe7\xb9\x16\\\x19\x8d\x05\x9c\xd0\xc1\xba\xbcZ\r\xc6\x1e>\x8d90\xd2kW@\xe3}\xb7\x8c"W5\xd8r73\x1djz\xa9\x8dm\xb9\'h\xf7\x91\xeb,r\xe1\x1aD\xdf\xaa(\x8d\xe3<j\xb9\xd4pvX\xda\xffx\x98\xba\x96\x15\xde\x9b\xaaoQ\xfb\xb3\x89E\xc5=m\xef\x1a\xd99(W\xb5T\xf8q\x0e\xc4x\xd7\xbd\xf0\x96\xd6>*`\x8a;\xff \xa4GQ@F\xd0\x0c\xf8\x87\xb0}w\xdbK\x15\xc0<\x9eCT^B\xbeY&\xb0\xe6\xbd\xf2[Zmr\xa7s\xa5Y\x9a\xe6a2L}H\x1c\xdc\x8f(@v\xdcI-\xccP@\x9a\xd1eO\x13J\xe6\xc0\x86\xb1\xdfI\xe1\x1b"\xf2xq\xe1\x9eP\xee\x1b_\xc0"\xcf\xe3`\x1e\xfdr\x1f\xef7U\xa6\xc7p\x9er\xd0/\x05fC\xdb\'\x14e)\xa9\xb1\x1b\x91\x8c\xfaITqUQ\x96P\xc6\xc14\x9b\'\x0b`u\xaf\xd4\x1dq\xaf\xfa\xd9\xf0\xd1 \x88\xa6\x1c\xe57PK\x03\x04\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\xd6\xa8\\\x8cu\x01\x00\x00\xf3\x02\x00\x00\x14\x00\x00\x00xl/sharedStrings.xml\x95RMJ\xc3@\x18\xdd{\x8aaV\xbah\x93j\x11\x914.\x04O\xa0\x07\x08\xed\xd8\x06\x9aI\xcdLEw\xad\x15\xdd\xb8UAP\xd0\x13\xc4\xda`h5^\xe1\x9b+x\x12_S\xb5H\xc4\x9f\xcd0\xdf\xfb\xde\xfb\xbe\xf7\x86q6\x0e\x826\xdb\x17\x91\xf2CY\xe3\x95\xb2\xcd\x99\x90\xf5\xb0\xe1\xcbf\x8d\xeflo\x95\xd68S\xda\x93\r\xaf\x1dJQ\xe3\x87B\xf1\rw\xc1QJ3H\xa5\xaa\xf1\x96\xd6\x9du\xcbR\xf5\x96\x08<U\x0e;B\xa2\xb3\x1bF\x81\xa7QFMKu"\xe15TK\x08\x1d\xb4\xade\xdb^\xb5\x02\xcf\x97\x9c\xd5\xc3\xae\xd4X\xbb\xc2YW\xfa{]\xb1\xf9\t\xb8\x8e\xf2]G\xbb\xaf\xc7\x17\x8e\xa5]\xc7\x9a\x963\x88\xae)\xa6G\x1a\xe2|\xa6\x94\x92B\xff\x8a2\x9a\x94@\xc8\x98\xe9\xd3\x88\x12\x9a\x00\x19\x17x\xe7\xe8\xa5\xd3\x19\xe6\xa4\xd0\xbb\x85\xea\x9e\x12\xd37G\xd0\xa6\xf4D\xd9\xf4n\xce\xfe\xced\xe6\x14\xa3s\x98\x01\x8dqIL\x0f\x8c\x18~\xe2\xe2\x1c3\x00\x0b<\x86p1\x8d\xf3\x90\x19\r\x7f\xb2\xfdN\x85\xf2\x05\xd0\x84\xd2\x02\xf9\xf2k\x9fA\x17\xe3Uf\xbb\xcc\xa0\xc0\xbf\x81\xcb1\x12\xf4\xe04\x81\xf2\x08kzS\x1b\xb9k\xe8\x93\xf9\xf6ELE\xb44\x0f\xfe`\x06K\xff\x9f\xf6\x8b\x9b;\xacz\xf9.\x13\xc3\xea\xd9cf4\xc2\x04f\xe3\xefV\xcb\xcbv\xa5\xcarW\x95\xeaG=\x97[\xf8\xb5\xee\x1bPK\x03\x04\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\xa5\x1b<\xd7v\x01\x00\x00\x0e\x03\x00\x00\x10\x00\x00\x00docProps/app.xml\x9dRAn\xdb0\x10\xbc\xf7\x15\x02\xef1e\xa3(\n\x83b\x108)rhQ\x03v\x92\xf3\x96ZYD(\x92\xe0n\x04\xbb\xaf/%\xc3\x8a\xdc\xf4T\x9dfg\x07\xc3\xd1\x90\xea\xf6\xd8\xb9\xa2\xc7D6\xf8J,\x17\xa5(\xd0\x9bP[\x7f\xa8\xc4\xd3\xfe\xdb\xcdWQ\x10\x83\xaf\xc1\x05\x8f\x958!\x89[\xfdImS\x88\x98\xd8"\x15\xd9\xc1S%Z\xe6\xb8\x96\x92L\x8b\x1d\xd0"\xaf}\xde4!u\xc0yL\x07\x19\x9a\xc6\x1a\xbc\x0f\xe6\xadC\xcfrU\x96_$\x1e\x19}\x8d\xf5M\x9c\x0c\xc5\xd9q\xdd\xf3\xff\x9a\xd6\xc1\x0c\xf9\xe8y\x7f\x8a\xd9O\xab\xbb\x18\x9d5\xc0\xf9\'\xf5\x0fkR\xa0\xd0p\xf1p4\xe8\x94\x9c/U6\xda\xa1yK\x96O\xbaTr>\xaa\x9d\x01\x87\x9bl\xac\x1bp\x84J\xbe\x13\xea\x11a\xe8l\x0b6\x91V=\xaf{4\x1cRA\xf6wnm%\x8a_@8\xc4\xa9D\x0f\xc9\x82gq\x96\x9d\x87\x11\xbbH\x9c\xf4KH\xaf\xd4"2)9\x91#\x9ck\xe7\xd8~\xd6\xcbQ\x90\xc1\xb5PNA2\xbe\x8e\xb8\xb7\xec\x90~6[H\xfc\x8f\xc4\xcby\xe21\x83\x98ed$\xfe\x90\xeer\xce_\xce\x9b\xd0E\xf0\xb9>9\xa1\xef\xd6\xbf\xd2S\xdc\x87{`\xbc\x94yM\xaa]\x0b\t\xeb\xdc\xffT\xf6D\xa8\xc7\x9c*\xb9A\xbfi\xc1\x1f\xb0\xbeh>.\x86\xab\x7f>?o\xbd\\-\xca\xfc\x8d7~\xe1\x94|\x7f\xc9\xfa\x0fPK\x03\x04\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eDp\xda\x97\xf2%\x01\x00\x00P\x02\x00\x00\x11\x00\x00\x00docProps/core.xml\x9d\x92\xcdn\xc20\x10\x84\xef}\x8a\xc8\xf7\xc41\xa4\xa8\xb5\x92 \xb5\x15\xa7"U*UQo\x96\xbd\x80\xd5\xf8G\xb6\xdb\x90\xb7\xaf\x13 \x80\xc4\xa9\xc7\xf5\xcc~;\xbbr9\xdf\xab&\xf9\x05\xe7\xa5\xd1\x15"Y\x8e\x12\xd0\xdc\x08\xa9\xb7\x15\xfaX-\xd2\x07\x94\xf8\xc0\xb4`\x8d\xd1P\xa1\x0e<\x9a\xd7w%\xb7\x94\x1b\x07o\xceXpA\x82O"H{\xcam\x85v!X\x8a\xb1\xe7;P\xccg\xd1\xa1\xa3\xb81N\xb1\x10K\xb7\xc5\x96\xf1o\xb6\x05<\xc9\xf3\x19V\x10\x98`\x81\xe1\x1e\x98\xda\x91\x88\x8eH\xc1G\xa4\xfdq\xcd\x00\x10\x1cC\x03\nt\xf0\x98d\x04\x9f\xbd\x01\x9c\xf27\x1b\x06\xe5\xc2\xa9d\xe8,\xdc\xb4\x9e\xc4\xd1\xbd\xf7r4\xb6m\x9b\xb5\xd3\xc1\x1a\xf3\x13\xbc^\xbe\xbe\x0f\xab\xa6R\xf7\xa7\xe2\x80\xeaRp\xca\x1d\xb0`\\]\xe2\xcb"\x1e\xaea>,\xe3\x897\x12\xc4S\x17\xf5\x1bo\xc7E\x0e} \x92\x18\x80\x1e\xe2\x9e\x94\xcf\xe9\xf3\xcbj\x81\xeaIN\x8a4/RR\xac\xc8#-\xeei1\xfb\xeaG^\xf5\x9f\x81\xea8\xe4\xdf\xc4\x13\xe0\x90\xfb\xfa\x13\xd4\x7fPK\x03\x04\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eDa]I:O\x01\x00\x00\x8f\x04\x00\x00\x13\x00\x00\x00[Content_Types].xml\xad\x94\xcbn\xc20\x10E\xf7\xfd\x8a\xc8\xdb*1tQU\x15\x81E\x1f\xcb\x16\xa9\xf4\x03\\{B,\x1c\xdb\xf2\x0c\x14\xfe\xbe\x93\xf0P[Q\xa0\x82M\xacd\xee\xdcs\xc7\x8e<\x18-\x1b\x97- \xa1\r\xbe\x14\xfd\xa2\'2\xf0:\x18\xeb\xa7\xa5x\x9f<\xe7w"CR\xde(\x17<\x94b\x05(F\xc3\xab\xc1d\x15\x013n\xf6X\x8a\x9a(\xdeK\x89\xba\x86Fa\x11"x\xaeT!5\x8a\xf85MeTz\xa6\xa6 oz\xbd[\xa9\x83\'\xf0\x94S\xeb!\x86\x83G\xa8\xd4\xdcQ\xf6\xb4\xe4\xcf\xeb \t\x1c\x8a\xeca-lY\xa5P1:\xab\x15q].\xbc\xf9E\xc97\x84\x82;;\r\xd66\xe25\x0b\x84\xdcKh+\x7f\x036}\xaf\xbc3\xc9\x1a\xc8\xc6*\xd1\x8bjX%M\xd0\xe3\x14"J\xd6\x17\x87]\xf6\xc4\x0cUe5\xb0\xc7\xbc\xe1\x96\x02\xda@\x06L\x1e\xd9\x12\x12Y\xd8e>\xc8\xd6!\xc1\xff\xe1\xdb=j\xbbO$.\x9dDZ9\xc0\xb3G\xc5\x98@\x19\xac\x01\xa8q\xc5\xda\xf4\x08\x99\xf8\x7f\x82\xf5\xb3\x7f6\xbf\xb39\x02\xfc\x0ci\xf6\x11\xc2\xec\xd2\xc3\xb6k\xd1(\xebO\xe0wb\x94\xddr\xfe\xd4?\x83\xec\xfc\x8f\x1dy\xad\x12\x987J|\r\\\xfc\xe4\xbf{os\xc8\xee>\x19~\x01PK\x03\x04\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\x1a\xbc\x1a\xc9\x8f\x01\x00\x00c\x03\x00\x00\r\x00\x00\x00xl/styles.xml\xa5\x93Qk\xdc0\x0c\xc7\xdf\xf7)\x8c\xdf\xdb\xdc\x1d\xac\xac#I\x1f\n\x07\x85m\x0cz\x85\xbd\xfab%g\xb0\xe5`+\xc7e\x9f~r\x9c&w0\xe8C\x9f,\xff%\xfd$[v\xf9tqV\x9c!D\xe3\xb1\x92\xdb\xfb\x8d\x14\x80\x8d\xd7\x06\xbbJ\xbe\x1d\xf6w\xdf\xa4\x88\xa4P+\xeb\x11*9B\x94O\xf5\x972\xd2h\xe1\xf5\x04@\x82\t\x18+y"\xea\xbf\x17ElN\xe0T\xbc\xf7= {Z\x1f\x9c"\xde\x86\xae\x88}\x00\xa5cJr\xb6\xd8m6\x0f\x85S\x06e]\xb6\x1e)\x8a\xc6\x0fH\xdc\xc4,\xd4e\xfc+\xce\xca\xb2\xb2\x95E]6\xde\xfa \x88\xf1\x90\x82XA\xe5 G<+k\x8e\xc1$\xb1U\xce\xd81\xcb\xbb$L\x1d\xcdq\xce\xa0\x0fI,r\x85i\x89\x9cd\xac]\x1a\xd8\xc9,\xd4e\xaf\x88 \xe0\x9e7b\xb6\x0fc\xcf\xe5\x91/#c\xa6\xb8\x0f\xa2\xbb\xa0\xc6\xed\xee\xebU\xc2\xb4p\xdd\xa3\x0f\x9a/\xff\xfa\xe8Y\xaaK\x0b-qB0\xdd)\xad\xe4\xfb"9\x89\xbccC\x1b\xd5yT6!\xdf3f\x83\xb1\rX\xfb\x9a&\xf4\xa7\xbda_Z\x81\x83\xdb;z\xd1\x95\xe4Q\xa7\xd3\xbf\x9b\xdc\xd0lfL\xde$\xfe5-\xb3?\x8d\x15\x97\xf6\x96\xbf\xa0\xa7B7\xf4E\x15i\xde\x95\xfc\x95\x9e\x94]\x11\xe28\x18K\x06\xff\xd303\xf5e\xedu\xf2\x92:\xf2\xcb\xbd\xa9\xc2\x0c\r\xad\x1a,\x1d\x16g%W\xfb\'h3\xb8\xc7%\xea\xb79{\x9a\xa3V\xfbG\x9a\xd4\xf6a\xea`\xfd\x1e\xf5?PK\x03\x04\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\x18\xfaFT\xb0\x05\x00\x00R\x1b\x00\x00\x13\x00\x00\x00xl/theme/theme1.xml\xedYM\x8f\xdbD\x18\xbe\xf3+F\xbe\xb7\x8e\x13;\xcd\xae\x9a\xad6\xd9\xa4\x85\xed\xb6\xab\xdd\xb4\xa8\xc7\x89=\xb1\xa7\x19{\xac\x99\xc9nsC\xed\x11\t\tQ\x10\x17$n\x1c\x10P\xa9\x95\xb8\x94_\xb3P\x04E\xea_\xe0\xf5G\x92\xf1f\xb2\xcd\xb6\x8b\x00\xb59$\x9e\xf1\xf3~\x7f\xf8\x1d\xe7\xea\xb5\x071CGDH\xca\x93\xb6\xe5\\\xaeY\x88$>\x0fh\x12\xb6\xad;\x83\xfe\xa5\x96\x85\xa4\xc2I\x80\x19OH\xdb\x9a\x12i]\xdb\xfa\xe0*\xdeT\x11\x89\t\x02\xf2Dn\xe2\xb6\x15)\x95n\xda\xb6\xf4a\x1b\xcb\xcb<%\t\xdc\x1bq\x11c\x05K\x11\xda\x81\xc0\xc7\xc06fv\xbdVk\xda1\xa6\x89\x85\x12\x1c\x03\xd7\xdb\xa3\x11\xf5\t\x1ad,\xad\xad\x19\xf3\x1e\x83\xafD\xc9l\xc3g\xe2\xd0\xcf%\xea\x1496\x18;\xd9\x8f\x9c\xca.\x13\xe8\x08\xb3\xb6\x05r\x02~< \x0f\x94\x85\x18\x96\nn\xb4\xadZ\xfe\xb1\xec\xad\xab\xf6\x9c\x88\xa9\x15\xb4\x1a]?\xff\x94t%A0\xae\xe7t"\x1c\xce\t\x9d\xbe\xbbqeg\xce\xbf^\xf0_\xc6\xf5z\xbdn\xcf\x99\xf3\xcb\x01\xd8\xf7\xc1Rg\t\xeb\xf6[Ng\xc6S\x03\x15\x97\xcb\xbc\xbb5\xaf\xe6V\xf1\x1a\xff\xc6\x12~\xa3\xd3\xe9x\x1b\x15|c\x81w\x97\xf0\xadZ\xd3\xdd\xaeW\xf0\xee\x02\xef-\xeb\xdf\xd9\xeev\x9b\x15\xbc\xb7\xc07\x97\xf0\xfd+\x1bM\xb7\x8a\xcfA\x11\xa3\xc9x\t\x9d\xc5s\x1e\x999d\xc4\xd9\r#\xbc\x05\xf0\xd6,\x01\x16([\xcb\xae\x82>Q\xabr-\xc6\xf7\xb9\xe8\x03 \x0f.V4Aj\x9a\x92\x11\xf6\x01\xd7\xc5\xf1PP\x9c\t\xc0\x9b\x04kw\x8a-_.me\xb2\x90\xf4\x05MU\xdb\xfa(\xc5P\x11\x0b\xc8\xab\xe7?\xbcz\xfe\x14\xbdz\xfe\xe4\xe4\xe1\xb3\x93\x87?\x9f<zt\xf2\xf0\'\x03\xe1\r\x9c\x84:\xe1\xcb\xef>\xff\xeb\x9bO\xd0\x9fO\xbf}\xf9\xf8K3^\xea\xf8\xdf~\xfc\xf4\xd7_\xbe0\x03\x95\x0e|\xf1\xd5\x93\xdf\x9f=y\xf1\xf5g\x7f|\xff\xd8\x00\xdf\x16x\xa8\xc3\x074&\x12\xdd"\xc7\xe8\x80\xc7`\x9bA\x00\x19\x8a\xf3Q\x0c"L+\x148\x02\xa4\x01\xd8SQ\x05xk\x8a\x99\t\xd7!U\xe7\xdd\x15\xd0\x00L\xc0\xeb\x93\xfb\x15]\x0f#1Q\xd4\x00\xdc\x8d\xe2\np\x8fs\xd6\xe1\xc2h\xcen&K7g\x92\x84f\xe1b\xa2\xe3\x0e0>2\xc9\xee\x9e\nmo\x92B&S\x13\xcbnD*j\xee3\x886\x0eIB\x14\xca\xee\xf11!\x06\xb2{\x94V\xfc\xbaG}\xc1%\x1f)t\x8f\xa2\x0e\xa6F\x97\x0c\xe8P\x99\x89n\xd0\x18\xe225)\x08\xa1\xae\xf8f\xef.\xeapfb\xbfC\x8e\xaaH(\x08\xccL,\t\xab\xb8\xf1:\x9e(\x1c\x1b5\xc61\xd3\x917\xb1\x8aLJ\x1eN\x85_q\xb8T\x10\xe9\x900\x8ez\x01\x91\xd2Ds[L+\xea\xeeb\xe8D\xc6\xb0\xef\xb1i\\E\nE\xc7&\xe4M\xcc\xb9\x8e\xdc\xe1\xe3n\x84\xe3\xd4\xa83M"\x1d\xfb\xa1\x1cC\x8ab\xb4\xcf\x95Q\t^\xad\x90l\rq\xc0\xc9\xcap\xdf\xa5D\x9d\xaf\xac\xef\xd002\'Hvg"\xca\xae]\xe9\xbf1M\xcej\xc6\x8cB7~\xdf\x8cg\xf0mx4\x99J\xe2t\x0b^\x85\xfb\x1f6\xde\x1d<I\xf6\t\xe4\xfa\xfb\xbe\xfb\xbe\xef\xbe\x8b}wU-\xaf\xdbm\x17\r\xd6\xd6\xe7\xe2\x9c_\xbcrH\x1eQ\xc6\x0e\xd5\x94\x91\x9b2o\xcd\x12\x94\x0e\xfa\xb0\x99/r\xa2\xf9L\x9eFpY\x8a\xab\xe0B\x81\xf3k$\xb8\xfa\x98\xaa\xe80\xc2)\x88qr\t\xa1,Y\x87\x12\xa5\\\xc2I\xc0Z\xc9;?NR0>\xdf\xf3fg@@c\xb5\xc7\x83b\xbb\xa1\x9f\r\xe7l\xf2U(uA\x8d\x8c\xc1\xba\xc2\x1aW\xdeN\x98S\x00\xd7\x94\xe6xfi\xde\x99\xd2l\xcd\x9bP\r\x08g\x07\x7f\xa7Y/DC\xc6`F\x82\xcc\xef\x05\x83YX.<D2\xc2\x01)c\xe4\x18\rq\x1ak\xba\xad\xf5z\xafi\xd26\x1ao\'m\x9d \xe9\xe2\xdc\x15\xe2\xbc\x0b\x88Rm)J\xf6r9\xb2\xa4\xbaB\xc7\xa0\x95W\xf7,\xe4\xe3\xb4m\x8d`\x92\x82\xcb8\x05~2k@\x98\x85I\xdb\xf2Ui\xcak\x8b\xf9\xb4\xc1\xe6\xb4tj+\r\xae\x88H\x85T;XF\x05U~k\xf6\xea$Y\xe8_\xf7\xdc\xcc\x0f\x17c\x80\xa1\x1b\xad\xa7E\xa3\xe5\xfc\x8bZ\xd8\xa7CKF#\xe2\xab\x15;\x8bey\x8fO\x14\x11\x87Qp\x8c\x86l"\x0e0\xe8\xed\x16\xd9\x15P\t\xcf\x8c\xfal!\xa0B\xdd2\xf1\xaa\x95_V\xc1\xe9W4eu`\x96F\xb8\xecI--\xf6\x05<\xbf\x9e\xeb\x90\xaf4\xf5\xec\x15\xba\xbf\xa1)\x8d\x0b4\xc5{wM\xc92\x17\xc6\xd6F\x90\x1f\xa8`\x0c\x10\x18e9\xda\xb6\xb8P\x11\x87.\x94F\xd4\xef\x0b\x18\x1crY\xa0\x17\x82\xb2\xc8TB,{\xdf\x9c\xe9J\x8e\x16}\xab\xe0Q4\xb90R\x074D\x82B\xa7S\x91 d_\x95v\xbe\x86\x99S\xd7\x9f\xaf3Fe\x9f\x99\xab+\xd3\xe2wH\x8e\x08\x1bd\xd5\xdb\xcc\xec\xb7P4\xeb&\xa5#r\xdc\xe9\xa0\xd9\xa6\xea\x1a\x86\xfd\xff\xf0\xe4\xe3\xae\x98|\xce\x1e\x0f\x16\x82\xdc\xf3\xcc"\xae\xd6\xf4\xb5G\xc1\xc6\xdb\xa9p\xceGm\xddlq\xdd[\xfbQ\x9b\xc2\xe1\x03e_\xd0\xb8\xa9\xf0\xd9b\xbe\x1d\xf0\x03\x88>\x9aO\x94\x08\x12\xf1R\xab,\xbf\xf9\xe6\x10tni\xc6e\xac\xfe\xd91j\x11\x82\xd6\x8ax_\xe4\xf0\xa99\xbb\xb1\xc2\xd9g\x8b{sg{\x06_{g\xbb\xda^.Q[;\xc8\xe4\xab\xa5?\x9e\xf8\xf0>\xc8\xde\x81\x83\xd2\x84)Y\xbcMz\x00G\xcd\xee\xec/\x03\xe0c/H\xb7\xfe\x06PK\x03\x04\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\xf2\x9fI\xda\xe9\x00\x00\x00K\x02\x00\x00\x0b\x00\x00\x00_rels/.rels\xad\x92\xc1N\xc30\x0c@\xef|E\xe4\xfb\x9anH\x08\xa1\xa5\xbb \xa4\xdd&4>\xc0$n\x1b\xb5\x8d\xa3\xc4\x83\xee\xef\x89\x90@\x0c\x8di\x07\x8eq\xec\xe7g\xcb\xeb\xcd<\x8d\xea\x8dR\xf6\x1c\x0c,\xab\x1a\x14\x05\xcb\xce\x87\xce\xc0\xcb\xfeiq\x0f*\x0b\x06\x87#\x072p\xa4\x0c\x9b\xe6f\xfdL#J\xa9\xc9\xbd\x8fY\x15H\xc8\x06z\x91\xf8\xa0u\xb6=M\x98+\x8e\x14\xcaO\xcbiB)\xcf\xd4\xe9\x88v\xc0\x8e\xf4\xaa\xae\xeft\xfa\xc9\x80\xe6\x84\xa9\xb6\xce@\xda\xba%\xa8\xfd1\xd25ln[o\xe9\x91\xeda\xa2 gZ\xfc\xca(dL\x1d\x89\x81y\xd4\xef\x9c\x86W\xe6\xa1*P\xd0\xe7]V\xd7\xbb\xfc=\xa7\x9eH\xd0\xa1\xa0\xb6\x9ch\x11S\xa9N\xe2\xcbZ\xbfu\x1c\xdb]\t\xe7\xcf\x8cKB\xb7\xff\xb9\x1c\x9a\x85\x82#wY\tc\xfc2\xd2\'7\xd0|\x00PK\x03\x04\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eDDu[\xf0\xe8\x00\x00\x00\xb9\x02\x00\x00\x1a\x00\x00\x00xl/_rels/workbook.xml.rels\xad\x92\xc1j\xc30\x10D\xef\xfd\n\xb1\xf7Zv\x12J)\x91s)\x85\\\xdb\xf4\x03\x84\xb4\xb6LlIh\xb7i\xfd\xf7\x11\tM\x1d\x08\xa1\x07\x9f\xc4\x8c\xd8\x99\x07\xbb\xeb\xcd\xcf\xd0\x8b\x03&\xea\x82WP\x15%\x08\xf4&\xd8\xce\xb7\n>wo\x8f\xcf \x88\xb5\xb7\xba\x0f\x1e\x15\x8cH\xb0\xa9\x1f\xd6\xef\xd8k\xce3\xe4\xbaH"\x87xR\xe0\x98\xe3\x8b\x94d\x1c\x0e\x9a\x8a\x10\xd1\xe7\x9f&\xa4As\x96\xa9\x95Q\x9b\xbdnQ.\xca\xf2I\xa6i\x06\xd4W\x99bk\x15\xa4\xad\xad@\xec\xc6\x88\xff\xc9\x0eM\xd3\x19|\r\xe6k@\xcf7*\xe4wH{r\x88\x9cCuj\x91\x15\\,\x92\xa7\xa7*r*\xc8\xdb0\x8b9a8\xcf\xe2\x1f\xc8I\x9e\xcd\xbb\x0c\xcb9\x19\x88\xc7>/\xf4\x02q\xd6\xf7\xeaW\xb3\xd6;\x9d\xd0~p\xca\xd76\xa5\x98\xda\xbf0\xf2\xea\xe2\xea#PK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eDz\x99\xb0|\x84\x01\x00\x00\x7f\x03\x00\x00\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x81\x00\x00\x00\x00xl/worksheets/sheet1.xmlPK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\x8d\x8eXWG\x01\x00\x00$\x02\x00\x00\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x81\xba\x01\x00\x00xl/workbook.xmlPK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\xd6\xa8\\\x8cu\x01\x00\x00\xf3\x02\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x81.\x03\x00\x00xl/sharedStrings.xmlPK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\xa5\x1b<\xd7v\x01\x00\x00\x0e\x03\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x81\xd5\x04\x00\x00docProps/app.xmlPK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eDp\xda\x97\xf2%\x01\x00\x00P\x02\x00\x00\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x81y\x06\x00\x00docProps/core.xmlPK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eDa]I:O\x01\x00\x00\x8f\x04\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x81\xcd\x07\x00\x00[Content_Types].xmlPK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\x1a\xbc\x1a\xc9\x8f\x01\x00\x00c\x03\x00\x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x81M\t\x00\x00xl/styles.xmlPK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\x18\xfaFT\xb0\x05\x00\x00R\x1b\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x81\x07\x0b\x00\x00xl/theme/theme1.xmlPK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eD\xf2\x9fI\xda\xe9\x00\x00\x00K\x02\x00\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x81\xe8\x10\x00\x00_rels/.relsPK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00\xb7\x9d\x8eDDu[\xf0\xe8\x00\x00\x00\xb9\x02\x00\x00\x1a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x81\xfa\x11\x00\x00xl/_rels/workbook.xml.relsPK\x05\x06\x00\x00\x00\x00\n\x00\n\x00\x80\x02\x00\x00\x1a\x13\x00\x00\x00\x00'</pre></td>
|
|---|
| 599 | </tr>
|
|---|
| 600 |
|
|---|
| 601 | <tr>
|
|---|
| 602 | <td>self</td>
|
|---|
| 603 | <td class="code"><pre><django.http.response.HttpResponse object at 0x7f3c386e9b10></pre></td>
|
|---|
| 604 | </tr>
|
|---|
| 605 |
|
|---|
| 606 | <tr>
|
|---|
| 607 | <td>args</td>
|
|---|
| 608 | <td class="code"><pre>()</pre></td>
|
|---|
| 609 | </tr>
|
|---|
| 610 |
|
|---|
| 611 | <tr>
|
|---|
| 612 | <td>kwargs</td>
|
|---|
| 613 | <td class="code"><pre>{'mimetype': 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'}</pre></td>
|
|---|
| 614 | </tr>
|
|---|
| 615 |
|
|---|
| 616 | </tbody>
|
|---|
| 617 | </table>
|
|---|
| 618 |
|
|---|
| 619 | </li>
|
|---|
| 620 |
|
|---|
| 621 | </ul>
|
|---|
| 622 | </div>
|
|---|
| 623 |
|
|---|
| 624 | <form action="http://dpaste.com/" name="pasteform" id="pasteform" method="post">
|
|---|
| 625 |
|
|---|
| 626 | <div id="pastebinTraceback" class="pastebin" style="display: none;">
|
|---|
| 627 | <input type="hidden" name="language" value="PythonConsole">
|
|---|
| 628 | <input type="hidden" name="title" value="TypeError at /warehouse_report/buch/">
|
|---|
| 629 | <input type="hidden" name="source" value="Django Dpaste Agent">
|
|---|
| 630 | <input type="hidden" name="poster" value="Django">
|
|---|
| 631 | <textarea name="content" id="traceback_area" cols="140" rows="25">Environment:
|
|---|
| 632 |
|
|---|
| 633 |
|
|---|
| 634 | Request Method: POST
|
|---|
| 635 | Request URL: http://127.0.0.1:8000/warehouse_report/buch/
|
|---|
| 636 |
|
|---|
| 637 | Django Version: 1.7b1
|
|---|
| 638 | Python Version: 2.7.5
|
|---|
| 639 | Installed Applications:
|
|---|
| 640 | ('django.contrib.auth',
|
|---|
| 641 | 'django.contrib.contenttypes',
|
|---|
| 642 | 'django.contrib.sessions',
|
|---|
| 643 | 'django.contrib.messages',
|
|---|
| 644 | 'django.contrib.staticfiles',
|
|---|
| 645 | 'django.contrib.admin',
|
|---|
| 646 | 'base',
|
|---|
| 647 | 'dealers',
|
|---|
| 648 | 'orders',
|
|---|
| 649 | 'potolok',
|
|---|
| 650 | 'reports',
|
|---|
| 651 | 'warehouse',
|
|---|
| 652 | 'south',
|
|---|
| 653 | 'chained_selects')
|
|---|
| 654 | Installed Middleware:
|
|---|
| 655 | ('django.middleware.common.CommonMiddleware',
|
|---|
| 656 | 'django.contrib.sessions.middleware.SessionMiddleware',
|
|---|
| 657 | 'django.middleware.csrf.CsrfViewMiddleware',
|
|---|
| 658 | 'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|---|
| 659 | 'django.contrib.messages.middleware.MessageMiddleware')
|
|---|
| 660 |
|
|---|
| 661 |
|
|---|
| 662 | Traceback:
|
|---|
| 663 | File "/usr/local/lib/python2.7/dist-packages/Django-1.7b1-py2.7.egg/django/core/handlers/base.py" in get_response
|
|---|
| 664 | 113. response = wrapped_callback(request, *callback_args, **callback_kwargs)
|
|---|
| 665 | File "/usr/local/lib/python2.7/dist-packages/Django-1.7b1-py2.7.egg/django/contrib/auth/decorators.py" in _wrapped_view
|
|---|
| 666 | 22. return view_func(request, *args, **kwargs)
|
|---|
| 667 | File "/home/ski/Development/DJ17/potolok/reports/views.py" in warehouse_report
|
|---|
| 668 | 1450. response = HttpResponse(output.read(), mimetype="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet")
|
|---|
| 669 | File "/usr/local/lib/python2.7/dist-packages/Django-1.7b1-py2.7.egg/django/http/response.py" in __init__
|
|---|
| 670 | 320. super(HttpResponse, self).__init__(*args, **kwargs)
|
|---|
| 671 |
|
|---|
| 672 | Exception Type: TypeError at /warehouse_report/buch/
|
|---|
| 673 | Exception Value: __init__() got an unexpected keyword argument 'mimetype'
|
|---|
| 674 | </textarea>
|
|---|
| 675 | <br><br>
|
|---|
| 676 | <input type="submit" value="Share this traceback on a public Web site">
|
|---|
| 677 | </div>
|
|---|
| 678 | </form>
|
|---|
| 679 | </div>
|
|---|
| 680 |
|
|---|
| 681 |
|
|---|
| 682 |
|
|---|
| 683 | <div id="requestinfo">
|
|---|
| 684 | <h2>Request information</h2>
|
|---|
| 685 |
|
|---|
| 686 |
|
|---|
| 687 | <h3 id="get-info">GET</h3>
|
|---|
| 688 |
|
|---|
| 689 | <p>No GET data</p>
|
|---|
| 690 |
|
|---|
| 691 |
|
|---|
| 692 | <h3 id="post-info">POST</h3>
|
|---|
| 693 |
|
|---|
| 694 | <table class="req">
|
|---|
| 695 | <thead>
|
|---|
| 696 | <tr>
|
|---|
| 697 | <th>Variable</th>
|
|---|
| 698 | <th>Value</th>
|
|---|
| 699 | </tr>
|
|---|
| 700 | </thead>
|
|---|
| 701 | <tbody>
|
|---|
| 702 |
|
|---|
| 703 | <tr>
|
|---|
| 704 | <td>csrfmiddlewaretoken</td>
|
|---|
| 705 | <td class="code"><pre>u'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU'</pre></td>
|
|---|
| 706 | </tr>
|
|---|
| 707 |
|
|---|
| 708 | <tr>
|
|---|
| 709 | <td>start_date</td>
|
|---|
| 710 | <td class="code"><pre>u''</pre></td>
|
|---|
| 711 | </tr>
|
|---|
| 712 |
|
|---|
| 713 | <tr>
|
|---|
| 714 | <td>end_date</td>
|
|---|
| 715 | <td class="code"><pre>u''</pre></td>
|
|---|
| 716 | </tr>
|
|---|
| 717 |
|
|---|
| 718 | <tr>
|
|---|
| 719 | <td>w_set</td>
|
|---|
| 720 | <td class="code"><pre>u'1'</pre></td>
|
|---|
| 721 | </tr>
|
|---|
| 722 |
|
|---|
| 723 | </tbody>
|
|---|
| 724 | </table>
|
|---|
| 725 |
|
|---|
| 726 | <h3 id="files-info">FILES</h3>
|
|---|
| 727 |
|
|---|
| 728 | <p>No FILES data</p>
|
|---|
| 729 |
|
|---|
| 730 |
|
|---|
| 731 |
|
|---|
| 732 | <h3 id="cookie-info">COOKIES</h3>
|
|---|
| 733 |
|
|---|
| 734 | <table class="req">
|
|---|
| 735 | <thead>
|
|---|
| 736 | <tr>
|
|---|
| 737 | <th>Variable</th>
|
|---|
| 738 | <th>Value</th>
|
|---|
| 739 | </tr>
|
|---|
| 740 | </thead>
|
|---|
| 741 | <tbody>
|
|---|
| 742 |
|
|---|
| 743 | <tr>
|
|---|
| 744 | <td>__utmz</td>
|
|---|
| 745 | <td class="code"><pre>'96992031.1387472216.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)'</pre></td>
|
|---|
| 746 | </tr>
|
|---|
| 747 |
|
|---|
| 748 | <tr>
|
|---|
| 749 | <td>sessionid</td>
|
|---|
| 750 | <td class="code"><pre>'n4r23un1j2at4e8xhd92b1ix80x8gfeb'</pre></td>
|
|---|
| 751 | </tr>
|
|---|
| 752 |
|
|---|
| 753 | <tr>
|
|---|
| 754 | <td>csrftoken</td>
|
|---|
| 755 | <td class="code"><pre>'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU'</pre></td>
|
|---|
| 756 | </tr>
|
|---|
| 757 |
|
|---|
| 758 | <tr>
|
|---|
| 759 | <td>__utma</td>
|
|---|
| 760 | <td class="code"><pre>'96992031.1703005798.1387472216.1397489460.1397493931.32'</pre></td>
|
|---|
| 761 | </tr>
|
|---|
| 762 |
|
|---|
| 763 | <tr>
|
|---|
| 764 | <td>__utmb</td>
|
|---|
| 765 | <td class="code"><pre>'96992031.9.10.1397493931'</pre></td>
|
|---|
| 766 | </tr>
|
|---|
| 767 |
|
|---|
| 768 | <tr>
|
|---|
| 769 | <td>__utmc</td>
|
|---|
| 770 | <td class="code"><pre>'96992031'</pre></td>
|
|---|
| 771 | </tr>
|
|---|
| 772 |
|
|---|
| 773 | <tr>
|
|---|
| 774 | <td>django_language</td>
|
|---|
| 775 | <td class="code"><pre>'ru'</pre></td>
|
|---|
| 776 | </tr>
|
|---|
| 777 |
|
|---|
| 778 | </tbody>
|
|---|
| 779 | </table>
|
|---|
| 780 |
|
|---|
| 781 |
|
|---|
| 782 | <h3 id="meta-info">META</h3>
|
|---|
| 783 | <table class="req">
|
|---|
| 784 | <thead>
|
|---|
| 785 | <tr>
|
|---|
| 786 | <th>Variable</th>
|
|---|
| 787 | <th>Value</th>
|
|---|
| 788 | </tr>
|
|---|
| 789 | </thead>
|
|---|
| 790 | <tbody>
|
|---|
| 791 |
|
|---|
| 792 | <tr>
|
|---|
| 793 | <td>MDMSESSION</td>
|
|---|
| 794 | <td class="code"><pre>'default'</pre></td>
|
|---|
| 795 | </tr>
|
|---|
| 796 |
|
|---|
| 797 | <tr>
|
|---|
| 798 | <td>RUN_MAIN</td>
|
|---|
| 799 | <td class="code"><pre>'true'</pre></td>
|
|---|
| 800 | </tr>
|
|---|
| 801 |
|
|---|
| 802 | <tr>
|
|---|
| 803 | <td>HTTP_REFERER</td>
|
|---|
| 804 | <td class="code"><pre>'http://127.0.0.1:8000/warehouse_reports/'</pre></td>
|
|---|
| 805 | </tr>
|
|---|
| 806 |
|
|---|
| 807 | <tr>
|
|---|
| 808 | <td>GJS_DEBUG_OUTPUT</td>
|
|---|
| 809 | <td class="code"><pre>'stderr'</pre></td>
|
|---|
| 810 | </tr>
|
|---|
| 811 |
|
|---|
| 812 | <tr>
|
|---|
| 813 | <td>SERVER_SOFTWARE</td>
|
|---|
| 814 | <td class="code"><pre>'WSGIServer/0.1 Python/2.7.5+'</pre></td>
|
|---|
| 815 | </tr>
|
|---|
| 816 |
|
|---|
| 817 | <tr>
|
|---|
| 818 | <td>SCRIPT_NAME</td>
|
|---|
| 819 | <td class="code"><pre>u''</pre></td>
|
|---|
| 820 | </tr>
|
|---|
| 821 |
|
|---|
| 822 | <tr>
|
|---|
| 823 | <td>MDM_LANG</td>
|
|---|
| 824 | <td class="code"><pre>'ru_RU.UTF-8'</pre></td>
|
|---|
| 825 | </tr>
|
|---|
| 826 |
|
|---|
| 827 | <tr>
|
|---|
| 828 | <td>WINDOWID</td>
|
|---|
| 829 | <td class="code"><pre>'46137351'</pre></td>
|
|---|
| 830 | </tr>
|
|---|
| 831 |
|
|---|
| 832 | <tr>
|
|---|
| 833 | <td>HTTP_ORIGIN</td>
|
|---|
| 834 | <td class="code"><pre>'http://127.0.0.1:8000'</pre></td>
|
|---|
| 835 | </tr>
|
|---|
| 836 |
|
|---|
| 837 | <tr>
|
|---|
| 838 | <td>SERVER_PROTOCOL</td>
|
|---|
| 839 | <td class="code"><pre>'HTTP/1.1'</pre></td>
|
|---|
| 840 | </tr>
|
|---|
| 841 |
|
|---|
| 842 | <tr>
|
|---|
| 843 | <td>LC_PAPER</td>
|
|---|
| 844 | <td class="code"><pre>'be_BY.UTF-8'</pre></td>
|
|---|
| 845 | </tr>
|
|---|
| 846 |
|
|---|
| 847 | <tr>
|
|---|
| 848 | <td>HOME</td>
|
|---|
| 849 | <td class="code"><pre>'/home/ski'</pre></td>
|
|---|
| 850 | </tr>
|
|---|
| 851 |
|
|---|
| 852 | <tr>
|
|---|
| 853 | <td>DISPLAY</td>
|
|---|
| 854 | <td class="code"><pre>':0'</pre></td>
|
|---|
| 855 | </tr>
|
|---|
| 856 |
|
|---|
| 857 | <tr>
|
|---|
| 858 | <td>LANG</td>
|
|---|
| 859 | <td class="code"><pre>'ru_RU.UTF-8'</pre></td>
|
|---|
| 860 | </tr>
|
|---|
| 861 |
|
|---|
| 862 | <tr>
|
|---|
| 863 | <td>VIRTUAL_ENV</td>
|
|---|
| 864 | <td class="code"><pre>'/home/ski/Development/Dj17'</pre></td>
|
|---|
| 865 | </tr>
|
|---|
| 866 |
|
|---|
| 867 | <tr>
|
|---|
| 868 | <td>SHELL</td>
|
|---|
| 869 | <td class="code"><pre>'/bin/bash'</pre></td>
|
|---|
| 870 | </tr>
|
|---|
| 871 |
|
|---|
| 872 | <tr>
|
|---|
| 873 | <td>PATH_INFO</td>
|
|---|
| 874 | <td class="code"><pre>u'/warehouse_report/buch/'</pre></td>
|
|---|
| 875 | </tr>
|
|---|
| 876 |
|
|---|
| 877 | <tr>
|
|---|
| 878 | <td>LC_MONETARY</td>
|
|---|
| 879 | <td class="code"><pre>'be_BY.UTF-8'</pre></td>
|
|---|
| 880 | </tr>
|
|---|
| 881 |
|
|---|
| 882 | <tr>
|
|---|
| 883 | <td>MANDATORY_PATH</td>
|
|---|
| 884 | <td class="code"><pre>'/usr/share/gconf/default.mandatory.path'</pre></td>
|
|---|
| 885 | </tr>
|
|---|
| 886 |
|
|---|
| 887 | <tr>
|
|---|
| 888 | <td>CLUTTER_DISABLE_XINPUT</td>
|
|---|
| 889 | <td class="code"><pre>'1'</pre></td>
|
|---|
| 890 | </tr>
|
|---|
| 891 |
|
|---|
| 892 | <tr>
|
|---|
| 893 | <td>TEXTDOMAIN</td>
|
|---|
| 894 | <td class="code"><pre>'im-config'</pre></td>
|
|---|
| 895 | </tr>
|
|---|
| 896 |
|
|---|
| 897 | <tr>
|
|---|
| 898 | <td>SERVER_PORT</td>
|
|---|
| 899 | <td class="code"><pre>'8000'</pre></td>
|
|---|
| 900 | </tr>
|
|---|
| 901 |
|
|---|
| 902 | <tr>
|
|---|
| 903 | <td>USERNAME</td>
|
|---|
| 904 | <td class="code"><pre>'ski'</pre></td>
|
|---|
| 905 | </tr>
|
|---|
| 906 |
|
|---|
| 907 | <tr>
|
|---|
| 908 | <td>GDM_XSERVER_LOCATION</td>
|
|---|
| 909 | <td class="code"><pre>'local'</pre></td>
|
|---|
| 910 | </tr>
|
|---|
| 911 |
|
|---|
| 912 | <tr>
|
|---|
| 913 | <td>XDG_RUNTIME_DIR</td>
|
|---|
| 914 | <td class="code"><pre>'/run/user/1000'</pre></td>
|
|---|
| 915 | </tr>
|
|---|
| 916 |
|
|---|
| 917 | <tr>
|
|---|
| 918 | <td>LC_ADDRESS</td>
|
|---|
| 919 | <td class="code"><pre>'be_BY.UTF-8'</pre></td>
|
|---|
| 920 | </tr>
|
|---|
| 921 |
|
|---|
| 922 | <tr>
|
|---|
| 923 | <td>CINNAMON_VERSION</td>
|
|---|
| 924 | <td class="code"><pre>'2.0.14'</pre></td>
|
|---|
| 925 | </tr>
|
|---|
| 926 |
|
|---|
| 927 | <tr>
|
|---|
| 928 | <td>VTE_VERSION</td>
|
|---|
| 929 | <td class="code"><pre>'3406'</pre></td>
|
|---|
| 930 | </tr>
|
|---|
| 931 |
|
|---|
| 932 | <tr>
|
|---|
| 933 | <td>HTTP_HOST</td>
|
|---|
| 934 | <td class="code"><pre>'127.0.0.1:8000'</pre></td>
|
|---|
| 935 | </tr>
|
|---|
| 936 |
|
|---|
| 937 | <tr>
|
|---|
| 938 | <td>HTTP_CACHE_CONTROL</td>
|
|---|
| 939 | <td class="code"><pre>'max-age=0'</pre></td>
|
|---|
| 940 | </tr>
|
|---|
| 941 |
|
|---|
| 942 | <tr>
|
|---|
| 943 | <td>XDG_SESSION_ID</td>
|
|---|
| 944 | <td class="code"><pre>'c1'</pre></td>
|
|---|
| 945 | </tr>
|
|---|
| 946 |
|
|---|
| 947 | <tr>
|
|---|
| 948 | <td>DBUS_SESSION_BUS_ADDRESS</td>
|
|---|
| 949 | <td class="code"><pre>'unix:abstract=/tmp/dbus-tRAElqBaxN,guid=fe2e3165f8bd87120818d377534bc062'</pre></td>
|
|---|
| 950 | </tr>
|
|---|
| 951 |
|
|---|
| 952 | <tr>
|
|---|
| 953 | <td>GNOME_KEYRING_PID</td>
|
|---|
| 954 | <td class="code"><pre>'1640'</pre></td>
|
|---|
| 955 | </tr>
|
|---|
| 956 |
|
|---|
| 957 | <tr>
|
|---|
| 958 | <td>HTTP_ACCEPT</td>
|
|---|
| 959 | <td class="code"><pre>'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8'</pre></td>
|
|---|
| 960 | </tr>
|
|---|
| 961 |
|
|---|
| 962 | <tr>
|
|---|
| 963 | <td>DESKTOP_SESSION</td>
|
|---|
| 964 | <td class="code"><pre>'default'</pre></td>
|
|---|
| 965 | </tr>
|
|---|
| 966 |
|
|---|
| 967 | <tr>
|
|---|
| 968 | <td>wsgi.version</td>
|
|---|
| 969 | <td class="code"><pre>(1, 0)</pre></td>
|
|---|
| 970 | </tr>
|
|---|
| 971 |
|
|---|
| 972 | <tr>
|
|---|
| 973 | <td>DEFAULTS_PATH</td>
|
|---|
| 974 | <td class="code"><pre>'/usr/share/gconf/default.default.path'</pre></td>
|
|---|
| 975 | </tr>
|
|---|
| 976 |
|
|---|
| 977 | <tr>
|
|---|
| 978 | <td>wsgi.run_once</td>
|
|---|
| 979 | <td class="code"><pre>False</pre></td>
|
|---|
| 980 | </tr>
|
|---|
| 981 |
|
|---|
| 982 | <tr>
|
|---|
| 983 | <td>wsgi.errors</td>
|
|---|
| 984 | <td class="code"><pre><open file '<stderr>', mode 'w' at 0x7f3c49d1f1e0></pre></td>
|
|---|
| 985 | </tr>
|
|---|
| 986 |
|
|---|
| 987 | <tr>
|
|---|
| 988 | <td>wsgi.multiprocess</td>
|
|---|
| 989 | <td class="code"><pre>False</pre></td>
|
|---|
| 990 | </tr>
|
|---|
| 991 |
|
|---|
| 992 | <tr>
|
|---|
| 993 | <td>HTTP_ACCEPT_LANGUAGE</td>
|
|---|
| 994 | <td class="code"><pre>'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4,be;q=0.2'</pre></td>
|
|---|
| 995 | </tr>
|
|---|
| 996 |
|
|---|
| 997 | <tr>
|
|---|
| 998 | <td>MDM_XSERVER_LOCATION</td>
|
|---|
| 999 | <td class="code"><pre>'local'</pre></td>
|
|---|
| 1000 | </tr>
|
|---|
| 1001 |
|
|---|
| 1002 | <tr>
|
|---|
| 1003 | <td>REQUEST_METHOD</td>
|
|---|
| 1004 | <td class="code"><pre>'POST'</pre></td>
|
|---|
| 1005 | </tr>
|
|---|
| 1006 |
|
|---|
| 1007 | <tr>
|
|---|
| 1008 | <td>LC_NAME</td>
|
|---|
| 1009 | <td class="code"><pre>'be_BY.UTF-8'</pre></td>
|
|---|
| 1010 | </tr>
|
|---|
| 1011 |
|
|---|
| 1012 | <tr>
|
|---|
| 1013 | <td>LS_COLORS</td>
|
|---|
| 1014 | <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>
|
|---|
| 1015 | </tr>
|
|---|
| 1016 |
|
|---|
| 1017 | <tr>
|
|---|
| 1018 | <td>XDG_SEAT</td>
|
|---|
| 1019 | <td class="code"><pre>'seat0'</pre></td>
|
|---|
| 1020 | </tr>
|
|---|
| 1021 |
|
|---|
| 1022 | <tr>
|
|---|
| 1023 | <td>LC_NUMERIC</td>
|
|---|
| 1024 | <td class="code"><pre>'be_BY.UTF-8'</pre></td>
|
|---|
| 1025 | </tr>
|
|---|
| 1026 |
|
|---|
| 1027 | <tr>
|
|---|
| 1028 | <td>HTTP_COOKIE</td>
|
|---|
| 1029 | <td class="code"><pre>'django_language=ru; sessionid=n4r23un1j2at4e8xhd92b1ix80x8gfeb; csrftoken=gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU; __utma=96992031.1703005798.1387472216.1397489460.1397493931.32; __utmb=96992031.9.10.1397493931; __utmc=96992031; __utmz=96992031.1387472216.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)'</pre></td>
|
|---|
| 1030 | </tr>
|
|---|
| 1031 |
|
|---|
| 1032 | <tr>
|
|---|
| 1033 | <td>GNOME_DESKTOP_SESSION_ID</td>
|
|---|
| 1034 | <td class="code"><pre>'this-is-deprecated'</pre></td>
|
|---|
| 1035 | </tr>
|
|---|
| 1036 |
|
|---|
| 1037 | <tr>
|
|---|
| 1038 | <td>XDG_CURRENT_DESKTOP</td>
|
|---|
| 1039 | <td class="code"><pre>'GNOME'</pre></td>
|
|---|
| 1040 | </tr>
|
|---|
| 1041 |
|
|---|
| 1042 | <tr>
|
|---|
| 1043 | <td>QUERY_STRING</td>
|
|---|
| 1044 | <td class="code"><pre>''</pre></td>
|
|---|
| 1045 | </tr>
|
|---|
| 1046 |
|
|---|
| 1047 | <tr>
|
|---|
| 1048 | <td>LOGNAME</td>
|
|---|
| 1049 | <td class="code"><pre>'ski'</pre></td>
|
|---|
| 1050 | </tr>
|
|---|
| 1051 |
|
|---|
| 1052 | <tr>
|
|---|
| 1053 | <td>USER</td>
|
|---|
| 1054 | <td class="code"><pre>'ski'</pre></td>
|
|---|
| 1055 | </tr>
|
|---|
| 1056 |
|
|---|
| 1057 | <tr>
|
|---|
| 1058 | <td>GNOME_KEYRING_CONTROL</td>
|
|---|
| 1059 | <td class="code"><pre>'/run/user/1000/keyring-egNCfe'</pre></td>
|
|---|
| 1060 | </tr>
|
|---|
| 1061 |
|
|---|
| 1062 | <tr>
|
|---|
| 1063 | <td>XDG_VTNR</td>
|
|---|
| 1064 | <td class="code"><pre>'7'</pre></td>
|
|---|
| 1065 | </tr>
|
|---|
| 1066 |
|
|---|
| 1067 | <tr>
|
|---|
| 1068 | <td>PATH</td>
|
|---|
| 1069 | <td class="code"><pre>'/home/ski/Development/Dj17/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games'</pre></td>
|
|---|
| 1070 | </tr>
|
|---|
| 1071 |
|
|---|
| 1072 | <tr>
|
|---|
| 1073 | <td>PS1</td>
|
|---|
| 1074 | <td class="code"><pre>'(Dj17)${debian_chroot:+($debian_chroot)}\\[\\033[01;32m\\]\\u@\\h\\[\\033[01;34m\\] \\w \\$\\[\\033[00m\\] '</pre></td>
|
|---|
| 1075 | </tr>
|
|---|
| 1076 |
|
|---|
| 1077 | <tr>
|
|---|
| 1078 | <td>SSH_AGENT_PID</td>
|
|---|
| 1079 | <td class="code"><pre>'1794'</pre></td>
|
|---|
| 1080 | </tr>
|
|---|
| 1081 |
|
|---|
| 1082 | <tr>
|
|---|
| 1083 | <td>TERM</td>
|
|---|
| 1084 | <td class="code"><pre>'xterm'</pre></td>
|
|---|
| 1085 | </tr>
|
|---|
| 1086 |
|
|---|
| 1087 | <tr>
|
|---|
| 1088 | <td>HTTP_USER_AGENT</td>
|
|---|
| 1089 | <td class="code"><pre>'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/33.0.1750.152 Chrome/33.0.1750.152 Safari/537.36'</pre></td>
|
|---|
| 1090 | </tr>
|
|---|
| 1091 |
|
|---|
| 1092 | <tr>
|
|---|
| 1093 | <td>TZ</td>
|
|---|
| 1094 | <td class="code"><pre>'Europe/Minsk'</pre></td>
|
|---|
| 1095 | </tr>
|
|---|
| 1096 |
|
|---|
| 1097 | <tr>
|
|---|
| 1098 | <td>XDG_SESSION_COOKIE</td>
|
|---|
| 1099 | <td class="code"><pre>'e277462da3c3b28fea259b0952b2e2ac-1397473378.110678-811336745'</pre></td>
|
|---|
| 1100 | </tr>
|
|---|
| 1101 |
|
|---|
| 1102 | <tr>
|
|---|
| 1103 | <td>SERVER_NAME</td>
|
|---|
| 1104 | <td class="code"><pre>'localhost'</pre></td>
|
|---|
| 1105 | </tr>
|
|---|
| 1106 |
|
|---|
| 1107 | <tr>
|
|---|
| 1108 | <td>SESSION_MANAGER</td>
|
|---|
| 1109 | <td class="code"><pre>'local/Desknop:@/tmp/.ICE-unix/1716,unix/Desknop:/tmp/.ICE-unix/1716'</pre></td>
|
|---|
| 1110 | </tr>
|
|---|
| 1111 |
|
|---|
| 1112 | <tr>
|
|---|
| 1113 | <td>LC_MEASUREMENT</td>
|
|---|
| 1114 | <td class="code"><pre>'be_BY.UTF-8'</pre></td>
|
|---|
| 1115 | </tr>
|
|---|
| 1116 |
|
|---|
| 1117 | <tr>
|
|---|
| 1118 | <td>wsgi.url_scheme</td>
|
|---|
| 1119 | <td class="code"><pre>'http'</pre></td>
|
|---|
| 1120 | </tr>
|
|---|
| 1121 |
|
|---|
| 1122 | <tr>
|
|---|
| 1123 | <td>MC_TMPDIR</td>
|
|---|
| 1124 | <td class="code"><pre>'/tmp/mc-ski'</pre></td>
|
|---|
| 1125 | </tr>
|
|---|
| 1126 |
|
|---|
| 1127 | <tr>
|
|---|
| 1128 | <td>WINDOWPATH</td>
|
|---|
| 1129 | <td class="code"><pre>'7'</pre></td>
|
|---|
| 1130 | </tr>
|
|---|
| 1131 |
|
|---|
| 1132 | <tr>
|
|---|
| 1133 | <td>GPG_AGENT_INFO</td>
|
|---|
| 1134 | <td class="code"><pre>'/run/user/1000/keyring-egNCfe/gpg:0:1'</pre></td>
|
|---|
| 1135 | </tr>
|
|---|
| 1136 |
|
|---|
| 1137 | <tr>
|
|---|
| 1138 | <td>CONTENT_LENGTH</td>
|
|---|
| 1139 | <td class="code"><pre>'82'</pre></td>
|
|---|
| 1140 | </tr>
|
|---|
| 1141 |
|
|---|
| 1142 | <tr>
|
|---|
| 1143 | <td>SHLVL</td>
|
|---|
| 1144 | <td class="code"><pre>'2'</pre></td>
|
|---|
| 1145 | </tr>
|
|---|
| 1146 |
|
|---|
| 1147 | <tr>
|
|---|
| 1148 | <td>CONTENT_TYPE</td>
|
|---|
| 1149 | <td class="code"><pre>'application/x-www-form-urlencoded'</pre></td>
|
|---|
| 1150 | </tr>
|
|---|
| 1151 |
|
|---|
| 1152 | <tr>
|
|---|
| 1153 | <td>MC_SID</td>
|
|---|
| 1154 | <td class="code"><pre>'10532'</pre></td>
|
|---|
| 1155 | </tr>
|
|---|
| 1156 |
|
|---|
| 1157 | <tr>
|
|---|
| 1158 | <td>SSH_AUTH_SOCK</td>
|
|---|
| 1159 | <td class="code"><pre>'/run/user/1000/keyring-egNCfe/ssh'</pre></td>
|
|---|
| 1160 | </tr>
|
|---|
| 1161 |
|
|---|
| 1162 | <tr>
|
|---|
| 1163 | <td>GDMSESSION</td>
|
|---|
| 1164 | <td class="code"><pre>'default'</pre></td>
|
|---|
| 1165 | </tr>
|
|---|
| 1166 |
|
|---|
| 1167 | <tr>
|
|---|
| 1168 | <td>wsgi.input</td>
|
|---|
| 1169 | <td class="code"><pre><socket._fileobject object at 0x7f3c384c1550></pre></td>
|
|---|
| 1170 | </tr>
|
|---|
| 1171 |
|
|---|
| 1172 | <tr>
|
|---|
| 1173 | <td>TEXTDOMAINDIR</td>
|
|---|
| 1174 | <td class="code"><pre>'/usr/share/locale/'</pre></td>
|
|---|
| 1175 | </tr>
|
|---|
| 1176 |
|
|---|
| 1177 | <tr>
|
|---|
| 1178 | <td>wsgi.multithread</td>
|
|---|
| 1179 | <td class="code"><pre>True</pre></td>
|
|---|
| 1180 | </tr>
|
|---|
| 1181 |
|
|---|
| 1182 | <tr>
|
|---|
| 1183 | <td>HTTP_CONNECTION</td>
|
|---|
| 1184 | <td class="code"><pre>'keep-alive'</pre></td>
|
|---|
| 1185 | </tr>
|
|---|
| 1186 |
|
|---|
| 1187 | <tr>
|
|---|
| 1188 | <td>_</td>
|
|---|
| 1189 | <td class="code"><pre>'/usr/bin/python'</pre></td>
|
|---|
| 1190 | </tr>
|
|---|
| 1191 |
|
|---|
| 1192 | <tr>
|
|---|
| 1193 | <td>XAUTHORITY</td>
|
|---|
| 1194 | <td class="code"><pre>'/home/ski/.Xauthority'</pre></td>
|
|---|
| 1195 | </tr>
|
|---|
| 1196 |
|
|---|
| 1197 | <tr>
|
|---|
| 1198 | <td>LC_IDENTIFICATION</td>
|
|---|
| 1199 | <td class="code"><pre>'be_BY.UTF-8'</pre></td>
|
|---|
| 1200 | </tr>
|
|---|
| 1201 |
|
|---|
| 1202 | <tr>
|
|---|
| 1203 | <td>XDG_CONFIG_DIRS</td>
|
|---|
| 1204 | <td class="code"><pre>'/etc/xdg/xdg-default:/etc/xdg'</pre></td>
|
|---|
| 1205 | </tr>
|
|---|
| 1206 |
|
|---|
| 1207 | <tr>
|
|---|
| 1208 | <td>GATEWAY_INTERFACE</td>
|
|---|
| 1209 | <td class="code"><pre>'CGI/1.1'</pre></td>
|
|---|
| 1210 | </tr>
|
|---|
| 1211 |
|
|---|
| 1212 | <tr>
|
|---|
| 1213 | <td>CSRF_COOKIE</td>
|
|---|
| 1214 | <td class="code"><pre>u'gI2nZanPVHWdA9FsGcU5pD0b89mfgmyU'</pre></td>
|
|---|
| 1215 | </tr>
|
|---|
| 1216 |
|
|---|
| 1217 | <tr>
|
|---|
| 1218 | <td>OLDPWD</td>
|
|---|
| 1219 | <td class="code"><pre>'/home/ski/Development/DJ17'</pre></td>
|
|---|
| 1220 | </tr>
|
|---|
| 1221 |
|
|---|
| 1222 | <tr>
|
|---|
| 1223 | <td>REMOTE_ADDR</td>
|
|---|
| 1224 | <td class="code"><pre>'127.0.0.1'</pre></td>
|
|---|
| 1225 | </tr>
|
|---|
| 1226 |
|
|---|
| 1227 | <tr>
|
|---|
| 1228 | <td>LC_TELEPHONE</td>
|
|---|
| 1229 | <td class="code"><pre>'be_BY.UTF-8'</pre></td>
|
|---|
| 1230 | </tr>
|
|---|
| 1231 |
|
|---|
| 1232 | <tr>
|
|---|
| 1233 | <td>HTTP_ACCEPT_ENCODING</td>
|
|---|
| 1234 | <td class="code"><pre>'gzip,deflate,sdch'</pre></td>
|
|---|
| 1235 | </tr>
|
|---|
| 1236 |
|
|---|
| 1237 | <tr>
|
|---|
| 1238 | <td>HISTCONTROL</td>
|
|---|
| 1239 | <td class="code"><pre>'ignorespace'</pre></td>
|
|---|
| 1240 | </tr>
|
|---|
| 1241 |
|
|---|
| 1242 | <tr>
|
|---|
| 1243 | <td>XDG_DATA_DIRS</td>
|
|---|
| 1244 | <td class="code"><pre>'/usr/share/default:/usr/share/gnome:/usr/local/share/:/usr/share/:/usr/share/mdm/'</pre></td>
|
|---|
| 1245 | </tr>
|
|---|
| 1246 |
|
|---|
| 1247 | <tr>
|
|---|
| 1248 | <td>PWD</td>
|
|---|
| 1249 | <td class="code"><pre>'/home/ski/Development/DJ17/potolok'</pre></td>
|
|---|
| 1250 | </tr>
|
|---|
| 1251 |
|
|---|
| 1252 | <tr>
|
|---|
| 1253 | <td>HTTP_DNT</td>
|
|---|
| 1254 | <td class="code"><pre>'1'</pre></td>
|
|---|
| 1255 | </tr>
|
|---|
| 1256 |
|
|---|
| 1257 | <tr>
|
|---|
| 1258 | <td>DJANGO_SETTINGS_MODULE</td>
|
|---|
| 1259 | <td class="code"><pre>'potolok.settings'</pre></td>
|
|---|
| 1260 | </tr>
|
|---|
| 1261 |
|
|---|
| 1262 | <tr>
|
|---|
| 1263 | <td>COLORTERM</td>
|
|---|
| 1264 | <td class="code"><pre>'gnome-terminal'</pre></td>
|
|---|
| 1265 | </tr>
|
|---|
| 1266 |
|
|---|
| 1267 | <tr>
|
|---|
| 1268 | <td>LC_TIME</td>
|
|---|
| 1269 | <td class="code"><pre>'be_BY.UTF-8'</pre></td>
|
|---|
| 1270 | </tr>
|
|---|
| 1271 |
|
|---|
| 1272 | <tr>
|
|---|
| 1273 | <td>wsgi.file_wrapper</td>
|
|---|
| 1274 | <td class="code"><pre>''</pre></td>
|
|---|
| 1275 | </tr>
|
|---|
| 1276 |
|
|---|
| 1277 | <tr>
|
|---|
| 1278 | <td>REMOTE_HOST</td>
|
|---|
| 1279 | <td class="code"><pre>''</pre></td>
|
|---|
| 1280 | </tr>
|
|---|
| 1281 |
|
|---|
| 1282 | <tr>
|
|---|
| 1283 | <td>GJS_DEBUG_TOPICS</td>
|
|---|
| 1284 | <td class="code"><pre>'JS ERROR;JS LOG'</pre></td>
|
|---|
| 1285 | </tr>
|
|---|
| 1286 |
|
|---|
| 1287 | </tbody>
|
|---|
| 1288 | </table>
|
|---|
| 1289 |
|
|---|
| 1290 |
|
|---|
| 1291 | <h3 id="settings-info">Settings</h3>
|
|---|
| 1292 | <h4>Using settings module <code>potolok.settings</code></h4>
|
|---|
| 1293 | <table class="req">
|
|---|
| 1294 | <thead>
|
|---|
| 1295 | <tr>
|
|---|
| 1296 | <th>Setting</th>
|
|---|
| 1297 | <th>Value</th>
|
|---|
| 1298 | </tr>
|
|---|
| 1299 | </thead>
|
|---|
| 1300 | <tbody>
|
|---|
| 1301 |
|
|---|
| 1302 | <tr>
|
|---|
| 1303 | <td>USE_L10N</td>
|
|---|
| 1304 | <td class="code"><pre>True</pre></td>
|
|---|
| 1305 | </tr>
|
|---|
| 1306 |
|
|---|
| 1307 | <tr>
|
|---|
| 1308 | <td>USE_THOUSAND_SEPARATOR</td>
|
|---|
| 1309 | <td class="code"><pre>False</pre></td>
|
|---|
| 1310 | </tr>
|
|---|
| 1311 |
|
|---|
| 1312 | <tr>
|
|---|
| 1313 | <td>CSRF_COOKIE_SECURE</td>
|
|---|
| 1314 | <td class="code"><pre>False</pre></td>
|
|---|
| 1315 | </tr>
|
|---|
| 1316 |
|
|---|
| 1317 | <tr>
|
|---|
| 1318 | <td>LANGUAGE_CODE</td>
|
|---|
| 1319 | <td class="code"><pre>'ru-ru'</pre></td>
|
|---|
| 1320 | </tr>
|
|---|
| 1321 |
|
|---|
| 1322 | <tr>
|
|---|
| 1323 | <td>ROOT_URLCONF</td>
|
|---|
| 1324 | <td class="code"><pre>'potolok.urls'</pre></td>
|
|---|
| 1325 | </tr>
|
|---|
| 1326 |
|
|---|
| 1327 | <tr>
|
|---|
| 1328 | <td>MANAGERS</td>
|
|---|
| 1329 | <td class="code"><pre>()</pre></td>
|
|---|
| 1330 | </tr>
|
|---|
| 1331 |
|
|---|
| 1332 | <tr>
|
|---|
| 1333 | <td>DEFAULT_CHARSET</td>
|
|---|
| 1334 | <td class="code"><pre>'utf-8'</pre></td>
|
|---|
| 1335 | </tr>
|
|---|
| 1336 |
|
|---|
| 1337 | <tr>
|
|---|
| 1338 | <td>SESSION_SERIALIZER</td>
|
|---|
| 1339 | <td class="code"><pre>'django.contrib.sessions.serializers.JSONSerializer'</pre></td>
|
|---|
| 1340 | </tr>
|
|---|
| 1341 |
|
|---|
| 1342 | <tr>
|
|---|
| 1343 | <td>STATIC_ROOT</td>
|
|---|
| 1344 | <td class="code"><pre>'/home/ski/Development/DJ15/dj15/potolok/files/'</pre></td>
|
|---|
| 1345 | </tr>
|
|---|
| 1346 |
|
|---|
| 1347 | <tr>
|
|---|
| 1348 | <td>ALLOWED_HOSTS</td>
|
|---|
| 1349 | <td class="code"><pre>['new.sdv.by', 'sdv.by', 'www.sdv.by']</pre></td>
|
|---|
| 1350 | </tr>
|
|---|
| 1351 |
|
|---|
| 1352 | <tr>
|
|---|
| 1353 | <td>MESSAGE_STORAGE</td>
|
|---|
| 1354 | <td class="code"><pre>'django.contrib.messages.storage.fallback.FallbackStorage'</pre></td>
|
|---|
| 1355 | </tr>
|
|---|
| 1356 |
|
|---|
| 1357 | <tr>
|
|---|
| 1358 | <td>EMAIL_SUBJECT_PREFIX</td>
|
|---|
| 1359 | <td class="code"><pre>'[Django] '</pre></td>
|
|---|
| 1360 | </tr>
|
|---|
| 1361 |
|
|---|
| 1362 | <tr>
|
|---|
| 1363 | <td>SEND_BROKEN_LINK_EMAILS</td>
|
|---|
| 1364 | <td class="code"><pre>False</pre></td>
|
|---|
| 1365 | </tr>
|
|---|
| 1366 |
|
|---|
| 1367 | <tr>
|
|---|
| 1368 | <td>STATICFILES_FINDERS</td>
|
|---|
| 1369 | <td class="code"><pre>('django.contrib.staticfiles.finders.FileSystemFinder',
|
|---|
| 1370 | 'django.contrib.staticfiles.finders.AppDirectoriesFinder')</pre></td>
|
|---|
| 1371 | </tr>
|
|---|
| 1372 |
|
|---|
| 1373 | <tr>
|
|---|
| 1374 | <td>SESSION_CACHE_ALIAS</td>
|
|---|
| 1375 | <td class="code"><pre>'default'</pre></td>
|
|---|
| 1376 | </tr>
|
|---|
| 1377 |
|
|---|
| 1378 | <tr>
|
|---|
| 1379 | <td>SESSION_COOKIE_DOMAIN</td>
|
|---|
| 1380 | <td class="code"><pre>None</pre></td>
|
|---|
| 1381 | </tr>
|
|---|
| 1382 |
|
|---|
| 1383 | <tr>
|
|---|
| 1384 | <td>SESSION_COOKIE_NAME</td>
|
|---|
| 1385 | <td class="code"><pre>'sessionid'</pre></td>
|
|---|
| 1386 | </tr>
|
|---|
| 1387 |
|
|---|
| 1388 | <tr>
|
|---|
| 1389 | <td>ADMIN_FOR</td>
|
|---|
| 1390 | <td class="code"><pre>()</pre></td>
|
|---|
| 1391 | </tr>
|
|---|
| 1392 |
|
|---|
| 1393 | <tr>
|
|---|
| 1394 | <td>TIME_INPUT_FORMATS</td>
|
|---|
| 1395 | <td class="code"><pre>('%H:%M:%S', '%H:%M:%S.%f', '%H:%M')</pre></td>
|
|---|
| 1396 | </tr>
|
|---|
| 1397 |
|
|---|
| 1398 | <tr>
|
|---|
| 1399 | <td>DATABASES</td>
|
|---|
| 1400 | <td class="code"><pre>{'default': {'ATOMIC_REQUESTS': False,
|
|---|
| 1401 | 'AUTOCOMMIT': True,
|
|---|
| 1402 | 'CONN_MAX_AGE': 0,
|
|---|
| 1403 | 'ENGINE': 'django.db.backends.mysql',
|
|---|
| 1404 | 'HOST': '',
|
|---|
| 1405 | 'NAME': 'potolok',
|
|---|
| 1406 | 'OPTIONS': {},
|
|---|
| 1407 | 'PASSWORD': u'********************',
|
|---|
| 1408 | 'PORT': '',
|
|---|
| 1409 | 'TEST': {'CHARSET': None,
|
|---|
| 1410 | 'COLLATION': None,
|
|---|
| 1411 | 'MIRROR': None,
|
|---|
| 1412 | 'NAME': None},
|
|---|
| 1413 | 'TIME_ZONE': 'UTC',
|
|---|
| 1414 | 'USER': 'potolok'}}</pre></td>
|
|---|
| 1415 | </tr>
|
|---|
| 1416 |
|
|---|
| 1417 | <tr>
|
|---|
| 1418 | <td>FILE_UPLOAD_DIRECTORY_PERMISSIONS</td>
|
|---|
| 1419 | <td class="code"><pre>None</pre></td>
|
|---|
| 1420 | </tr>
|
|---|
| 1421 |
|
|---|
| 1422 | <tr>
|
|---|
| 1423 | <td>FILE_UPLOAD_PERMISSIONS</td>
|
|---|
| 1424 | <td class="code"><pre>None</pre></td>
|
|---|
| 1425 | </tr>
|
|---|
| 1426 |
|
|---|
| 1427 | <tr>
|
|---|
| 1428 | <td>FILE_UPLOAD_HANDLERS</td>
|
|---|
| 1429 | <td class="code"><pre>('django.core.files.uploadhandler.MemoryFileUploadHandler',
|
|---|
| 1430 | 'django.core.files.uploadhandler.TemporaryFileUploadHandler')</pre></td>
|
|---|
| 1431 | </tr>
|
|---|
| 1432 |
|
|---|
| 1433 | <tr>
|
|---|
| 1434 | <td>DEFAULT_CONTENT_TYPE</td>
|
|---|
| 1435 | <td class="code"><pre>'text/html'</pre></td>
|
|---|
| 1436 | </tr>
|
|---|
| 1437 |
|
|---|
| 1438 | <tr>
|
|---|
| 1439 | <td>APPEND_SLASH</td>
|
|---|
| 1440 | <td class="code"><pre>True</pre></td>
|
|---|
| 1441 | </tr>
|
|---|
| 1442 |
|
|---|
| 1443 | <tr>
|
|---|
| 1444 | <td>LOCALE_PATHS</td>
|
|---|
| 1445 | <td class="code"><pre>()</pre></td>
|
|---|
| 1446 | </tr>
|
|---|
| 1447 |
|
|---|
| 1448 | <tr>
|
|---|
| 1449 | <td>DATABASE_ROUTERS</td>
|
|---|
| 1450 | <td class="code"><pre>[]</pre></td>
|
|---|
| 1451 | </tr>
|
|---|
| 1452 |
|
|---|
| 1453 | <tr>
|
|---|
| 1454 | <td>DEFAULT_TABLESPACE</td>
|
|---|
| 1455 | <td class="code"><pre>''</pre></td>
|
|---|
| 1456 | </tr>
|
|---|
| 1457 |
|
|---|
| 1458 | <tr>
|
|---|
| 1459 | <td>YEAR_MONTH_FORMAT</td>
|
|---|
| 1460 | <td class="code"><pre>'F Y'</pre></td>
|
|---|
| 1461 | </tr>
|
|---|
| 1462 |
|
|---|
| 1463 | <tr>
|
|---|
| 1464 | <td>STATICFILES_STORAGE</td>
|
|---|
| 1465 | <td class="code"><pre>'django.contrib.staticfiles.storage.StaticFilesStorage'</pre></td>
|
|---|
| 1466 | </tr>
|
|---|
| 1467 |
|
|---|
| 1468 | <tr>
|
|---|
| 1469 | <td>CACHES</td>
|
|---|
| 1470 | <td class="code"><pre>{'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}}</pre></td>
|
|---|
| 1471 | </tr>
|
|---|
| 1472 |
|
|---|
| 1473 | <tr>
|
|---|
| 1474 | <td>SERVER_EMAIL</td>
|
|---|
| 1475 | <td class="code"><pre>'root@localhost'</pre></td>
|
|---|
| 1476 | </tr>
|
|---|
| 1477 |
|
|---|
| 1478 | <tr>
|
|---|
| 1479 | <td>SESSION_COOKIE_PATH</td>
|
|---|
| 1480 | <td class="code"><pre>'/'</pre></td>
|
|---|
| 1481 | </tr>
|
|---|
| 1482 |
|
|---|
| 1483 | <tr>
|
|---|
| 1484 | <td>SILENCED_SYSTEM_CHECKS</td>
|
|---|
| 1485 | <td class="code"><pre>[]</pre></td>
|
|---|
| 1486 | </tr>
|
|---|
| 1487 |
|
|---|
| 1488 | <tr>
|
|---|
| 1489 | <td>MIDDLEWARE_CLASSES</td>
|
|---|
| 1490 | <td class="code"><pre>('django.middleware.common.CommonMiddleware',
|
|---|
| 1491 | 'django.contrib.sessions.middleware.SessionMiddleware',
|
|---|
| 1492 | 'django.middleware.csrf.CsrfViewMiddleware',
|
|---|
| 1493 | 'django.contrib.auth.middleware.AuthenticationMiddleware',
|
|---|
| 1494 | 'django.contrib.messages.middleware.MessageMiddleware')</pre></td>
|
|---|
| 1495 | </tr>
|
|---|
| 1496 |
|
|---|
| 1497 | <tr>
|
|---|
| 1498 | <td>USE_I18N</td>
|
|---|
| 1499 | <td class="code"><pre>True</pre></td>
|
|---|
| 1500 | </tr>
|
|---|
| 1501 |
|
|---|
| 1502 | <tr>
|
|---|
| 1503 | <td>THOUSAND_SEPARATOR</td>
|
|---|
| 1504 | <td class="code"><pre>','</pre></td>
|
|---|
| 1505 | </tr>
|
|---|
| 1506 |
|
|---|
| 1507 | <tr>
|
|---|
| 1508 | <td>SECRET_KEY</td>
|
|---|
| 1509 | <td class="code"><pre>u'********************'</pre></td>
|
|---|
| 1510 | </tr>
|
|---|
| 1511 |
|
|---|
| 1512 | <tr>
|
|---|
| 1513 | <td>LANGUAGE_COOKIE_NAME</td>
|
|---|
| 1514 | <td class="code"><pre>'django_language'</pre></td>
|
|---|
| 1515 | </tr>
|
|---|
| 1516 |
|
|---|
| 1517 | <tr>
|
|---|
| 1518 | <td>DEFAULT_INDEX_TABLESPACE</td>
|
|---|
| 1519 | <td class="code"><pre>''</pre></td>
|
|---|
| 1520 | </tr>
|
|---|
| 1521 |
|
|---|
| 1522 | <tr>
|
|---|
| 1523 | <td>TRANSACTIONS_MANAGED</td>
|
|---|
| 1524 | <td class="code"><pre>False</pre></td>
|
|---|
| 1525 | </tr>
|
|---|
| 1526 |
|
|---|
| 1527 | <tr>
|
|---|
| 1528 | <td>LOGGING_CONFIG</td>
|
|---|
| 1529 | <td class="code"><pre>'logging.config.dictConfig'</pre></td>
|
|---|
| 1530 | </tr>
|
|---|
| 1531 |
|
|---|
| 1532 | <tr>
|
|---|
| 1533 | <td>TEMPLATE_LOADERS</td>
|
|---|
| 1534 | <td class="code"><pre>('django.template.loaders.filesystem.Loader',
|
|---|
| 1535 | 'django.template.loaders.app_directories.Loader')</pre></td>
|
|---|
| 1536 | </tr>
|
|---|
| 1537 |
|
|---|
| 1538 | <tr>
|
|---|
| 1539 | <td>FIRST_DAY_OF_WEEK</td>
|
|---|
| 1540 | <td class="code"><pre>0</pre></td>
|
|---|
| 1541 | </tr>
|
|---|
| 1542 |
|
|---|
| 1543 | <tr>
|
|---|
| 1544 | <td>WSGI_APPLICATION</td>
|
|---|
| 1545 | <td class="code"><pre>'potolok.wsgi.application'</pre></td>
|
|---|
| 1546 | </tr>
|
|---|
| 1547 |
|
|---|
| 1548 | <tr>
|
|---|
| 1549 | <td>TEMPLATE_DEBUG</td>
|
|---|
| 1550 | <td class="code"><pre>True</pre></td>
|
|---|
| 1551 | </tr>
|
|---|
| 1552 |
|
|---|
| 1553 | <tr>
|
|---|
| 1554 | <td>X_FRAME_OPTIONS</td>
|
|---|
| 1555 | <td class="code"><pre>'SAMEORIGIN'</pre></td>
|
|---|
| 1556 | </tr>
|
|---|
| 1557 |
|
|---|
| 1558 | <tr>
|
|---|
| 1559 | <td>AUTHENTICATION_BACKENDS</td>
|
|---|
| 1560 | <td class="code"><pre>('django.contrib.auth.backends.ModelBackend',)</pre></td>
|
|---|
| 1561 | </tr>
|
|---|
| 1562 |
|
|---|
| 1563 | <tr>
|
|---|
| 1564 | <td>FORCE_SCRIPT_NAME</td>
|
|---|
| 1565 | <td class="code"><pre>None</pre></td>
|
|---|
| 1566 | </tr>
|
|---|
| 1567 |
|
|---|
| 1568 | <tr>
|
|---|
| 1569 | <td>USE_X_FORWARDED_HOST</td>
|
|---|
| 1570 | <td class="code"><pre>False</pre></td>
|
|---|
| 1571 | </tr>
|
|---|
| 1572 |
|
|---|
| 1573 | <tr>
|
|---|
| 1574 | <td>SIGNING_BACKEND</td>
|
|---|
| 1575 | <td class="code"><pre>'django.core.signing.TimestampSigner'</pre></td>
|
|---|
| 1576 | </tr>
|
|---|
| 1577 |
|
|---|
| 1578 | <tr>
|
|---|
| 1579 | <td>SESSION_COOKIE_SECURE</td>
|
|---|
| 1580 | <td class="code"><pre>False</pre></td>
|
|---|
| 1581 | </tr>
|
|---|
| 1582 |
|
|---|
| 1583 | <tr>
|
|---|
| 1584 | <td>CSRF_COOKIE_DOMAIN</td>
|
|---|
| 1585 | <td class="code"><pre>None</pre></td>
|
|---|
| 1586 | </tr>
|
|---|
| 1587 |
|
|---|
| 1588 | <tr>
|
|---|
| 1589 | <td>FILE_CHARSET</td>
|
|---|
| 1590 | <td class="code"><pre>'utf-8'</pre></td>
|
|---|
| 1591 | </tr>
|
|---|
| 1592 |
|
|---|
| 1593 | <tr>
|
|---|
| 1594 | <td>DEBUG</td>
|
|---|
| 1595 | <td class="code"><pre>True</pre></td>
|
|---|
| 1596 | </tr>
|
|---|
| 1597 |
|
|---|
| 1598 | <tr>
|
|---|
| 1599 | <td>LANGUAGE_COOKIE_DOMAIN</td>
|
|---|
| 1600 | <td class="code"><pre>None</pre></td>
|
|---|
| 1601 | </tr>
|
|---|
| 1602 |
|
|---|
| 1603 | <tr>
|
|---|
| 1604 | <td>DEFAULT_FILE_STORAGE</td>
|
|---|
| 1605 | <td class="code"><pre>'django.core.files.storage.FileSystemStorage'</pre></td>
|
|---|
| 1606 | </tr>
|
|---|
| 1607 |
|
|---|
| 1608 | <tr>
|
|---|
| 1609 | <td>INSTALLED_APPS</td>
|
|---|
| 1610 | <td class="code"><pre>('django.contrib.auth',
|
|---|
| 1611 | 'django.contrib.contenttypes',
|
|---|
| 1612 | 'django.contrib.sessions',
|
|---|
| 1613 | 'django.contrib.messages',
|
|---|
| 1614 | 'django.contrib.staticfiles',
|
|---|
| 1615 | 'django.contrib.admin',
|
|---|
| 1616 | 'base',
|
|---|
| 1617 | 'dealers',
|
|---|
| 1618 | 'orders',
|
|---|
| 1619 | 'potolok',
|
|---|
| 1620 | 'reports',
|
|---|
| 1621 | 'warehouse',
|
|---|
| 1622 | 'south',
|
|---|
| 1623 | 'chained_selects')</pre></td>
|
|---|
| 1624 | </tr>
|
|---|
| 1625 |
|
|---|
| 1626 | <tr>
|
|---|
| 1627 | <td>LANGUAGES</td>
|
|---|
| 1628 | <td class="code"><pre>(('af', 'Afrikaans'),
|
|---|
| 1629 | ('ar', 'Arabic'),
|
|---|
| 1630 | ('az', 'Azerbaijani'),
|
|---|
| 1631 | ('bg', 'Bulgarian'),
|
|---|
| 1632 | ('be', 'Belarusian'),
|
|---|
| 1633 | ('bn', 'Bengali'),
|
|---|
| 1634 | ('br', 'Breton'),
|
|---|
| 1635 | ('bs', 'Bosnian'),
|
|---|
| 1636 | ('ca', 'Catalan'),
|
|---|
| 1637 | ('cs', 'Czech'),
|
|---|
| 1638 | ('cy', 'Welsh'),
|
|---|
| 1639 | ('da', 'Danish'),
|
|---|
| 1640 | ('de', 'German'),
|
|---|
| 1641 | ('el', 'Greek'),
|
|---|
| 1642 | ('en', 'English'),
|
|---|
| 1643 | ('en-au', 'Australian English'),
|
|---|
| 1644 | ('en-gb', 'British English'),
|
|---|
| 1645 | ('eo', 'Esperanto'),
|
|---|
| 1646 | ('es', 'Spanish'),
|
|---|
| 1647 | ('es-ar', 'Argentinian Spanish'),
|
|---|
| 1648 | ('es-mx', 'Mexican Spanish'),
|
|---|
| 1649 | ('es-ni', 'Nicaraguan Spanish'),
|
|---|
| 1650 | ('es-ve', 'Venezuelan Spanish'),
|
|---|
| 1651 | ('et', 'Estonian'),
|
|---|
| 1652 | ('eu', 'Basque'),
|
|---|
| 1653 | ('fa', 'Persian'),
|
|---|
| 1654 | ('fi', 'Finnish'),
|
|---|
| 1655 | ('fr', 'French'),
|
|---|
| 1656 | ('fy', 'Frisian'),
|
|---|
| 1657 | ('ga', 'Irish'),
|
|---|
| 1658 | ('gl', 'Galician'),
|
|---|
| 1659 | ('he', 'Hebrew'),
|
|---|
| 1660 | ('hi', 'Hindi'),
|
|---|
| 1661 | ('hr', 'Croatian'),
|
|---|
| 1662 | ('hu', 'Hungarian'),
|
|---|
| 1663 | ('ia', 'Interlingua'),
|
|---|
| 1664 | ('id', 'Indonesian'),
|
|---|
| 1665 | ('is', 'Icelandic'),
|
|---|
| 1666 | ('it', 'Italian'),
|
|---|
| 1667 | ('ja', 'Japanese'),
|
|---|
| 1668 | ('ka', 'Georgian'),
|
|---|
| 1669 | ('kk', 'Kazakh'),
|
|---|
| 1670 | ('km', 'Khmer'),
|
|---|
| 1671 | ('kn', 'Kannada'),
|
|---|
| 1672 | ('ko', 'Korean'),
|
|---|
| 1673 | ('lb', 'Luxembourgish'),
|
|---|
| 1674 | ('lt', 'Lithuanian'),
|
|---|
| 1675 | ('lv', 'Latvian'),
|
|---|
| 1676 | ('mk', 'Macedonian'),
|
|---|
| 1677 | ('ml', 'Malayalam'),
|
|---|
| 1678 | ('mn', 'Mongolian'),
|
|---|
| 1679 | ('my', 'Burmese'),
|
|---|
| 1680 | ('nb', 'Norwegian Bokmal'),
|
|---|
| 1681 | ('ne', 'Nepali'),
|
|---|
| 1682 | ('nl', 'Dutch'),
|
|---|
| 1683 | ('nn', 'Norwegian Nynorsk'),
|
|---|
| 1684 | ('os', 'Ossetic'),
|
|---|
| 1685 | ('pa', 'Punjabi'),
|
|---|
| 1686 | ('pl', 'Polish'),
|
|---|
| 1687 | ('pt', 'Portuguese'),
|
|---|
| 1688 | ('pt-br', 'Brazilian Portuguese'),
|
|---|
| 1689 | ('ro', 'Romanian'),
|
|---|
| 1690 | ('ru', 'Russian'),
|
|---|
| 1691 | ('sk', 'Slovak'),
|
|---|
| 1692 | ('sl', 'Slovenian'),
|
|---|
| 1693 | ('sq', 'Albanian'),
|
|---|
| 1694 | ('sr', 'Serbian'),
|
|---|
| 1695 | ('sr-latn', 'Serbian Latin'),
|
|---|
| 1696 | ('sv', 'Swedish'),
|
|---|
| 1697 | ('sw', 'Swahili'),
|
|---|
| 1698 | ('ta', 'Tamil'),
|
|---|
| 1699 | ('te', 'Telugu'),
|
|---|
| 1700 | ('th', 'Thai'),
|
|---|
| 1701 | ('tr', 'Turkish'),
|
|---|
| 1702 | ('tt', 'Tatar'),
|
|---|
| 1703 | ('udm', 'Udmurt'),
|
|---|
| 1704 | ('uk', 'Ukrainian'),
|
|---|
| 1705 | ('ur', 'Urdu'),
|
|---|
| 1706 | ('vi', 'Vietnamese'),
|
|---|
| 1707 | ('zh-cn', 'Simplified Chinese'),
|
|---|
| 1708 | ('zh-hans', 'Simplified Chinese'),
|
|---|
| 1709 | ('zh-hant', 'Traditional Chinese'),
|
|---|
| 1710 | ('zh-tw', 'Traditional Chinese'))</pre></td>
|
|---|
| 1711 | </tr>
|
|---|
| 1712 |
|
|---|
| 1713 | <tr>
|
|---|
| 1714 | <td>COMMENTS_ALLOW_PROFANITIES</td>
|
|---|
| 1715 | <td class="code"><pre>False</pre></td>
|
|---|
| 1716 | </tr>
|
|---|
| 1717 |
|
|---|
| 1718 | <tr>
|
|---|
| 1719 | <td>STATICFILES_DIRS</td>
|
|---|
| 1720 | <td class="code"><pre>('/home/ski/Development/DJ15/dj15/potolok/static/',)</pre></td>
|
|---|
| 1721 | </tr>
|
|---|
| 1722 |
|
|---|
| 1723 | <tr>
|
|---|
| 1724 | <td>PREPEND_WWW</td>
|
|---|
| 1725 | <td class="code"><pre>False</pre></td>
|
|---|
| 1726 | </tr>
|
|---|
| 1727 |
|
|---|
| 1728 | <tr>
|
|---|
| 1729 | <td>SECURE_PROXY_SSL_HEADER</td>
|
|---|
| 1730 | <td class="code"><pre>None</pre></td>
|
|---|
| 1731 | </tr>
|
|---|
| 1732 |
|
|---|
| 1733 | <tr>
|
|---|
| 1734 | <td>LANGUAGE_COOKIE_AGE</td>
|
|---|
| 1735 | <td class="code"><pre>None</pre></td>
|
|---|
| 1736 | </tr>
|
|---|
| 1737 |
|
|---|
| 1738 | <tr>
|
|---|
| 1739 | <td>SESSION_COOKIE_HTTPONLY</td>
|
|---|
| 1740 | <td class="code"><pre>True</pre></td>
|
|---|
| 1741 | </tr>
|
|---|
| 1742 |
|
|---|
| 1743 | <tr>
|
|---|
| 1744 | <td>DEBUG_PROPAGATE_EXCEPTIONS</td>
|
|---|
| 1745 | <td class="code"><pre>False</pre></td>
|
|---|
| 1746 | </tr>
|
|---|
| 1747 |
|
|---|
| 1748 | <tr>
|
|---|
| 1749 | <td>INTERNAL_IPS</td>
|
|---|
| 1750 | <td class="code"><pre>()</pre></td>
|
|---|
| 1751 | </tr>
|
|---|
| 1752 |
|
|---|
| 1753 | <tr>
|
|---|
| 1754 | <td>MONTH_DAY_FORMAT</td>
|
|---|
| 1755 | <td class="code"><pre>'F j'</pre></td>
|
|---|
| 1756 | </tr>
|
|---|
| 1757 |
|
|---|
| 1758 | <tr>
|
|---|
| 1759 | <td>LOGIN_URL</td>
|
|---|
| 1760 | <td class="code"><pre>'/accounts/login/'</pre></td>
|
|---|
| 1761 | </tr>
|
|---|
| 1762 |
|
|---|
| 1763 | <tr>
|
|---|
| 1764 | <td>SESSION_EXPIRE_AT_BROWSER_CLOSE</td>
|
|---|
| 1765 | <td class="code"><pre>False</pre></td>
|
|---|
| 1766 | </tr>
|
|---|
| 1767 |
|
|---|
| 1768 | <tr>
|
|---|
| 1769 | <td>TIME_FORMAT</td>
|
|---|
| 1770 | <td class="code"><pre>'P'</pre></td>
|
|---|
| 1771 | </tr>
|
|---|
| 1772 |
|
|---|
| 1773 | <tr>
|
|---|
| 1774 | <td>AUTH_USER_MODEL</td>
|
|---|
| 1775 | <td class="code"><pre>'base.P_User'</pre></td>
|
|---|
| 1776 | </tr>
|
|---|
| 1777 |
|
|---|
| 1778 | <tr>
|
|---|
| 1779 | <td>DATE_INPUT_FORMATS</td>
|
|---|
| 1780 | <td class="code"><pre>('%d.%m.%Y', '%d/%m/%Y')</pre></td>
|
|---|
| 1781 | </tr>
|
|---|
| 1782 |
|
|---|
| 1783 | <tr>
|
|---|
| 1784 | <td>CSRF_COOKIE_NAME</td>
|
|---|
| 1785 | <td class="code"><pre>'csrftoken'</pre></td>
|
|---|
| 1786 | </tr>
|
|---|
| 1787 |
|
|---|
| 1788 | <tr>
|
|---|
| 1789 | <td>EMAIL_HOST_PASSWORD</td>
|
|---|
| 1790 | <td class="code"><pre>u'********************'</pre></td>
|
|---|
| 1791 | </tr>
|
|---|
| 1792 |
|
|---|
| 1793 | <tr>
|
|---|
| 1794 | <td>PASSWORD_RESET_TIMEOUT_DAYS</td>
|
|---|
| 1795 | <td class="code"><pre>u'********************'</pre></td>
|
|---|
| 1796 | </tr>
|
|---|
| 1797 |
|
|---|
| 1798 | <tr>
|
|---|
| 1799 | <td>SESSION_FILE_PATH</td>
|
|---|
| 1800 | <td class="code"><pre>None</pre></td>
|
|---|
| 1801 | </tr>
|
|---|
| 1802 |
|
|---|
| 1803 | <tr>
|
|---|
| 1804 | <td>CACHE_MIDDLEWARE_ALIAS</td>
|
|---|
| 1805 | <td class="code"><pre>'default'</pre></td>
|
|---|
| 1806 | </tr>
|
|---|
| 1807 |
|
|---|
| 1808 | <tr>
|
|---|
| 1809 | <td>SESSION_SAVE_EVERY_REQUEST</td>
|
|---|
| 1810 | <td class="code"><pre>False</pre></td>
|
|---|
| 1811 | </tr>
|
|---|
| 1812 |
|
|---|
| 1813 | <tr>
|
|---|
| 1814 | <td>NUMBER_GROUPING</td>
|
|---|
| 1815 | <td class="code"><pre>0</pre></td>
|
|---|
| 1816 | </tr>
|
|---|
| 1817 |
|
|---|
| 1818 | <tr>
|
|---|
| 1819 | <td>SESSION_ENGINE</td>
|
|---|
| 1820 | <td class="code"><pre>'django.contrib.sessions.backends.db'</pre></td>
|
|---|
| 1821 | </tr>
|
|---|
| 1822 |
|
|---|
| 1823 | <tr>
|
|---|
| 1824 | <td>CSRF_FAILURE_VIEW</td>
|
|---|
| 1825 | <td class="code"><pre>'django.views.csrf.csrf_failure'</pre></td>
|
|---|
| 1826 | </tr>
|
|---|
| 1827 |
|
|---|
| 1828 | <tr>
|
|---|
| 1829 | <td>CSRF_COOKIE_PATH</td>
|
|---|
| 1830 | <td class="code"><pre>'/'</pre></td>
|
|---|
| 1831 | </tr>
|
|---|
| 1832 |
|
|---|
| 1833 | <tr>
|
|---|
| 1834 | <td>LOGIN_REDIRECT_URL</td>
|
|---|
| 1835 | <td class="code"><pre>'/accounts/profile/'</pre></td>
|
|---|
| 1836 | </tr>
|
|---|
| 1837 |
|
|---|
| 1838 | <tr>
|
|---|
| 1839 | <td>DECIMAL_SEPARATOR</td>
|
|---|
| 1840 | <td class="code"><pre>'.'</pre></td>
|
|---|
| 1841 | </tr>
|
|---|
| 1842 |
|
|---|
| 1843 | <tr>
|
|---|
| 1844 | <td>IGNORABLE_404_URLS</td>
|
|---|
| 1845 | <td class="code"><pre>()</pre></td>
|
|---|
| 1846 | </tr>
|
|---|
| 1847 |
|
|---|
| 1848 | <tr>
|
|---|
| 1849 | <td>MIGRATION_MODULES</td>
|
|---|
| 1850 | <td class="code"><pre>{}</pre></td>
|
|---|
| 1851 | </tr>
|
|---|
| 1852 |
|
|---|
| 1853 | <tr>
|
|---|
| 1854 | <td>TEMPLATE_STRING_IF_INVALID</td>
|
|---|
| 1855 | <td class="code"><pre>''</pre></td>
|
|---|
| 1856 | </tr>
|
|---|
| 1857 |
|
|---|
| 1858 | <tr>
|
|---|
| 1859 | <td>LOGOUT_URL</td>
|
|---|
| 1860 | <td class="code"><pre>'/accounts/logout/'</pre></td>
|
|---|
| 1861 | </tr>
|
|---|
| 1862 |
|
|---|
| 1863 | <tr>
|
|---|
| 1864 | <td>EMAIL_USE_TLS</td>
|
|---|
| 1865 | <td class="code"><pre>False</pre></td>
|
|---|
| 1866 | </tr>
|
|---|
| 1867 |
|
|---|
| 1868 | <tr>
|
|---|
| 1869 | <td>FIXTURE_DIRS</td>
|
|---|
| 1870 | <td class="code"><pre>()</pre></td>
|
|---|
| 1871 | </tr>
|
|---|
| 1872 |
|
|---|
| 1873 | <tr>
|
|---|
| 1874 | <td>EMAIL_HOST</td>
|
|---|
| 1875 | <td class="code"><pre>'ox20m.atservers.net'</pre></td>
|
|---|
| 1876 | </tr>
|
|---|
| 1877 |
|
|---|
| 1878 | <tr>
|
|---|
| 1879 | <td>DATE_FORMAT</td>
|
|---|
| 1880 | <td class="code"><pre>'d.m.Y'</pre></td>
|
|---|
| 1881 | </tr>
|
|---|
| 1882 |
|
|---|
| 1883 | <tr>
|
|---|
| 1884 | <td>MEDIA_ROOT</td>
|
|---|
| 1885 | <td class="code"><pre>'/home/ski/Development/DJ15/dj15/potolok/media/'</pre></td>
|
|---|
| 1886 | </tr>
|
|---|
| 1887 |
|
|---|
| 1888 | <tr>
|
|---|
| 1889 | <td>DEFAULT_EXCEPTION_REPORTER_FILTER</td>
|
|---|
| 1890 | <td class="code"><pre>'django.views.debug.SafeExceptionReporterFilter'</pre></td>
|
|---|
| 1891 | </tr>
|
|---|
| 1892 |
|
|---|
| 1893 | <tr>
|
|---|
| 1894 | <td>ADMINS</td>
|
|---|
| 1895 | <td class="code"><pre>()</pre></td>
|
|---|
| 1896 | </tr>
|
|---|
| 1897 |
|
|---|
| 1898 | <tr>
|
|---|
| 1899 | <td>FORMAT_MODULE_PATH</td>
|
|---|
| 1900 | <td class="code"><pre>None</pre></td>
|
|---|
| 1901 | </tr>
|
|---|
| 1902 |
|
|---|
| 1903 | <tr>
|
|---|
| 1904 | <td>DEFAULT_FROM_EMAIL</td>
|
|---|
| 1905 | <td class="code"><pre>'webmaster@localhost'</pre></td>
|
|---|
| 1906 | </tr>
|
|---|
| 1907 |
|
|---|
| 1908 | <tr>
|
|---|
| 1909 | <td>MEDIA_URL</td>
|
|---|
| 1910 | <td class="code"><pre>'/media/'</pre></td>
|
|---|
| 1911 | </tr>
|
|---|
| 1912 |
|
|---|
| 1913 | <tr>
|
|---|
| 1914 | <td>DATETIME_FORMAT</td>
|
|---|
| 1915 | <td class="code"><pre>'N j, Y, P'</pre></td>
|
|---|
| 1916 | </tr>
|
|---|
| 1917 |
|
|---|
| 1918 | <tr>
|
|---|
| 1919 | <td>TEMPLATE_DIRS</td>
|
|---|
| 1920 | <td class="code"><pre>('/home/ski/Development/DJ15/dj15/potolok/templates/',
|
|---|
| 1921 | '/home/ski/Development/DJ15/dj15/potolok/')</pre></td>
|
|---|
| 1922 | </tr>
|
|---|
| 1923 |
|
|---|
| 1924 | <tr>
|
|---|
| 1925 | <td>SITE_ID</td>
|
|---|
| 1926 | <td class="code"><pre>1</pre></td>
|
|---|
| 1927 | </tr>
|
|---|
| 1928 |
|
|---|
| 1929 | <tr>
|
|---|
| 1930 | <td>DISALLOWED_USER_AGENTS</td>
|
|---|
| 1931 | <td class="code"><pre>()</pre></td>
|
|---|
| 1932 | </tr>
|
|---|
| 1933 |
|
|---|
| 1934 | <tr>
|
|---|
| 1935 | <td>ALLOWED_INCLUDE_ROOTS</td>
|
|---|
| 1936 | <td class="code"><pre>()</pre></td>
|
|---|
| 1937 | </tr>
|
|---|
| 1938 |
|
|---|
| 1939 | <tr>
|
|---|
| 1940 | <td>LOGGING</td>
|
|---|
| 1941 | <td class="code"><pre>{'disable_existing_loggers': False,
|
|---|
| 1942 | 'filters': {'require_debug_false': {'()': 'django.utils.log.RequireDebugFalse'}},
|
|---|
| 1943 | 'handlers': {'mail_admins': {'class': 'django.utils.log.AdminEmailHandler',
|
|---|
| 1944 | 'filters': ['require_debug_false'],
|
|---|
| 1945 | 'level': 'ERROR'}},
|
|---|
| 1946 | 'loggers': {'django.request': {'handlers': ['mail_admins'],
|
|---|
| 1947 | 'level': 'ERROR',
|
|---|
| 1948 | 'propagate': True}},
|
|---|
| 1949 | 'version': 1}</pre></td>
|
|---|
| 1950 | </tr>
|
|---|
| 1951 |
|
|---|
| 1952 | <tr>
|
|---|
| 1953 | <td>SHORT_DATE_FORMAT</td>
|
|---|
| 1954 | <td class="code"><pre>'d.m.Y'</pre></td>
|
|---|
| 1955 | </tr>
|
|---|
| 1956 |
|
|---|
| 1957 | <tr>
|
|---|
| 1958 | <td>TEST_RUNNER</td>
|
|---|
| 1959 | <td class="code"><pre>'django.test.runner.DiscoverRunner'</pre></td>
|
|---|
| 1960 | </tr>
|
|---|
| 1961 |
|
|---|
| 1962 | <tr>
|
|---|
| 1963 | <td>CACHE_MIDDLEWARE_KEY_PREFIX</td>
|
|---|
| 1964 | <td class="code"><pre>u'********************'</pre></td>
|
|---|
| 1965 | </tr>
|
|---|
| 1966 |
|
|---|
| 1967 | <tr>
|
|---|
| 1968 | <td>TIME_ZONE</td>
|
|---|
| 1969 | <td class="code"><pre>'Europe/Minsk'</pre></td>
|
|---|
| 1970 | </tr>
|
|---|
| 1971 |
|
|---|
| 1972 | <tr>
|
|---|
| 1973 | <td>FILE_UPLOAD_MAX_MEMORY_SIZE</td>
|
|---|
| 1974 | <td class="code"><pre>2621440</pre></td>
|
|---|
| 1975 | </tr>
|
|---|
| 1976 |
|
|---|
| 1977 | <tr>
|
|---|
| 1978 | <td>EMAIL_BACKEND</td>
|
|---|
| 1979 | <td class="code"><pre>'django.core.mail.backends.smtp.EmailBackend'</pre></td>
|
|---|
| 1980 | </tr>
|
|---|
| 1981 |
|
|---|
| 1982 | <tr>
|
|---|
| 1983 | <td>EMAIL_USE_SSL</td>
|
|---|
| 1984 | <td class="code"><pre>False</pre></td>
|
|---|
| 1985 | </tr>
|
|---|
| 1986 |
|
|---|
| 1987 | <tr>
|
|---|
| 1988 | <td>TEMPLATE_CONTEXT_PROCESSORS</td>
|
|---|
| 1989 | <td class="code"><pre>('django.contrib.auth.context_processors.auth',
|
|---|
| 1990 | 'django.core.context_processors.debug',
|
|---|
| 1991 | 'django.core.context_processors.i18n',
|
|---|
| 1992 | 'django.core.context_processors.media',
|
|---|
| 1993 | 'django.core.context_processors.static',
|
|---|
| 1994 | 'django.core.context_processors.tz',
|
|---|
| 1995 | 'django.contrib.messages.context_processors.messages')</pre></td>
|
|---|
| 1996 | </tr>
|
|---|
| 1997 |
|
|---|
| 1998 | <tr>
|
|---|
| 1999 | <td>SESSION_COOKIE_AGE</td>
|
|---|
| 2000 | <td class="code"><pre>1209600</pre></td>
|
|---|
| 2001 | </tr>
|
|---|
| 2002 |
|
|---|
| 2003 | <tr>
|
|---|
| 2004 | <td>SETTINGS_MODULE</td>
|
|---|
| 2005 | <td class="code"><pre>'potolok.settings'</pre></td>
|
|---|
| 2006 | </tr>
|
|---|
| 2007 |
|
|---|
| 2008 | <tr>
|
|---|
| 2009 | <td>USE_ETAGS</td>
|
|---|
| 2010 | <td class="code"><pre>False</pre></td>
|
|---|
| 2011 | </tr>
|
|---|
| 2012 |
|
|---|
| 2013 | <tr>
|
|---|
| 2014 | <td>LANGUAGES_BIDI</td>
|
|---|
| 2015 | <td class="code"><pre>('he', 'ar', 'fa', 'ur')</pre></td>
|
|---|
| 2016 | </tr>
|
|---|
| 2017 |
|
|---|
| 2018 | <tr>
|
|---|
| 2019 | <td>FILE_UPLOAD_TEMP_DIR</td>
|
|---|
| 2020 | <td class="code"><pre>None</pre></td>
|
|---|
| 2021 | </tr>
|
|---|
| 2022 |
|
|---|
| 2023 | <tr>
|
|---|
| 2024 | <td>CSRF_COOKIE_AGE</td>
|
|---|
| 2025 | <td class="code"><pre>31449600</pre></td>
|
|---|
| 2026 | </tr>
|
|---|
| 2027 |
|
|---|
| 2028 | <tr>
|
|---|
| 2029 | <td>STATIC_URL</td>
|
|---|
| 2030 | <td class="code"><pre>'/files/'</pre></td>
|
|---|
| 2031 | </tr>
|
|---|
| 2032 |
|
|---|
| 2033 | <tr>
|
|---|
| 2034 | <td>EMAIL_PORT</td>
|
|---|
| 2035 | <td class="code"><pre>25</pre></td>
|
|---|
| 2036 | </tr>
|
|---|
| 2037 |
|
|---|
| 2038 | <tr>
|
|---|
| 2039 | <td>USE_TZ</td>
|
|---|
| 2040 | <td class="code"><pre>True</pre></td>
|
|---|
| 2041 | </tr>
|
|---|
| 2042 |
|
|---|
| 2043 | <tr>
|
|---|
| 2044 | <td>SHORT_DATETIME_FORMAT</td>
|
|---|
| 2045 | <td class="code"><pre>'m/d/Y P'</pre></td>
|
|---|
| 2046 | </tr>
|
|---|
| 2047 |
|
|---|
| 2048 | <tr>
|
|---|
| 2049 | <td>PASSWORD_HASHERS</td>
|
|---|
| 2050 | <td class="code"><pre>u'********************'</pre></td>
|
|---|
| 2051 | </tr>
|
|---|
| 2052 |
|
|---|
| 2053 | <tr>
|
|---|
| 2054 | <td>ABSOLUTE_URL_OVERRIDES</td>
|
|---|
| 2055 | <td class="code"><pre>{}</pre></td>
|
|---|
| 2056 | </tr>
|
|---|
| 2057 |
|
|---|
| 2058 | <tr>
|
|---|
| 2059 | <td>LANGUAGE_COOKIE_PATH</td>
|
|---|
| 2060 | <td class="code"><pre>'/'</pre></td>
|
|---|
| 2061 | </tr>
|
|---|
| 2062 |
|
|---|
| 2063 | <tr>
|
|---|
| 2064 | <td>CACHE_MIDDLEWARE_SECONDS</td>
|
|---|
| 2065 | <td class="code"><pre>600</pre></td>
|
|---|
| 2066 | </tr>
|
|---|
| 2067 |
|
|---|
| 2068 | <tr>
|
|---|
| 2069 | <td>CSRF_COOKIE_HTTPONLY</td>
|
|---|
| 2070 | <td class="code"><pre>False</pre></td>
|
|---|
| 2071 | </tr>
|
|---|
| 2072 |
|
|---|
| 2073 | <tr>
|
|---|
| 2074 | <td>DATETIME_INPUT_FORMATS</td>
|
|---|
| 2075 | <td class="code"><pre>('%d-%m-%Y %H:%M:%S',
|
|---|
| 2076 | '%d-%m-%Y %H:%M:%S%f',
|
|---|
| 2077 | '%d-%m-%Y %H:%M',
|
|---|
| 2078 | '%d-%m-%Y',
|
|---|
| 2079 | '%d-%m-%y %H:%M:%S',
|
|---|
| 2080 | '%d-%m-%y %H:%M:%S%f',
|
|---|
| 2081 | '%d-%m-%y %H:%M',
|
|---|
| 2082 | '%d-%m-%y',
|
|---|
| 2083 | '%d/%m/%Y %H:%M:%S',
|
|---|
| 2084 | '%d/%m/%Y %H:%M:%S%f',
|
|---|
| 2085 | '%d/%m/%Y %H:%M',
|
|---|
| 2086 | '%d/%m/%Y',
|
|---|
| 2087 | '%d/%m/%y %H:%M:%S',
|
|---|
| 2088 | '%d/%m/%y %H:%M:%S%f',
|
|---|
| 2089 | '%d/%m/%y %H:%M',
|
|---|
| 2090 | '%d/%m/%y')</pre></td>
|
|---|
| 2091 | </tr>
|
|---|
| 2092 |
|
|---|
| 2093 | <tr>
|
|---|
| 2094 | <td>EMAIL_HOST_USER</td>
|
|---|
| 2095 | <td class="code"><pre>'logger@sdv.by'</pre></td>
|
|---|
| 2096 | </tr>
|
|---|
| 2097 |
|
|---|
| 2098 | <tr>
|
|---|
| 2099 | <td>PROFANITIES_LIST</td>
|
|---|
| 2100 | <td class="code"><pre>u'********************'</pre></td>
|
|---|
| 2101 | </tr>
|
|---|
| 2102 |
|
|---|
| 2103 | </tbody>
|
|---|
| 2104 | </table>
|
|---|
| 2105 |
|
|---|
| 2106 | </div>
|
|---|
| 2107 |
|
|---|
| 2108 | <div id="explanation">
|
|---|
| 2109 | <p>
|
|---|
| 2110 | You're seeing this error because you have <code>DEBUG = True</code> in your
|
|---|
| 2111 | Django settings file. Change that to <code>False</code>, and Django will
|
|---|
| 2112 | display a standard 500 page.
|
|---|
| 2113 | </p>
|
|---|
| 2114 | </div>
|
|---|
| 2115 |
|
|---|
| 2116 |
|
|---|
| 2117 |
|
|---|
| 2118 | </body></html>
|
|---|