##// END OF EJS Templates
ssh: embedded ssh support...
ssh: embedded ssh support - updated command generation and added debug flag - updated .ini config to have ALL required components to run SSH commands - rcssh-wrapper now is embedded and pinned into version of enterprise - update ssh_support configration - implements #5343

File last commit:

r1:854a839a default
r2043:338dc54d default
Show More
pylons_context.dbtmako
24 lines | 641 B | text/plain | TextLexer
% if pylons_context:
<table class="table table-striped table-condensed">
<thead>
<th>Key</th>
<th>Value</th>
</thead>
<tbody>
% for key in sorted(pylons_context.keys()):
<tr>
<td>${key}</td>
<td>${repr(pylons_context[key])}</td>
</tr>
% endfor
</tbody>
</table>
% else:
<p>No context information found.</p>
<p>The integrated Pylons application has to be abjusted to make the context object available.
It should check for <code>environ['debugtoolbar.wants_pylons_context'] == True</code> and set
<code>environ['debugtoolbar.pylons_context'] = tmpl_context._current_obj()</code>.</p>
% endif