diff --git a/book/bundles.rst b/book/bundles.rst old mode 100644 new mode 100755 diff --git a/book/controller.rst b/book/controller.rst old mode 100644 new mode 100755 diff --git a/book/doctrine/dbal.rst b/book/doctrine/dbal.rst old mode 100644 new mode 100755 diff --git a/book/doctrine/index.rst b/book/doctrine/index.rst old mode 100644 new mode 100755 diff --git a/book/doctrine/model.rst b/book/doctrine/model.rst old mode 100644 new mode 100755 diff --git a/book/doctrine/orm.rst b/book/doctrine/orm.rst old mode 100644 new mode 100755 index 2cb96f3b8cb..e6271f11531 --- a/book/doctrine/orm.rst +++ b/book/doctrine/orm.rst @@ -234,6 +234,13 @@ you just need to run the following command: Now your database will be updated and the new column added to the database table. +In this case we can easily obtain an object of our entity from the id as follows: + +* @extra: Route ("/ path / {id} /", name = "_path_name) +* @extra ParameterConverter ("parameter" class = "MyBundle: Entity") + +Having done this the parameter that is entered by the function will be an object of our entity + .. index:: single: Configuration; Doctrine ORM single: Doctrine; ORM Configuration @@ -285,6 +292,9 @@ The following example shows an overview of the caching configurations: port: 11211 instance_class: Memcache + +This will allow us to specify that everything will work from PHP + Mapping Configuration ~~~~~~~~~~~~~~~~~~~~~ @@ -352,6 +362,18 @@ The following configuration shows a bunch of mapping examples: dir: %kernel.root_dir%/../src/vendor/DoctrineExtensions/lib/DoctrineExtensions/Entity prefix: DoctrineExtensions\Entity\ alias: DExt +You should be aware that you can also espeficar the configuration of each bundle, as follows: + +/ app / config / config.yml +orm: + auto_generate_proxy_classes:% kernel.debug% + default_entity_manager: default + entity_managers: + default: + mappings: + AcmeDemoBundle: ~ + MyBundle: + type: annotation Multiple Entity Managers ~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/book/forms.rst b/book/forms.rst old mode 100644 new mode 100755 index 6b215a7ef37..ede1719654e --- a/book/forms.rst +++ b/book/forms.rst @@ -666,6 +666,10 @@ Placing the form logic into its own class means that the form can be easily reused elsewhere in your project. This is the best way to create forms, but the choice is ultimately up to you. +The documentation for beginners on this is very confusing, since it takes into account detailed aspects for understanding the concepts and apply them easily. It should make a tutorial step by step detail to ensure a specific outcome. + +It should specify about AbstractType class that contains methods and how to get data for Form class + .. index:: single: Forms; Doctrine @@ -714,7 +718,7 @@ Embedded Forms -------------- Often, you'll want to build a form that will include fields from many different -objects. For example, a registration form may contain data belonging to +objects. For example, a registration form must (required) contain data belonging to a ``User`` object as well as many ``Address`` objects. Fortunately, this is easy and natural with the form component. diff --git a/book/from_flat_php_to_symfony2.rst b/book/from_flat_php_to_symfony2.rst old mode 100644 new mode 100755 diff --git a/book/http_cache.rst b/book/http_cache.rst old mode 100644 new mode 100755 diff --git a/book/http_fundamentals.rst b/book/http_fundamentals.rst old mode 100644 new mode 100755 diff --git a/book/images/forms-simple.png b/book/images/forms-simple.png old mode 100644 new mode 100755 diff --git a/book/internals/event_dispatcher.rst b/book/internals/event_dispatcher.rst old mode 100644 new mode 100755 diff --git a/book/internals/index.rst b/book/internals/index.rst old mode 100644 new mode 100755 diff --git a/book/internals/kernel.rst b/book/internals/kernel.rst old mode 100644 new mode 100755 diff --git a/book/internals/overview.rst b/book/internals/overview.rst old mode 100644 new mode 100755 diff --git a/book/internals/profiler.rst b/book/internals/profiler.rst old mode 100644 new mode 100755 diff --git a/book/map.rst.inc b/book/map.rst.inc old mode 100644 new mode 100755 diff --git a/book/page_creation.rst b/book/page_creation.rst old mode 100644 new mode 100755 diff --git a/book/routing.rst b/book/routing.rst old mode 100644 new mode 100755 diff --git a/book/security/acl.rst b/book/security/acl.rst old mode 100644 new mode 100755 diff --git a/book/security/acl_advanced.rst b/book/security/acl_advanced.rst old mode 100644 new mode 100755 diff --git a/book/security/authentication.rst b/book/security/authentication.rst old mode 100644 new mode 100755 diff --git a/book/security/authorization.rst b/book/security/authorization.rst old mode 100644 new mode 100755 diff --git a/book/security/config_reference.rst b/book/security/config_reference.rst old mode 100644 new mode 100755 diff --git a/book/security/index.rst b/book/security/index.rst old mode 100644 new mode 100755 diff --git a/book/security/overview.rst b/book/security/overview.rst old mode 100644 new mode 100755 diff --git a/book/security/users.rst b/book/security/users.rst old mode 100644 new mode 100755 diff --git a/book/service_container.rst b/book/service_container.rst old mode 100644 new mode 100755 diff --git a/book/stable_api.rst b/book/stable_api.rst old mode 100644 new mode 100755 diff --git a/book/templating.rst b/book/templating.rst old mode 100644 new mode 100755 diff --git a/book/testing.rst b/book/testing.rst old mode 100644 new mode 100755 index 1e5f9f194c8..8285766f781 --- a/book/testing.rst +++ b/book/testing.rst @@ -19,6 +19,19 @@ it yet, you can read its excellent `documentation`_. Symfony2 works with PHPUnit 3.5.11 or later. +For linux: +How to install phpunit in 2 steps: +1. Installing and upgrading PHP Pear. +To install phpunit, go to the console: + $ sudo apt-get update + $ sudo apt-get install php-pear + $ sudo pear upgrade pear +2. Adding channels, downloading and installing PHPUnit + $ pear channel-discover pear.phpunit.de + $ pear channel-discover components.ez.no + $ pear channel-discover pear.symfony-project.com + $pear install phpunit / PHPUnit + The default PHPUnit configuration looks for tests under the ``Tests/`` sub-directory of your bundles: @@ -121,13 +134,25 @@ for ``HelloController`` that reads as follows:: } } -The ``createClient()`` method returns a client tied to the current application:: +The ``createClient()`` method returns a client tied to the current application.This client is the one used during the test, the client can perform all actions that would conduct a customer in practice:: $crawler = $client->request('GET', 'hello/Fabien'); The ``request()`` method returns a ``Crawler`` object which can be used to select elements in the Response, to click on links, and to submit forms. +..Notes:: + The functions that are protected by authentication security, the customer must enter the simulation through the system and apply the tests to each of the functions. If authentication is not performed, will not be possible to test these functions.It is very important to use the same client throughout the test. + For example: + $client = $this->createClient(); + $crawler = $client->request('GET', '/login'); + $form = $crawler->selectButton('login')->form(); + $client->submit($form,array('_username'=>'admin', + '_password'=>'adminpass',)); + //....your test + + + .. tip:: The Crawler can only be used if the Response content is an XML or an HTML diff --git a/book/translation.rst b/book/translation.rst old mode 100644 new mode 100755 diff --git a/book/validation.rst b/book/validation.rst old mode 100644 new mode 100755 diff --git a/contributing/code/bugs.rst b/contributing/code/bugs.rst old mode 100644 new mode 100755 diff --git a/contributing/code/conventions.rst b/contributing/code/conventions.rst old mode 100644 new mode 100755 diff --git a/contributing/code/index.rst b/contributing/code/index.rst old mode 100644 new mode 100755 diff --git a/contributing/code/license.rst b/contributing/code/license.rst old mode 100644 new mode 100755 diff --git a/contributing/code/patches.rst b/contributing/code/patches.rst old mode 100644 new mode 100755 diff --git a/contributing/code/security.rst b/contributing/code/security.rst old mode 100644 new mode 100755 diff --git a/contributing/code/standards.rst b/contributing/code/standards.rst old mode 100644 new mode 100755 diff --git a/contributing/code/tests.rst b/contributing/code/tests.rst old mode 100644 new mode 100755 diff --git a/contributing/community/index.rst b/contributing/community/index.rst old mode 100644 new mode 100755 diff --git a/contributing/community/irc.rst b/contributing/community/irc.rst old mode 100644 new mode 100755 diff --git a/contributing/community/other.rst b/contributing/community/other.rst old mode 100644 new mode 100755 diff --git a/contributing/documentation/format.rst b/contributing/documentation/format.rst old mode 100644 new mode 100755 diff --git a/contributing/documentation/index.rst b/contributing/documentation/index.rst old mode 100644 new mode 100755 diff --git a/contributing/documentation/license.rst b/contributing/documentation/license.rst old mode 100644 new mode 100755 diff --git a/contributing/documentation/overview.rst b/contributing/documentation/overview.rst old mode 100644 new mode 100755 diff --git a/contributing/documentation/translations.rst b/contributing/documentation/translations.rst old mode 100644 new mode 100755 diff --git a/contributing/index.rst b/contributing/index.rst old mode 100644 new mode 100755 diff --git a/contributing/map.rst.inc b/contributing/map.rst.inc old mode 100644 new mode 100755 diff --git a/cookbook/assetic/yuicompressor.rst b/cookbook/assetic/yuicompressor.rst old mode 100644 new mode 100755 diff --git a/cookbook/bundles/extension.rst b/cookbook/bundles/extension.rst old mode 100644 new mode 100755 diff --git a/cookbook/cache/varnish.rst b/cookbook/cache/varnish.rst old mode 100644 new mode 100755 diff --git a/cookbook/configuration/environments.rst b/cookbook/configuration/environments.rst old mode 100644 new mode 100755 diff --git a/cookbook/controller/error_pages.rst b/cookbook/controller/error_pages.rst old mode 100644 new mode 100755 diff --git a/cookbook/controller/service.rst b/cookbook/controller/service.rst old mode 100644 new mode 100755 diff --git a/cookbook/debugging.rst b/cookbook/debugging.rst old mode 100644 new mode 100755 diff --git a/cookbook/doctrine/doctrine_fixtures.rst b/cookbook/doctrine/doctrine_fixtures.rst old mode 100644 new mode 100755 diff --git a/cookbook/doctrine/migrations.rst b/cookbook/doctrine/migrations.rst old mode 100644 new mode 100755 diff --git a/cookbook/doctrine/mongodb.rst b/cookbook/doctrine/mongodb.rst old mode 100644 new mode 100755 diff --git a/cookbook/doctrine/reverse_engineering.rst b/cookbook/doctrine/reverse_engineering.rst old mode 100644 new mode 100755 diff --git a/cookbook/email.rst b/cookbook/email.rst old mode 100644 new mode 100755 diff --git a/cookbook/event_dispatcher/class_extension.rst b/cookbook/event_dispatcher/class_extension.rst old mode 100644 new mode 100755 diff --git a/cookbook/event_dispatcher/method_behavior.rst b/cookbook/event_dispatcher/method_behavior.rst old mode 100644 new mode 100755 diff --git a/cookbook/form/twig_form_customization.rst b/cookbook/form/twig_form_customization.rst old mode 100644 new mode 100755 diff --git a/cookbook/gmail.rst b/cookbook/gmail.rst old mode 100644 new mode 100755 diff --git a/cookbook/index.rst b/cookbook/index.rst old mode 100644 new mode 100755 diff --git a/cookbook/logging/monolog.rst b/cookbook/logging/monolog.rst old mode 100644 new mode 100755 diff --git a/cookbook/map.rst.inc b/cookbook/map.rst.inc old mode 100644 new mode 100755 diff --git a/cookbook/profiler/data_collector.rst b/cookbook/profiler/data_collector.rst old mode 100644 new mode 100755 diff --git a/cookbook/request/mime_type.rst b/cookbook/request/mime_type.rst old mode 100644 new mode 100755 diff --git a/cookbook/routing/scheme.rst b/cookbook/routing/scheme.rst old mode 100644 new mode 100755 diff --git a/cookbook/security/voters.rst b/cookbook/security/voters.rst old mode 100644 new mode 100755 diff --git a/cookbook/symfony1.rst b/cookbook/symfony1.rst old mode 100644 new mode 100755 diff --git a/cookbook/templating/PHP.rst b/cookbook/templating/PHP.rst old mode 100644 new mode 100755 diff --git a/cookbook/testing/http_authentication.rst b/cookbook/testing/http_authentication.rst old mode 100644 new mode 100755 diff --git a/cookbook/testing/insulating_clients.rst b/cookbook/testing/insulating_clients.rst old mode 100644 new mode 100755 diff --git a/cookbook/testing/profiling.rst b/cookbook/testing/profiling.rst old mode 100644 new mode 100755 diff --git a/cookbook/tools/autoloader.rst b/cookbook/tools/autoloader.rst old mode 100644 new mode 100755 diff --git a/cookbook/tools/finder.rst b/cookbook/tools/finder.rst old mode 100644 new mode 100755 diff --git a/cookbook/validation/custom_constraint.rst b/cookbook/validation/custom_constraint.rst old mode 100644 new mode 100755 diff --git a/glossary.rst b/glossary.rst old mode 100644 new mode 100755 diff --git a/images/docs-pull-request.png b/images/docs-pull-request.png old mode 100644 new mode 100755 diff --git a/images/http-xkcd-request.png b/images/http-xkcd-request.png old mode 100644 new mode 100755 diff --git a/images/http-xkcd.png b/images/http-xkcd.png old mode 100644 new mode 100755 diff --git a/images/quick_tour/welcome.jpg b/images/quick_tour/welcome.jpg old mode 100644 new mode 100755 diff --git a/images/request-flow.png b/images/request-flow.png old mode 100644 new mode 100755 diff --git a/index.rst b/index.rst old mode 100644 new mode 100755 index e657228d01e..71d3a272382 --- a/index.rst +++ b/index.rst @@ -1,6 +1,7 @@ Symfony2 Documentation ====================== - +HOLA MUNDO +---------- Quick Tour ---------- diff --git a/quick_tour/index.rst b/quick_tour/index.rst old mode 100644 new mode 100755 diff --git a/quick_tour/the_architecture.rst b/quick_tour/the_architecture.rst old mode 100644 new mode 100755 index 6d3b7255138..bcd92546d9d --- a/quick_tour/the_architecture.rst +++ b/quick_tour/the_architecture.rst @@ -108,6 +108,10 @@ to use pre-built features packaged in third-party bundles or to distribute your own bundles. It makes it easy to pick and choose which features to enable in your application and optimize them the way you want. +For beginners: +Within the project we created a file.php usually called, the name of the folder of my project, followed by the name of the bundle folder. That is, if my project is called JAS, and the folder of my bundle is called TutorialBundle, my Bundle JASTutorialBundle be called, that is to follow a standard symfony project. + + Registering a Bundle ~~~~~~~~~~~~~~~~~~~~ diff --git a/quick_tour/the_big_picture.rst b/quick_tour/the_big_picture.rst old mode 100644 new mode 100755 diff --git a/quick_tour/the_controller.rst b/quick_tour/the_controller.rst old mode 100644 new mode 100755 index 2d5cf289bce..c957ae2f3fa --- a/quick_tour/the_controller.rst +++ b/quick_tour/the_controller.rst @@ -56,6 +56,9 @@ match. In this example, if you try to request the ``/demo/hello/Fabien.js`` resource, you will get a 404 HTTP error, as it does not match the ``_format`` requirement. +For beginners: +the controllers are created in a folder called Controller, in our project folder and turn in the respective folder Bundle. The name of the Controller (by convention) ends in the word Controller, that is, if my Controller is called tutorial, you should be tutorialController. + Redirecting and Forwarding -------------------------- @@ -252,4 +255,4 @@ That's all there is to it, and I'm not even sure we have spent the full 10 minutes. We briefly introduced bundles in the first part, and all the features we've learned about so far are part of the core framework bundle. But thanks to bundles, everything in Symfony2 can be extended or replaced. -That's the topic of the next part of this tutorial. \ No newline at end of file +That's the topic of the next part of this tutorial. diff --git a/quick_tour/the_view.rst b/quick_tour/the_view.rst old mode 100644 new mode 100755 diff --git a/reference/YAML.rst b/reference/YAML.rst old mode 100644 new mode 100755 diff --git a/reference/bundle_configuration/DoctrineBundle.rst b/reference/bundle_configuration/DoctrineBundle.rst old mode 100644 new mode 100755 diff --git a/reference/bundle_configuration/MonologBundle.rst b/reference/bundle_configuration/MonologBundle.rst old mode 100644 new mode 100755 diff --git a/reference/bundle_configuration/TwigBundle.rst b/reference/bundle_configuration/TwigBundle.rst old mode 100644 new mode 100755 diff --git a/reference/constraints.rst b/reference/constraints.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/Choice.rst b/reference/constraints/Choice.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/Collection.rst b/reference/constraints/Collection.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/Date.rst b/reference/constraints/Date.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/DateTime.rst b/reference/constraints/DateTime.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/Email.rst b/reference/constraints/Email.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/False.rst b/reference/constraints/False.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/File.rst b/reference/constraints/File.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/Max.rst b/reference/constraints/Max.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/MaxLength.rst b/reference/constraints/MaxLength.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/Min.rst b/reference/constraints/Min.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/MinLength.rst b/reference/constraints/MinLength.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/NotBlank.rst b/reference/constraints/NotBlank.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/NotNull.rst b/reference/constraints/NotNull.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/Regex.rst b/reference/constraints/Regex.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/Time.rst b/reference/constraints/Time.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/True.rst b/reference/constraints/True.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/Type.rst b/reference/constraints/Type.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/Url.rst b/reference/constraints/Url.rst old mode 100644 new mode 100755 diff --git a/reference/constraints/Valid.rst b/reference/constraints/Valid.rst old mode 100644 new mode 100755 diff --git a/reference/dic_tags.rst b/reference/dic_tags.rst old mode 100644 new mode 100755 diff --git a/reference/forms/twig_reference.rst b/reference/forms/twig_reference.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types.rst b/reference/forms/types.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/birthday.rst b/reference/forms/types/birthday.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/checkbox.rst b/reference/forms/types/checkbox.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/choice.rst b/reference/forms/types/choice.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/collection.rst b/reference/forms/types/collection.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/country.rst b/reference/forms/types/country.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/csrf.rst b/reference/forms/types/csrf.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/date.rst b/reference/forms/types/date.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/datetime.rst b/reference/forms/types/datetime.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/entity.rst b/reference/forms/types/entity.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/file.rst b/reference/forms/types/file.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/form.rst b/reference/forms/types/form.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/hidden.rst b/reference/forms/types/hidden.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/integer.rst b/reference/forms/types/integer.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/language.rst b/reference/forms/types/language.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/locale.rst b/reference/forms/types/locale.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/map.rst.inc b/reference/forms/types/map.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/money.rst b/reference/forms/types/money.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/number.rst b/reference/forms/types/number.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/data_timezone.rst.inc b/reference/forms/types/options/data_timezone.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/days.rst.inc b/reference/forms/types/options/days.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/error_bubbling.rst.inc b/reference/forms/types/options/error_bubbling.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/expanded.rst.inc b/reference/forms/types/options/expanded.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/hours.rst.inc b/reference/forms/types/options/hours.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/label.rst.inc b/reference/forms/types/options/label.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/max_length.rst.inc b/reference/forms/types/options/max_length.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/minutes.rst.inc b/reference/forms/types/options/minutes.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/months.rst.inc b/reference/forms/types/options/months.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/multiple.rst.inc b/reference/forms/types/options/multiple.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/preferred_choices.rst.inc b/reference/forms/types/options/preferred_choices.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/read_only.rst.inc b/reference/forms/types/options/read_only.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/required.rst.inc b/reference/forms/types/options/required.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/seconds.rst.inc b/reference/forms/types/options/seconds.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/trim.rst.inc b/reference/forms/types/options/trim.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/user_timezone.rst.inc b/reference/forms/types/options/user_timezone.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/with_seconds.rst.inc b/reference/forms/types/options/with_seconds.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/options/years.rst.inc b/reference/forms/types/options/years.rst.inc old mode 100644 new mode 100755 diff --git a/reference/forms/types/password.rst b/reference/forms/types/password.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/percent.rst b/reference/forms/types/percent.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/radio.rst b/reference/forms/types/radio.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/repeated.rst b/reference/forms/types/repeated.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/text.rst b/reference/forms/types/text.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/textarea.rst b/reference/forms/types/textarea.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/time.rst b/reference/forms/types/time.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/timezone.rst b/reference/forms/types/timezone.rst old mode 100644 new mode 100755 diff --git a/reference/forms/types/url.rst b/reference/forms/types/url.rst old mode 100644 new mode 100755 diff --git a/reference/index.rst b/reference/index.rst old mode 100644 new mode 100755 diff --git a/reference/map.rst.inc b/reference/map.rst.inc old mode 100644 new mode 100755