Created
December 17, 2013 19:28
-
-
Save mcepl/8011111 to your computer and use it in GitHub Desktop.
Error when displaying blog (after were downloaded from dumpdata output).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"><head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<meta name="robots" content="NONE,NOARCHIVE"> | |
<title>AssertionError at /</title> | |
<style type="text/css"> | |
html * { padding:0; margin:0; } | |
body * { padding:10px 20px; } | |
body * * { padding:0; } | |
body { font:small sans-serif; } | |
body>div { border-bottom:1px solid #ddd; } | |
h1 { font-weight:normal; } | |
h2 { margin-bottom:.8em; } | |
h2 span { font-size:80%; color:#666; font-weight:normal; } | |
h3 { margin:1em 0 .5em 0; } | |
h4 { margin:0 0 .5em 0; font-weight: normal; } | |
code, pre { font-size: 100%; white-space: pre-wrap; } | |
table { border:1px solid #ccc; border-collapse: collapse; width:100%; background:white; } | |
tbody td, tbody th { vertical-align:top; padding:2px 3px; } | |
thead th { padding:1px 6px 1px 3px; background:#fefefe; text-align:left; font-weight:normal; font-size:11px; border:1px solid #ddd; } | |
tbody th { width:12em; text-align:right; color:#666; padding-right:.5em; } | |
table.vars { margin:5px 0 2px 40px; } | |
table.vars td, table.req td { font-family:monospace; } | |
table td.code { width:100%; } | |
table td.code pre { overflow:hidden; } | |
table.source th { color:#666; } | |
table.source td { font-family:monospace; white-space:pre; border-bottom:1px solid #eee; } | |
ul.traceback { list-style-type:none; color: #222; } | |
ul.traceback li.frame { padding-bottom:1em; color:#666; } | |
ul.traceback li.user { background-color:#e0e0e0; color:#000 } | |
div.context { padding:10px 0; overflow:hidden; } | |
div.context ol { padding-left:30px; margin:0 10px; list-style-position: inside; } | |
div.context ol li { font-family:monospace; white-space:pre; color:#777; cursor:pointer; } | |
div.context ol li pre { display:inline; } | |
div.context ol.context-line li { color:#505050; background-color:#dfdfdf; } | |
div.context ol.context-line li span { position:absolute; right:32px; } | |
.user div.context ol.context-line li { background-color:#bbb; color:#000; } | |
.user div.context ol li { color:#666; } | |
div.commands { margin-left: 40px; } | |
div.commands a { color:#555; text-decoration:none; } | |
.user div.commands a { color: black; } | |
#summary { background: #ffc; } | |
#summary h2 { font-weight: normal; color: #666; } | |
#explanation { background:#eee; } | |
#template, #template-not-exist { background:#f6f6f6; } | |
#template-not-exist ul { margin: 0 0 0 20px; } | |
#unicode-hint { background:#eee; } | |
#traceback { background:#eee; } | |
#requestinfo { background:#f6f6f6; padding-left:120px; } | |
#summary table { border:none; background:transparent; } | |
#requestinfo h2, #requestinfo h3 { position:relative; margin-left:-100px; } | |
#requestinfo h3 { margin-bottom:-1em; } | |
.error { background: #ffc; } | |
.specific { color:#cc3300; font-weight:bold; } | |
h2 span.commands { font-size:.7em;} | |
span.commands a:link {color:#5E5694;} | |
pre.exception_value { font-family: sans-serif; color: #666; font-size: 1.5em; margin: 10px 0 10px 0; } | |
</style> | |
<script type="text/javascript"> | |
//<!-- | |
function getElementsByClassName(oElm, strTagName, strClassName){ | |
// Written by Jonathan Snook, http://www.snook.ca/jon; Add-ons by Robert Nyman, http://www.robertnyman.com | |
var arrElements = (strTagName == "*" && document.all)? document.all : | |
oElm.getElementsByTagName(strTagName); | |
var arrReturnElements = new Array(); | |
strClassName = strClassName.replace(/\-/g, "\-"); | |
var oRegExp = new RegExp("(^|\s)" + strClassName + "(\s|$)"); | |
var oElement; | |
for(var i=0; i<arrElements.length; i++){ | |
oElement = arrElements[i]; | |
if(oRegExp.test(oElement.className)){ | |
arrReturnElements.push(oElement); | |
} | |
} | |
return (arrReturnElements) | |
} | |
function hideAll(elems) { | |
for (var e = 0; e < elems.length; e++) { | |
elems[e].style.display = 'none'; | |
} | |
} | |
window.onload = function() { | |
hideAll(getElementsByClassName(document, 'table', 'vars')); | |
hideAll(getElementsByClassName(document, 'ol', 'pre-context')); | |
hideAll(getElementsByClassName(document, 'ol', 'post-context')); | |
hideAll(getElementsByClassName(document, 'div', 'pastebin')); | |
} | |
function toggle() { | |
for (var i = 0; i < arguments.length; i++) { | |
var e = document.getElementById(arguments[i]); | |
if (e) { | |
e.style.display = e.style.display == 'none' ? 'block' : 'none'; | |
} | |
} | |
return false; | |
} | |
function varToggle(link, id) { | |
toggle('v' + id); | |
var s = link.getElementsByTagName('span')[0]; | |
var uarr = String.fromCharCode(0x25b6); | |
var darr = String.fromCharCode(0x25bc); | |
s.innerHTML = s.innerHTML == uarr ? darr : uarr; | |
return false; | |
} | |
function switchPastebinFriendly(link) { | |
s1 = "Switch to copy-and-paste view"; | |
s2 = "Switch back to interactive view"; | |
link.innerHTML = link.innerHTML == s1 ? s2 : s1; | |
toggle('browserTraceback', 'pastebinTraceback'); | |
return false; | |
} | |
//--> | |
</script> | |
</head> | |
<body> | |
<div id="summary"> | |
<h1>AssertionError at /</h1> | |
<pre class="exception_value">'creation_date' is a DateTimeField, not a DateField.</pre> | |
<table class="meta"> | |
<tbody><tr> | |
<th>Request Method:</th> | |
<td>GET</td> | |
</tr> | |
<tr> | |
<th>Request URL:</th> | |
<td>http://luther.ceplovi.cz:8000/</td> | |
</tr> | |
<tr> | |
<th>Django Version:</th> | |
<td>1.6.1</td> | |
</tr> | |
<tr> | |
<th>Exception Type:</th> | |
<td>AssertionError</td> | |
</tr> | |
<tr> | |
<th>Exception Value:</th> | |
<td><pre>'creation_date' is a DateTimeField, not a DateField.</pre></td> | |
</tr> | |
<tr> | |
<th>Exception Location:</th> | |
<td>/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/sql/subqueries.py in _check_field, line 258</td> | |
</tr> | |
<tr> | |
<th>Python Executable:</th> | |
<td>/home/matej/djangoprojects/bin/python</td> | |
</tr> | |
<tr> | |
<th>Python Version:</th> | |
<td>2.6.6</td> | |
</tr> | |
<tr> | |
<th>Python Path:</th> | |
<td><pre>['/home/matej/djangoprojects/coelodonta', | |
'/home/matej/djangoprojects/lib/python26.zip', | |
'/home/matej/djangoprojects/lib/python2.6', | |
'/home/matej/djangoprojects/lib/python2.6/plat-linux2', | |
'/home/matej/djangoprojects/lib/python2.6/lib-tk', | |
'/home/matej/djangoprojects/lib/python2.6/lib-old', | |
'/home/matej/djangoprojects/lib/python2.6/lib-dynload', | |
'/usr/lib/python2.6', | |
'/usr/lib/python2.6/plat-linux2', | |
'/home/matej/djangoprojects/lib/python2.6/site-packages']</pre></td> | |
</tr> | |
<tr> | |
<th>Server time:</th> | |
<td>Tue, 17 Dec 2013 20:25:38 +0100</td> | |
</tr> | |
</tbody></table> | |
</div> | |
<div id="template"> | |
<h2>Error during template rendering</h2> | |
<p>In template <code>app_namespace:zinnia:/home/matej/djangoprojects/lib/python2.6/site-packages/zinnia/templates/zinnia/base.html</code>, error at line <strong>18</strong></p> | |
<h3>'creation_date' is a DateTimeField, not a DateField.</h3> | |
<table class="source cut-top cut-bottom"> | |
<tbody><tr><th>8</th> | |
<td>{% endblock meta %} | |
</td></tr> | |
<tr><th>9</th> | |
<td> | |
</td></tr> | |
<tr><th>10</th> | |
<td>{% block link %} | |
</td></tr> | |
<tr><th>11</th> | |
<td> <link rel="index" href="{% url 'zinnia_entry_archive_index' %}" /> | |
</td></tr> | |
<tr><th>12</th> | |
<td> <link rel="author" type="text/plain" href="{% url 'zinnia_humans' %}" /> | |
</td></tr> | |
<tr><th>13</th> | |
<td> <link rel="EditURI" type="application/rsd+xml" href="{% url 'zinnia_rsd' %}" /> | |
</td></tr> | |
<tr><th>14</th> | |
<td> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="{% url 'zinnia_wlwmanifest' %}" /> | |
</td></tr> | |
<tr><th>15</th> | |
<td> <link rel="search" | |
type="application/opensearchdescription+xml" title="Zinnia's Blog" | |
href="{% url 'zinnia_opensearch' %}" /> | |
</td></tr> | |
<tr><th>16</th> | |
<td> <link rel="alternate" type="application/rss+xml" | |
title="{% trans "RSS Feed of latest entries" %}" href="{% url | |
'zinnia_entry_latest_feed' %}" /> | |
</td></tr> | |
<tr><th>17</th> | |
<td> <link rel="alternate" type="application/rss+xml" | |
title="{% trans "RSS Feed of latest discussions" %}" href="{% url | |
'zinnia_discussion_latest_feed' %}" /> | |
</td></tr> | |
<tr class="error"><th>18</th> | |
<td> <span class="specific">{% get_archives_entries "zinnia/tags/archives_entries_link.html" %}</span> | |
</td></tr> | |
<tr><th>19</th> | |
<td>{% endblock link %} | |
</td></tr> | |
<tr><th>20</th> | |
<td> | |
</td></tr> | |
<tr><th>21</th> | |
<td>{% block breadcrumbs %} | |
</td></tr> | |
<tr><th>22</th> | |
<td> {% zinnia_breadcrumbs %} | |
</td></tr> | |
<tr><th>23</th> | |
<td>{% endblock breadcrumbs %} | |
</td></tr> | |
<tr><th>24</th> | |
<td> | |
</td></tr> | |
<tr><th>25</th> | |
<td>{% block sidebar %} | |
</td></tr> | |
<tr><th>26</th> | |
<td><div id="widget-welcome" class="widget"> | |
</td></tr> | |
<tr><th>27</th> | |
<td> <h3>{% trans "Welcome!" %}</h3> | |
</td></tr> | |
<tr><th>28</th> | |
<td> <p> | |
</td></tr> | |
</tbody></table> | |
</div> | |
<div id="traceback"> | |
<h2>Traceback <span class="commands"><a href="#" onclick="return switchPastebinFriendly(this);">Switch to copy-and-paste view</a></span></h2> | |
<div id="browserTraceback"> | |
<ul class="traceback"> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/core/handlers/base.py</code> in <code>get_response</code> | |
<div class="context" id="c3021241996"> | |
<ol style="display: none;" start="132" class="pre-context" id="pre3021241996"><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> raise ValueError("The view %s.%s didn't return an HttpResponse object." % (callback.__module__, view_name))</pre></li><li onclick="toggle('pre3021241996', 'post3021241996')"><pre></pre></li><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> # If the response supports deferred rendering, apply template</pre></li><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> # response middleware and then render the response</pre></li><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> if hasattr(response, 'render') and callable(response.render):</pre></li><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> for middleware_method in self._template_response_middleware:</pre></li><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> response = middleware_method(request, response)</pre></li></ol> | |
<ol start="139" class="context-line"><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> response = response.render()</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="140" class="post-context" id="post3021241996"><li onclick="toggle('pre3021241996', 'post3021241996')"><pre></pre></li><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> except http.Http404 as e:</pre></li><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> logger.warning('Not Found: %s', request.path,</pre></li><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> extra={</pre></li><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> 'status_code': 404,</pre></li><li onclick="toggle('pre3021241996', 'post3021241996')"><pre> 'request': request</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021241996')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021241996"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>callback_args</td> | |
<td class="code"><pre>()</pre></td> | |
</tr> | |
<tr> | |
<td>resolver_match</td> | |
<td class="code"><pre>ResolverMatch(func=<function EntryIndex at 0xb5c8879c>, args=(), kwargs={}, url_name='zinnia_entry_archive_index', app_name='None', namespace='')</pre></td> | |
</tr> | |
<tr> | |
<td>middleware_method</td> | |
<td class="code"><pre><bound method CsrfViewMiddleware.process_view of <django.middleware.csrf.CsrfViewMiddleware object at 0xb68abe8c>></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.core.handlers.wsgi.WSGIHandler object at 0xb68a2e0c></pre></td> | |
</tr> | |
<tr> | |
<td>request</td> | |
<td class="code"><pre>'<WSGIRequest\npath:/,\nGET:<QueryDict: {}>,\nPOST:<QueryDict: {}>,\nCOOKIES:{\'BUGLIST\': \'55%3A56%3A77%3A79\',\n \'DEFAULTFORMAT\': \'advanced\',\n \'LASTORDER\': \'target_milestone%2Cpriority%2Cbug_severity\',\n \'SPLITHEADER\': \'1\',\n \'VERSION-Ideas\': \'unspecified\',\n \'VERSION-Sword\': \'unspecified\',\n \'VERSION-elasmotherium\': \'unspecified\',\n \'VERSION-hesla\': \'unspecified\',\n \'VERSION-html2text\': \'unspecified\',\n \'VERSION-importLDIF\': \'unspecified\',\n \'VERSION-inkscape-ungroup-deep\': \'unspecified\',\n \'VERSION-m2crypto\': \'unspecified\',\n \'__qca\': \'P0-24573179-1354658075160\',\n \'csrftoken\': \'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK\',\n \'messages\': \'77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\" was changed successfully."],["__json_message",0,25,"The site \\\\"luther.ceplovi.cz:8000\\\\" was changed successfully."]]\',\n \'sessionid\': \'i1okuhgvrnr4cy0clkp85or1os6bemj0\'},\nMETA:{\'CONTENT_LENGTH\': \'\',\n \'CONTENT_TYPE\': \'text/plain\',\n u\'CSRF_COOKIE\': u\'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK\',\n \'CVS_RSH\': \'ssh\',\n \'DJANGO_SETTINGS_MODULE\': \'myblog.settings\',\n \'GATEWAY_INTERFACE\': \'CGI/1.1\',\n \'G_BROKEN_FILENAMES\': \'1\',\n \'HISTCONTROL\': \'ignoredups\',\n \'HISTSIZE\': \'1000\',\n \'HOME\': \'/home/matej\',\n \'HOSTNAME\': \'luther\',\n \'HTTP_ACCEPT\': \'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\',\n \'HTTP_ACCEPT_ENCODING\': \'gzip, deflate\',\n \'HTTP_ACCEPT_LANGUAGE\': \'cs,en-us;q=0.5\',\n \'HTTP_CONNECTION\': \'keep-alive\',\n \'HTTP_COOKIE\': \'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\\\"__json_message\\\\"\\\\0540\\\\05425\\\\054\\\\"Successfully deleted 2 users.\\\\"]\\\\054[\\\\"__json_message\\\\"\\\\0540\\\\05425\\\\054\\\\"Successfully deleted 61 entries.\\\\"]\\\\054[\\\\"__json_message\\\\"\\\\0540\\\\05425\\\\054\\\\"Successfully deleted 100 comments.\\\\"]\\\\054[\\\\"__json_message\\\\"\\\\0540\\\\05425\\\\054\\\\"Successfully deleted 38 comments.\\\\"]\\\\054[\\\\"__json_message\\\\"\\\\0540\\\\05425\\\\054\\\\"Successfully deleted 1 user.\\\\"]\\\\054[\\\\"__json_message\\\\"\\\\0540\\\\05425\\\\054\\\\"Successfully deleted 1 site.\\\\"]\\\\054[\\\\"__json_message\\\\"\\\\0540\\\\05425\\\\054\\\\"Successfully deleted 10 tags.\\\\"]\\\\054[\\\\"__json_message\\\\"\\\\0540\\\\05425\\\\054\\\\"Successfully deleted 18 categories.\\\\"]\\\\054[\\\\"__json_message\\\\"\\\\0540\\\\05425\\\\054\\\\"The entry \\\\\\\\\\\\"Pan\\\\\\\\u00ed Hagenov\\\\\\\\u00e1 a pr\\\\\\\\u00e1vo azylu: published\\\\\\\\\\\\" was changed successfully.\\\\"]\\\\054[\\\\"__json_message\\\\"\\\\0540\\\\05425\\\\054\\\\"The site \\\\\\\\\\\\"luther.ceplovi.cz:8000\\\\\\\\\\\\" was changed successfully.\\\\"]]"\',\n \'HTTP_DNT\': \'1\',\n \'HTTP_HOST\': \'luther.ceplovi.cz:8000\',\n \'HTTP_USER_AGENT\': \'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0\',\n \'LANG\': \'en_US.utf8\',\n \'LC_MEASUREMENT\': \'en_IE.utf8\',\n \'LC_MONETARY\': \'en_IE.utf8\',\n \'LC_NUMERIC\': \'en_IE.utf8\',\n \'LC_PAPER\': \'en_IE.utf8\',\n \'LC_TIME\': \'en_IE.utf8\',\n \'LESSOPEN\': \'|/usr/bin/lesspipe.sh %s\',\n \'LOGNAME\': \'matej\',\n \'LS_COLORS\': \'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:\',\n \'MAIL\': \'/var/spool/mail/matej\',\n \'OLDPWD\': \'/home/matej/djangoprojects\',\n \'PATH\': \'/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin\',\n \'PATH_INFO\': u\'/\',\n \'PS1\': \'(djangoprojects)[\\\\u@\\\\h \\\\W]\\\\$ \',\n \'PWD\': \'/home/matej/djangoprojects/coelodonta\',\n \'QUERY_STRING\': \'\',\n \'REMOTE_ADDR\': \'192.168.0.6\',\n \'REMOTE_HOST\': \'\',\n \'REQUEST_METHOD\': \'GET\',\n \'RUN_MAIN\': \'true\',\n \'SCRIPT_NAME\': u\'\',\n \'SELINUX_LEVEL_REQUESTED\': \'\',\n \'SELINUX_ROLE_REQUESTED\': \'\',\n \'SELINUX_USE_CURRENT_RANGE\': \'\',\n \'SERVER_NAME\': \'luther.ceplovi.cz\',\n \'SERVER_PORT\': \'8000\',\n \'SERVER_PROTOCOL\': \'HTTP/1.1\',\n \'SERVER_SOFTWARE\': \'WSGIServer/0.1 Python/2.6.6\',\n \'SHELL\': \'/bin/bash\',\n \'SHLVL\': \'1\',\n \'SSH_AUTH_SOCK\': \'/tmp/ssh-MPCzEU6754/agent.6754\',\n \'SSH_CLIENT\': \'192.168.0.6 49416 1304\',\n \'SSH_CONNECTION\': \'192.168.0.6 49416 192.168.0.13 1304\',\n \'SSH_TTY\': \'/dev/pts/1\',\n \'TERM\': \'xterm-256color\',\n \'TZ\': \'Europe/Prague\',\n \'USER\': \'matej\',\n \'VIRTUAL_ENV\': \'/home/matej/djangoprojects\',\n \'XMODIFIERS\': \'@im=ibus\',\n \'_\': \'/home/matej/djangoprojects/bin/python\',\n \'wsgi.errors\': <open file \'<stderr>\', mode \'w\' at 0xb77c70d0>,\n \'wsgi.file_wrapper\': <class wsgiref.util.FileWrapper at 0xa2c2f2c>,\n \'wsgi.input\': <socket._fileobject object at 0xb44037ac>,\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> | |
</tr> | |
<tr> | |
<td>callback</td> | |
<td class="code"><pre><function EntryIndex at 0xb5c8879c></pre></td> | |
</tr> | |
<tr> | |
<td>wrapped_callback</td> | |
<td class="code"><pre><function EntryIndex at 0xb5c8879c></pre></td> | |
</tr> | |
<tr> | |
<td>resolver</td> | |
<td class="code"><pre><RegexURLResolver 'myblog.urls' (None:None) ^/></pre></td> | |
</tr> | |
<tr> | |
<td>callback_kwargs</td> | |
<td class="code"><pre>{}</pre></td> | |
</tr> | |
<tr> | |
<td>response</td> | |
<td class="code"><pre><django.template.response.TemplateResponse object at 0xb44b488c></pre></td> | |
</tr> | |
<tr> | |
<td>urlconf</td> | |
<td class="code"><pre>'myblog.urls'</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/response.py</code> in <code>render</code> | |
<div class="context" id="c3021241276"> | |
<ol style="display: none;" start="98" class="pre-context" id="pre3021241276"><li onclick="toggle('pre3021241276', 'post3021241276')"><pre></pre></li><li onclick="toggle('pre3021241276', 'post3021241276')"><pre> If the content has already been rendered, this is a no-op.</pre></li><li onclick="toggle('pre3021241276', 'post3021241276')"><pre></pre></li><li onclick="toggle('pre3021241276', 'post3021241276')"><pre> Returns the baked response instance.</pre></li><li onclick="toggle('pre3021241276', 'post3021241276')"><pre> """</pre></li><li onclick="toggle('pre3021241276', 'post3021241276')"><pre> retval = self</pre></li><li onclick="toggle('pre3021241276', 'post3021241276')"><pre> if not self._is_rendered:</pre></li></ol> | |
<ol start="105" class="context-line"><li onclick="toggle('pre3021241276', 'post3021241276')"><pre> self.content = self.rendered_content</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="106" class="post-context" id="post3021241276"><li onclick="toggle('pre3021241276', 'post3021241276')"><pre> for post_callback in self._post_render_callbacks:</pre></li><li onclick="toggle('pre3021241276', 'post3021241276')"><pre> newretval = post_callback(retval)</pre></li><li onclick="toggle('pre3021241276', 'post3021241276')"><pre> if newretval is not None:</pre></li><li onclick="toggle('pre3021241276', 'post3021241276')"><pre> retval = newretval</pre></li><li onclick="toggle('pre3021241276', 'post3021241276')"><pre> return retval</pre></li><li onclick="toggle('pre3021241276', 'post3021241276')"><pre></pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021241276')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021241276"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.template.response.TemplateResponse object at 0xb44b488c></pre></td> | |
</tr> | |
<tr> | |
<td>retval</td> | |
<td class="code"><pre><django.template.response.TemplateResponse object at 0xb44b488c></pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/response.py</code> in <code>rendered_content</code> | |
<div class="context" id="c3021241436"> | |
<ol style="display: none;" start="75" class="pre-context" id="pre3021241436"><li onclick="toggle('pre3021241436', 'post3021241436')"><pre></pre></li><li onclick="toggle('pre3021241436', 'post3021241436')"><pre> This *does not* set the final content of the response. To set the</pre></li><li onclick="toggle('pre3021241436', 'post3021241436')"><pre> response content, you must either call render(), or set the</pre></li><li onclick="toggle('pre3021241436', 'post3021241436')"><pre> content explicitly using the value of this property.</pre></li><li onclick="toggle('pre3021241436', 'post3021241436')"><pre> """</pre></li><li onclick="toggle('pre3021241436', 'post3021241436')"><pre> template = self.resolve_template(self.template_name)</pre></li><li onclick="toggle('pre3021241436', 'post3021241436')"><pre> context = self.resolve_context(self.context_data)</pre></li></ol> | |
<ol start="82" class="context-line"><li onclick="toggle('pre3021241436', 'post3021241436')"><pre> content = template.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="83" class="post-context" id="post3021241436"><li onclick="toggle('pre3021241436', 'post3021241436')"><pre> return content</pre></li><li onclick="toggle('pre3021241436', 'post3021241436')"><pre></pre></li><li onclick="toggle('pre3021241436', 'post3021241436')"><pre> def add_post_render_callback(self, callback):</pre></li><li onclick="toggle('pre3021241436', 'post3021241436')"><pre> """Adds a new post-rendering callback.</pre></li><li onclick="toggle('pre3021241436', 'post3021241436')"><pre></pre></li><li onclick="toggle('pre3021241436', 'post3021241436')"><pre> If the response has already been rendered,</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021241436')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021241436"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.template.response.TemplateResponse object at 0xb44b488c></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
<tr> | |
<td>template</td> | |
<td class="code"><pre><django.template.base.Template object at 0xb44b4e6c></pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>render</code> | |
<div class="context" id="c3021238556"> | |
<ol style="display: none;" start="133" class="pre-context" id="pre3021238556"><li onclick="toggle('pre3021238556', 'post3021238556')"><pre> def _render(self, context):</pre></li><li onclick="toggle('pre3021238556', 'post3021238556')"><pre> return self.nodelist.render(context)</pre></li><li onclick="toggle('pre3021238556', 'post3021238556')"><pre></pre></li><li onclick="toggle('pre3021238556', 'post3021238556')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021238556', 'post3021238556')"><pre> "Display stage -- can be called many times"</pre></li><li onclick="toggle('pre3021238556', 'post3021238556')"><pre> context.render_context.push()</pre></li><li onclick="toggle('pre3021238556', 'post3021238556')"><pre> try:</pre></li></ol> | |
<ol start="140" class="context-line"><li onclick="toggle('pre3021238556', 'post3021238556')"><pre> return self._render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="141" class="post-context" id="post3021238556"><li onclick="toggle('pre3021238556', 'post3021238556')"><pre> finally:</pre></li><li onclick="toggle('pre3021238556', 'post3021238556')"><pre> context.render_context.pop()</pre></li><li onclick="toggle('pre3021238556', 'post3021238556')"><pre></pre></li><li onclick="toggle('pre3021238556', 'post3021238556')"><pre>def compile_string(template_string, origin):</pre></li><li onclick="toggle('pre3021238556', 'post3021238556')"><pre> "Compiles template_string into NodeList ready for rendering"</pre></li><li onclick="toggle('pre3021238556', 'post3021238556')"><pre> if settings.TEMPLATE_DEBUG:</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021238556')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021238556"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.template.base.Template object at 0xb44b4e6c></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>_render</code> | |
<div class="context" id="c3021238636"> | |
<ol style="display: none;" start="127" class="pre-context" id="pre3021238636"><li onclick="toggle('pre3021238636', 'post3021238636')"><pre></pre></li><li onclick="toggle('pre3021238636', 'post3021238636')"><pre> def __iter__(self):</pre></li><li onclick="toggle('pre3021238636', 'post3021238636')"><pre> for node in self.nodelist:</pre></li><li onclick="toggle('pre3021238636', 'post3021238636')"><pre> for subnode in node:</pre></li><li onclick="toggle('pre3021238636', 'post3021238636')"><pre> yield subnode</pre></li><li onclick="toggle('pre3021238636', 'post3021238636')"><pre></pre></li><li onclick="toggle('pre3021238636', 'post3021238636')"><pre> def _render(self, context):</pre></li></ol> | |
<ol start="134" class="context-line"><li onclick="toggle('pre3021238636', 'post3021238636')"><pre> return self.nodelist.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="135" class="post-context" id="post3021238636"><li onclick="toggle('pre3021238636', 'post3021238636')"><pre></pre></li><li onclick="toggle('pre3021238636', 'post3021238636')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021238636', 'post3021238636')"><pre> "Display stage -- can be called many times"</pre></li><li onclick="toggle('pre3021238636', 'post3021238636')"><pre> context.render_context.push()</pre></li><li onclick="toggle('pre3021238636', 'post3021238636')"><pre> try:</pre></li><li onclick="toggle('pre3021238636', 'post3021238636')"><pre> return self._render(context)</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021238636')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021238636"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.template.base.Template object at 0xb44b4e6c></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>render</code> | |
<div class="context" id="c3021239956"> | |
<ol style="display: none;" start="833" class="pre-context" id="pre3021239956"><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> # extend_nodelist().</pre></li><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> contains_nontext = False</pre></li><li onclick="toggle('pre3021239956', 'post3021239956')"><pre></pre></li><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> bits = []</pre></li><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> for node in self:</pre></li><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> if isinstance(node, Node):</pre></li></ol> | |
<ol start="840" class="context-line"><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> bit = self.render_node(node, context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="841" class="post-context" id="post3021239956"><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> else:</pre></li><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> bit = node</pre></li><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> bits.append(force_text(bit))</pre></li><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> return mark_safe(''.join(bits))</pre></li><li onclick="toggle('pre3021239956', 'post3021239956')"><pre></pre></li><li onclick="toggle('pre3021239956', 'post3021239956')"><pre> def get_nodes_by_type(self, nodetype):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021239956')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021239956"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia/entry_list.html"></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<ExtendsNode: extends "zinnia/entry_list.html">]</pre></td> | |
</tr> | |
<tr> | |
<td>bits</td> | |
<td class="code"><pre>[]</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py</code> in <code>render_node</code> | |
<div class="context" id="c3021239796"> | |
<ol style="display: none;" start="71" class="pre-context" id="pre3021239796"><li onclick="toggle('pre3021239796', 'post3021239796')"><pre> def compile_function_error(self, token, e):</pre></li><li onclick="toggle('pre3021239796', 'post3021239796')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021239796', 'post3021239796')"><pre> e.django_template_source = token.source</pre></li><li onclick="toggle('pre3021239796', 'post3021239796')"><pre></pre></li><li onclick="toggle('pre3021239796', 'post3021239796')"><pre>class DebugNodeList(NodeList):</pre></li><li onclick="toggle('pre3021239796', 'post3021239796')"><pre> def render_node(self, node, context):</pre></li><li onclick="toggle('pre3021239796', 'post3021239796')"><pre> try:</pre></li></ol> | |
<ol start="78" class="context-line"><li onclick="toggle('pre3021239796', 'post3021239796')"><pre> return node.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="79" class="post-context" id="post3021239796"><li onclick="toggle('pre3021239796', 'post3021239796')"><pre> except Exception as e:</pre></li><li onclick="toggle('pre3021239796', 'post3021239796')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021239796', 'post3021239796')"><pre> e.django_template_source = node.source</pre></li><li onclick="toggle('pre3021239796', 'post3021239796')"><pre> raise</pre></li><li onclick="toggle('pre3021239796', 'post3021239796')"><pre></pre></li><li onclick="toggle('pre3021239796', 'post3021239796')"><pre></pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021239796')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021239796"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia/entry_list.html"></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<ExtendsNode: extends "zinnia/entry_list.html">]</pre></td> | |
</tr> | |
<tr> | |
<td>e</td> | |
<td class="code"><pre>AssertionError("'creation_date' is a DateTimeField, not a DateField.",)</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py</code> in <code>render</code> | |
<div class="context" id="c3021238836"> | |
<ol style="display: none;" start="116" class="pre-context" id="pre3021238836"><li onclick="toggle('pre3021238836', 'post3021238836')"><pre> blocks = dict([(n.name, n) for n in</pre></li><li onclick="toggle('pre3021238836', 'post3021238836')"><pre> compiled_parent.nodelist.get_nodes_by_type(BlockNode)])</pre></li><li onclick="toggle('pre3021238836', 'post3021238836')"><pre> block_context.add_blocks(blocks)</pre></li><li onclick="toggle('pre3021238836', 'post3021238836')"><pre> break</pre></li><li onclick="toggle('pre3021238836', 'post3021238836')"><pre></pre></li><li onclick="toggle('pre3021238836', 'post3021238836')"><pre> # Call Template._render explicitly so the parser context stays</pre></li><li onclick="toggle('pre3021238836', 'post3021238836')"><pre> # the same.</pre></li></ol> | |
<ol start="123" class="context-line"><li onclick="toggle('pre3021238836', 'post3021238836')"><pre> return compiled_parent._render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="124" class="post-context" id="post3021238836"><li onclick="toggle('pre3021238836', 'post3021238836')"><pre></pre></li><li onclick="toggle('pre3021238836', 'post3021238836')"><pre>class BaseIncludeNode(Node):</pre></li><li onclick="toggle('pre3021238836', 'post3021238836')"><pre> def __init__(self, *args, **kwargs):</pre></li><li onclick="toggle('pre3021238836', 'post3021238836')"><pre> self.extra_context = kwargs.pop('extra_context', {})</pre></li><li onclick="toggle('pre3021238836', 'post3021238836')"><pre> self.isolated_context = kwargs.pop('isolated_context', False)</pre></li><li onclick="toggle('pre3021238836', 'post3021238836')"><pre> super(BaseIncludeNode, self).__init__(*args, **kwargs)</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021238836')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021238836"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia/base.html"></pre></td> | |
</tr> | |
<tr> | |
<td>block_context</td> | |
<td class="code"><pre><django.template.loader_tags.BlockContext object at 0xb448748c></pre></td> | |
</tr> | |
<tr> | |
<td>compiled_parent</td> | |
<td class="code"><pre><django.template.base.Template object at 0xb44cadac></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia/entry_list.html"></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>_render</code> | |
<div class="context" id="c3021240476"> | |
<ol style="display: none;" start="127" class="pre-context" id="pre3021240476"><li onclick="toggle('pre3021240476', 'post3021240476')"><pre></pre></li><li onclick="toggle('pre3021240476', 'post3021240476')"><pre> def __iter__(self):</pre></li><li onclick="toggle('pre3021240476', 'post3021240476')"><pre> for node in self.nodelist:</pre></li><li onclick="toggle('pre3021240476', 'post3021240476')"><pre> for subnode in node:</pre></li><li onclick="toggle('pre3021240476', 'post3021240476')"><pre> yield subnode</pre></li><li onclick="toggle('pre3021240476', 'post3021240476')"><pre></pre></li><li onclick="toggle('pre3021240476', 'post3021240476')"><pre> def _render(self, context):</pre></li></ol> | |
<ol start="134" class="context-line"><li onclick="toggle('pre3021240476', 'post3021240476')"><pre> return self.nodelist.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="135" class="post-context" id="post3021240476"><li onclick="toggle('pre3021240476', 'post3021240476')"><pre></pre></li><li onclick="toggle('pre3021240476', 'post3021240476')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021240476', 'post3021240476')"><pre> "Display stage -- can be called many times"</pre></li><li onclick="toggle('pre3021240476', 'post3021240476')"><pre> context.render_context.push()</pre></li><li onclick="toggle('pre3021240476', 'post3021240476')"><pre> try:</pre></li><li onclick="toggle('pre3021240476', 'post3021240476')"><pre> return self._render(context)</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021240476')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021240476"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.template.base.Template object at 0xb44cadac></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>render</code> | |
<div class="context" id="c3021239836"> | |
<ol style="display: none;" start="833" class="pre-context" id="pre3021239836"><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> # extend_nodelist().</pre></li><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> contains_nontext = False</pre></li><li onclick="toggle('pre3021239836', 'post3021239836')"><pre></pre></li><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> bits = []</pre></li><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> for node in self:</pre></li><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> if isinstance(node, Node):</pre></li></ol> | |
<ol start="840" class="context-line"><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> bit = self.render_node(node, context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="841" class="post-context" id="post3021239836"><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> else:</pre></li><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> bit = node</pre></li><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> bits.append(force_text(bit))</pre></li><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> return mark_safe(''.join(bits))</pre></li><li onclick="toggle('pre3021239836', 'post3021239836')"><pre></pre></li><li onclick="toggle('pre3021239836', 'post3021239836')"><pre> def get_nodes_by_type(self, nodetype):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021239836')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021239836"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia/base.html"></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<ExtendsNode: extends "zinnia/base.html">]</pre></td> | |
</tr> | |
<tr> | |
<td>bits</td> | |
<td class="code"><pre>[]</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py</code> in <code>render_node</code> | |
<div class="context" id="c3021240396"> | |
<ol style="display: none;" start="71" class="pre-context" id="pre3021240396"><li onclick="toggle('pre3021240396', 'post3021240396')"><pre> def compile_function_error(self, token, e):</pre></li><li onclick="toggle('pre3021240396', 'post3021240396')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021240396', 'post3021240396')"><pre> e.django_template_source = token.source</pre></li><li onclick="toggle('pre3021240396', 'post3021240396')"><pre></pre></li><li onclick="toggle('pre3021240396', 'post3021240396')"><pre>class DebugNodeList(NodeList):</pre></li><li onclick="toggle('pre3021240396', 'post3021240396')"><pre> def render_node(self, node, context):</pre></li><li onclick="toggle('pre3021240396', 'post3021240396')"><pre> try:</pre></li></ol> | |
<ol start="78" class="context-line"><li onclick="toggle('pre3021240396', 'post3021240396')"><pre> return node.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="79" class="post-context" id="post3021240396"><li onclick="toggle('pre3021240396', 'post3021240396')"><pre> except Exception as e:</pre></li><li onclick="toggle('pre3021240396', 'post3021240396')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021240396', 'post3021240396')"><pre> e.django_template_source = node.source</pre></li><li onclick="toggle('pre3021240396', 'post3021240396')"><pre> raise</pre></li><li onclick="toggle('pre3021240396', 'post3021240396')"><pre></pre></li><li onclick="toggle('pre3021240396', 'post3021240396')"><pre></pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021240396')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021240396"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia/base.html"></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<ExtendsNode: extends "zinnia/base.html">]</pre></td> | |
</tr> | |
<tr> | |
<td>e</td> | |
<td class="code"><pre>AssertionError("'creation_date' is a DateTimeField, not a DateField.",)</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py</code> in <code>render</code> | |
<div class="context" id="c3021239876"> | |
<ol style="display: none;" start="116" class="pre-context" id="pre3021239876"><li onclick="toggle('pre3021239876', 'post3021239876')"><pre> blocks = dict([(n.name, n) for n in</pre></li><li onclick="toggle('pre3021239876', 'post3021239876')"><pre> compiled_parent.nodelist.get_nodes_by_type(BlockNode)])</pre></li><li onclick="toggle('pre3021239876', 'post3021239876')"><pre> block_context.add_blocks(blocks)</pre></li><li onclick="toggle('pre3021239876', 'post3021239876')"><pre> break</pre></li><li onclick="toggle('pre3021239876', 'post3021239876')"><pre></pre></li><li onclick="toggle('pre3021239876', 'post3021239876')"><pre> # Call Template._render explicitly so the parser context stays</pre></li><li onclick="toggle('pre3021239876', 'post3021239876')"><pre> # the same.</pre></li></ol> | |
<ol start="123" class="context-line"><li onclick="toggle('pre3021239876', 'post3021239876')"><pre> return compiled_parent._render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="124" class="post-context" id="post3021239876"><li onclick="toggle('pre3021239876', 'post3021239876')"><pre></pre></li><li onclick="toggle('pre3021239876', 'post3021239876')"><pre>class BaseIncludeNode(Node):</pre></li><li onclick="toggle('pre3021239876', 'post3021239876')"><pre> def __init__(self, *args, **kwargs):</pre></li><li onclick="toggle('pre3021239876', 'post3021239876')"><pre> self.extra_context = kwargs.pop('extra_context', {})</pre></li><li onclick="toggle('pre3021239876', 'post3021239876')"><pre> self.isolated_context = kwargs.pop('isolated_context', False)</pre></li><li onclick="toggle('pre3021239876', 'post3021239876')"><pre> super(BaseIncludeNode, self).__init__(*args, **kwargs)</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021239876')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021239876"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia:zinnia/base.html"></pre></td> | |
</tr> | |
<tr> | |
<td>block_context</td> | |
<td class="code"><pre><django.template.loader_tags.BlockContext object at 0xb448748c></pre></td> | |
</tr> | |
<tr> | |
<td>compiled_parent</td> | |
<td class="code"><pre><django.template.base.Template object at 0xb44a12ac></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia/base.html"></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>_render</code> | |
<div class="context" id="c3021241956"> | |
<ol style="display: none;" start="127" class="pre-context" id="pre3021241956"><li onclick="toggle('pre3021241956', 'post3021241956')"><pre></pre></li><li onclick="toggle('pre3021241956', 'post3021241956')"><pre> def __iter__(self):</pre></li><li onclick="toggle('pre3021241956', 'post3021241956')"><pre> for node in self.nodelist:</pre></li><li onclick="toggle('pre3021241956', 'post3021241956')"><pre> for subnode in node:</pre></li><li onclick="toggle('pre3021241956', 'post3021241956')"><pre> yield subnode</pre></li><li onclick="toggle('pre3021241956', 'post3021241956')"><pre></pre></li><li onclick="toggle('pre3021241956', 'post3021241956')"><pre> def _render(self, context):</pre></li></ol> | |
<ol start="134" class="context-line"><li onclick="toggle('pre3021241956', 'post3021241956')"><pre> return self.nodelist.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="135" class="post-context" id="post3021241956"><li onclick="toggle('pre3021241956', 'post3021241956')"><pre></pre></li><li onclick="toggle('pre3021241956', 'post3021241956')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021241956', 'post3021241956')"><pre> "Display stage -- can be called many times"</pre></li><li onclick="toggle('pre3021241956', 'post3021241956')"><pre> context.render_context.push()</pre></li><li onclick="toggle('pre3021241956', 'post3021241956')"><pre> try:</pre></li><li onclick="toggle('pre3021241956', 'post3021241956')"><pre> return self._render(context)</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021241956')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021241956"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.template.base.Template object at 0xb44a12ac></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>render</code> | |
<div class="context" id="c3021239316"> | |
<ol style="display: none;" start="833" class="pre-context" id="pre3021239316"><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> # extend_nodelist().</pre></li><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> contains_nontext = False</pre></li><li onclick="toggle('pre3021239316', 'post3021239316')"><pre></pre></li><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> bits = []</pre></li><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> for node in self:</pre></li><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> if isinstance(node, Node):</pre></li></ol> | |
<ol start="840" class="context-line"><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> bit = self.render_node(node, context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="841" class="post-context" id="post3021239316"><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> else:</pre></li><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> bit = node</pre></li><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> bits.append(force_text(bit))</pre></li><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> return mark_safe(''.join(bits))</pre></li><li onclick="toggle('pre3021239316', 'post3021239316')"><pre></pre></li><li onclick="toggle('pre3021239316', 'post3021239316')"><pre> def get_nodes_by_type(self, nodetype):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021239316')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021239316"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia:zinnia/base.html"></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<ExtendsNode: extends "zinnia:zinnia/base.html">]</pre></td> | |
</tr> | |
<tr> | |
<td>bits</td> | |
<td class="code"><pre>[]</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py</code> in <code>render_node</code> | |
<div class="context" id="c3021240756"> | |
<ol style="display: none;" start="71" class="pre-context" id="pre3021240756"><li onclick="toggle('pre3021240756', 'post3021240756')"><pre> def compile_function_error(self, token, e):</pre></li><li onclick="toggle('pre3021240756', 'post3021240756')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021240756', 'post3021240756')"><pre> e.django_template_source = token.source</pre></li><li onclick="toggle('pre3021240756', 'post3021240756')"><pre></pre></li><li onclick="toggle('pre3021240756', 'post3021240756')"><pre>class DebugNodeList(NodeList):</pre></li><li onclick="toggle('pre3021240756', 'post3021240756')"><pre> def render_node(self, node, context):</pre></li><li onclick="toggle('pre3021240756', 'post3021240756')"><pre> try:</pre></li></ol> | |
<ol start="78" class="context-line"><li onclick="toggle('pre3021240756', 'post3021240756')"><pre> return node.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="79" class="post-context" id="post3021240756"><li onclick="toggle('pre3021240756', 'post3021240756')"><pre> except Exception as e:</pre></li><li onclick="toggle('pre3021240756', 'post3021240756')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021240756', 'post3021240756')"><pre> e.django_template_source = node.source</pre></li><li onclick="toggle('pre3021240756', 'post3021240756')"><pre> raise</pre></li><li onclick="toggle('pre3021240756', 'post3021240756')"><pre></pre></li><li onclick="toggle('pre3021240756', 'post3021240756')"><pre></pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021240756')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021240756"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia:zinnia/base.html"></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<ExtendsNode: extends "zinnia:zinnia/base.html">]</pre></td> | |
</tr> | |
<tr> | |
<td>e</td> | |
<td class="code"><pre>AssertionError("'creation_date' is a DateTimeField, not a DateField.",)</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py</code> in <code>render</code> | |
<div class="context" id="c3021240996"> | |
<ol style="display: none;" start="116" class="pre-context" id="pre3021240996"><li onclick="toggle('pre3021240996', 'post3021240996')"><pre> blocks = dict([(n.name, n) for n in</pre></li><li onclick="toggle('pre3021240996', 'post3021240996')"><pre> compiled_parent.nodelist.get_nodes_by_type(BlockNode)])</pre></li><li onclick="toggle('pre3021240996', 'post3021240996')"><pre> block_context.add_blocks(blocks)</pre></li><li onclick="toggle('pre3021240996', 'post3021240996')"><pre> break</pre></li><li onclick="toggle('pre3021240996', 'post3021240996')"><pre></pre></li><li onclick="toggle('pre3021240996', 'post3021240996')"><pre> # Call Template._render explicitly so the parser context stays</pre></li><li onclick="toggle('pre3021240996', 'post3021240996')"><pre> # the same.</pre></li></ol> | |
<ol start="123" class="context-line"><li onclick="toggle('pre3021240996', 'post3021240996')"><pre> return compiled_parent._render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="124" class="post-context" id="post3021240996"><li onclick="toggle('pre3021240996', 'post3021240996')"><pre></pre></li><li onclick="toggle('pre3021240996', 'post3021240996')"><pre>class BaseIncludeNode(Node):</pre></li><li onclick="toggle('pre3021240996', 'post3021240996')"><pre> def __init__(self, *args, **kwargs):</pre></li><li onclick="toggle('pre3021240996', 'post3021240996')"><pre> self.extra_context = kwargs.pop('extra_context', {})</pre></li><li onclick="toggle('pre3021240996', 'post3021240996')"><pre> self.isolated_context = kwargs.pop('isolated_context', False)</pre></li><li onclick="toggle('pre3021240996', 'post3021240996')"><pre> super(BaseIncludeNode, self).__init__(*args, **kwargs)</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021240996')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021240996"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia/skeleton.html"></pre></td> | |
</tr> | |
<tr> | |
<td>block_context</td> | |
<td class="code"><pre><django.template.loader_tags.BlockContext object at 0xb448748c></pre></td> | |
</tr> | |
<tr> | |
<td>compiled_parent</td> | |
<td class="code"><pre><django.template.base.Template object at 0xb420aa8c></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia:zinnia/base.html"></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>_render</code> | |
<div class="context" id="c3021239436"> | |
<ol style="display: none;" start="127" class="pre-context" id="pre3021239436"><li onclick="toggle('pre3021239436', 'post3021239436')"><pre></pre></li><li onclick="toggle('pre3021239436', 'post3021239436')"><pre> def __iter__(self):</pre></li><li onclick="toggle('pre3021239436', 'post3021239436')"><pre> for node in self.nodelist:</pre></li><li onclick="toggle('pre3021239436', 'post3021239436')"><pre> for subnode in node:</pre></li><li onclick="toggle('pre3021239436', 'post3021239436')"><pre> yield subnode</pre></li><li onclick="toggle('pre3021239436', 'post3021239436')"><pre></pre></li><li onclick="toggle('pre3021239436', 'post3021239436')"><pre> def _render(self, context):</pre></li></ol> | |
<ol start="134" class="context-line"><li onclick="toggle('pre3021239436', 'post3021239436')"><pre> return self.nodelist.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="135" class="post-context" id="post3021239436"><li onclick="toggle('pre3021239436', 'post3021239436')"><pre></pre></li><li onclick="toggle('pre3021239436', 'post3021239436')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021239436', 'post3021239436')"><pre> "Display stage -- can be called many times"</pre></li><li onclick="toggle('pre3021239436', 'post3021239436')"><pre> context.render_context.push()</pre></li><li onclick="toggle('pre3021239436', 'post3021239436')"><pre> try:</pre></li><li onclick="toggle('pre3021239436', 'post3021239436')"><pre> return self._render(context)</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021239436')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021239436"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.template.base.Template object at 0xb420aa8c></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>render</code> | |
<div class="context" id="c3021239556"> | |
<ol style="display: none;" start="833" class="pre-context" id="pre3021239556"><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> # extend_nodelist().</pre></li><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> contains_nontext = False</pre></li><li onclick="toggle('pre3021239556', 'post3021239556')"><pre></pre></li><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> bits = []</pre></li><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> for node in self:</pre></li><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> if isinstance(node, Node):</pre></li></ol> | |
<ol start="840" class="context-line"><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> bit = self.render_node(node, context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="841" class="post-context" id="post3021239556"><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> else:</pre></li><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> bit = node</pre></li><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> bits.append(force_text(bit))</pre></li><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> return mark_safe(''.join(bits))</pre></li><li onclick="toggle('pre3021239556', 'post3021239556')"><pre></pre></li><li onclick="toggle('pre3021239556', 'post3021239556')"><pre> def get_nodes_by_type(self, nodetype):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021239556')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021239556"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia/skeleton.html"></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<ExtendsNode: extends "zinnia/skeleton.html">]</pre></td> | |
</tr> | |
<tr> | |
<td>bits</td> | |
<td class="code"><pre>[]</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py</code> in <code>render_node</code> | |
<div class="context" id="c3021241836"> | |
<ol style="display: none;" start="71" class="pre-context" id="pre3021241836"><li onclick="toggle('pre3021241836', 'post3021241836')"><pre> def compile_function_error(self, token, e):</pre></li><li onclick="toggle('pre3021241836', 'post3021241836')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021241836', 'post3021241836')"><pre> e.django_template_source = token.source</pre></li><li onclick="toggle('pre3021241836', 'post3021241836')"><pre></pre></li><li onclick="toggle('pre3021241836', 'post3021241836')"><pre>class DebugNodeList(NodeList):</pre></li><li onclick="toggle('pre3021241836', 'post3021241836')"><pre> def render_node(self, node, context):</pre></li><li onclick="toggle('pre3021241836', 'post3021241836')"><pre> try:</pre></li></ol> | |
<ol start="78" class="context-line"><li onclick="toggle('pre3021241836', 'post3021241836')"><pre> return node.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="79" class="post-context" id="post3021241836"><li onclick="toggle('pre3021241836', 'post3021241836')"><pre> except Exception as e:</pre></li><li onclick="toggle('pre3021241836', 'post3021241836')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021241836', 'post3021241836')"><pre> e.django_template_source = node.source</pre></li><li onclick="toggle('pre3021241836', 'post3021241836')"><pre> raise</pre></li><li onclick="toggle('pre3021241836', 'post3021241836')"><pre></pre></li><li onclick="toggle('pre3021241836', 'post3021241836')"><pre></pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021241836')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021241836"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia/skeleton.html"></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<ExtendsNode: extends "zinnia/skeleton.html">]</pre></td> | |
</tr> | |
<tr> | |
<td>e</td> | |
<td class="code"><pre>AssertionError("'creation_date' is a DateTimeField, not a DateField.",)</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py</code> in <code>render</code> | |
<div class="context" id="c3021240116"> | |
<ol style="display: none;" start="116" class="pre-context" id="pre3021240116"><li onclick="toggle('pre3021240116', 'post3021240116')"><pre> blocks = dict([(n.name, n) for n in</pre></li><li onclick="toggle('pre3021240116', 'post3021240116')"><pre> compiled_parent.nodelist.get_nodes_by_type(BlockNode)])</pre></li><li onclick="toggle('pre3021240116', 'post3021240116')"><pre> block_context.add_blocks(blocks)</pre></li><li onclick="toggle('pre3021240116', 'post3021240116')"><pre> break</pre></li><li onclick="toggle('pre3021240116', 'post3021240116')"><pre></pre></li><li onclick="toggle('pre3021240116', 'post3021240116')"><pre> # Call Template._render explicitly so the parser context stays</pre></li><li onclick="toggle('pre3021240116', 'post3021240116')"><pre> # the same.</pre></li></ol> | |
<ol start="123" class="context-line"><li onclick="toggle('pre3021240116', 'post3021240116')"><pre> return compiled_parent._render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="124" class="post-context" id="post3021240116"><li onclick="toggle('pre3021240116', 'post3021240116')"><pre></pre></li><li onclick="toggle('pre3021240116', 'post3021240116')"><pre>class BaseIncludeNode(Node):</pre></li><li onclick="toggle('pre3021240116', 'post3021240116')"><pre> def __init__(self, *args, **kwargs):</pre></li><li onclick="toggle('pre3021240116', 'post3021240116')"><pre> self.extra_context = kwargs.pop('extra_context', {})</pre></li><li onclick="toggle('pre3021240116', 'post3021240116')"><pre> self.isolated_context = kwargs.pop('isolated_context', False)</pre></li><li onclick="toggle('pre3021240116', 'post3021240116')"><pre> super(BaseIncludeNode, self).__init__(*args, **kwargs)</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021240116')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021240116"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><django.template.defaulttags.LoadNode object at 0xb422482c></pre></td> | |
</tr> | |
<tr> | |
<td>blocks</td> | |
<td class="code"><pre>{u'body-class': <Block Node: body-class. Contents: []>, | |
u'breadcrumbs': <Block Node: breadcrumbs. Contents: []>, | |
u'content': <Block Node: content. Contents: [<Text Node: ' | |
<div class="li'>, <django.templatetags.i18n.TranslateNode object at 0xb428ff8c>, <Text Node: '</h3> | |
<ul> | |
'>, <django.template.defaulttags.URLNode object at 0xb40aaa6c>, <Text Node: '" title="'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa78c>, <Text Node: '"> | |
'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa88c>, <Text Node: ' | |
</a> | |
'>, <django.template.defaulttags.URLNode object at 0xb40aa76c>, <Text Node: '" title="'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa18c>, <Text Node: '"> | |
'>, <django.templatetags.i18n.TranslateNode object at 0xb40aaf0c>, <Text Node: ' | |
</a> | |
'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa6ec>, <Text Node: '</h3> | |
'>, <django.template.loader_tags.ConstantIncludeNode object at 0xb40aa0ec>, <Text Node: ' | |
</div> | |
'>]>, | |
u'link': <Block Node: link. Contents: []>, | |
u'meta': <Block Node: meta. Contents: []>, | |
u'meta-description': <Block Node: meta-description. Contents: [<django.templatetags.i18n.TranslateNode object at 0xb412b2ac>]>, | |
u'meta-description-page': <Block Node: meta-description-page. Contents: []>, | |
u'meta-keywords': <Block Node: meta-keywords. Contents: [<Text Node: 'django, blog, weblog, zin'>]>, | |
u'script': <Block Node: script. Contents: []>, | |
u'sidebar': <Block Node: sidebar. Contents: [<Text Node: ' | |
'>]>, | |
u'slider': <Block Node: slider. Contents: []>, | |
u'title': <Block Node: title. Contents: []>, | |
u'title-page': <Block Node: title-page. Contents: []>}</pre></td> | |
</tr> | |
<tr> | |
<td>block_context</td> | |
<td class="code"><pre><django.template.loader_tags.BlockContext object at 0xb448748c></pre></td> | |
</tr> | |
<tr> | |
<td>n</td> | |
<td class="code"><pre><Block Node: sidebar. Contents: [<Text Node: ' | |
'>]></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
<tr> | |
<td>compiled_parent</td> | |
<td class="code"><pre><django.template.base.Template object at 0xb443620c></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><ExtendsNode: extends "zinnia/skeleton.html"></pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>_render</code> | |
<div class="context" id="c3021238516"> | |
<ol style="display: none;" start="127" class="pre-context" id="pre3021238516"><li onclick="toggle('pre3021238516', 'post3021238516')"><pre></pre></li><li onclick="toggle('pre3021238516', 'post3021238516')"><pre> def __iter__(self):</pre></li><li onclick="toggle('pre3021238516', 'post3021238516')"><pre> for node in self.nodelist:</pre></li><li onclick="toggle('pre3021238516', 'post3021238516')"><pre> for subnode in node:</pre></li><li onclick="toggle('pre3021238516', 'post3021238516')"><pre> yield subnode</pre></li><li onclick="toggle('pre3021238516', 'post3021238516')"><pre></pre></li><li onclick="toggle('pre3021238516', 'post3021238516')"><pre> def _render(self, context):</pre></li></ol> | |
<ol start="134" class="context-line"><li onclick="toggle('pre3021238516', 'post3021238516')"><pre> return self.nodelist.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="135" class="post-context" id="post3021238516"><li onclick="toggle('pre3021238516', 'post3021238516')"><pre></pre></li><li onclick="toggle('pre3021238516', 'post3021238516')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021238516', 'post3021238516')"><pre> "Display stage -- can be called many times"</pre></li><li onclick="toggle('pre3021238516', 'post3021238516')"><pre> context.render_context.push()</pre></li><li onclick="toggle('pre3021238516', 'post3021238516')"><pre> try:</pre></li><li onclick="toggle('pre3021238516', 'post3021238516')"><pre> return self._render(context)</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021238516')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021238516"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.template.base.Template object at 0xb443620c></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>render</code> | |
<div class="context" id="c3021241756"> | |
<ol style="display: none;" start="833" class="pre-context" id="pre3021241756"><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> # extend_nodelist().</pre></li><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> contains_nontext = False</pre></li><li onclick="toggle('pre3021241756', 'post3021241756')"><pre></pre></li><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> bits = []</pre></li><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> for node in self:</pre></li><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> if isinstance(node, Node):</pre></li></ol> | |
<ol start="840" class="context-line"><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> bit = self.render_node(node, context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="841" class="post-context" id="post3021241756"><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> else:</pre></li><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> bit = node</pre></li><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> bits.append(force_text(bit))</pre></li><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> return mark_safe(''.join(bits))</pre></li><li onclick="toggle('pre3021241756', 'post3021241756')"><pre></pre></li><li onclick="toggle('pre3021241756', 'post3021241756')"><pre> def get_nodes_by_type(self, nodetype):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021241756')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021241756"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><Block Node: link. Contents: []></pre></td> | |
</tr> | |
<tr> | |
<td>bit</td> | |
<td class="code"><pre>u'" />\n '</pre></td> | |
</tr> | |
<tr> | |
<td>bits</td> | |
<td class="code"><pre>[u'', | |
u'\n<!doctype html>\n<html lang="', | |
u'en-us', | |
u'">\n <head>\n <meta charset="utf-8">\n <title>Zinnia\'s Weblog - ', | |
u'Latest entries', | |
u'', | |
u'</title>\n <meta name="robots" content="follow, all" />\n <meta name="viewport" content="width=device-width, initial-scale=1.0" />\n <meta name="description" content="', | |
u'Latest entries', | |
u'', | |
u'" />\n <meta name="keywords" content="', | |
u'', | |
u'" />\n <meta name="author" content="Fantomas42" />\n ', | |
u'\n <meta name="generator" content="Zinnia 0.13" />\n', | |
u'\n <link rel="pingback" href="/xmlrpc/" />\n <link rel="home" href="', | |
u'/', | |
u'" />\n <link rel="stylesheet" href="', | |
u'/static/zinnia_bootstrap/bootstrap/css/bootstrap.min.css', | |
u'" />\n <style type="text/css">\n body {\n padding-top: 70px;\n }\n body > nav img {\n margin-top: 5px;\n margin-left: 10px;\n }\n p.entry-discussions {\n margin-bottom: 0px;\n }\n </style>\n <!--[if lt IE 9]>\n <script src="', | |
u'/static/zinnia_bootstrap/assets/js/html5shiv.js', | |
u'"></script>\n <script src="', | |
u'/static/zinnia_bootstrap/assets/js/respond.min.js', | |
u'"></script>\n <![endif]-->\n <link rel="shortcut icon" href="', | |
u'/static/zinnia/img/favicon.ico', | |
u'" />\n <link rel="apple-touch-icon-precomposed" sizes="144x144" href="', | |
u'/static/zinnia_bootstrap/assets/ico/apple-touch-icon-144-precomposed.png', | |
u'" />\n <link rel="apple-touch-icon-precomposed" sizes="114x114" href="', | |
u'/static/zinnia_bootstrap/assets/ico/apple-touch-icon-114-precomposed.png', | |
u'" />\n <link rel="apple-touch-icon-precomposed" sizes="72x72" href="', | |
u'/static/zinnia_bootstrap/assets/ico/apple-touch-icon-72-precomposed.png', | |
u'" />\n <link rel="apple-touch-icon-precomposed" href="', | |
u'/static/zinnia_bootstrap/assets/ico/apple-touch-icon-57-precomposed.png', | |
u'" />\n ']</pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<django.template.defaulttags.LoadNode object at 0xb422482c>, | |
<Text Node: ' | |
<!doctype html> | |
<html la'>, | |
<Variable Node: LANGUAGE_CODE>, | |
<Text Node: '"> | |
<head> | |
<meta cha'>, | |
<Block Node: title. Contents: []>, | |
<Block Node: title-page. Contents: []>, | |
<Text Node: '</title> | |
<meta name="'>, | |
<Block Node: meta-description. Contents: [<django.templatetags.i18n.TranslateNode object at 0xb412b2ac>]>, | |
<Block Node: meta-description-page. Contents: []>, | |
<Text Node: '" /> | |
<meta name="keyw'>, | |
<Block Node: meta-keywords. Contents: [<Text Node: 'django, blog, weblog, zin'>]>, | |
<Text Node: '" /> | |
<meta name="auth'>, | |
<Block Node: meta. Contents: []>, | |
<Text Node: ' | |
<link rel="pingback"'>, | |
<django.template.defaulttags.URLNode object at 0xb44b018c>, | |
<Text Node: '" /> | |
<link rel="style'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb5b36d8c>, | |
<Text Node: '" /> | |
<style type="tex'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb5b369ec>, | |
<Text Node: '"></script> | |
<scri'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb5b3660c>, | |
<Text Node: '"></script> | |
<![endif]'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb5b3690c>, | |
<Text Node: '" /> | |
<link rel="apple'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb4229b8c>, | |
<Text Node: '" /> | |
<link rel="apple'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb42298ec>, | |
<Text Node: '" /> | |
<link rel="apple'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb4229f4c>, | |
<Text Node: '" /> | |
<link rel="apple'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb4229dcc>, | |
<Text Node: '" /> | |
'>, | |
<Block Node: link. Contents: []>, | |
<Text Node: ' | |
'>, | |
<Block Node: script. Contents: []>, | |
<Text Node: ' | |
</head> | |
<body class='>, | |
<Block Node: body-class. Contents: []>, | |
<Text Node: '"> | |
<nav class="navbar'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb5b3686c>, | |
<Text Node: '</span> | |
<span'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb4229b6c>, | |
<Text Node: '" class="pull-left" alt="'>, | |
<django.template.defaulttags.URLNode object at 0xb5b3664c>, | |
<Text Node: '" title="Zinnia's Welog" '>, | |
<django.template.defaulttags.URLNode object at 0xb5b36cac>, | |
<Text Node: ' | |
<li '>, | |
<IfNode>, | |
<Text Node: '> | |
<a href="'>, | |
<Variable Node: category_list_url>, | |
<Text Node: '" title="'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb42299ac>, | |
<Text Node: '"> | |
'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb421ab8c>, | |
<Text Node: ' | |
</a> | |
'>, | |
<django.template.defaulttags.URLNode object at 0xb421a06c>, | |
<Text Node: ' | |
<li '>, | |
<IfNode>, | |
<Text Node: '> | |
<a href="'>, | |
<Variable Node: author_list_url>, | |
<Text Node: '" title="'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb4288d0c>, | |
<Text Node: '"> | |
'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb42888ec>, | |
<Text Node: ' | |
</a> | |
'>, | |
<django.template.defaulttags.URLNode object at 0xb4288e6c>, | |
<Text Node: ' | |
<li '>, | |
<IfNode>, | |
<Text Node: '> | |
<a href="'>, | |
<Variable Node: tag_list_url>, | |
<Text Node: '" title="'>, | |
<django.templatetags.i18n.TranslateNode object at 0xa0d1b0c>, | |
<Text Node: '"> | |
'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb443ecac>, | |
<Text Node: ' | |
</a> | |
'>, | |
<django.template.defaulttags.URLNode object at 0xb4288bac>, | |
<Text Node: '" class="navbar-form navb'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb4288fcc>, | |
<Text Node: '" name="pattern" value="'>, | |
<Variable Node: pattern>, | |
<Text Node: '" /> | |
</div> | |
'>, | |
<django.template.defaulttags.URLNode object at 0xb4288c4c>, | |
<Text Node: ' | |
<li '>, | |
<IfNode>, | |
<Text Node: '> | |
<li> | |
'>, | |
<Variable Node: sitemap_url>, | |
<Text Node: '" title="'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb428ff2c>, | |
<Text Node: '" class="sitemap"> | |
'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb4288b6c>, | |
<Text Node: ' | |
</a> | |
'>, | |
<django.template.defaulttags.URLNode object at 0xb40aa6ac>, | |
<Text Node: '" title="'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb40aa4cc>, | |
<Text Node: '" class="feeds"> | |
'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb40aa34c>, | |
<Text Node: ' | |
</a> | |
'>, | |
<Block Node: slider. Contents: []>, | |
<Text Node: ' | |
<div class="containe'>, | |
<Block Node: breadcrumbs. Contents: []>, | |
<Text Node: ' | |
'>, | |
<Block Node: content. Contents: [<Text Node: ' | |
<div class="li'>, <django.templatetags.i18n.TranslateNode object at 0xb428ff8c>, <Text Node: '</h3> | |
<ul> | |
'>, <django.template.defaulttags.URLNode object at 0xb40aaa6c>, <Text Node: '" title="'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa78c>, <Text Node: '"> | |
'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa88c>, <Text Node: ' | |
</a> | |
'>, <django.template.defaulttags.URLNode object at 0xb40aa76c>, <Text Node: '" title="'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa18c>, <Text Node: '"> | |
'>, <django.templatetags.i18n.TranslateNode object at 0xb40aaf0c>, <Text Node: ' | |
</a> | |
'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa6ec>, <Text Node: '</h3> | |
'>, <django.template.loader_tags.ConstantIncludeNode object at 0xb40aa0ec>, <Text Node: ' | |
</div> | |
'>]>, | |
<Text Node: ' | |
</div> | |
<'>, | |
<Block Node: sidebar. Contents: [<Text Node: ' | |
'>]>, | |
<Text Node: ' | |
</div> | |
</d'>, | |
<django.templatetags.i18n.BlockTranslateNode object at 0xb422416c>, | |
<Text Node: '</p> | |
</footer> | |
<s'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb422426c>, | |
<Text Node: '"></script> | |
<script t'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb422474c>, | |
<Text Node: '"></script> | |
</body> | |
</h'>]</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py</code> in <code>render_node</code> | |
<div class="context" id="c3021239036"> | |
<ol style="display: none;" start="71" class="pre-context" id="pre3021239036"><li onclick="toggle('pre3021239036', 'post3021239036')"><pre> def compile_function_error(self, token, e):</pre></li><li onclick="toggle('pre3021239036', 'post3021239036')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021239036', 'post3021239036')"><pre> e.django_template_source = token.source</pre></li><li onclick="toggle('pre3021239036', 'post3021239036')"><pre></pre></li><li onclick="toggle('pre3021239036', 'post3021239036')"><pre>class DebugNodeList(NodeList):</pre></li><li onclick="toggle('pre3021239036', 'post3021239036')"><pre> def render_node(self, node, context):</pre></li><li onclick="toggle('pre3021239036', 'post3021239036')"><pre> try:</pre></li></ol> | |
<ol start="78" class="context-line"><li onclick="toggle('pre3021239036', 'post3021239036')"><pre> return node.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="79" class="post-context" id="post3021239036"><li onclick="toggle('pre3021239036', 'post3021239036')"><pre> except Exception as e:</pre></li><li onclick="toggle('pre3021239036', 'post3021239036')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021239036', 'post3021239036')"><pre> e.django_template_source = node.source</pre></li><li onclick="toggle('pre3021239036', 'post3021239036')"><pre> raise</pre></li><li onclick="toggle('pre3021239036', 'post3021239036')"><pre></pre></li><li onclick="toggle('pre3021239036', 'post3021239036')"><pre></pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021239036')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021239036"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><Block Node: link. Contents: []></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<django.template.defaulttags.LoadNode object at 0xb422482c>, | |
<Text Node: ' | |
<!doctype html> | |
<html la'>, | |
<Variable Node: LANGUAGE_CODE>, | |
<Text Node: '"> | |
<head> | |
<meta cha'>, | |
<Block Node: title. Contents: []>, | |
<Block Node: title-page. Contents: []>, | |
<Text Node: '</title> | |
<meta name="'>, | |
<Block Node: meta-description. Contents: [<django.templatetags.i18n.TranslateNode object at 0xb412b2ac>]>, | |
<Block Node: meta-description-page. Contents: []>, | |
<Text Node: '" /> | |
<meta name="keyw'>, | |
<Block Node: meta-keywords. Contents: [<Text Node: 'django, blog, weblog, zin'>]>, | |
<Text Node: '" /> | |
<meta name="auth'>, | |
<Block Node: meta. Contents: []>, | |
<Text Node: ' | |
<link rel="pingback"'>, | |
<django.template.defaulttags.URLNode object at 0xb44b018c>, | |
<Text Node: '" /> | |
<link rel="style'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb5b36d8c>, | |
<Text Node: '" /> | |
<style type="tex'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb5b369ec>, | |
<Text Node: '"></script> | |
<scri'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb5b3660c>, | |
<Text Node: '"></script> | |
<![endif]'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb5b3690c>, | |
<Text Node: '" /> | |
<link rel="apple'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb4229b8c>, | |
<Text Node: '" /> | |
<link rel="apple'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb42298ec>, | |
<Text Node: '" /> | |
<link rel="apple'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb4229f4c>, | |
<Text Node: '" /> | |
<link rel="apple'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb4229dcc>, | |
<Text Node: '" /> | |
'>, | |
<Block Node: link. Contents: []>, | |
<Text Node: ' | |
'>, | |
<Block Node: script. Contents: []>, | |
<Text Node: ' | |
</head> | |
<body class='>, | |
<Block Node: body-class. Contents: []>, | |
<Text Node: '"> | |
<nav class="navbar'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb5b3686c>, | |
<Text Node: '</span> | |
<span'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb4229b6c>, | |
<Text Node: '" class="pull-left" alt="'>, | |
<django.template.defaulttags.URLNode object at 0xb5b3664c>, | |
<Text Node: '" title="Zinnia's Welog" '>, | |
<django.template.defaulttags.URLNode object at 0xb5b36cac>, | |
<Text Node: ' | |
<li '>, | |
<IfNode>, | |
<Text Node: '> | |
<a href="'>, | |
<Variable Node: category_list_url>, | |
<Text Node: '" title="'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb42299ac>, | |
<Text Node: '"> | |
'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb421ab8c>, | |
<Text Node: ' | |
</a> | |
'>, | |
<django.template.defaulttags.URLNode object at 0xb421a06c>, | |
<Text Node: ' | |
<li '>, | |
<IfNode>, | |
<Text Node: '> | |
<a href="'>, | |
<Variable Node: author_list_url>, | |
<Text Node: '" title="'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb4288d0c>, | |
<Text Node: '"> | |
'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb42888ec>, | |
<Text Node: ' | |
</a> | |
'>, | |
<django.template.defaulttags.URLNode object at 0xb4288e6c>, | |
<Text Node: ' | |
<li '>, | |
<IfNode>, | |
<Text Node: '> | |
<a href="'>, | |
<Variable Node: tag_list_url>, | |
<Text Node: '" title="'>, | |
<django.templatetags.i18n.TranslateNode object at 0xa0d1b0c>, | |
<Text Node: '"> | |
'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb443ecac>, | |
<Text Node: ' | |
</a> | |
'>, | |
<django.template.defaulttags.URLNode object at 0xb4288bac>, | |
<Text Node: '" class="navbar-form navb'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb4288fcc>, | |
<Text Node: '" name="pattern" value="'>, | |
<Variable Node: pattern>, | |
<Text Node: '" /> | |
</div> | |
'>, | |
<django.template.defaulttags.URLNode object at 0xb4288c4c>, | |
<Text Node: ' | |
<li '>, | |
<IfNode>, | |
<Text Node: '> | |
<li> | |
'>, | |
<Variable Node: sitemap_url>, | |
<Text Node: '" title="'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb428ff2c>, | |
<Text Node: '" class="sitemap"> | |
'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb4288b6c>, | |
<Text Node: ' | |
</a> | |
'>, | |
<django.template.defaulttags.URLNode object at 0xb40aa6ac>, | |
<Text Node: '" title="'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb40aa4cc>, | |
<Text Node: '" class="feeds"> | |
'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb40aa34c>, | |
<Text Node: ' | |
</a> | |
'>, | |
<Block Node: slider. Contents: []>, | |
<Text Node: ' | |
<div class="containe'>, | |
<Block Node: breadcrumbs. Contents: []>, | |
<Text Node: ' | |
'>, | |
<Block Node: content. Contents: [<Text Node: ' | |
<div class="li'>, <django.templatetags.i18n.TranslateNode object at 0xb428ff8c>, <Text Node: '</h3> | |
<ul> | |
'>, <django.template.defaulttags.URLNode object at 0xb40aaa6c>, <Text Node: '" title="'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa78c>, <Text Node: '"> | |
'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa88c>, <Text Node: ' | |
</a> | |
'>, <django.template.defaulttags.URLNode object at 0xb40aa76c>, <Text Node: '" title="'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa18c>, <Text Node: '"> | |
'>, <django.templatetags.i18n.TranslateNode object at 0xb40aaf0c>, <Text Node: ' | |
</a> | |
'>, <django.templatetags.i18n.TranslateNode object at 0xb40aa6ec>, <Text Node: '</h3> | |
'>, <django.template.loader_tags.ConstantIncludeNode object at 0xb40aa0ec>, <Text Node: ' | |
</div> | |
'>]>, | |
<Text Node: ' | |
</div> | |
<'>, | |
<Block Node: sidebar. Contents: [<Text Node: ' | |
'>]>, | |
<Text Node: ' | |
</div> | |
</d'>, | |
<django.templatetags.i18n.BlockTranslateNode object at 0xb422416c>, | |
<Text Node: '</p> | |
</footer> | |
<s'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb422426c>, | |
<Text Node: '"></script> | |
<script t'>, | |
<django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0xb422474c>, | |
<Text Node: '"></script> | |
</body> | |
</h'>]</pre></td> | |
</tr> | |
<tr> | |
<td>e</td> | |
<td class="code"><pre>AssertionError("'creation_date' is a DateTimeField, not a DateField.",)</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py</code> in <code>render</code> | |
<div class="context" id="c3021239156"> | |
<ol style="display: none;" start="55" class="pre-context" id="pre3021239156"><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> push = block = block_context.pop(self.name)</pre></li><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> if block is None:</pre></li><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> block = self</pre></li><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> # Create new block so we can store context without thread-safety issues.</pre></li><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> block = BlockNode(block.name, block.nodelist)</pre></li><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> block.context = context</pre></li><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> context['block'] = block</pre></li></ol> | |
<ol start="62" class="context-line"><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> result = block.nodelist.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="63" class="post-context" id="post3021239156"><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> if push is not None:</pre></li><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> block_context.push(self.name, push)</pre></li><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> context.pop()</pre></li><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> return result</pre></li><li onclick="toggle('pre3021239156', 'post3021239156')"><pre></pre></li><li onclick="toggle('pre3021239156', 'post3021239156')"><pre> def super(self):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021239156')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021239156"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>push</td> | |
<td class="code"><pre><Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]></pre></td> | |
</tr> | |
<tr> | |
<td>block_context</td> | |
<td class="code"><pre><django.template.loader_tags.BlockContext object at 0xb448748c></pre></td> | |
</tr> | |
<tr> | |
<td>block</td> | |
<td class="code"><pre><Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><Block Node: link. Contents: []></pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>render</code> | |
<div class="context" id="c3021241396"> | |
<ol style="display: none;" start="833" class="pre-context" id="pre3021241396"><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> # extend_nodelist().</pre></li><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> contains_nontext = False</pre></li><li onclick="toggle('pre3021241396', 'post3021241396')"><pre></pre></li><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> bits = []</pre></li><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> for node in self:</pre></li><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> if isinstance(node, Node):</pre></li></ol> | |
<ol start="840" class="context-line"><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> bit = self.render_node(node, context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="841" class="post-context" id="post3021241396"><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> else:</pre></li><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> bit = node</pre></li><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> bits.append(force_text(bit))</pre></li><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> return mark_safe(''.join(bits))</pre></li><li onclick="toggle('pre3021241396', 'post3021241396')"><pre></pre></li><li onclick="toggle('pre3021241396', 'post3021241396')"><pre> def get_nodes_by_type(self, nodetype):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021241396')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021241396"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><Variable Node: block.super></pre></td> | |
</tr> | |
<tr> | |
<td>bit</td> | |
<td class="code"><pre>u'\n '</pre></td> | |
</tr> | |
<tr> | |
<td>bits</td> | |
<td class="code"><pre>[u'\n ']</pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<Text Node: ' | |
'>, | |
<Variable Node: block.super>, | |
<Text Node: ' | |
'>, | |
<IfNode>, | |
<Text Node: ' | |
'>, | |
<IfNode>, | |
<Text Node: ' | |
'>, | |
<IfNode>, | |
<Text Node: ' | |
'>]</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py</code> in <code>render_node</code> | |
<div class="context" id="c3021240556"> | |
<ol style="display: none;" start="71" class="pre-context" id="pre3021240556"><li onclick="toggle('pre3021240556', 'post3021240556')"><pre> def compile_function_error(self, token, e):</pre></li><li onclick="toggle('pre3021240556', 'post3021240556')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021240556', 'post3021240556')"><pre> e.django_template_source = token.source</pre></li><li onclick="toggle('pre3021240556', 'post3021240556')"><pre></pre></li><li onclick="toggle('pre3021240556', 'post3021240556')"><pre>class DebugNodeList(NodeList):</pre></li><li onclick="toggle('pre3021240556', 'post3021240556')"><pre> def render_node(self, node, context):</pre></li><li onclick="toggle('pre3021240556', 'post3021240556')"><pre> try:</pre></li></ol> | |
<ol start="78" class="context-line"><li onclick="toggle('pre3021240556', 'post3021240556')"><pre> return node.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="79" class="post-context" id="post3021240556"><li onclick="toggle('pre3021240556', 'post3021240556')"><pre> except Exception as e:</pre></li><li onclick="toggle('pre3021240556', 'post3021240556')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021240556', 'post3021240556')"><pre> e.django_template_source = node.source</pre></li><li onclick="toggle('pre3021240556', 'post3021240556')"><pre> raise</pre></li><li onclick="toggle('pre3021240556', 'post3021240556')"><pre></pre></li><li onclick="toggle('pre3021240556', 'post3021240556')"><pre></pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021240556')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021240556"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><Variable Node: block.super></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<Text Node: ' | |
'>, | |
<Variable Node: block.super>, | |
<Text Node: ' | |
'>, | |
<IfNode>, | |
<Text Node: ' | |
'>, | |
<IfNode>, | |
<Text Node: ' | |
'>, | |
<IfNode>, | |
<Text Node: ' | |
'>]</pre></td> | |
</tr> | |
<tr> | |
<td>e</td> | |
<td class="code"><pre>AssertionError("'creation_date' is a DateTimeField, not a DateField.",)</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py</code> in <code>render</code> | |
<div class="context" id="c3021240436"> | |
<ol style="display: none;" start="81" class="pre-context" id="pre3021240436"><li onclick="toggle('pre3021240436', 'post3021240436')"><pre> e.django_template_source = node.source</pre></li><li onclick="toggle('pre3021240436', 'post3021240436')"><pre> raise</pre></li><li onclick="toggle('pre3021240436', 'post3021240436')"><pre></pre></li><li onclick="toggle('pre3021240436', 'post3021240436')"><pre></pre></li><li onclick="toggle('pre3021240436', 'post3021240436')"><pre>class DebugVariableNode(VariableNode):</pre></li><li onclick="toggle('pre3021240436', 'post3021240436')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021240436', 'post3021240436')"><pre> try:</pre></li></ol> | |
<ol start="88" class="context-line"><li onclick="toggle('pre3021240436', 'post3021240436')"><pre> output = self.filter_expression.resolve(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="89" class="post-context" id="post3021240436"><li onclick="toggle('pre3021240436', 'post3021240436')"><pre> output = template_localtime(output, use_tz=context.use_tz)</pre></li><li onclick="toggle('pre3021240436', 'post3021240436')"><pre> output = localize(output, use_l10n=context.use_l10n)</pre></li><li onclick="toggle('pre3021240436', 'post3021240436')"><pre> output = force_text(output)</pre></li><li onclick="toggle('pre3021240436', 'post3021240436')"><pre> except UnicodeDecodeError:</pre></li><li onclick="toggle('pre3021240436', 'post3021240436')"><pre> return ''</pre></li><li onclick="toggle('pre3021240436', 'post3021240436')"><pre> except Exception as e:</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021240436')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021240436"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><Variable Node: block.super></pre></td> | |
</tr> | |
<tr> | |
<td>e</td> | |
<td class="code"><pre>AssertionError("'creation_date' is a DateTimeField, not a DateField.",)</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>resolve</code> | |
<div class="context" id="c3021239476"> | |
<ol style="display: none;" start="578" class="pre-context" id="pre3021239476"><li onclick="toggle('pre3021239476', 'post3021239476')"><pre></pre></li><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> self.filters = filters</pre></li><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> self.var = var_obj</pre></li><li onclick="toggle('pre3021239476', 'post3021239476')"><pre></pre></li><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> def resolve(self, context, ignore_failures=False):</pre></li><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> if isinstance(self.var, Variable):</pre></li><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> try:</pre></li></ol> | |
<ol start="585" class="context-line"><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> obj = self.var.resolve(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="586" class="post-context" id="post3021239476"><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> except VariableDoesNotExist:</pre></li><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> if ignore_failures:</pre></li><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> obj = None</pre></li><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> else:</pre></li><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> if settings.TEMPLATE_STRING_IF_INVALID:</pre></li><li onclick="toggle('pre3021239476', 'post3021239476')"><pre> global invalid_var_format_string</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021239476')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021239476"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.template.base.FilterExpression object at 0xb412b4cc></pre></td> | |
</tr> | |
<tr> | |
<td>ignore_failures</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>resolve</code> | |
<div class="context" id="c3022239820"> | |
<ol style="display: none;" start="728" class="pre-context" id="pre3022239820"><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> var)</pre></li><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> self.lookups = tuple(var.split(VARIABLE_ATTRIBUTE_SEPARATOR))</pre></li><li onclick="toggle('pre3022239820', 'post3022239820')"><pre></pre></li><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> def resolve(self, context):</pre></li><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> """Resolve this variable against a given context."""</pre></li><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> if self.lookups is not None:</pre></li><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> # We're dealing with a variable that needs to be resolved</pre></li></ol> | |
<ol start="735" class="context-line"><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> value = self._resolve_lookup(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="736" class="post-context" id="post3022239820"><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> else:</pre></li><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> # We're dealing with a literal, so it's already been "resolved"</pre></li><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> value = self.literal</pre></li><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> if self.translate:</pre></li><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> if self.message_context:</pre></li><li onclick="toggle('pre3022239820', 'post3022239820')"><pre> return pgettext_lazy(self.message_context, value)</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3022239820')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3022239820"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><Variable: u'block.super'></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>_resolve_lookup</code> | |
<div class="context" id="c3021241156"> | |
<ol style="display: none;" start="782" class="pre-context" id="pre3021241156"><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> if callable(current):</pre></li><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> if getattr(current, 'do_not_call_in_templates', False):</pre></li><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> pass</pre></li><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> elif getattr(current, 'alters_data', False):</pre></li><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> current = settings.TEMPLATE_STRING_IF_INVALID</pre></li><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> else:</pre></li><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> try: # method call (assuming no args required)</pre></li></ol> | |
<ol start="789" class="context-line"><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> current = current()</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="790" class="post-context" id="post3021241156"><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> except TypeError: # arguments *were* required</pre></li><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> # GOTCHA: This will also catch any TypeError</pre></li><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> # raised in the function itself.</pre></li><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> current = settings.TEMPLATE_STRING_IF_INVALID # invalid method call</pre></li><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> except Exception as e:</pre></li><li onclick="toggle('pre3021241156', 'post3021241156')"><pre> if getattr(e, 'silent_variable_failure', False):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021241156')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021241156"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>current</td> | |
<td class="code"><pre><bound method BlockNode.super of <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>></pre></td> | |
</tr> | |
<tr> | |
<td>bit</td> | |
<td class="code"><pre>u'super'</pre></td> | |
</tr> | |
<tr> | |
<td>e</td> | |
<td class="code"><pre>AssertionError("'creation_date' is a DateTimeField, not a DateField.",)</pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><Variable: u'block.super'></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py</code> in <code>super</code> | |
<div class="context" id="c3021238596"> | |
<ol style="display: none;" start="65" class="pre-context" id="pre3021238596"><li onclick="toggle('pre3021238596', 'post3021238596')"><pre> context.pop()</pre></li><li onclick="toggle('pre3021238596', 'post3021238596')"><pre> return result</pre></li><li onclick="toggle('pre3021238596', 'post3021238596')"><pre></pre></li><li onclick="toggle('pre3021238596', 'post3021238596')"><pre> def super(self):</pre></li><li onclick="toggle('pre3021238596', 'post3021238596')"><pre> render_context = self.context.render_context</pre></li><li onclick="toggle('pre3021238596', 'post3021238596')"><pre> if (BLOCK_CONTEXT_KEY in render_context and</pre></li><li onclick="toggle('pre3021238596', 'post3021238596')"><pre> render_context[BLOCK_CONTEXT_KEY].get_block(self.name) is not None):</pre></li></ol> | |
<ol start="72" class="context-line"><li onclick="toggle('pre3021238596', 'post3021238596')"><pre> return mark_safe(self.render(self.context))</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="73" class="post-context" id="post3021238596"><li onclick="toggle('pre3021238596', 'post3021238596')"><pre> return ''</pre></li><li onclick="toggle('pre3021238596', 'post3021238596')"><pre></pre></li><li onclick="toggle('pre3021238596', 'post3021238596')"><pre>class ExtendsNode(Node):</pre></li><li onclick="toggle('pre3021238596', 'post3021238596')"><pre> must_be_first = True</pre></li><li onclick="toggle('pre3021238596', 'post3021238596')"><pre></pre></li><li onclick="toggle('pre3021238596', 'post3021238596')"><pre> def __init__(self, nodelist, parent_name, template_dirs=None):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021238596')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021238596"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>render_context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}]</pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]></pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py</code> in <code>render</code> | |
<div class="context" id="c3021241636"> | |
<ol style="display: none;" start="55" class="pre-context" id="pre3021241636"><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> push = block = block_context.pop(self.name)</pre></li><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> if block is None:</pre></li><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> block = self</pre></li><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> # Create new block so we can store context without thread-safety issues.</pre></li><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> block = BlockNode(block.name, block.nodelist)</pre></li><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> block.context = context</pre></li><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> context['block'] = block</pre></li></ol> | |
<ol start="62" class="context-line"><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> result = block.nodelist.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="63" class="post-context" id="post3021241636"><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> if push is not None:</pre></li><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> block_context.push(self.name, push)</pre></li><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> context.pop()</pre></li><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> return result</pre></li><li onclick="toggle('pre3021241636', 'post3021241636')"><pre></pre></li><li onclick="toggle('pre3021241636', 'post3021241636')"><pre> def super(self):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021241636')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021241636"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>push</td> | |
<td class="code"><pre><Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]></pre></td> | |
</tr> | |
<tr> | |
<td>block_context</td> | |
<td class="code"><pre><django.template.loader_tags.BlockContext object at 0xb448748c></pre></td> | |
</tr> | |
<tr> | |
<td>block</td> | |
<td class="code"><pre><Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]></pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]></pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>render</code> | |
<div class="context" id="c3021242276"> | |
<ol style="display: none;" start="833" class="pre-context" id="pre3021242276"><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> # extend_nodelist().</pre></li><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> contains_nontext = False</pre></li><li onclick="toggle('pre3021242276', 'post3021242276')"><pre></pre></li><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> bits = []</pre></li><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> for node in self:</pre></li><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> if isinstance(node, Node):</pre></li></ol> | |
<ol start="840" class="context-line"><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> bit = self.render_node(node, context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="841" class="post-context" id="post3021242276"><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> else:</pre></li><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> bit = node</pre></li><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> bits.append(force_text(bit))</pre></li><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> return mark_safe(''.join(bits))</pre></li><li onclick="toggle('pre3021242276', 'post3021242276')"><pre></pre></li><li onclick="toggle('pre3021242276', 'post3021242276')"><pre> def get_nodes_by_type(self, nodetype):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021242276')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021242276"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><django.template.base.InclusionNode object at 0xb40a702c></pre></td> | |
</tr> | |
<tr> | |
<td>bit</td> | |
<td class="code"><pre>u'" />\n '</pre></td> | |
</tr> | |
<tr> | |
<td>bits</td> | |
<td class="code"><pre>[u'\n <link rel="index" href="', | |
u'/', | |
u'" />\n <link rel="author" type="text/plain" href="', | |
u'/humans.txt', | |
u'" />\n <link rel="EditURI" type="application/rsd+xml" href="', | |
u'/rsd.xml', | |
u'" />\n <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="', | |
u'/wlwmanifest.xml', | |
u'" />\n <link rel="search" type="application/opensearchdescription+xml" title="Zinnia\'s Blog" href="', | |
u'/opensearch.xml', | |
u'" />\n <link rel="alternate" type="application/rss+xml" title="', | |
u'RSS Feed of latest entries', | |
u'" href="', | |
u'/feeds/', | |
u'" />\n <link rel="alternate" type="application/rss+xml" title="', | |
u'RSS Feed of latest discussions', | |
u'" href="', | |
u'/feeds/discussions/', | |
u'" />\n ']</pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<Text Node: ' | |
<link rel="index" hr'>, | |
<django.template.defaulttags.URLNode object at 0xb409d8ec>, | |
<Text Node: '" /> | |
<link rel="autho'>, | |
<django.template.defaulttags.URLNode object at 0xb40a780c>, | |
<Text Node: '" /> | |
<link rel="EditU'>, | |
<django.template.defaulttags.URLNode object at 0xb40a7b2c>, | |
<Text Node: '" /> | |
<link rel="wlwma'>, | |
<django.template.defaulttags.URLNode object at 0xb40a71ec>, | |
<Text Node: '" /> | |
<link rel="searc'>, | |
<django.template.defaulttags.URLNode object at 0xb40a7b4c>, | |
<Text Node: '" /> | |
<link rel="alter'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, | |
<Text Node: '" href="'>, | |
<django.template.defaulttags.URLNode object at 0xb40a7fcc>, | |
<Text Node: '" /> | |
<link rel="alter'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb40a722c>, | |
<Text Node: '" href="'>, | |
<django.template.defaulttags.URLNode object at 0xb40a7d2c>, | |
<Text Node: '" /> | |
'>, | |
<django.template.base.InclusionNode object at 0xb40a702c>, | |
<Text Node: ' | |
'>]</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py</code> in <code>render_node</code> | |
<div class="context" id="c3021241356"> | |
<ol style="display: none;" start="71" class="pre-context" id="pre3021241356"><li onclick="toggle('pre3021241356', 'post3021241356')"><pre> def compile_function_error(self, token, e):</pre></li><li onclick="toggle('pre3021241356', 'post3021241356')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021241356', 'post3021241356')"><pre> e.django_template_source = token.source</pre></li><li onclick="toggle('pre3021241356', 'post3021241356')"><pre></pre></li><li onclick="toggle('pre3021241356', 'post3021241356')"><pre>class DebugNodeList(NodeList):</pre></li><li onclick="toggle('pre3021241356', 'post3021241356')"><pre> def render_node(self, node, context):</pre></li><li onclick="toggle('pre3021241356', 'post3021241356')"><pre> try:</pre></li></ol> | |
<ol start="78" class="context-line"><li onclick="toggle('pre3021241356', 'post3021241356')"><pre> return node.render(context)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="79" class="post-context" id="post3021241356"><li onclick="toggle('pre3021241356', 'post3021241356')"><pre> except Exception as e:</pre></li><li onclick="toggle('pre3021241356', 'post3021241356')"><pre> if not hasattr(e, 'django_template_source'):</pre></li><li onclick="toggle('pre3021241356', 'post3021241356')"><pre> e.django_template_source = node.source</pre></li><li onclick="toggle('pre3021241356', 'post3021241356')"><pre> raise</pre></li><li onclick="toggle('pre3021241356', 'post3021241356')"><pre></pre></li><li onclick="toggle('pre3021241356', 'post3021241356')"><pre></pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021241356')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021241356"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>node</td> | |
<td class="code"><pre><django.template.base.InclusionNode object at 0xb40a702c></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<Text Node: ' | |
<link rel="index" hr'>, | |
<django.template.defaulttags.URLNode object at 0xb409d8ec>, | |
<Text Node: '" /> | |
<link rel="autho'>, | |
<django.template.defaulttags.URLNode object at 0xb40a780c>, | |
<Text Node: '" /> | |
<link rel="EditU'>, | |
<django.template.defaulttags.URLNode object at 0xb40a7b2c>, | |
<Text Node: '" /> | |
<link rel="wlwma'>, | |
<django.template.defaulttags.URLNode object at 0xb40a71ec>, | |
<Text Node: '" /> | |
<link rel="searc'>, | |
<django.template.defaulttags.URLNode object at 0xb40a7b4c>, | |
<Text Node: '" /> | |
<link rel="alter'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, | |
<Text Node: '" href="'>, | |
<django.template.defaulttags.URLNode object at 0xb40a7fcc>, | |
<Text Node: '" /> | |
<link rel="alter'>, | |
<django.templatetags.i18n.TranslateNode object at 0xb40a722c>, | |
<Text Node: '" href="'>, | |
<django.template.defaulttags.URLNode object at 0xb40a7d2c>, | |
<Text Node: '" /> | |
'>, | |
<django.template.base.InclusionNode object at 0xb40a702c>, | |
<Text Node: ' | |
'>]</pre></td> | |
</tr> | |
<tr> | |
<td>e</td> | |
<td class="code"><pre>AssertionError("'creation_date' is a DateTimeField, not a DateField.",)</pre></td> | |
</tr> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py</code> in <code>render</code> | |
<div class="context" id="c3021241916"> | |
<ol style="display: none;" start="1189" class="pre-context" id="pre3021241916"><li onclick="toggle('pre3021241916', 'post3021241916')"><pre> def dec(func):</pre></li><li onclick="toggle('pre3021241916', 'post3021241916')"><pre> params, varargs, varkw, defaults = getargspec(func)</pre></li><li onclick="toggle('pre3021241916', 'post3021241916')"><pre></pre></li><li onclick="toggle('pre3021241916', 'post3021241916')"><pre> class InclusionNode(TagHelperNode):</pre></li><li onclick="toggle('pre3021241916', 'post3021241916')"><pre></pre></li><li onclick="toggle('pre3021241916', 'post3021241916')"><pre> def render(self, context):</pre></li><li onclick="toggle('pre3021241916', 'post3021241916')"><pre> resolved_args, resolved_kwargs = self.get_resolved_arguments(context)</pre></li></ol> | |
<ol start="1196" class="context-line"><li onclick="toggle('pre3021241916', 'post3021241916')"><pre> _dict = func(*resolved_args, **resolved_kwargs)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="1197" class="post-context" id="post3021241916"><li onclick="toggle('pre3021241916', 'post3021241916')"><pre></pre></li><li onclick="toggle('pre3021241916', 'post3021241916')"><pre> if not getattr(self, 'nodelist', False):</pre></li><li onclick="toggle('pre3021241916', 'post3021241916')"><pre> from django.template.loader import get_template, select_template</pre></li><li onclick="toggle('pre3021241916', 'post3021241916')"><pre> if isinstance(file_name, Template):</pre></li><li onclick="toggle('pre3021241916', 'post3021241916')"><pre> t = file_name</pre></li><li onclick="toggle('pre3021241916', 'post3021241916')"><pre> elif not isinstance(file_name, six.string_types) and is_iterable(file_name):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021241916')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021241916"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>context</td> | |
<td class="code"><pre>[{'False': False, 'None': None, 'True': True}, {u'paginator': <django.core.paginator.Paginator object at 0xb4483f2c>, u'object_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], u'page_obj': <Page 1 of 7>, 'entry_list': [<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>], 'date_list': [datetime.datetime(2013, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2012, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2011, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>), datetime.datetime(2010, 1, 1, 0, 0, tzinfo=<DstTzInfo 'Europe/Prague' CET+1:00:00 STD>)], u'is_paginated': True, u'view': <zinnia.views.archives.EntryIndex object at 0xb40a7eac>}, {u'csrf_token': <django.utils.functional.__proxy__ object at 0xb44b4e0c>}, {'perms': <django.contrib.auth.context_processors.PermWrapper object at 0xb44b4f2c>, 'user': <SimpleLazyObject: <function <lambda> at 0xb5b35aac>>}, {u'LANGUAGES': (('af', 'Afrikaans'), ('ar', 'Arabic'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('en', 'English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy-nl', 'Frisian'), ('ga', 'Irish'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmal'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-cn', 'Simplified Chinese'), ('zh-tw', 'Traditional Chinese')), u'LANGUAGE_BIDI': False, u'LANGUAGE_CODE': 'en-us'}, {u'request': <WSGIRequest | |
path:/, | |
GET:<QueryDict: {}>, | |
POST:<QueryDict: {}>, | |
COOKIES:{'BUGLIST': '55%3A56%3A77%3A79', | |
'DEFAULTFORMAT': 'advanced', | |
'LASTORDER': 'target_milestone%2Cpriority%2Cbug_severity', | |
'SPLITHEADER': '1', | |
'VERSION-Ideas': 'unspecified', | |
'VERSION-Sword': 'unspecified', | |
'VERSION-elasmotherium': 'unspecified', | |
'VERSION-hesla': 'unspecified', | |
'VERSION-html2text': 'unspecified', | |
'VERSION-importLDIF': 'unspecified', | |
'VERSION-inkscape-ungroup-deep': 'unspecified', | |
'VERSION-m2crypto': 'unspecified', | |
'__qca': 'P0-24573179-1354658075160', | |
'csrftoken': 'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'messages': '77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]', | |
'sessionid': 'i1okuhgvrnr4cy0clkp85or1os6bemj0'}, | |
META:{'CONTENT_LENGTH': '', | |
'CONTENT_TYPE': 'text/plain', | |
u'CSRF_COOKIE': u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK', | |
'CVS_RSH': 'ssh', | |
'DJANGO_SETTINGS_MODULE': 'myblog.settings', | |
'GATEWAY_INTERFACE': 'CGI/1.1', | |
'G_BROKEN_FILENAMES': '1', | |
'HISTCONTROL': 'ignoredups', | |
'HISTSIZE': '1000', | |
'HOME': '/home/matej', | |
'HOSTNAME': 'luther', | |
'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | |
'HTTP_ACCEPT_ENCODING': 'gzip, deflate', | |
'HTTP_ACCEPT_LANGUAGE': 'cs,en-us;q=0.5', | |
'HTTP_CONNECTION': 'keep-alive', | |
'HTTP_COOKIE': 'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"', | |
'HTTP_DNT': '1', | |
'HTTP_HOST': 'luther.ceplovi.cz:8000', | |
'HTTP_USER_AGENT': 'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0', | |
'LANG': 'en_US.utf8', | |
'LC_MEASUREMENT': 'en_IE.utf8', | |
'LC_MONETARY': 'en_IE.utf8', | |
'LC_NUMERIC': 'en_IE.utf8', | |
'LC_PAPER': 'en_IE.utf8', | |
'LC_TIME': 'en_IE.utf8', | |
'LESSOPEN': '|/usr/bin/lesspipe.sh %s', | |
'LOGNAME': 'matej', | |
'LS_COLORS': 'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:', | |
'MAIL': '/var/spool/mail/matej', | |
'OLDPWD': '/home/matej/djangoprojects', | |
'PATH': '/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin', | |
'PATH_INFO': u'/', | |
'PS1': '(djangoprojects)[\\u@\\h \\W]\\$ ', | |
'PWD': '/home/matej/djangoprojects/coelodonta', | |
'QUERY_STRING': '', | |
'REMOTE_ADDR': '192.168.0.6', | |
'REMOTE_HOST': '', | |
'REQUEST_METHOD': 'GET', | |
'RUN_MAIN': 'true', | |
'SCRIPT_NAME': u'', | |
'SELINUX_LEVEL_REQUESTED': '', | |
'SELINUX_ROLE_REQUESTED': '', | |
'SELINUX_USE_CURRENT_RANGE': '', | |
'SERVER_NAME': 'luther.ceplovi.cz', | |
'SERVER_PORT': '8000', | |
'SERVER_PROTOCOL': 'HTTP/1.1', | |
'SERVER_SOFTWARE': 'WSGIServer/0.1 Python/2.6.6', | |
'SHELL': '/bin/bash', | |
'SHLVL': '1', | |
'SSH_AUTH_SOCK': '/tmp/ssh-MPCzEU6754/agent.6754', | |
'SSH_CLIENT': '192.168.0.6 49416 1304', | |
'SSH_CONNECTION': '192.168.0.6 49416 192.168.0.13 1304', | |
'SSH_TTY': '/dev/pts/1', | |
'TERM': 'xterm-256color', | |
'TZ': 'Europe/Prague', | |
'USER': 'matej', | |
'VIRTUAL_ENV': '/home/matej/djangoprojects', | |
'XMODIFIERS': '@im=ibus', | |
'_': '/home/matej/djangoprojects/bin/python', | |
'wsgi.errors': <open file '<stderr>', mode 'w' at 0xb77c70d0>, | |
'wsgi.file_wrapper': <class wsgiref.util.FileWrapper at 0xa2c2f2c>, | |
'wsgi.input': <socket._fileobject object at 0xb44037ac>, | |
'wsgi.multiprocess': False, | |
'wsgi.multithread': True, | |
'wsgi.run_once': False, | |
'wsgi.url_scheme': 'http', | |
'wsgi.version': (1, 0)}>}, {u'MEDIA_URL': ''}, {'ZINNIA_VERSION': '0.13'}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
'>, <Variable Node: block.super>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>, <IfNode>, <Text Node: ' | |
'>]>}, {'block': <Block Node: link. Contents: [<Text Node: ' | |
<link rel="index" hr'>, <django.template.defaulttags.URLNode object at 0xb409d8ec>, <Text Node: '" /> | |
<link rel="autho'>, <django.template.defaulttags.URLNode object at 0xb40a780c>, <Text Node: '" /> | |
<link rel="EditU'>, <django.template.defaulttags.URLNode object at 0xb40a7b2c>, <Text Node: '" /> | |
<link rel="wlwma'>, <django.template.defaulttags.URLNode object at 0xb40a71ec>, <Text Node: '" /> | |
<link rel="searc'>, <django.template.defaulttags.URLNode object at 0xb40a7b4c>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a7c2c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7fcc>, <Text Node: '" /> | |
<link rel="alter'>, <django.templatetags.i18n.TranslateNode object at 0xb40a722c>, <Text Node: '" href="'>, <django.template.defaulttags.URLNode object at 0xb40a7d2c>, <Text Node: '" /> | |
'>, <django.template.base.InclusionNode object at 0xb40a702c>, <Text Node: ' | |
'>]>}]</pre></td> | |
</tr> | |
<tr> | |
<td>resolved_kwargs</td> | |
<td class="code"><pre>{}</pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.template.base.InclusionNode object at 0xb40a702c></pre></td> | |
</tr> | |
<tr> | |
<td>context_class</td> | |
<td class="code"><pre><class 'django.template.context.Context'></pre></td> | |
</tr> | |
<tr> | |
<td>func</td> | |
<td class="code"><pre><function get_archives_entries at 0xb5c7909c></pre></td> | |
</tr> | |
<tr> | |
<td>file_name</td> | |
<td class="code"><pre>'zinnia/tags/dummy.html'</pre></td> | |
</tr> | |
<tr> | |
<td>resolved_args</td> | |
<td class="code"><pre>[u'zinnia/tags/archives_entries_link.html']</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame user"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/zinnia/templatetags/zinnia_tags.py</code> in <code>get_archives_entries</code> | |
<div class="context" id="c3021240356"> | |
<ol style="display: none;" start="155" class="pre-context" id="pre3021240356"><li onclick="toggle('pre3021240356', 'post3021240356')"><pre></pre></li><li onclick="toggle('pre3021240356', 'post3021240356')"><pre></pre></li><li onclick="toggle('pre3021240356', 'post3021240356')"><pre>@register.inclusion_tag('zinnia/tags/dummy.html')</pre></li><li onclick="toggle('pre3021240356', 'post3021240356')"><pre>def get_archives_entries(template='zinnia/tags/archives_entries.html'):</pre></li><li onclick="toggle('pre3021240356', 'post3021240356')"><pre> """Return archives entries"""</pre></li><li onclick="toggle('pre3021240356', 'post3021240356')"><pre> return {'template': template,</pre></li><li onclick="toggle('pre3021240356', 'post3021240356')"><pre> 'archives': Entry.published.dates('creation_date', 'month',</pre></li></ol> | |
<ol start="162" class="context-line"><li onclick="toggle('pre3021240356', 'post3021240356')"><pre> order='DESC')}</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="163" class="post-context" id="post3021240356"><li onclick="toggle('pre3021240356', 'post3021240356')"><pre></pre></li><li onclick="toggle('pre3021240356', 'post3021240356')"><pre></pre></li><li onclick="toggle('pre3021240356', 'post3021240356')"><pre>@register.inclusion_tag('zinnia/tags/dummy.html')</pre></li><li onclick="toggle('pre3021240356', 'post3021240356')"><pre>def get_archives_entries_tree(</pre></li><li onclick="toggle('pre3021240356', 'post3021240356')"><pre> template='zinnia/tags/archives_entries_tree.html'):</pre></li><li onclick="toggle('pre3021240356', 'post3021240356')"><pre> """Return archives entries as a Tree"""</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021240356')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021240356"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>template</td> | |
<td class="code"><pre>u'zinnia/tags/archives_entries_link.html'</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/manager.py</code> in <code>dates</code> | |
<div class="context" id="c3021238436"> | |
<ol style="display: none;" start="132" class="pre-context" id="pre3021238436"><li onclick="toggle('pre3021238436', 'post3021238436')"><pre> def all(self):</pre></li><li onclick="toggle('pre3021238436', 'post3021238436')"><pre> return self.get_queryset()</pre></li><li onclick="toggle('pre3021238436', 'post3021238436')"><pre></pre></li><li onclick="toggle('pre3021238436', 'post3021238436')"><pre> def count(self):</pre></li><li onclick="toggle('pre3021238436', 'post3021238436')"><pre> return self.get_queryset().count()</pre></li><li onclick="toggle('pre3021238436', 'post3021238436')"><pre></pre></li><li onclick="toggle('pre3021238436', 'post3021238436')"><pre> def dates(self, *args, **kwargs):</pre></li></ol> | |
<ol start="139" class="context-line"><li onclick="toggle('pre3021238436', 'post3021238436')"><pre> return self.get_queryset().dates(*args, **kwargs)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="140" class="post-context" id="post3021238436"><li onclick="toggle('pre3021238436', 'post3021238436')"><pre></pre></li><li onclick="toggle('pre3021238436', 'post3021238436')"><pre> def datetimes(self, *args, **kwargs):</pre></li><li onclick="toggle('pre3021238436', 'post3021238436')"><pre> return self.get_queryset().datetimes(*args, **kwargs)</pre></li><li onclick="toggle('pre3021238436', 'post3021238436')"><pre></pre></li><li onclick="toggle('pre3021238436', 'post3021238436')"><pre> def distinct(self, *args, **kwargs):</pre></li><li onclick="toggle('pre3021238436', 'post3021238436')"><pre> return self.get_queryset().distinct(*args, **kwargs)</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021238436')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021238436"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><zinnia.managers.EntryPublishedManager object at 0xb682360c></pre></td> | |
</tr> | |
<tr> | |
<td>args</td> | |
<td class="code"><pre>('creation_date', 'month')</pre></td> | |
</tr> | |
<tr> | |
<td>kwargs</td> | |
<td class="code"><pre>{'order': 'DESC'}</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/query.py</code> in <code>dates</code> | |
<div class="context" id="c3021546476"> | |
<ol style="display: none;" start="540" class="pre-context" id="pre3021546476"><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> the given field_name, scoped to 'kind'.</pre></li><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> """</pre></li><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> assert kind in ("year", "month", "day"), \</pre></li><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> "'kind' must be one of 'year', 'month' or 'day'."</pre></li><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> assert order in ('ASC', 'DESC'), \</pre></li><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> "'order' must be either 'ASC' or 'DESC'."</pre></li><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> return self._clone(klass=DateQuerySet, setup=True,</pre></li></ol> | |
<ol start="547" class="context-line"><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> _field_name=field_name, _kind=kind, _order=order)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="548" class="post-context" id="post3021546476"><li onclick="toggle('pre3021546476', 'post3021546476')"><pre></pre></li><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> def datetimes(self, field_name, kind, order='ASC', tzinfo=None):</pre></li><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> """</pre></li><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> Returns a list of datetime objects representing all available</pre></li><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> datetimes for the given field_name, scoped to 'kind'.</pre></li><li onclick="toggle('pre3021546476', 'post3021546476')"><pre> """</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3021546476')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3021546476"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>kind</td> | |
<td class="code"><pre>'month'</pre></td> | |
</tr> | |
<tr> | |
<td>field_name</td> | |
<td class="code"><pre>'creation_date'</pre></td> | |
</tr> | |
<tr> | |
<td>order</td> | |
<td class="code"><pre>'DESC'</pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>, <Entry: One more step on "Be evil!" path ... REVERSED! There is always possibility of repentance!: published>, <Entry: Firefox OS phone ... first observations: published>, <Entry: Make Yubikey working with non-us keyboard layouts: published>, <Entry: Another upstream WordPress release, another zero-day Fedora update...: published>, <Entry: Reply to Tim Bray’s “What Conservatives are For”: published>, <Entry: Multiple accounts ... on the death of email apps: published>, <Entry: Yet another on identity: published>, <Entry: Calvinism & Purity of Atonement: published>, <Entry: If you are not paying for it, you're not the customer; you're the product being sold (even in the FLOSS universum): published>, <Entry: Linus on github: published>, '...(remaining elements truncated)...']</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/query.py</code> in <code>_clone</code> | |
<div class="context" id="c3024101284"> | |
<ol style="display: none;" start="842" class="pre-context" id="pre3024101284"><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> query.filter_is_sticky = True</pre></li><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> c = klass(model=self.model, query=query, using=self._db)</pre></li><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> c._for_write = self._for_write</pre></li><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> c._prefetch_related_lookups = self._prefetch_related_lookups[:]</pre></li><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> c._known_related_objects = self._known_related_objects</pre></li><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> c.__dict__.update(kwargs)</pre></li><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> if setup and hasattr(c, '_setup_query'):</pre></li></ol> | |
<ol start="849" class="context-line"><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> c._setup_query()</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="850" class="post-context" id="post3024101284"><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> return c</pre></li><li onclick="toggle('pre3024101284', 'post3024101284')"><pre></pre></li><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> def _fetch_all(self):</pre></li><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> if self._result_cache is None:</pre></li><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> self._result_cache = list(self.iterator())</pre></li><li onclick="toggle('pre3024101284', 'post3024101284')"><pre> if self._prefetch_related_lookups and not self._prefetch_done:</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3024101284')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3024101284"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>c</td> | |
<td class="code"><pre>[61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 49, 51, 50, 48, 47, 46, 45, 44, 43, 42, '...(remaining elements truncated)...']</pre></td> | |
</tr> | |
<tr> | |
<td>setup</td> | |
<td class="code"><pre>True</pre></td> | |
</tr> | |
<tr> | |
<td>klass</td> | |
<td class="code"><pre><class 'django.db.models.query.DateQuerySet'></pre></td> | |
</tr> | |
<tr> | |
<td>kwargs</td> | |
<td class="code"><pre>{'_field_name': 'creation_date', '_kind': 'month', '_order': 'DESC'}</pre></td> | |
</tr> | |
<tr> | |
<td>query</td> | |
<td class="code"><pre><django.db.models.sql.query.Query object at 0xb40be56c></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[<Entry: From The Heavens’ Glory He Came to Us: published>, <Entry: Z nebeské slávy sestoupil k nám: published>, <Entry: Couple of extremist notes on fascism: published>, <Entry: Blessed are the poor: published>, <Entry: cucutags and vim-behave: published>, <Entry: Couple of thoughts on Zarafa: published>, <Entry: Paní Hagenová a právo azylu: published>, <Entry: We should stop even pretending Google is trying to do The Right Thing™: published>, <Entry: Odpověď Danu Drápalovi: published>, <Entry: Firefox OS phone … second observations: published>, <Entry: One more step on "Be evil!" path ... REVERSED! There is always possibility of repentance!: published>, <Entry: Firefox OS phone ... first observations: published>, <Entry: Make Yubikey working with non-us keyboard layouts: published>, <Entry: Another upstream WordPress release, another zero-day Fedora update...: published>, <Entry: Reply to Tim Bray’s “What Conservatives are For”: published>, <Entry: Multiple accounts ... on the death of email apps: published>, <Entry: Yet another on identity: published>, <Entry: Calvinism & Purity of Atonement: published>, <Entry: If you are not paying for it, you're not the customer; you're the product being sold (even in the FLOSS universum): published>, <Entry: Linus on github: published>, '...(remaining elements truncated)...']</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/query.py</code> in <code>_setup_query</code> | |
<div class="context" id="c3024099364"> | |
<ol style="display: none;" start="1106" class="pre-context" id="pre3024099364"><li onclick="toggle('pre3024099364', 'post3024099364')"><pre></pre></li><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> Called by the _clone() method after initializing the rest of the</pre></li><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> instance.</pre></li><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> """</pre></li><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> self.query.clear_deferred_loading()</pre></li><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> self.query = self.query.clone(klass=sql.DateQuery, setup=True)</pre></li><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> self.query.select = []</pre></li></ol> | |
<ol start="1113" class="context-line"><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> self.query.add_select(self._field_name, self._kind, self._order)</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="1114" class="post-context" id="post3024099364"><li onclick="toggle('pre3024099364', 'post3024099364')"><pre></pre></li><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> def _clone(self, klass=None, setup=False, **kwargs):</pre></li><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> c = super(DateQuerySet, self)._clone(klass, False, **kwargs)</pre></li><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> c._field_name = self._field_name</pre></li><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> c._kind = self._kind</pre></li><li onclick="toggle('pre3024099364', 'post3024099364')"><pre> if setup and hasattr(c, '_setup_query'):</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3024099364')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3024099364"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre>[61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 49, 51, 50, 48, 47, 46, 45, 44, 43, 42, '...(remaining elements truncated)...']</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/sql/subqueries.py</code> in <code>add_select</code> | |
<div class="context" id="c3024100804"> | |
<ol style="display: none;" start="235" class="pre-context" id="pre3024100804"><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> self.get_initial_alias(),</pre></li><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> )</pre></li><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> except FieldError:</pre></li><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> raise FieldDoesNotExist("%s has no field named '%s'" % (</pre></li><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> self.get_meta().object_name, field_name</pre></li><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> ))</pre></li><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> field = result[0]</pre></li></ol> | |
<ol start="242" class="context-line"><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> self._check_field(field) # overridden in DateTimeQuery</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="243" class="post-context" id="post3024100804"><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> alias = result[3][-1]</pre></li><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> select = self._get_select((alias, field.column), lookup_type)</pre></li><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> self.clear_select_clause()</pre></li><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> self.select = [SelectInfo(select, None)]</pre></li><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> self.distinct = True</pre></li><li onclick="toggle('pre3024100804', 'post3024100804')"><pre> self.order_by = [1] if order == 'ASC' else [-1]</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3024100804')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3024100804"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>lookup_type</td> | |
<td class="code"><pre>'month'</pre></td> | |
</tr> | |
<tr> | |
<td>order</td> | |
<td class="code"><pre>'DESC'</pre></td> | |
</tr> | |
<tr> | |
<td>field</td> | |
<td class="code"><pre><django.db.models.fields.DateTimeField: creation_date></pre></td> | |
</tr> | |
<tr> | |
<td>result</td> | |
<td class="code"><pre>(<django.db.models.fields.DateTimeField: creation_date>, | |
(<django.db.models.fields.DateTimeField: creation_date>,), | |
<Options for Entry>, | |
[u'zinnia_entry'], | |
[])</pre></td> | |
</tr> | |
<tr> | |
<td>field_name</td> | |
<td class="code"><pre>'creation_date'</pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.db.models.sql.subqueries.DateQuery object at 0xb40be6ec></pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
<li class="frame django"> | |
<code>/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/sql/subqueries.py</code> in <code>_check_field</code> | |
<div class="context" id="c3022640468"> | |
<ol style="display: none;" start="251" class="pre-context" id="pre3022640468"><li onclick="toggle('pre3022640468', 'post3022640468')"><pre> self.add_filter(("%s__isnull" % field_name, False))</pre></li><li onclick="toggle('pre3022640468', 'post3022640468')"><pre></pre></li><li onclick="toggle('pre3022640468', 'post3022640468')"><pre> def _check_field(self, field):</pre></li><li onclick="toggle('pre3022640468', 'post3022640468')"><pre> assert isinstance(field, DateField), \</pre></li><li onclick="toggle('pre3022640468', 'post3022640468')"><pre> "%r isn't a DateField." % field.name</pre></li><li onclick="toggle('pre3022640468', 'post3022640468')"><pre> if settings.USE_TZ:</pre></li><li onclick="toggle('pre3022640468', 'post3022640468')"><pre> assert not isinstance(field, DateTimeField), \</pre></li></ol> | |
<ol start="258" class="context-line"><li onclick="toggle('pre3022640468', 'post3022640468')"><pre> "%r is a DateTimeField, not a DateField." % field.name</pre> <span>...</span></li></ol> | |
<ol style="display: none;" start="259" class="post-context" id="post3022640468"><li onclick="toggle('pre3022640468', 'post3022640468')"><pre></pre></li><li onclick="toggle('pre3022640468', 'post3022640468')"><pre> def _get_select(self, col, lookup_type):</pre></li><li onclick="toggle('pre3022640468', 'post3022640468')"><pre> return Date(col, lookup_type)</pre></li><li onclick="toggle('pre3022640468', 'post3022640468')"><pre></pre></li><li onclick="toggle('pre3022640468', 'post3022640468')"><pre>class DateTimeQuery(DateQuery):</pre></li><li onclick="toggle('pre3022640468', 'post3022640468')"><pre> """</pre></li></ol> | |
</div> | |
<div class="commands"> | |
<a href="#" onclick="return varToggle(this, '3022640468')"><span>▶</span> Local vars</a> | |
</div> | |
<table style="display: none;" class="vars" id="v3022640468"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>field</td> | |
<td class="code"><pre><django.db.models.fields.DateTimeField: creation_date></pre></td> | |
</tr> | |
<tr> | |
<td>self</td> | |
<td class="code"><pre><django.db.models.sql.subqueries.DateQuery object at 0xb40be6ec></pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</li> | |
</ul> | |
</div> | |
<form action="http://dpaste.com/" name="pasteform" id="pasteform" method="post"> | |
<div style="display: none;" id="pastebinTraceback" class="pastebin"> | |
<input name="language" value="PythonConsole" type="hidden"> | |
<input name="title" value="AssertionError at /" type="hidden"> | |
<input name="source" value="Django Dpaste Agent" type="hidden"> | |
<input name="poster" value="Django" type="hidden"> | |
<textarea name="content" id="traceback_area" cols="140" rows="25">Environment: | |
Request | |
Method: GET | |
Request URL: http://luther.ceplovi.cz:8000/ | |
Django Version: 1.6.1 | |
Python Version: 2.6.6 | |
Installed Applications: | |
('django.contrib.auth', | |
'django.contrib.admin', | |
'django.contrib.sites', | |
'django.contrib.comments', | |
'django.contrib.sessions', | |
'django.contrib.messages', | |
'django.contrib.staticfiles', | |
'django.contrib.contenttypes', | |
'django.contrib.admindocs', | |
'tagging', | |
'mptt', | |
'south', | |
'zinnia_bootstrap', | |
'zinnia') | |
Installed Middleware: | |
('django.middleware.common.CommonMiddleware', | |
'django.contrib.sessions.middleware.SessionMiddleware', | |
'django.middleware.csrf.CsrfViewMiddleware', | |
'django.contrib.auth.middleware.AuthenticationMiddleware', | |
'django.contrib.messages.middleware.MessageMiddleware') | |
Template error: | |
In template | |
app_namespace:zinnia:/home/matej/djangoprojects/lib/python2.6/site-packages/zinnia/templates/zinnia/base.html, | |
error at line 18 | |
'creation_date' is a DateTimeField, not a DateField. | |
8 : {% endblock meta %} | |
9 : | |
10 : {% block link %} | |
11 : <link rel="index" href="{% url | |
'zinnia_entry_archive_index' %}" /> | |
12 : <link rel="author" type="text/plain" href="{% url | |
'zinnia_humans' %}" /> | |
13 : <link rel="EditURI" type="application/rsd+xml" href="{% | |
url 'zinnia_rsd' %}" /> | |
14 : <link rel="wlwmanifest" | |
type="application/wlwmanifest+xml" href="{% url 'zinnia_wlwmanifest' %}" | |
/> | |
15 : <link rel="search" | |
type="application/opensearchdescription+xml" title="Zinnia's Blog" | |
href="{% url 'zinnia_opensearch' %}" /> | |
16 : <link rel="alternate" type="application/rss+xml" | |
title="{% trans "RSS Feed of latest entries" %}" href="{% url | |
'zinnia_entry_latest_feed' %}" /> | |
17 : <link rel="alternate" type="application/rss+xml" | |
title="{% trans "RSS Feed of latest discussions" %}" href="{% url | |
'zinnia_discussion_latest_feed' %}" /> | |
18 : {% get_archives_entries | |
"zinnia/tags/archives_entries_link.html" %} | |
19 : {% endblock link %} | |
20 : | |
21 : {% block breadcrumbs %} | |
22 : {% zinnia_breadcrumbs %} | |
23 : {% endblock breadcrumbs %} | |
24 : | |
25 : {% block sidebar %} | |
26 : <div id="widget-welcome" class="widget"> | |
27 : <h3>{% trans "Welcome!" %}</h3> | |
28 : <p> | |
Traceback: | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/core/handlers/base.py" | |
in get_response | |
139. response = response.render() | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/response.py" | |
in render | |
105. self.content = self.rendered_content | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/response.py" | |
in rendered_content | |
82. content = template.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in render | |
140. return self._render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in _render | |
134. return self.nodelist.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in render | |
840. bit = self.render_node(node, context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py" | |
in render_node | |
78. return node.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py" | |
in render | |
123. return compiled_parent._render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in _render | |
134. return self.nodelist.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in render | |
840. bit = self.render_node(node, context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py" | |
in render_node | |
78. return node.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py" | |
in render | |
123. return compiled_parent._render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in _render | |
134. return self.nodelist.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in render | |
840. bit = self.render_node(node, context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py" | |
in render_node | |
78. return node.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py" | |
in render | |
123. return compiled_parent._render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in _render | |
134. return self.nodelist.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in render | |
840. bit = self.render_node(node, context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py" | |
in render_node | |
78. return node.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py" | |
in render | |
123. return compiled_parent._render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in _render | |
134. return self.nodelist.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in render | |
840. bit = self.render_node(node, context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py" | |
in render_node | |
78. return node.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py" | |
in render | |
62. result = block.nodelist.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in render | |
840. bit = self.render_node(node, context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py" | |
in render_node | |
78. return node.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py" | |
in render | |
88. output = self.filter_expression.resolve(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in resolve | |
585. obj = self.var.resolve(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in resolve | |
735. value = self._resolve_lookup(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in _resolve_lookup | |
789. current = current() | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py" | |
in super | |
72. return mark_safe(self.render(self.context)) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/loader_tags.py" | |
in render | |
62. result = block.nodelist.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in render | |
840. bit = self.render_node(node, context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/debug.py" | |
in render_node | |
78. return node.render(context) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/template/base.py" | |
in render | |
1196. _dict = func(*resolved_args, | |
**resolved_kwargs) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/zinnia/templatetags/zinnia_tags.py" | |
in get_archives_entries | |
162. order='DESC')} | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/manager.py" | |
in dates | |
139. return self.get_queryset().dates(*args, **kwargs) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/query.py" | |
in dates | |
547. _field_name=field_name, _kind=kind, _order=order) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/query.py" | |
in _clone | |
849. c._setup_query() | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/query.py" | |
in _setup_query | |
1113. self.query.add_select(self._field_name, self._kind, | |
self._order) | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/sql/subqueries.py" | |
in add_select | |
242. self._check_field(field) # overridden in | |
DateTimeQuery | |
File | |
"/home/matej/djangoprojects/lib/python2.6/site-packages/django/db/models/sql/subqueries.py" | |
in _check_field | |
258. "%r is a DateTimeField, not a DateField." % | |
field.name | |
Exception Type: AssertionError at / | |
Exception Value: 'creation_date' is a DateTimeField, not a DateField. | |
</textarea><img style="cursor: pointer ! important; display: none ! important; position: absolute ! important; padding: 0px ! important; margin: 0px ! important; border: medium none ! important; width: 28px ! important; height: 14px ! important; opacity: 0.0152174 ! important; left: 1166px ! important; top: 97575px ! important;" title="It's All Text!" src="AssertionError%20at%20__files/gumdrop.png"> | |
<br><br> | |
<input value="Share this traceback on a public Web site" type="submit"> | |
</div> | |
</form> | |
</div> | |
<div id="requestinfo"> | |
<h2>Request information</h2> | |
<h3 id="get-info">GET</h3> | |
<p>No GET data</p> | |
<h3 id="post-info">POST</h3> | |
<p>No POST data</p> | |
<h3 id="files-info">FILES</h3> | |
<p>No FILES data</p> | |
<h3 id="cookie-info">COOKIES</h3> | |
<table class="req"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>VERSION-m2crypto</td> | |
<td class="code"><pre>'unspecified'</pre></td> | |
</tr> | |
<tr> | |
<td>BUGLIST</td> | |
<td class="code"><pre>'55%3A56%3A77%3A79'</pre></td> | |
</tr> | |
<tr> | |
<td>messages</td> | |
<td class="code"><pre>'77b8c4f1a035da47ab48a80bf1747ae04a45371b$[["__json_message",0,25,"Successfully deleted 2 users."],["__json_message",0,25,"Successfully deleted 61 entries."],["__json_message",0,25,"Successfully deleted 100 comments."],["__json_message",0,25,"Successfully deleted 38 comments."],["__json_message",0,25,"Successfully deleted 1 user."],["__json_message",0,25,"Successfully deleted 1 site."],["__json_message",0,25,"Successfully deleted 10 tags."],["__json_message",0,25,"Successfully deleted 18 categories."],["__json_message",0,25,"The entry \\"Pan\\u00ed Hagenov\\u00e1 a pr\\u00e1vo azylu: published\\" was changed successfully."],["__json_message",0,25,"The site \\"luther.ceplovi.cz:8000\\" was changed successfully."]]'</pre></td> | |
</tr> | |
<tr> | |
<td>SPLITHEADER</td> | |
<td class="code"><pre>'1'</pre></td> | |
</tr> | |
<tr> | |
<td>VERSION-Sword</td> | |
<td class="code"><pre>'unspecified'</pre></td> | |
</tr> | |
<tr> | |
<td>VERSION-Ideas</td> | |
<td class="code"><pre>'unspecified'</pre></td> | |
</tr> | |
<tr> | |
<td>VERSION-hesla</td> | |
<td class="code"><pre>'unspecified'</pre></td> | |
</tr> | |
<tr> | |
<td>VERSION-html2text</td> | |
<td class="code"><pre>'unspecified'</pre></td> | |
</tr> | |
<tr> | |
<td>LASTORDER</td> | |
<td class="code"><pre>'target_milestone%2Cpriority%2Cbug_severity'</pre></td> | |
</tr> | |
<tr> | |
<td>sessionid</td> | |
<td class="code"><pre>'i1okuhgvrnr4cy0clkp85or1os6bemj0'</pre></td> | |
</tr> | |
<tr> | |
<td>DEFAULTFORMAT</td> | |
<td class="code"><pre>'advanced'</pre></td> | |
</tr> | |
<tr> | |
<td>VERSION-inkscape-ungroup-deep</td> | |
<td class="code"><pre>'unspecified'</pre></td> | |
</tr> | |
<tr> | |
<td>VERSION-importLDIF</td> | |
<td class="code"><pre>'unspecified'</pre></td> | |
</tr> | |
<tr> | |
<td>__qca</td> | |
<td class="code"><pre>'P0-24573179-1354658075160'</pre></td> | |
</tr> | |
<tr> | |
<td>csrftoken</td> | |
<td class="code"><pre>'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK'</pre></td> | |
</tr> | |
<tr> | |
<td>VERSION-elasmotherium</td> | |
<td class="code"><pre>'unspecified'</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
<h3 id="meta-info">META</h3> | |
<table class="req"> | |
<thead> | |
<tr> | |
<th>Variable</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>LC_NUMERIC</td> | |
<td class="code"><pre>'en_IE.utf8'</pre></td> | |
</tr> | |
<tr> | |
<td>wsgi.multiprocess</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>RUN_MAIN</td> | |
<td class="code"><pre>'true'</pre></td> | |
</tr> | |
<tr> | |
<td>HTTP_COOKIE</td> | |
<td class="code"><pre>'VERSION-elasmotherium=unspecified; VERSION-hesla=unspecified; LASTORDER=target_milestone%2Cpriority%2Cbug_severity; __qca=P0-24573179-1354658075160; VERSION-inkscape-ungroup-deep=unspecified; DEFAULTFORMAT=advanced; VERSION-Sword=unspecified; VERSION-Ideas=unspecified; VERSION-html2text=unspecified; VERSION-m2crypto=unspecified; VERSION-importLDIF=unspecified; SPLITHEADER=1; BUGLIST=55%3A56%3A77%3A79; csrftoken=cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK; sessionid=i1okuhgvrnr4cy0clkp85or1os6bemj0; messages="77b8c4f1a035da47ab48a80bf1747ae04a45371b$[[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 2 users.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 61 entries.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 100 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 38 comments.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 user.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 1 site.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 10 tags.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"Successfully deleted 18 categories.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The entry \\\\\\"Pan\\\\u00ed Hagenov\\\\u00e1 a pr\\\\u00e1vo azylu: published\\\\\\" was changed successfully.\\"]\\054[\\"__json_message\\"\\0540\\05425\\054\\"The site \\\\\\"luther.ceplovi.cz:8000\\\\\\" was changed successfully.\\"]]"'</pre></td> | |
</tr> | |
<tr> | |
<td>SERVER_PROTOCOL</td> | |
<td class="code"><pre>'HTTP/1.1'</pre></td> | |
</tr> | |
<tr> | |
<td>SERVER_SOFTWARE</td> | |
<td class="code"><pre>'WSGIServer/0.1 Python/2.6.6'</pre></td> | |
</tr> | |
<tr> | |
<td>SCRIPT_NAME</td> | |
<td class="code"><pre>u''</pre></td> | |
</tr> | |
<tr> | |
<td>LESSOPEN</td> | |
<td class="code"><pre>'|/usr/bin/lesspipe.sh %s'</pre></td> | |
</tr> | |
<tr> | |
<td>QUERY_STRING</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>SSH_CLIENT</td> | |
<td class="code"><pre>'192.168.0.6 49416 1304'</pre></td> | |
</tr> | |
<tr> | |
<td>SELINUX_USE_CURRENT_RANGE</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>LOGNAME</td> | |
<td class="code"><pre>'matej'</pre></td> | |
</tr> | |
<tr> | |
<td>USER</td> | |
<td class="code"><pre>'matej'</pre></td> | |
</tr> | |
<tr> | |
<td>PATH</td> | |
<td class="code"><pre>'/home/matej/djangoprojects/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/matej/bin'</pre></td> | |
</tr> | |
<tr> | |
<td>LC_PAPER</td> | |
<td class="code"><pre>'en_IE.utf8'</pre></td> | |
</tr> | |
<tr> | |
<td>HOME</td> | |
<td class="code"><pre>'/home/matej'</pre></td> | |
</tr> | |
<tr> | |
<td>PS1</td> | |
<td class="code"><pre>'(djangoprojects)[\\u@\\h \\W]\\$ '</pre></td> | |
</tr> | |
<tr> | |
<td>wsgi.errors</td> | |
<td class="code"><pre><open file '<stderr>', mode 'w' at 0xb77c70d0></pre></td> | |
</tr> | |
<tr> | |
<td>LANG</td> | |
<td class="code"><pre>'en_US.utf8'</pre></td> | |
</tr> | |
<tr> | |
<td>wsgi.url_scheme</td> | |
<td class="code"><pre>'http'</pre></td> | |
</tr> | |
<tr> | |
<td>VIRTUAL_ENV</td> | |
<td class="code"><pre>'/home/matej/djangoprojects'</pre></td> | |
</tr> | |
<tr> | |
<td>SHELL</td> | |
<td class="code"><pre>'/bin/bash'</pre></td> | |
</tr> | |
<tr> | |
<td>TZ</td> | |
<td class="code"><pre>'Europe/Prague'</pre></td> | |
</tr> | |
<tr> | |
<td>SERVER_NAME</td> | |
<td class="code"><pre>'luther.ceplovi.cz'</pre></td> | |
</tr> | |
<tr> | |
<td>REMOTE_ADDR</td> | |
<td class="code"><pre>'192.168.0.6'</pre></td> | |
</tr> | |
<tr> | |
<td>LC_MEASUREMENT</td> | |
<td class="code"><pre>'en_IE.utf8'</pre></td> | |
</tr> | |
<tr> | |
<td>G_BROKEN_FILENAMES</td> | |
<td class="code"><pre>'1'</pre></td> | |
</tr> | |
<tr> | |
<td>HISTSIZE</td> | |
<td class="code"><pre>'1000'</pre></td> | |
</tr> | |
<tr> | |
<td>REQUEST_METHOD</td> | |
<td class="code"><pre>'GET'</pre></td> | |
</tr> | |
<tr> | |
<td>SERVER_PORT</td> | |
<td class="code"><pre>'8000'</pre></td> | |
</tr> | |
<tr> | |
<td>XMODIFIERS</td> | |
<td class="code"><pre>'@im=ibus'</pre></td> | |
</tr> | |
<tr> | |
<td>CONTENT_LENGTH</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>SHLVL</td> | |
<td class="code"><pre>'1'</pre></td> | |
</tr> | |
<tr> | |
<td>HTTP_DNT</td> | |
<td class="code"><pre>'1'</pre></td> | |
</tr> | |
<tr> | |
<td>wsgi.file_wrapper</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>SSH_AUTH_SOCK</td> | |
<td class="code"><pre>'/tmp/ssh-MPCzEU6754/agent.6754'</pre></td> | |
</tr> | |
<tr> | |
<td>TERM</td> | |
<td class="code"><pre>'xterm-256color'</pre></td> | |
</tr> | |
<tr> | |
<td>CSRF_COOKIE</td> | |
<td class="code"><pre>u'cGLaVfPxbqAg4FhYN9rJyQVXX9A7novK'</pre></td> | |
</tr> | |
<tr> | |
<td>SELINUX_ROLE_REQUESTED</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>HTTP_USER_AGENT</td> | |
<td class="code"><pre>'Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0'</pre></td> | |
</tr> | |
<tr> | |
<td>HTTP_HOST</td> | |
<td class="code"><pre>'luther.ceplovi.cz:8000'</pre></td> | |
</tr> | |
<tr> | |
<td>wsgi.multithread</td> | |
<td class="code"><pre>True</pre></td> | |
</tr> | |
<tr> | |
<td>HTTP_CONNECTION</td> | |
<td class="code"><pre>'keep-alive'</pre></td> | |
</tr> | |
<tr> | |
<td>_</td> | |
<td class="code"><pre>'/home/matej/djangoprojects/bin/python'</pre></td> | |
</tr> | |
<tr> | |
<td>HTTP_ACCEPT</td> | |
<td class="code"><pre>'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'</pre></td> | |
</tr> | |
<tr> | |
<td>SSH_CONNECTION</td> | |
<td class="code"><pre>'192.168.0.6 49416 192.168.0.13 1304'</pre></td> | |
</tr> | |
<tr> | |
<td>wsgi.version</td> | |
<td class="code"><pre>(1, 0)</pre></td> | |
</tr> | |
<tr> | |
<td>GATEWAY_INTERFACE</td> | |
<td class="code"><pre>'CGI/1.1'</pre></td> | |
</tr> | |
<tr> | |
<td>wsgi.run_once</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>SSH_TTY</td> | |
<td class="code"><pre>'/dev/pts/1'</pre></td> | |
</tr> | |
<tr> | |
<td>OLDPWD</td> | |
<td class="code"><pre>'/home/matej/djangoprojects'</pre></td> | |
</tr> | |
<tr> | |
<td>HOSTNAME</td> | |
<td class="code"><pre>'luther'</pre></td> | |
</tr> | |
<tr> | |
<td>HTTP_ACCEPT_LANGUAGE</td> | |
<td class="code"><pre>'cs,en-us;q=0.5'</pre></td> | |
</tr> | |
<tr> | |
<td>wsgi.input</td> | |
<td class="code"><pre><socket._fileobject object at 0xb44037ac></pre></td> | |
</tr> | |
<tr> | |
<td>SELINUX_LEVEL_REQUESTED</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>HISTCONTROL</td> | |
<td class="code"><pre>'ignoredups'</pre></td> | |
</tr> | |
<tr> | |
<td>LC_MONETARY</td> | |
<td class="code"><pre>'en_IE.utf8'</pre></td> | |
</tr> | |
<tr> | |
<td>PWD</td> | |
<td class="code"><pre>'/home/matej/djangoprojects/coelodonta'</pre></td> | |
</tr> | |
<tr> | |
<td>CVS_RSH</td> | |
<td class="code"><pre>'ssh'</pre></td> | |
</tr> | |
<tr> | |
<td>DJANGO_SETTINGS_MODULE</td> | |
<td class="code"><pre>'myblog.settings'</pre></td> | |
</tr> | |
<tr> | |
<td>CONTENT_TYPE</td> | |
<td class="code"><pre>'text/plain'</pre></td> | |
</tr> | |
<tr> | |
<td>MAIL</td> | |
<td class="code"><pre>'/var/spool/mail/matej'</pre></td> | |
</tr> | |
<tr> | |
<td>LC_TIME</td> | |
<td class="code"><pre>'en_IE.utf8'</pre></td> | |
</tr> | |
<tr> | |
<td>LS_COLORS</td> | |
<td class="code"><pre>'rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:'</pre></td> | |
</tr> | |
<tr> | |
<td>REMOTE_HOST</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>HTTP_ACCEPT_ENCODING</td> | |
<td class="code"><pre>'gzip, deflate'</pre></td> | |
</tr> | |
<tr> | |
<td>PATH_INFO</td> | |
<td class="code"><pre>u'/'</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
<h3 id="settings-info">Settings</h3> | |
<h4>Using settings module <code>myblog.settings</code></h4> | |
<table class="req"> | |
<thead> | |
<tr> | |
<th>Setting</th> | |
<th>Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>USE_L10N</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>USE_THOUSAND_SEPARATOR</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>CSRF_COOKIE_SECURE</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>LANGUAGE_CODE</td> | |
<td class="code"><pre>'en-us'</pre></td> | |
</tr> | |
<tr> | |
<td>ROOT_URLCONF</td> | |
<td class="code"><pre>'myblog.urls'</pre></td> | |
</tr> | |
<tr> | |
<td>MANAGERS</td> | |
<td class="code"><pre>((u'Mat\u011bj Cepl', '[email protected]'),)</pre></td> | |
</tr> | |
<tr> | |
<td>DEFAULT_CHARSET</td> | |
<td class="code"><pre>'utf-8'</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_SERIALIZER</td> | |
<td class="code"><pre>'django.contrib.sessions.serializers.JSONSerializer'</pre></td> | |
</tr> | |
<tr> | |
<td>STATIC_ROOT</td> | |
<td class="code"><pre>'/home/matej/djangoprojects/coelodonta/myblog/../static'</pre></td> | |
</tr> | |
<tr> | |
<td>ALLOWED_HOSTS</td> | |
<td class="code"><pre>[]</pre></td> | |
</tr> | |
<tr> | |
<td>MESSAGE_STORAGE</td> | |
<td class="code"><pre>'django.contrib.messages.storage.fallback.FallbackStorage'</pre></td> | |
</tr> | |
<tr> | |
<td>EMAIL_SUBJECT_PREFIX</td> | |
<td class="code"><pre>'[Django] '</pre></td> | |
</tr> | |
<tr> | |
<td>FILE_UPLOAD_PERMISSIONS</td> | |
<td class="code"><pre>None</pre></td> | |
</tr> | |
<tr> | |
<td>STATICFILES_FINDERS</td> | |
<td class="code"><pre>('django.contrib.staticfiles.finders.FileSystemFinder', | |
'django.contrib.staticfiles.finders.AppDirectoriesFinder')</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_CACHE_ALIAS</td> | |
<td class="code"><pre>'default'</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_COOKIE_DOMAIN</td> | |
<td class="code"><pre>None</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_COOKIE_NAME</td> | |
<td class="code"><pre>'sessionid'</pre></td> | |
</tr> | |
<tr> | |
<td>ADMIN_FOR</td> | |
<td class="code"><pre>()</pre></td> | |
</tr> | |
<tr> | |
<td>TIME_INPUT_FORMATS</td> | |
<td class="code"><pre>('%H:%M:%S', '%H:%M:%S.%f', '%H:%M')</pre></td> | |
</tr> | |
<tr> | |
<td>DATABASES</td> | |
<td class="code"><pre>{'default': {'ATOMIC_REQUESTS': False, | |
'AUTOCOMMIT': True, | |
'CONN_MAX_AGE': 0, | |
'ENGINE': 'django.db.backends.postgresql_psycopg2', | |
'HOST': '', | |
'NAME': 'coelodonta', | |
'OPTIONS': {}, | |
'PASSWORD': u'********************', | |
'PORT': '', | |
'TEST_CHARSET': None, | |
'TEST_COLLATION': None, | |
'TEST_MIRROR': None, | |
'TEST_NAME': None, | |
'TIME_ZONE': 'UTC', | |
'USER': 'matej'}}</pre></td> | |
</tr> | |
<tr> | |
<td>SERVER_EMAIL</td> | |
<td class="code"><pre>'root@localhost'</pre></td> | |
</tr> | |
<tr> | |
<td>FILE_UPLOAD_HANDLERS</td> | |
<td class="code"><pre>('django.core.files.uploadhandler.MemoryFileUploadHandler', | |
'django.core.files.uploadhandler.TemporaryFileUploadHandler')</pre></td> | |
</tr> | |
<tr> | |
<td>DEFAULT_CONTENT_TYPE</td> | |
<td class="code"><pre>'text/html'</pre></td> | |
</tr> | |
<tr> | |
<td>APPEND_SLASH</td> | |
<td class="code"><pre>True</pre></td> | |
</tr> | |
<tr> | |
<td>FIRST_DAY_OF_WEEK</td> | |
<td class="code"><pre>0</pre></td> | |
</tr> | |
<tr> | |
<td>DATABASE_ROUTERS</td> | |
<td class="code"><pre>[]</pre></td> | |
</tr> | |
<tr> | |
<td>YEAR_MONTH_FORMAT</td> | |
<td class="code"><pre>'F Y'</pre></td> | |
</tr> | |
<tr> | |
<td>STATICFILES_STORAGE</td> | |
<td class="code"><pre>'django.contrib.staticfiles.storage.StaticFilesStorage'</pre></td> | |
</tr> | |
<tr> | |
<td>CACHES</td> | |
<td class="code"><pre>{'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}}</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_COOKIE_PATH</td> | |
<td class="code"><pre>'/'</pre></td> | |
</tr> | |
<tr> | |
<td>MIDDLEWARE_CLASSES</td> | |
<td class="code"><pre>('django.middleware.common.CommonMiddleware', | |
'django.contrib.sessions.middleware.SessionMiddleware', | |
'django.middleware.csrf.CsrfViewMiddleware', | |
'django.contrib.auth.middleware.AuthenticationMiddleware', | |
'django.contrib.messages.middleware.MessageMiddleware')</pre></td> | |
</tr> | |
<tr> | |
<td>USE_I18N</td> | |
<td class="code"><pre>True</pre></td> | |
</tr> | |
<tr> | |
<td>THOUSAND_SEPARATOR</td> | |
<td class="code"><pre>','</pre></td> | |
</tr> | |
<tr> | |
<td>SECRET_KEY</td> | |
<td class="code"><pre>u'********************'</pre></td> | |
</tr> | |
<tr> | |
<td>LANGUAGE_COOKIE_NAME</td> | |
<td class="code"><pre>'django_language'</pre></td> | |
</tr> | |
<tr> | |
<td>DEFAULT_INDEX_TABLESPACE</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>TRANSACTIONS_MANAGED</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>LOGGING_CONFIG</td> | |
<td class="code"><pre>'django.utils.log.dictConfig'</pre></td> | |
</tr> | |
<tr> | |
<td>SEND_BROKEN_LINK_EMAILS</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>TEMPLATE_LOADERS</td> | |
<td class="code"><pre>('app_namespace.Loader', | |
'django.template.loaders.filesystem.Loader', | |
'django.template.loaders.app_directories.Loader')</pre></td> | |
</tr> | |
<tr> | |
<td>WSGI_APPLICATION</td> | |
<td class="code"><pre>'myblog.wsgi.application'</pre></td> | |
</tr> | |
<tr> | |
<td>TEMPLATE_DEBUG</td> | |
<td class="code"><pre>True</pre></td> | |
</tr> | |
<tr> | |
<td>X_FRAME_OPTIONS</td> | |
<td class="code"><pre>'SAMEORIGIN'</pre></td> | |
</tr> | |
<tr> | |
<td>AUTHENTICATION_BACKENDS</td> | |
<td class="code"><pre>('django.contrib.auth.backends.ModelBackend',)</pre></td> | |
</tr> | |
<tr> | |
<td>FORCE_SCRIPT_NAME</td> | |
<td class="code"><pre>None</pre></td> | |
</tr> | |
<tr> | |
<td>USE_X_FORWARDED_HOST</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>SIGNING_BACKEND</td> | |
<td class="code"><pre>'django.core.signing.TimestampSigner'</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_COOKIE_SECURE</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>CSRF_COOKIE_DOMAIN</td> | |
<td class="code"><pre>None</pre></td> | |
</tr> | |
<tr> | |
<td>FILE_CHARSET</td> | |
<td class="code"><pre>'utf-8'</pre></td> | |
</tr> | |
<tr> | |
<td>DEBUG</td> | |
<td class="code"><pre>True</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_FILE_PATH</td> | |
<td class="code"><pre>None</pre></td> | |
</tr> | |
<tr> | |
<td>DEFAULT_FILE_STORAGE</td> | |
<td class="code"><pre>'django.core.files.storage.FileSystemStorage'</pre></td> | |
</tr> | |
<tr> | |
<td>INSTALLED_APPS</td> | |
<td class="code"><pre>('django.contrib.auth', | |
'django.contrib.admin', | |
'django.contrib.sites', | |
'django.contrib.comments', | |
'django.contrib.sessions', | |
'django.contrib.messages', | |
'django.contrib.staticfiles', | |
'django.contrib.contenttypes', | |
'django.contrib.admindocs', | |
'tagging', | |
'mptt', | |
'south', | |
'zinnia_bootstrap', | |
'zinnia')</pre></td> | |
</tr> | |
<tr> | |
<td>LANGUAGES</td> | |
<td class="code"><pre>(('af', 'Afrikaans'), | |
('ar', 'Arabic'), | |
('az', 'Azerbaijani'), | |
('bg', 'Bulgarian'), | |
('be', 'Belarusian'), | |
('bn', 'Bengali'), | |
('br', 'Breton'), | |
('bs', 'Bosnian'), | |
('ca', 'Catalan'), | |
('cs', 'Czech'), | |
('cy', 'Welsh'), | |
('da', 'Danish'), | |
('de', 'German'), | |
('el', 'Greek'), | |
('en', 'English'), | |
('en-gb', 'British English'), | |
('eo', 'Esperanto'), | |
('es', 'Spanish'), | |
('es-ar', 'Argentinian Spanish'), | |
('es-mx', 'Mexican Spanish'), | |
('es-ni', 'Nicaraguan Spanish'), | |
('es-ve', 'Venezuelan Spanish'), | |
('et', 'Estonian'), | |
('eu', 'Basque'), | |
('fa', 'Persian'), | |
('fi', 'Finnish'), | |
('fr', 'French'), | |
('fy-nl', 'Frisian'), | |
('ga', 'Irish'), | |
('gl', 'Galician'), | |
('he', 'Hebrew'), | |
('hi', 'Hindi'), | |
('hr', 'Croatian'), | |
('hu', 'Hungarian'), | |
('ia', 'Interlingua'), | |
('id', 'Indonesian'), | |
('is', 'Icelandic'), | |
('it', 'Italian'), | |
('ja', 'Japanese'), | |
('ka', 'Georgian'), | |
('kk', 'Kazakh'), | |
('km', 'Khmer'), | |
('kn', 'Kannada'), | |
('ko', 'Korean'), | |
('lb', 'Luxembourgish'), | |
('lt', 'Lithuanian'), | |
('lv', 'Latvian'), | |
('mk', 'Macedonian'), | |
('ml', 'Malayalam'), | |
('mn', 'Mongolian'), | |
('my', 'Burmese'), | |
('nb', 'Norwegian Bokmal'), | |
('ne', 'Nepali'), | |
('nl', 'Dutch'), | |
('nn', 'Norwegian Nynorsk'), | |
('os', 'Ossetic'), | |
('pa', 'Punjabi'), | |
('pl', 'Polish'), | |
('pt', 'Portuguese'), | |
('pt-br', 'Brazilian Portuguese'), | |
('ro', 'Romanian'), | |
('ru', 'Russian'), | |
('sk', 'Slovak'), | |
('sl', 'Slovenian'), | |
('sq', 'Albanian'), | |
('sr', 'Serbian'), | |
('sr-latn', 'Serbian Latin'), | |
('sv', 'Swedish'), | |
('sw', 'Swahili'), | |
('ta', 'Tamil'), | |
('te', 'Telugu'), | |
('th', 'Thai'), | |
('tr', 'Turkish'), | |
('tt', 'Tatar'), | |
('udm', 'Udmurt'), | |
('uk', 'Ukrainian'), | |
('ur', 'Urdu'), | |
('vi', 'Vietnamese'), | |
('zh-cn', 'Simplified Chinese'), | |
('zh-tw', 'Traditional Chinese'))</pre></td> | |
</tr> | |
<tr> | |
<td>COMMENTS_ALLOW_PROFANITIES</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>ON_OPENSHIFT</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>PREPEND_WWW</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>SECURE_PROXY_SSL_HEADER</td> | |
<td class="code"><pre>None</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_COOKIE_HTTPONLY</td> | |
<td class="code"><pre>True</pre></td> | |
</tr> | |
<tr> | |
<td>DEBUG_PROPAGATE_EXCEPTIONS</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>MONTH_DAY_FORMAT</td> | |
<td class="code"><pre>'F j'</pre></td> | |
</tr> | |
<tr> | |
<td>LOGIN_URL</td> | |
<td class="code"><pre>'/accounts/login/'</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_EXPIRE_AT_BROWSER_CLOSE</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>TIME_FORMAT</td> | |
<td class="code"><pre>'P'</pre></td> | |
</tr> | |
<tr> | |
<td>AUTH_USER_MODEL</td> | |
<td class="code"><pre>'auth.User'</pre></td> | |
</tr> | |
<tr> | |
<td>DATE_INPUT_FORMATS</td> | |
<td class="code"><pre>('%Y-%m-%d', | |
'%m/%d/%Y', | |
'%m/%d/%y', | |
'%b %d %Y', | |
'%b %d, %Y', | |
'%d %b %Y', | |
'%d %b, %Y', | |
'%B %d %Y', | |
'%B %d, %Y', | |
'%d %B %Y', | |
'%d %B, %Y')</pre></td> | |
</tr> | |
<tr> | |
<td>CSRF_COOKIE_NAME</td> | |
<td class="code"><pre>'csrftoken'</pre></td> | |
</tr> | |
<tr> | |
<td>EMAIL_HOST_PASSWORD</td> | |
<td class="code"><pre>u'********************'</pre></td> | |
</tr> | |
<tr> | |
<td>PASSWORD_RESET_TIMEOUT_DAYS</td> | |
<td class="code"><pre>u'********************'</pre></td> | |
</tr> | |
<tr> | |
<td>CACHE_MIDDLEWARE_ALIAS</td> | |
<td class="code"><pre>'default'</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_SAVE_EVERY_REQUEST</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>NUMBER_GROUPING</td> | |
<td class="code"><pre>0</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_ENGINE</td> | |
<td class="code"><pre>'django.contrib.sessions.backends.db'</pre></td> | |
</tr> | |
<tr> | |
<td>CSRF_FAILURE_VIEW</td> | |
<td class="code"><pre>'django.views.csrf.csrf_failure'</pre></td> | |
</tr> | |
<tr> | |
<td>CSRF_COOKIE_PATH</td> | |
<td class="code"><pre>'/'</pre></td> | |
</tr> | |
<tr> | |
<td>LOGIN_REDIRECT_URL</td> | |
<td class="code"><pre>'/accounts/profile/'</pre></td> | |
</tr> | |
<tr> | |
<td>DECIMAL_SEPARATOR</td> | |
<td class="code"><pre>'.'</pre></td> | |
</tr> | |
<tr> | |
<td>IGNORABLE_404_URLS</td> | |
<td class="code"><pre>()</pre></td> | |
</tr> | |
<tr> | |
<td>LOCALE_PATHS</td> | |
<td class="code"><pre>()</pre></td> | |
</tr> | |
<tr> | |
<td>TEMPLATE_STRING_IF_INVALID</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>LOGOUT_URL</td> | |
<td class="code"><pre>'/accounts/logout/'</pre></td> | |
</tr> | |
<tr> | |
<td>EMAIL_USE_TLS</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>FIXTURE_DIRS</td> | |
<td class="code"><pre>()</pre></td> | |
</tr> | |
<tr> | |
<td>EMAIL_HOST</td> | |
<td class="code"><pre>'localhost'</pre></td> | |
</tr> | |
<tr> | |
<td>DATE_FORMAT</td> | |
<td class="code"><pre>'N j, Y'</pre></td> | |
</tr> | |
<tr> | |
<td>MEDIA_ROOT</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>DEFAULT_EXCEPTION_REPORTER_FILTER</td> | |
<td class="code"><pre>'django.views.debug.SafeExceptionReporterFilter'</pre></td> | |
</tr> | |
<tr> | |
<td>ADMINS</td> | |
<td class="code"><pre>((u'Mat\u011bj Cepl', '[email protected]'),)</pre></td> | |
</tr> | |
<tr> | |
<td>FORMAT_MODULE_PATH</td> | |
<td class="code"><pre>None</pre></td> | |
</tr> | |
<tr> | |
<td>DEFAULT_FROM_EMAIL</td> | |
<td class="code"><pre>'webmaster@localhost'</pre></td> | |
</tr> | |
<tr> | |
<td>STATICFILES_DIRS</td> | |
<td class="code"><pre>()</pre></td> | |
</tr> | |
<tr> | |
<td>MEDIA_URL</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>DATETIME_FORMAT</td> | |
<td class="code"><pre>'N j, Y, P'</pre></td> | |
</tr> | |
<tr> | |
<td>TEMPLATE_DIRS</td> | |
<td class="code"><pre>()</pre></td> | |
</tr> | |
<tr> | |
<td>SITE_ID</td> | |
<td class="code"><pre>1</pre></td> | |
</tr> | |
<tr> | |
<td>DISALLOWED_USER_AGENTS</td> | |
<td class="code"><pre>()</pre></td> | |
</tr> | |
<tr> | |
<td>ALLOWED_INCLUDE_ROOTS</td> | |
<td class="code"><pre>()</pre></td> | |
</tr> | |
<tr> | |
<td>LOGGING</td> | |
<td class="code"><pre>{'disable_existing_loggers': False, | |
'filters': {'require_debug_false': {'()': 'django.utils.log.RequireDebugFalse'}}, | |
'handlers': {'mail_admins': {'class': 'django.utils.log.AdminEmailHandler', | |
'filters': ['require_debug_false'], | |
'level': 'ERROR'}}, | |
'loggers': {'django.request': {'handlers': ['mail_admins'], | |
'level': 'ERROR', | |
'propagate': True}}, | |
'version': 1}</pre></td> | |
</tr> | |
<tr> | |
<td>PROJECT_DIR</td> | |
<td class="code"><pre>'/home/matej/djangoprojects/coelodonta/myblog'</pre></td> | |
</tr> | |
<tr> | |
<td>TEST_RUNNER</td> | |
<td class="code"><pre>'django.test.runner.DiscoverRunner'</pre></td> | |
</tr> | |
<tr> | |
<td>SHORT_DATE_FORMAT</td> | |
<td class="code"><pre>'m/d/Y'</pre></td> | |
</tr> | |
<tr> | |
<td>CACHE_MIDDLEWARE_KEY_PREFIX</td> | |
<td class="code"><pre>u'********************'</pre></td> | |
</tr> | |
<tr> | |
<td>TIME_ZONE</td> | |
<td class="code"><pre>'Europe/Prague'</pre></td> | |
</tr> | |
<tr> | |
<td>FILE_UPLOAD_MAX_MEMORY_SIZE</td> | |
<td class="code"><pre>2621440</pre></td> | |
</tr> | |
<tr> | |
<td>EMAIL_BACKEND</td> | |
<td class="code"><pre>'django.core.mail.backends.smtp.EmailBackend'</pre></td> | |
</tr> | |
<tr> | |
<td>DEFAULT_TABLESPACE</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>TEMPLATE_CONTEXT_PROCESSORS</td> | |
<td class="code"><pre>('django.contrib.auth.context_processors.auth', | |
'django.core.context_processors.i18n', | |
'django.core.context_processors.request', | |
'django.core.context_processors.media', | |
'zinnia.context_processors.version')</pre></td> | |
</tr> | |
<tr> | |
<td>SESSION_COOKIE_AGE</td> | |
<td class="code"><pre>1209600</pre></td> | |
</tr> | |
<tr> | |
<td>SETTINGS_MODULE</td> | |
<td class="code"><pre>'myblog.settings'</pre></td> | |
</tr> | |
<tr> | |
<td>USE_ETAGS</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>LANGUAGES_BIDI</td> | |
<td class="code"><pre>('he', 'ar', 'fa', 'ur')</pre></td> | |
</tr> | |
<tr> | |
<td>FILE_UPLOAD_TEMP_DIR</td> | |
<td class="code"><pre>None</pre></td> | |
</tr> | |
<tr> | |
<td>INTERNAL_IPS</td> | |
<td class="code"><pre>()</pre></td> | |
</tr> | |
<tr> | |
<td>STATIC_URL</td> | |
<td class="code"><pre>'/static/'</pre></td> | |
</tr> | |
<tr> | |
<td>EMAIL_PORT</td> | |
<td class="code"><pre>25</pre></td> | |
</tr> | |
<tr> | |
<td>USE_TZ</td> | |
<td class="code"><pre>True</pre></td> | |
</tr> | |
<tr> | |
<td>SHORT_DATETIME_FORMAT</td> | |
<td class="code"><pre>'m/d/Y P'</pre></td> | |
</tr> | |
<tr> | |
<td>PASSWORD_HASHERS</td> | |
<td class="code"><pre>u'********************'</pre></td> | |
</tr> | |
<tr> | |
<td>ABSOLUTE_URL_OVERRIDES</td> | |
<td class="code"><pre>{}</pre></td> | |
</tr> | |
<tr> | |
<td>CACHE_MIDDLEWARE_SECONDS</td> | |
<td class="code"><pre>600</pre></td> | |
</tr> | |
<tr> | |
<td>CSRF_COOKIE_HTTPONLY</td> | |
<td class="code"><pre>False</pre></td> | |
</tr> | |
<tr> | |
<td>DATETIME_INPUT_FORMATS</td> | |
<td class="code"><pre>('%Y-%m-%d %H:%M:%S', | |
'%Y-%m-%d %H:%M:%S.%f', | |
'%Y-%m-%d %H:%M', | |
'%Y-%m-%d', | |
'%m/%d/%Y %H:%M:%S', | |
'%m/%d/%Y %H:%M:%S.%f', | |
'%m/%d/%Y %H:%M', | |
'%m/%d/%Y', | |
'%m/%d/%y %H:%M:%S', | |
'%m/%d/%y %H:%M:%S.%f', | |
'%m/%d/%y %H:%M', | |
'%m/%d/%y')</pre></td> | |
</tr> | |
<tr> | |
<td>EMAIL_HOST_USER</td> | |
<td class="code"><pre>''</pre></td> | |
</tr> | |
<tr> | |
<td>PROFANITIES_LIST</td> | |
<td class="code"><pre>u'********************'</pre></td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
<div id="explanation"> | |
<p> | |
You're seeing this error because you have <code>DEBUG = True</code> in your | |
Django settings file. Change that to <code>False</code>, and Django will | |
display a standard 500 page. | |
</p> | |
</div> | |
</body></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment