vendor/symfony/src/Symfony/Bundle/FrameworkBundle/Controller/InternalController.php
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/Controller/InternalController.php Sat Sep 24 15:40:41 2011 +0200
@@ -0,0 +1,46 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <fabien@symfony.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Symfony\Bundle\FrameworkBundle\Controller;
+
+use Symfony\Component\DependencyInjection\ContainerAware;
+use Symfony\Component\HttpFoundation\Response;
+
+/**
+ * InternalController.
+ *
+ * @author Fabien Potencier <fabien@symfony.com>
+ */
+class InternalController extends ContainerAware
+{
+ /**
+ * Forwards to the given controller with the given path.
+ *
+ * @param string $path The path
+ * @param string $controller The controller name
+ *
+ * @return Response A Response instance
+ */
+ public function indexAction($path, $controller)
+ {
+ $request = $this->container->get('request');
+ $attributes = $request->attributes;
+
+ $attributes->remove('path');
+ $attributes->remove('controller');
+ if ('none' !== $path) {
+ parse_str($path, $tmp);
+ $attributes->add($tmp);
+ }
+
+ return $this->container->get('http_kernel')->forward($controller, $attributes->all(), $request->query->all());
+ }
+}