Template rename fix files

This commit is contained in:
Henrik Bjørnskov 2011-01-21 13:45:16 +01:00 committed by Fabien Potencier
parent a5007febdd
commit 5e9c9f4174
25 changed files with 47 additions and 47 deletions

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:layout.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
<img style="margin: 0 5px 0 10px; vertical-align: middle; height: 24px" width="24" height="24" alt="Database" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAASxJREFUeNrsV00KhCAYzaGDzLZbONcIghadoDZtiqJNbVq0Ctq06xjNCTrDnKMfGoVpsFBRqNz4QD7NR77vmZ8E1nU1VOJhKIYWoAUoF2CSAwBAf9E6L3JAHn1ADrquu6Qo2LYNWAJ2DizLYjiOg8lnO9HTnKAKwGjbFl7hhOu6/G9gnud/9DzvFieYAjDquoa3noJpmqhRuQDf99+8l5RlCWV40gKKouBuhSyPKWAcR2qMooibWZZlUIYn7UAcx0KZifKkHcjznJpZGIa7BVk8Fl/YgSAIoEhGLJ6wA4iQ3H0Md9dxVVXpUcCxDcPwQRHg9utLzR+TMmmqUCVMyIpIwrKs5/ac7IvOc7dgQ9M0KUvApZXwCHQ7YieSk9fcvQ/oHxMtQAtQLeArwABN1BHcHlpLnQAAAABJRU5ErkJggg==" />

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:layout.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
<img style="margin: 0 5px 0 10px; vertical-align: middle; height: 24px" width="24" height="24" alt="Mongo" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAASxJREFUeNrsV00KhCAYzaGDzLZbONcIghadoDZtiqJNbVq0Ctq06xjNCTrDnKMfGoVpsFBRqNz4QD7NR77vmZ8E1nU1VOJhKIYWoAUoF2CSAwBAf9E6L3JAHn1ADrquu6Qo2LYNWAJ2DizLYjiOg8lnO9HTnKAKwGjbFl7hhOu6/G9gnud/9DzvFieYAjDquoa3noJpmqhRuQDf99+8l5RlCWV40gKKouBuhSyPKWAcR2qMooibWZZlUIYn7UAcx0KZifKkHcjznJpZGIa7BVk8Fl/YgSAIoEhGLJ6wA4iQ3H0Md9dxVVXpUcCxDcPwQRHg9utLzR+TMmmqUCVMyIpIwrKs5/ac7IvOc7dgQ9M0KUvApZXwCHQ7YieSk9fcvQ/oHxMtQAtQLeArwABN1BHcHlpLnQAAAABJRU5ErkJggg==" />

View File

@ -28,6 +28,6 @@ class DefaultController extends ContainerAware
*/
public function indexAction()
{
return $this->container->get('templating')->renderResponse('FrameworkBundle:Default:index.twig.html');
return $this->container->get('templating')->renderResponse('FrameworkBundle:Default:index.html.twig');
}
}

View File

@ -47,12 +47,12 @@ class ExceptionController extends ContainerAware
if ($this->container->get('kernel')->isDebug() && 'html' == $format) {
$name = 'exception_full';
}
$template = 'FrameworkBundle:Exception:'.$name.'.twig.'.$format;
$template = 'FrameworkBundle:Exception:'.$name.$format.'.twig';
$templating = $this->container->get('templating');
if (!$templating->exists($template)) {
$this->container->get('request')->setRequestFormat('html');
$template = 'FrameworkBundle:Exception:'.$name.'.twig.html';
$template = 'FrameworkBundle:Exception:'.$name.'.html.twig';
}
$response = $templating->renderResponse(

View File

@ -8,6 +8,6 @@ class DefaultController extends Controller
{
public function indexAction()
{
return $this->render('{{ bundle }}:Default:index.twig.html');
return $this->render('{{ bundle }}:Default:index.html.twig');
}
}

View File

@ -25,7 +25,7 @@
</div>
{% for position, e in exception.toarray %}
{% include 'FrameworkBundle:Exception:traces.twig.html' with { 'exception': e, 'position': position, 'count': previous_count } only %}
{% include 'FrameworkBundle:Exception:traces.html.twig' with { 'exception': e, 'position': position, 'count': previous_count } only %}
{% endfor %}
{% if logger %}
@ -38,7 +38,7 @@
</h3>
<div id="logs" style="display: none">
{% include 'FrameworkBundle:Exception:logs.twig.html' with { 'logs': logger.logs } only %}
{% include 'FrameworkBundle:Exception:logs.html.twig' with { 'logs': logger.logs } only %}
</div>
</div>

View File

@ -1,5 +1,5 @@
{% extends 'FrameworkBundle:Exception:layout.twig.html' %}
{% extends 'FrameworkBundle:Exception:layout.html.twig' %}
{% block body %}
{% include 'FrameworkBundle:Exception:exception.twig.html' %}
{% include 'FrameworkBundle:Exception:exception.html.twig' %}
{% endblock %}

View File

@ -13,7 +13,7 @@
<ol class="traces" id="traces_{{ position }}" style="display: {{ 0 == position ? 'block' : 'none' }}">
{% for i, trace in exception.trace %}
<li>
{% include 'FrameworkBundle:Exception:trace.twig.html' with { 'prefix': position, 'i': i, 'trace': trace } only %}
{% include 'FrameworkBundle:Exception:trace.html.twig' with { 'prefix': position, 'i': i, 'trace': trace } only %}
</li>
{% endfor %}
</ol>

View File

@ -1,4 +1,4 @@
<?php echo str_replace('{{ widget }}',
$view['form']->render($field, array(), array(), 'FrameworkBundle:Form:number_field.php.html'),
$view['form']->render($field, array(), array(), 'FrameworkBundle:Form:number_field.html.php'),
$field->getPattern()
) ?>

View File

@ -1 +1 @@
<?php echo $view['form']->render($field, array(), array(), 'FrameworkBundle:Form:number_field.php.html') ?> %
<?php echo $view['form']->render($field, array(), array(), 'FrameworkBundle:Form:number_field.html.php') ?> %

View File

@ -115,7 +115,7 @@ class FormHelper extends Helper
public function row(/*FieldInterface*/ $field, $template = null)
{
if (null === $template) {
$template = 'FrameworkBundle:Form:field_row.php.html';
$template = 'FrameworkBundle:Form:field_row.html.php';
}
return $this->engine->render($template, array(
@ -126,7 +126,7 @@ class FormHelper extends Helper
public function label(/*FieldInterface */$field, $label = false, array $parameters = array(), $template = null)
{
if (null === $template) {
$template = 'FrameworkBundle:Form:label.php.html';
$template = 'FrameworkBundle:Form:label.html.php';
}
return $this->engine->render($template, array(
@ -139,7 +139,7 @@ class FormHelper extends Helper
public function errors(/*FieldInterface */$field, array $parameters = array(), $template = null)
{
if (null === $template) {
$template = 'FrameworkBundle:Form:errors.php.html';
$template = 'FrameworkBundle:Form:errors.html.php';
}
return $this->engine->render($template, array(
@ -151,7 +151,7 @@ class FormHelper extends Helper
public function hidden(/*FieldGroupInterface */$group, array $parameters = array(), $template = null)
{
if (null === $template) {
$template = 'FrameworkBundle:Form:hidden.php.html';
$template = 'FrameworkBundle:Form:hidden.html.php';
}
return $this->engine->render($template, array(
@ -178,7 +178,7 @@ class FormHelper extends Helper
$underscoredName = strtolower(preg_replace(array('/([A-Z]+)([A-Z][a-z])/', '/([a-z\d])([A-Z])/'), array('\\1_\\2', '\\1_\\2'), strtr($className, '_', '.')));
if ($this->engine->exists($guess = 'FrameworkBundle:Form:'.$underscoredName.'.php.html')) {
if ($this->engine->exists($guess = 'FrameworkBundle:Form:'.$underscoredName.'.html.php')) {
$template = $guess;
}
@ -186,7 +186,7 @@ class FormHelper extends Helper
} while (null === $template && false !== $currentFqClassName);
if (null === $template && $field instanceof FieldGroupInterface) {
$template = 'FrameworkBundle:Form:field_group.php.html';
$template = 'FrameworkBundle:Form:field_group.html.php';
}
self::$cache[$fqClassName] = $template;

View File

@ -14,7 +14,7 @@
<parameter key="twig.loader.class">Symfony\Bundle\TwigBundle\Loader\FilesystemLoader</parameter>
<parameter key="twig.globals.class">Symfony\Bundle\TwigBundle\GlobalVariables</parameter>
<parameter key="twig.form.resources" type="collection">
<parameter>TwigBundle::form.twig.html</parameter>
<parameter>TwigBundle::form.html.twig</parameter>
</parameter>
<parameter key="templating.engine.twig.class">Symfony\Bundle\TwigBundle\TwigEngine</parameter>
</parameters>

View File

@ -33,7 +33,7 @@ class ExceptionController extends BaseExceptionController
$code = $this->getStatusCode($exception);
return $this->container->get('templating')->renderResponse(
'FrameworkBundle:Exception:'.$template.'.twig.html',
'FrameworkBundle:Exception:'.$template.'.html.twig',
array(
'status_code' => $code,
'status_text' => Response::$statusTexts[$code],

View File

@ -36,7 +36,7 @@ class ProfilerController extends ContainerAware
$profiler = $this->container->get('profiler')->loadFromToken($token);
if ($profiler->isEmpty()) {
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:notfound.twig.html', array('token' => $token));
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:notfound.html.twig', array('token' => $token));
}
if (!$profiler->has($panel)) {
@ -146,7 +146,7 @@ class ProfilerController extends ContainerAware
$position = false === strpos($this->container->get('request')->headers->get('user-agent'), 'Mobile') ? 'fixed' : 'absolute';
}
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:toolbar.twig.html', array(
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:toolbar.html.twig', array(
'position' => $position,
'profiler' => $profiler,
'templates' => $this->getTemplates($profiler),
@ -168,7 +168,7 @@ class ProfilerController extends ContainerAware
$url = $session->get('_profiler_search_url');
$limit = $session->get('_profiler_search_limit');
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:search.twig.html', array(
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:search.html.twig', array(
'token' => $token,
'profiler' => $profiler,
'tokens' => $profiler->find($ip, $url, $limit),
@ -193,7 +193,7 @@ class ProfilerController extends ContainerAware
$url = $session->get('_profiler_search_url');
$limit = $session->get('_profiler_search_limit');
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:results.twig.html', array(
return $this->container->get('templating')->renderResponse('WebProfilerBundle:Profiler:results.html.twig', array(
'token' => $token,
'profiler' => $this->container->get('profiler')->loadFromToken($token),
'tokens' => $profiler->find($ip, $url, $limit),
@ -247,11 +247,11 @@ class ProfilerController extends ContainerAware
}
list($name, $template) = $arguments;
if (!$profiler->has($name) || !$this->container->get('templating')->exists($template.'.twig.html')) {
if (!$profiler->has($name) || !$this->container->get('templating')->exists($template.'.html.twig')) {
continue;
}
$templates[$name] = $template.'.twig.html';
$templates[$name] = $template.'.html.twig';
}
return $templates;

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:layout.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
<img style="margin: 0 5px 0 10px; vertical-align: middle" width="59" height="17" alt="Symfony" src="data:image/png;base64,R0lGODlhOwARAMQdAIZ1X9rVz0owD/Lx78K6r2JML3pnT+bj37asn6qej1Y+H+jk4JKDb0oxEJOEcId2YGJMMPTy8KufkLetoJ+RgNvW0M7Iv56Rf25aP8/JwG5aQP///z4jAP///wAAAAAAACH5BAEAAB0ALAAAAAA7ABEAAAX/YLc8WmmeaKqu7OosYsPNdG3fuCDgfM81C4dvyAsEiEgORZNMGjaI5rBEEzAugBmWBshiOICtAbu7QL+Ky8UwExQw6i8HTqPPqJzCYMMPCDYWNBYWBRsHfIaIgWYbWIiAHAF7iAkcZjSXd0wchwQYCBZ/gTODHAQbngEbARincBsYGAMDAK2NAKsGBodpG5i+mjMGewg7HJCki7AcT18YG1e+DBtZMweBjTO4r780eHmqAQXHoxylZs7Lz2q+6IIDxxczz6/GmRzfBQKnAxgWG+MiKUuXjh0zVDMKEYg3DxYueRwSAMO3SSKBfwMEPBtA4NDAOeoaZQp3alk2kBgEVJDk421TgX+AAu5SZClkwUwCEPA5wIYhSg4KYO5pieRZFClIrcELNkTAHgVJkUqEyOGBBCRdoiItUInGhAgQtIpNoqGD2Qxo06pdy7at27dvK5gNAQA7" />

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:layout.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block menu %}
<img style="margin: 0 5px 0 0; vertical-align: middle; width: 32px" width="32" height="32" alt="Events" src="{{ asset('bundles/webprofiler/images/events.png') }}" />

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:layout.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block head %}
<link href="{{ asset('bundles/framework/css/exception.css') }}" rel="stylesheet" type="text/css" media="screen" />

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:layout.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
<img style="margin: 0 5px 0 10px; vertical-align: middle; height: 24px" width="24" height="24" alt="Logs" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAApBJREFUeNrsl19oUlEcx+91dp24hgMXhmvYZokaC5Uon+ollk/14JMIw8c9zpfwJeglqMfoVXQw9KknAyNFfagRyNaiB7Mw3VDxz9iG/xH/9D10HSJxJ9oSyh98OOd47u+c7/2ec/AeutPpUOMMHjXm4HN10jTdrc6Ax+AOOATvwWe2PDO4XKY5O38JUIjF4uc2m023vLwsa7Va+XQ6Hdne3m56vV4BK+QD2HO73dn+Mcxm80gCHqhUKvvGxsYNhmEyHo/nVbvdvryysiJUKpW3hEKhtlwuf4pEIgfBYJBJJpMVIoQI2traIiVlsViGF2A0GqMmk+lqvV5/HQqFnAsLC/cFAsFSLpc7TKVSBfzekEqlfIPBcAUu3YZgXjab/er3+8vhcHgKQ/wgYjDH26EEbG5udjBR0eVyxWZnZ79ptdoThULRgohOtVoVgZlisdiOx+P7tVqtgZSGTqebxjMGPHMN7uz7fL5LQDWUAKfTedqZSCSOo9HoUSwWK2KyI41GE1Wr1VWJRMI0m80LlUrlYqlUYrA/8ohjtBvr6+tkf7yxWq30UKcAG+60vri4OEdYXV2l8OaN3d3d64FA4LhQKNTn5+e/6PX6A7lcPiWTyaYzmcxN7BUa+c9GOoa9AnoD9jJk3QmkDVeWdnZ28rC6bLfbLXDkBVf+yAL6A2suIbA538nb/1UB/QEB1L8hAGs5lIDuxIPkTxyYODBZgokD5yKgmzf5L/gTAqwo7oJHQHweAjgvJg6Hw4XBrGAOaMFTsEcm4ILMLRKJ0mzbxXn3OOtesLa29rsuObgHHrJlrzs0jt8TPp//DvWP+LDl/CznD2pnXySBi4XqE0PxeLyXyDsZZLno//5yOnYBPwUYACFn5hv7UNkXAAAAAElFTkSuQmCC" />

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:layout.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
<img style="margin: 0 5px 0 10px; vertical-align: middle; height: 24px" width="24" height="24" alt="Memory Usage" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVZJREFUeNrsl82qRVAUx7mdB5AkZmbKxMjEyHkMZXDuk9zOkyjJ/D7Bva9gQhQRJUkewNdl19bpDnyc42wTq7SyWNvP+u+VBe/7HjvSPrCD7QS4zF3Ecfzn4fS6ce0pd9hn16cALMtSXni5Vbn4XBcMFcBM0wQ3aJr2C+NDbE01YN7sMy5Lq3RdB7xhGMr/2Nv3wGht2wL/OdhD+LaUp+v6vgCqqn6NnmEYe83CMG83AEVRuNE7joMWoGka4F3X/d6iLczbDSDLMhHGaJq2kQPIsszBmOd56AF83z9WgjzPgQQURdmHAEiSBCQIggAtQF3XwIdhuEkCmLdbBYqimLqAJEn0m1AUxakLoihCDxDH8bFdUJYlkIAgiGO6QBAEIEGSJGgB4EclTdNNEuz+NayqStwCwLLsvgA8z3PvqMDiWD6MX/dxBHvyuL80lJ5/RicACvsTYABfiPlU6mFY2gAAAABJRU5ErkJggg==" />

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:layout.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
<img style="margin: 0 5px 0 10px; vertical-align: middle; height: 24px" width="24" height="24" alt="Request" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABJ5JREFUeNrEV1tIo0cUTuJqFH9iTBSjyUq8BVtLV2tLdV/6IiIFwe1LxQuu4mVBiwYfrCiI4KUv4oNdVKS64KX0qQUfKoKwT7WlTatS2sVdbXBXjVhtDPEetd9JZ2TWXExsiwOH/8y5zZmZM+ecX35xcSG7zSEXHZDL5dfJ9wMyGb4AMN9k0dfW9OOARDA1NWXjhI2NjZcJCQkGhr8CfpfzSkpKdPg4Ie8UjYDu1wGFDycltVr92GAwTMJAKinQ9/T0NIxwAsJFHsmSDnCJywRyvXd8Ld7W1vYRvuF9fX1flJaWLptMpkxJklTn5+f/CAEH7UvwFtLT003Nzc337Xb7UXd3twy0+vHxceeNYiAvL8+Un5//Y1xcnIpoR0dHLjKs0+kkbwZsNpuTHMVwb2Zra8sxOzv7Xnl5+TLNKyoqgouBsbExI2iLwFU3DDAHdO8BtdK8srIyuBiAghXH/MHh4eHJ2dmZzAssMPDgkQ7pArdy2nXDaxBWV1c7d3Z2yJhMgG8ASYAsBkmMdilDOqQr0oINQnrnMgTVGzExMRLfwfHx8YxSqXxwRZaO+AF434JXQATSge7ntbW1v9N8cHDQHFQQtrS0/EXfqKiocAJBLonfqZdhBPzBJ3t7e0cEhCcmJkY3NDT4jYHXTkCv16s5zne/u7u7o9ForH42YWUyWvY8wwlEGwHHgLfAOjk5UTY2Nup8BKSMeCTjix9UDLhcrqfMkbSQkBA94dHR0RKOsg28T7wZIB7JgM83sQ7d5/+qGPX29lLB+YXTV1dX/xwZGRkC+hg8d21obW2l3F9fU1PzKDk5OUawmcUKlYzJ3agYpZrNZotWq1WJTkxPT7/Y3t7+leaxsbFvFRYWpoqL4xk6+vv7s7u6ul5wWnt7e9AO6IxG41fI5/fDwsI8agUWced4OOeRmhELrsnJye+sVuvHnZ2d7pPq6OgI/BWw3K2Jj4/PUSgUd/i9igPPU2Lx4hnR0CkuLs7Z3NzUgG8LJAY8HMBT3ICHzxBMbwu5fVVoRK6OBcgk89qB7zOyQS+gp6dHbF4CS8VQslM+xw6WAA6W27MInE6ngz8vhrvpTN5BOhaL5UPYcJFMWlraGIHY4ATckqG+q1mWu/QeCeclEo6B4a+A3xVsZS4uLm7Pz8/30GR/f/832PiMcPQUn0ZGRr7J6PVY0xlwT9jU1HSJowv6PjQ09H2G/wA8R5RdWlrSI4AXsXslHHSmpKTQU5WtrKzY4KyE/HCMAL03Nze37q8jkl3NjkKQPcJczXD71UyXkZGxf3BwcKxSqbSAy2IGp9yOgOcgmWvLsZ/0TH3AUwYePcHAwMDXaFYVAu0JA/eceCQTVFteV1cXVEPEEbRmFrR17w4PD8uKiop+Ap7NeUNDQ/KAryCQpsLbwHHrsXgLx33ZufYEqqqqAl50dHRUKigosOB/wUTztbU1GytYOvYvsTwzM5MtvoL/9ARyc3Oj0AtouQ7+FXSiDeKRDP3A/C8OIOnsY3frVJJxmj+D9JCxnoD+TkREhFsmqCsoKysL9vp5V2XnQTkxMSGHHTXD7T6r4a3/Hd/G+FuAAQDV6k9Ni4q8owAAAABJRU5ErkJggg==" />
@ -14,7 +14,7 @@ Request
<h2>Request GET Parameters</h2>
{% if collector.requestquery.all|length %}
{% include 'WebProfilerBundle:Profiler:bag.twig.html' with { 'bag': collector.requestquery } only %}
{% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestquery } only %}
{% else %}
<em>No GET parameters</em>
{% endif %}
@ -22,7 +22,7 @@ Request
<h2>Request POST Parameters</h2>
{% if collector.requestrequest.all|length %}
{% include 'WebProfilerBundle:Profiler:bag.twig.html' with { 'bag': collector.requestrequest } only %}
{% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestrequest } only %}
{% else %}
<em>No POST parameters</em>
{% endif %}
@ -30,7 +30,7 @@ Request
<h2>Request Attributes</h2>
{% if collector.requestattributes.all|length %}
{% include 'WebProfilerBundle:Profiler:bag.twig.html' with { 'bag': collector.requestattributes } only %}
{% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestattributes } only %}
{% else %}
<em>No attributes</em>
{% endif %}
@ -38,22 +38,22 @@ Request
<h2>Request Cookies</h2>
{% if collector.requestcookies.all|length %}
{% include 'WebProfilerBundle:Profiler:bag.twig.html' with { 'bag': collector.requestcookies } only %}
{% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestcookies } only %}
{% else %}
<em>No cookies</em>
{% endif %}
<h2>Requests Headers</h2>
{% include 'WebProfilerBundle:Profiler:bag.twig.html' with { 'bag': collector.requestheaders } only %}
{% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestheaders } only %}
<h2>Requests Server Parameters</h2>
{% include 'WebProfilerBundle:Profiler:bag.twig.html' with { 'bag': collector.requestserver } only %}
{% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.requestserver } only %}
<h2>Response Headers</h2>
{% include 'WebProfilerBundle:Profiler:bag.twig.html' with { 'bag': collector.responseheaders } only %}
{% include 'WebProfilerBundle:Profiler:bag.html.twig' with { 'bag': collector.responseheaders } only %}
<h2>Response Session Attributes</h2>

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:layout.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
<img style="margin: 0 5px 0 10px; vertical-align: middle; height: 24px" width="24" height="24" alt="Security" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB8AAAAfCAYAAAAfrhY5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAftJREFUeNpi/P//P8NAASaGAQSjlg8IYEHmMDIyEqMnAYiDgZgHyv8CxGuBeAEhjeiJm4VExybEx8fX29vby3BwcID1/vjx48/Bgwd1Fi5cyECMA1A8i+waAj7nSUhIOOvi4qKGTXLPnj23FixYYAwNCaJ8TnSca2lpGVpaWir9/fuXARsGyYHU0CTBKSoqerOxsbH8+/ePARsGyYHUkJ3g8AFVVVWNP3/+EFRDE8tBvgMFLyE1NLGci4vrHSGfg9TQJM65ubl3gSzHh0FqaOJzTk7OHYR8DlJDE5+XlJR8ePfu3eHfv38zYMMgOZAampXtQJ/14QpykBypZTspJRwY1NXVYW19NDU1EdRMSdluAKpQ8MR7M7SCuUAtn4NqLhsgjldRUdEwNjaWkZOTE8Fm0KNHj96cPXv2yZ07d24AuaBa5gh6OY/uc1yWS4B8Ccy3vpqamvJASxWA2YiDGN98/fr1B9ARD65fv/7w27dvm6Gh8YIYy0E+bRYSErIA+VJZWVmClZWV1GoXDIA54M/du3dfgEIDmBNOAIVqgXZ9wWk5Pz9/iZubW7WoqKgANVssr1+//rBr167Wjx8/9uC03NHR8bGampoMLZpMt27derJ//35ZnKldSUlJhlApRi4AmY23eCW1VqJqA5JQlUltwDjaXRpxlgMEGAA2xSf2HpUp2wAAAABJRU5ErkJggg==" />

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:layout.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
<img style="margin: 0 7px 0 10px; vertical-align: middle; height: 24px" width="24" height="24" alt="Timers" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA6BJREFUeNrkV19IU1EY38bUIaFGCpsMJyJt4DZ1DMk1UINYELEVA8FFOX0xZVRP+WCU9OSDOnFjrJjTh8SXyN725qI/TyEjFCFFJ4T2YKjDif/t98W9tNa9d3cZ+tCBj/Odc7/fd373O+d897vS4+NjyVk2meSMm5xrUiqVisFOpY2bMgG4oi3lnEwhMD4+zusvHcZl1NLSIkhAnon10dHR6W+BSALSlChIT4VAa2trDTobhHrl6OgoO0/n4RskBnmF+QVm/hy6QQiN+zjfItMZGBkZkbS1tSmhPqqtrW20Wq3KioqKosLCQkUqZnNzc2dxcXEjEol8nZ+ff48pv1qtruvs7Ayurq5uDQ8Pe7FWX9YE0KylpaW9IGHSaDRFYsK6vLy8MTExsaDVagscDsdFmpubm/vS39+vzZaA1WKxBJqbm3V5eXnsdsUhk5A3aTA7xAEp57mCnzs6OqqzOQNKLD7ocrn0NDg4OEiA2BOoXtagq6vrZy7w+/2UA6KQh5AHWKwXtgWsHbbgsUql8mV1BsrKykIej+cOvTlsaPEG5pBx5YL0W1ADzFuWRDAYfDk7O3ubay2+VFzpdDpvydH29vaSuAkNh4eHMYhEpMQIQ1ga22y268zNEUfAaDR6ELIihJ32rgd9jPQsJcZgJeQL23lPdB4wm803iPnu7u53bIH3BInOCx898HFBp9NdFR2BkpISFTFPJBIRvjfs7u6+lKLX8dmxPsinaAL5+fkKisDS0lKUb5+xTc9Z3WAwvOCzY32QT9FbQIzZNMzq6c1utxvYZ0g2Rj47IR8ZCRBzIbCYlsmHjA9EggSiF7hqV3j03yTVh+gIJJPJdZzc80ql8poA+ymB6uhXOmV84Dasi44AjN8RY4A1AwMDToEoNDHC+Zyw5IP0/f39KdEEFArFIIHQK+rr658ODQ1V8iwSZeSPZ4QhLPmgcW5u7jPRBHw+XxRp9CMBq6qqtPgchzBXKTYVky1hCEtj8oW5WLZluQth25LJZHLkcgvSaSgQCDgzLU42ZEsYwpIP8sVb1wnVA+3t7fR9f006HB3MzMzEp6enP2FIFc+HNNhlqh9MJpNZr9eX5+TksAf8ZigUmvzrstztdjtgM8Z+Wre3t3dWVlbWUPWspWJQLRUj7MVsxmM+4XfD4fDkSctyclANcBh9Ix0q1IRqEoEilooTNzDxf1UVx5k/H/qm3yciHKVXnFl4jOlFNel//3N65gR+CDAAEVUmgT66oXEAAAAASUVORK5CYII=" />

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:base.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:base.html.twig' %}
{% block body %}
<div class="header">
@ -32,7 +32,7 @@
{% render 'WebProfilerBundle:Profiler:searchBar' with { 'token': token } %}
{% include 'WebProfilerBundle:Profiler:admin.twig.html' with { 'token': token } only %}
{% include 'WebProfilerBundle:Profiler:admin.html.twig' with { 'token': token } only %}
</td><td class="main">
<div class="content">
{% block panel '' %}

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:base.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:base.html.twig' %}
{% block body %}
<div class="header">
@ -15,7 +15,7 @@
<tr><td class="menu">
{% render 'WebProfilerBundle:Profiler:searchBar' with { 'token': token } %}
{% include 'WebProfilerBundle:Profiler:admin.twig.html' with { 'token': token } only %}
{% include 'WebProfilerBundle:Profiler:admin.html.twig' with { 'token': token } only %}
</td><td class="main">
<div class="content">
<h2>Token "{{ token }}" does not exist.</h2>

View File

@ -1,4 +1,4 @@
{% extends 'WebProfilerBundle:Profiler:layout.twig.html' %}
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block panel %}
<h2>Search Results</h2>