Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | fixed user refreshing after unserialization | Johannes Schmitt | 2010-12-15 | 9 | -41/+231 | |
| | ||||||
* | added authentication trust resolver | Johannes Schmitt | 2010-12-12 | 4 | -6/+209 | |
| | ||||||
* | [Security] fixed method visibility | Fabien Potencier | 2010-12-12 | 1 | -2/+2 | |
| | ||||||
* | removed ForbiddenHttpException | Fabien Potencier | 2010-12-10 | 3 | -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 Potencier | 2010-11-25 | 1 | -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 tests | Fabien Potencier | 2010-10-31 | 1 | -1/+3 | |
| | ||||||
* | [Security] added unit tests to some authenticated providers (code coverage ↵ | Fabien Potencier | 2010-10-31 | 2 | -15/+9 | |
| | | | | is more than 96% for the Security component now) | |||||
* | [Security] added unit tests for the Authentication sub-namespace | Fabien Potencier | 2010-10-31 | 6 | -10/+17 | |
| | ||||||
* | applies base64 encoding directly to the binary data instead of their ↵ | Johannes M. Schmitt | 2010-10-24 | 1 | -4/+4 | |
| | | | | hexadecimal representation | |||||
* | [Security]Fixed markup | Dominique Bongiraud | 2010-10-24 | 14 | -26/+36 | |
| | ||||||
* | [Security]Fixed CS | Dominique Bongiraud | 2010-10-24 | 6 | -23/+24 | |
| | ||||||
* | [Security] added more unit tests | Fabien Potencier | 2010-10-22 | 1 | -2/+8 | |
| | ||||||
* | [Security] removed type hint in AuthenticationException as the extra ↵ | Fabien Potencier | 2010-10-22 | 2 | -10/+8 | |
| | | | | information can be of different classes | |||||
* | [Security] changed encoders to use hash() function whenver possible and ↵ | Johannes Schmitt | 2010-10-22 | 1 | -5/+9 | |
| | | | | replaced sha1 with sha256 as default algorithm | |||||
* | [Security] Use a negative length parameter to simplify the code | Victor Berchet | 2010-10-21 | 1 | -1/+1 | |
| | ||||||
* | [Security] added some unit tests (WIP) | Fabien Potencier | 2010-10-21 | 1 | -12/+3 | |
| | ||||||
* | fixed interfaces problems | Fabien Potencier | 2010-10-21 | 1 | -1/+1 | |
| | ||||||
* | [Security] Fixed typo | Artur Kotyrba | 2010-10-21 | 2 | -5/+3 | |
| | ||||||
* | [Security] changed the way passwords are compared to avoid timing attacks | Fabien Potencier | 2010-10-21 | 3 | -3/+28 | |
| | ||||||
* | [Security] Fixed typo | Pascal Borreli | 2010-10-20 | 1 | -1/+1 | |
| | ||||||
* | [Security] Fixed coding standard | Pascal Borreli | 2010-10-19 | 12 | -28/+28 | |
| | ||||||
* | [Security] Fixed typo | Pascal Borreli | 2010-10-19 | 3 | -3/+3 | |
| | ||||||
* | added the Security Component and its integration into the MVC framework | Fabien Potencier | 2010-10-19 | 50 | -0/+2783 | |
Happy birthday symfony! |