Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
bd32e3e
[AsseticBundle] renamed some classes
kriswallsmith Feb 20, 2011
cef86a3
[HttpKernel] added a way to change the ESI cache strategy
fabpot Feb 22, 2011
c63e1ac
Merge remote branch 'kriswallsmith/assetic-renames'
fabpot Feb 22, 2011
efb5617
[AsseticBundle] fix AsseticController - removed response service depe…
marphi Feb 22, 2011
7c794b3
[HttpKernel] fixed typo
kriswallsmith Feb 22, 2011
f54cedf
added LICENSE files for the subtree repositories
fabpot Feb 22, 2011
d7ea92a
[AsseticBundle] updated for latest assetic development
kriswallsmith Feb 23, 2011
0f353c1
A command to generate a migration from the sql queries executed when …
jwage Feb 23, 2011
b622e6a
[AsseticBundle] added skip if PHP_CodeSniffer is not installed (close…
kriswallsmith Feb 23, 2011
d2840aa
[AsseticBundle] fixed unit tests
fabpot Feb 23, 2011
3fb935d
[AsseticBundle] removed PHP_CodeSniffer dependency
kriswallsmith Feb 23, 2011
491ee20
[AsseticBundle] fix fatal error - missing argument assetic.asset_mana…
marphi Feb 23, 2011
79bc233
[TwigBundle] fixed typo
fabpot Feb 24, 2011
988b8f3
initial steps to handling objects
lsmith77 Feb 24, 2011
e356c2a
cosmetic tweak
lsmith77 Feb 24, 2011
788f63d
[FrameworkBundle] Simplify the over-complicated template cache warmer
vicb Feb 24, 2011
9f2d59c
[AsseticBundle] added stylus filter
kriswallsmith Feb 24, 2011
2b2a7f0
added nowrap style to WDT toolbar so image and text stays together wh…
kriswallsmith Feb 24, 2011
71a06f0
Merge remote branch 'kriswallsmith/assetic/stylus-filter'
fabpot Feb 24, 2011
2ad21ed
Merge remote branch 'lsmith77/fixture_2_migration'
fabpot Feb 24, 2011
691c9f5
Merge remote branch 'marphi/fix_assetic'
fabpot Feb 24, 2011
192583a
[ZendBundle] Added a Configuration class
stof Feb 24, 2011
0488ebc
Changed default priority to INFO
stof Feb 24, 2011
396fcf1
Merge remote branch 'kriswallsmith/assetic/rm-phpcs'
fabpot Feb 24, 2011
5b92dcf
Merge remote branch 'stof/zend_config'
fabpot Feb 24, 2011
add21ec
[ZendBundle] added classes to compile
kriswallsmith Feb 24, 2011
45976aa
[AsseticBundle] fixed visibility of YUI filters
kriswallsmith Feb 25, 2011
05055d4
[AsseticBundle] fixed formula caching system
kriswallsmith Feb 24, 2011
d4db531
[AsseticBundle] added resources to the routing loader
kriswallsmith Feb 25, 2011
968c870
[AsseticBundle] added etags to controller so changes to filters etc t…
kriswallsmith Feb 25, 2011
ee4db2a
Merge remote branch 'kriswallsmith/assetic/filter-visibility'
fabpot Feb 25, 2011
ad80b09
Merge remote branch 'kriswallsmith/assetic/etags'
fabpot Feb 25, 2011
8fedd8d
[AsseticBundle] renamed some test files to respect the exclude of Res…
kriswallsmith Feb 25, 2011
11d8ce3
Revert "cosmetic tweak"
fabpot Feb 25, 2011
a0d4250
Revert "initial steps to handling objects"
fabpot Feb 25, 2011
1ee6ad4
Revert "A command to generate a migration from the sql queries execut…
fabpot Feb 25, 2011
f46c6f7
[Routing] fixed the %2f problem in URLs
fabpot Feb 25, 2011
e16c666
[Routing] made an empty path info to redirect to / (as for any other …
fabpot Feb 26, 2011
b9c2579
[DoctrineAbstractBundle] Fixed typo
pborreli Feb 26, 2011
6814002
[DoctrineBundle] Fixed typo
pborreli Feb 26, 2011
ecd3845
[DoctrineMongoDBBundle] Fixed typo
pborreli Feb 26, 2011
1dca1ea
[FrameworkBundle] Fixed typo
pborreli Feb 26, 2011
added08
[SecurityBundle] Fixed typo
pborreli Feb 26, 2011
0c9951f
[TwigBundle] Fixed typo
pborreli Feb 26, 2011
e1ec66c
[Config] Fixed typo
pborreli Feb 26, 2011
b940046
[CssSelector] Fixed typo
pborreli Feb 26, 2011
1a8ce93
[DependencyInjection] Fixed typo
pborreli Feb 26, 2011
4f2f1c0
[EventDispatcher] Fixed typo
pborreli Feb 26, 2011
ddd6d93
[Form] Fixed typo
pborreli Feb 26, 2011
f3b9364
[HttpFoundation] Fixed typo
pborreli Feb 26, 2011
b9a6f92
[HttpKernel] Fixed typo
pborreli Feb 26, 2011
2fbb8e0
[Security] Fixed typo
pborreli Feb 26, 2011
de33e14
Merge remote branch 'kriswallsmith/zend/compiled-classes'
fabpot Feb 26, 2011
141b798
make it possible to define the file extension
lsmith77 Feb 26, 2011
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[ZendBundle] added classes to compile
  • Loading branch information
kriswallsmith committed Feb 24, 2011
commit add21ec4c0b2643786c9421aa6415e01d50654c1
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,21 @@ public function load(array $configs, ContainerBuilder $container)
$container->findDefinition('zend.logger')->removeMethodCall('registerErrorHandler');
}
}

$this->addClassesToCompile(array(
'Symfony\\Bundle\\ZendBundle\\Logger\\DebugLogger',
'Symfony\\Bundle\\ZendBundle\\Logger\\Logger',
'Zend\\Log\\Factory',
'Zend\\Log\\Filter',
'Zend\\Log\\Filter\\AbstractFilter',
'Zend\\Log\\Filter\\Priority',
'Zend\\Log\\Formatter',
'Zend\\Log\\Formatter\\Simple',
'Zend\\Log\\Logger',
'Zend\\Log\\Writer',
'Zend\\Log\\Writer\\AbstractWriter',
'Zend\\Log\\Writer\\Stream',
));
}
}

Expand Down