Skip to content

Commit

Permalink
minor #4725 Remove horizontal scrollbar (ifdattic)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.3 branch.

Discussion
----------

Remove horizontal scrollbar

| Q             | A
| ------------- | ---
| Doc fix?      | yes
| New docs?     | no
| Applies to    | 2.3
| Fixed tickets |

Commits
-------

c66ee9f Remove horizontal scrollbar
  • Loading branch information
wouterj committed Jan 2, 2015
2 parents 25dd825 + c66ee9f commit dcc9516
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions book/internals.rst
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,8 @@ method to access tokens based on some criteria::
$tokens = $container->get('profiler')->find('127.0.0.1', '', 10, '', '');

// get the latest 10 tokens for requests that happened between 2 and 4 days ago
$tokens = $container->get('profiler')->find('', '', 10, '4 days ago', '2 days ago');
$tokens = $container->get('profiler')
->find('', '', 10, '4 days ago', '2 days ago');

If you want to manipulate profiling data on a different machine than the one
where the information were generated, use the
Expand Down Expand Up @@ -576,9 +577,12 @@ the configuration for the development environment:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:webprofiler="http://symfony.com/schema/dic/webprofiler"
xmlns:framework="http://symfony.com/schema/dic/symfony"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd
http://symfony.com/schema/dic/webprofiler http://symfony.com/schema/dic/webprofiler/webprofiler-1.0.xsd
http://symfony.com/schema/dic/symfony http://symfony.com/schema/dic/symfony/symfony-1.0.xsd">
xsi:schemaLocation="http://symfony.com/schema/dic/services
http://symfony.com/schema/dic/services/services-1.0.xsd
http://symfony.com/schema/dic/webprofiler
http://symfony.com/schema/dic/webprofiler/webprofiler-1.0.xsd
http://symfony.com/schema/dic/symfony
http://symfony.com/schema/dic/symfony/symfony-1.0.xsd">
<!-- load the profiler -->
<framework:config>
Expand Down Expand Up @@ -638,7 +642,9 @@ If you enable the web profiler, you also need to mount the profiler routes:
use Symfony\Component\Routing\RouteCollection;
$profiler = $loader->import('@WebProfilerBundle/Resources/config/routing/profiler.xml');
$profiler = $loader->import(
'@WebProfilerBundle/Resources/config/routing/profiler.xml'
);
$profiler->addPrefix('/_profiler');
$collection = new RouteCollection();
Expand Down

0 comments on commit dcc9516

Please sign in to comment.