summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* fixed user refreshing after unserializationJohannes Schmitt2010-12-159-41/+231
|
* added authentication trust resolverJohannes Schmitt2010-12-124-6/+209
|
* [Security] fixed method visibilityFabien Potencier2010-12-121-2/+2
|
* removed ForbiddenHttpExceptionFabien Potencier2010-12-103-5/+1
| | | | | | | | | Both HttpKernel and Security define a 403 exception: * Symfony\Component\HttpKernel\Exception\ForbiddenHttpException * Symfony\Component\Security\Exception\AccessDeniedException The one in HttpKernel has been removed in favor of the Security one.
* made some method name changes to have a better coherence throughout the ↵Fabien Potencier2010-11-251-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | framework When an object has a "main" many relation with related "things" (objects, parameters, ...), the method names are normalized: * get() * set() * all() * replace() * remove() * clear() * isEmpty() * add() * register() * count() * keys() The classes below follow this method naming convention: * BrowserKit\CookieJar -> Cookie * BrowserKit\History -> Request * Console\Application -> Command * Console\Application\Helper\HelperSet -> HelperInterface * DependencyInjection\Container -> services * DependencyInjection\ContainerBuilder -> services * DependencyInjection\ParameterBag\ParameterBag -> parameters * DependencyInjection\ParameterBag\FrozenParameterBag -> parameters * DomCrawler\Form -> FormField * EventDispatcher\Event -> parameters * Form\FieldGroup -> Field * HttpFoundation\HeaderBag -> headers * HttpFoundation\ParameterBag -> parameters * HttpFoundation\Session -> attributes * HttpKernel\Profiler\Profiler -> DataCollectorInterface * Routing\RouteCollection -> Route * Security\Authentication\AuthenticationProviderManager -> AuthenticationProviderInterface * Templating\Engine -> HelperInterface * Translation\MessageCatalogue -> messages The usage of these methods are only allowed when it is clear that there is a main relation: * a CookieJar has many Cookies; * a Container has many services and many parameters (as services is the main relation, we use the naming convention for this relation); * a Console Input has many arguments and many options. There is no "main" relation, and so the naming convention does not apply. For many relations where the convention does not apply, the following methods must be used instead (where XXX is the name of the related thing): * get() -> getXXX() * set() -> setXXX() * all() -> getXXXs() * replace() -> setXXXs() * remove() -> removeXXX() * clear() -> clearXXX() * isEmpty() -> isEmptyXXX() * add() -> addXXX() * register() -> registerXXX() * count() -> countXXX() * keys()
* [Security] added some missing unit testsFabien Potencier2010-10-311-1/+3
|
* [Security] added unit tests to some authenticated providers (code coverage ↵Fabien Potencier2010-10-312-15/+9
| | | | is more than 96% for the Security component now)
* [Security] added unit tests for the Authentication sub-namespaceFabien Potencier2010-10-316-10/+17
|
* applies base64 encoding directly to the binary data instead of their ↵Johannes M. Schmitt2010-10-241-4/+4
| | | | hexadecimal representation
* [Security]Fixed markupDominique Bongiraud2010-10-2414-26/+36
|
* [Security]Fixed CSDominique Bongiraud2010-10-246-23/+24
|
* [Security] added more unit testsFabien Potencier2010-10-221-2/+8
|
* [Security] removed type hint in AuthenticationException as the extra ↵Fabien Potencier2010-10-222-10/+8
| | | | information can be of different classes
* [Security] changed encoders to use hash() function whenver possible and ↵Johannes Schmitt2010-10-221-5/+9
| | | | replaced sha1 with sha256 as default algorithm
* [Security] Use a negative length parameter to simplify the codeVictor Berchet2010-10-211-1/+1
|
* [Security] added some unit tests (WIP)Fabien Potencier2010-10-211-12/+3
|
* fixed interfaces problemsFabien Potencier2010-10-211-1/+1
|
* [Security] Fixed typoArtur Kotyrba2010-10-212-5/+3
|
* [Security] changed the way passwords are compared to avoid timing attacksFabien Potencier2010-10-213-3/+28
|
* [Security] Fixed typoPascal Borreli2010-10-201-1/+1
|
* [Security] Fixed coding standardPascal Borreli2010-10-1912-28/+28
|
* [Security] Fixed typoPascal Borreli2010-10-193-3/+3
|
* added the Security Component and its integration into the MVC frameworkFabien Potencier2010-10-1950-0/+2783
Happy birthday symfony!