Skip to content

Commit

Permalink
Use ssl links everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Dec 31, 2016
1 parent 87a3a40 commit 4208be8
Show file tree
Hide file tree
Showing 65 changed files with 532 additions and 532 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ CakePHP Documentation
[![Build Status](https://img.shields.io/travis/cakephp/docs/3.0.svg?style=flat-square)](https://travis-ci.org/cakephp/docs)

This is the official documentation for the CakePHP project. It is available
online in HTML, PDF and EPUB formats at http://book.cakephp.org.
online in HTML, PDF and EPUB formats at https://book.cakephp.org.

Contributing to the documentation is pretty simple. Please read the
documentation on contributing to the documentation over on [the
cookbook](http://book.cakephp.org/3.0/en/contributing/documentation.html) for
cookbook](https://book.cakephp.org/3.0/en/contributing/documentation.html) for
help. You can read all of the documentation within as its just in plain text
files, marked up with ReST text formatting.

Expand All @@ -21,7 +21,7 @@ Build the Documentation with Docker

Docker will let you create a container with all packages needed to build the
docs. You need to have docker installed, see the [official docs of
docker](http://docs.docker.com/mac/started/) for more information.
docker](https://docs.docker.com/mac/started/) for more information.

### Use the image on DockerHub ###

Expand Down Expand Up @@ -181,7 +181,7 @@ Contributing translations requires that you make a new directory using the two
letter name for your language. As content is translated, directories mirroring
the English content should be created with localized content. For more info,
please,
[click here](http://book.cakephp.org/3.0/en/contributing/documentation.html#new-translation-language).
[click here](https://book.cakephp.org/3.0/en/contributing/documentation.html#new-translation-language).

Making Search Work Locally
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion config/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@

# The unique identifier of the text. This can be a ISBN number
# or the project homepage.
epub_identifier = 'http://cakephp.org'
epub_identifier = 'https://cakephp.org'

# A unique identification for the text.
epub_uid = 'cakephpcookbook1393624653'
Expand Down
2 changes: 1 addition & 1 deletion en/appendices/3-0-migration-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ ApiShell Removed
----------------

The ApiShell was removed as it didn't provide any benefit over the file source
itself and the online documentation/`API <http://api.cakephp.org/>`_.
itself and the online documentation/`API <https://api.cakephp.org/>`_.

SchemaShell Removed
-------------------
Expand Down
2 changes: 1 addition & 1 deletion en/core-libraries/inflector.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ statically. Example:
``Inflector::pluralize('example')`` returns "examples".

You can try out the inflections online at `inflector.cakephp.org
<http://inflector.cakephp.org/>`_.
<https://inflector.cakephp.org/>`_.

.. _inflector-methods-summary:

Expand Down
2 changes: 1 addition & 1 deletion en/core-libraries/security.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Security
.. php:class:: Security
The `security library
<http://api.cakephp.org/3.0/class-Cake.Utility.Security.html>`_
<https://api.cakephp.org/3.0/class-Cake.Utility.Security.html>`_
handles basic security measures such as providing methods for
hashing and encrypting data.

Expand Down
2 changes: 1 addition & 1 deletion en/core-libraries/time.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ to power its ``Time`` utility. Anything you can do with ``Chronos`` and
<https://github.com/briannesbitt/Carbon>`__.

For more details on Chronos please see `the API documentation
<http://api.cakephp.org/chronos/1.0/>`_.
<https://api.cakephp.org/chronos/1.0/>`_.

.. start-time
Expand Down
4 changes: 2 additions & 2 deletions en/core-libraries/validation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Validation
The validation package in CakePHP provides features to build validators that can
validate arbitrary arrays of data with ease. You can find a `list of available
Validation rules in the API
<http://api.cakephp.org/3.0/class-Cake.Validation.Validation.html>`__.
<https://api.cakephp.org/3.0/class-Cake.Validation.Validation.html>`__.

.. _creating-validators:

Expand Down Expand Up @@ -515,7 +515,7 @@ class. The Validation class contains a variety of static methods that provide
validators for several common validation situations.

The `API documentation
<http://api.cakephp.org/3.0/class-Cake.Validation.Validation.html>`_ for the
<https://api.cakephp.org/3.0/class-Cake.Validation.Validation.html>`_ for the
``Validation`` class provides a good list of the validation rules that are
available, and their basic usage.

Expand Down
8 changes: 4 additions & 4 deletions en/core-libraries/xml.rst
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ the samples::

$xmlArray = [
'root' => [
'xmlns:' => 'http://cakephp.org',
'xmlns:' => 'https://cakephp.org',
'child' => 'value'
]
];
Expand All @@ -137,7 +137,7 @@ the samples::
$xmlArray(
'root' => [
'tag' => [
'xmlns:pref' => 'http://cakephp.org',
'xmlns:pref' => 'https://cakephp.org',
'pref:item' => [
'item 1',
'item 2'
Expand All @@ -150,11 +150,11 @@ the samples::
The value of ``$xml1`` and ``$xml2`` will be, respectively::

<?xml version="1.0"?>
<root xmlns="http://cakephp.org"><child>value</child>
<root xmlns="https://cakephp.org"><child>value</child>


<?xml version="1.0"?>
<root><tag xmlns:pref="http://cakephp.org"><pref:item>item 1</pref:item><pref:item>item 2</pref:item></tag></root>
<root><tag xmlns:pref="https://cakephp.org"><pref:item>item 1</pref:item><pref:item>item 2</pref:item></tag></root>

Creating a Child
----------------
Expand Down
2 changes: 1 addition & 1 deletion en/development/testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@ make testing responses much simpler. Some examples are::

In addition to the above assertion methods, you can also use all of the
assertions in `TestSuite
<http://api.cakephp.org/3.0/class-Cake.TestSuite.TestCase.html>`_ and those
<https://api.cakephp.org/3.0/class-Cake.TestSuite.TestCase.html>`_ and those
found in `PHPUnit
<https://phpunit.de/manual/current/en/appendixes.assertions.html>`__.

Expand Down
10 changes: 5 additions & 5 deletions en/intro/where-to-get-help.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ Where to Get Help
The Official CakePHP website
============================

`http://www.cakephp.org <http://www.cakephp.org>`_
`https://cakephp.org <https://cakephp.org>`_

The Official CakePHP website is always a great place to visit. It features links
to oft-used developer tools, screencasts, donation opportunities, and downloads.

The Cookbook
============

`http://book.cakephp.org <http://book.cakephp.org>`_
`https://book.cakephp.org <https://book.cakephp.org>`_

This manual should probably be the first place you go to get answers. As with
many other open source projects, we get new folks regularly. Try your best to
Expand All @@ -23,7 +23,7 @@ and the API have an online component.
The Bakery
==========

`http://bakery.cakephp.org <http://bakery.cakephp.org>`_
`https://bakery.cakephp.org <https://bakery.cakephp.org>`_

The CakePHP Bakery is a clearing house for all things regarding CakePHP. Check
it out for tutorials, case studies, and code examples. Once you're acquainted
Expand All @@ -33,7 +33,7 @@ instant fame and fortune.
The API
=======

`http://api.cakephp.org/ <http://api.cakephp.org/>`_
`https://api.cakephp.org/ <https://api.cakephp.org/>`_

Straight to the point and straight from the core developers, the CakePHP API
(Application Programming Interface) is the most comprehensive documentation
Expand Down Expand Up @@ -81,7 +81,7 @@ Join the CakePHP family by signing up.
Stackoverflow
=============

`http://stackoverflow.com/ <http://stackoverflow.com/questions/tagged/cakephp/>`_
`https://stackoverflow.com/ <https://stackoverflow.com/questions/tagged/cakephp/>`_

Tag your questions with ``cakephp`` and the specific version you are using to
enable existing users of stackoverflow to find your questions.
Expand Down
2 changes: 1 addition & 1 deletion en/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ Publish Your Plugin
===================

Make sure you add your plugin to
`plugins.cakephp.org <http://plugins.cakephp.org>`_. This way other people can
`plugins.cakephp.org <https://plugins.cakephp.org>`_. This way other people can
use it as composer dependency.
You can also propose your plugin to the
`awesome-cakephp list <https://github.com/FriendsOfCake/awesome-cakephp>`_.
Expand Down
4 changes: 2 additions & 2 deletions en/tutorials-and-examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ In this section, you can walk through typical CakePHP applications
to see how all of the pieces come together.

Alternatively, you can refer to the non-official CakePHP plugin repository
`CakePackages <http://plugins.cakephp.org/>`_ and the
`Bakery <http://bakery.cakephp.org/>`_ for existing applications
`CakePackages <https://plugins.cakephp.org/>`_ and the
`Bakery <https://bakery.cakephp.org/>`_ for existing applications
and components.

.. toctree::
Expand Down
4 changes: 2 additions & 2 deletions en/tutorials-and-examples/blog/part-two.rst
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ corresponding session variable. The controller's
URL. The param ``['action' => 'index']`` translates to URL /articles i.e the
index action of the ``ArticlesController``. You can refer to
:php:func:`Cake\\Routing\\Router::url()` function on the `API
<http://api.cakephp.org>`_ to see the formats in which you can specify a URL for
<https://api.cakephp.org>`_ to see the formats in which you can specify a URL for
various CakePHP functions.

Calling the ``save()`` method will check for validation errors and
Expand Down Expand Up @@ -679,7 +679,7 @@ for building more feature-rich applications.

Now that you've created a basic CakePHP application, you can either continue to
:doc:`/tutorials-and-examples/blog/part-three`, or start your own project. You
can also peruse the :doc:`/topics` or `API <http://api.cakephp.org/3.0>` to
can also peruse the :doc:`/topics` or `API <https://api.cakephp.org/3.0>` to
learn more about CakePHP.

If you need help, there are many ways to get the help you need - please see the
Expand Down
4 changes: 2 additions & 2 deletions en/views/helpers/form.rst
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ While the built-in context classes are intended to cover the basic cases you'll
encounter you may need to build a new context class if you are using a different
ORM. In these situations you need to implement the
`Cake\\View\\Form\\ContextInterface
<http://api.cakephp.org/3.0/class-Cake.View.Form.ContextInterface.html>`_ . Once
<https://api.cakephp.org/3.0/class-Cake.View.Form.ContextInterface.html>`_ . Once
you have implemented this interface you can wire your new context into the
FormHelper. It is often best to do this in a ``View.beforeRender`` event
listener, or in an application view class::
Expand Down Expand Up @@ -1627,7 +1627,7 @@ List of Templates

The list of default templates, their default format and the variables they
expect can be found at the
`FormHelper API documentation <http://api.cakephp.org/3.2/class-Cake.View.Helper.FormHelper.html#%24_defaultConfig>`_.
`FormHelper API documentation <https://api.cakephp.org/3.2/class-Cake.View.Helper.FormHelper.html#%24_defaultConfig>`_.

In addition to these templates, the ``input()`` method will attempt to use
distinct templates for each input container. For example, when creating
Expand Down
2 changes: 1 addition & 1 deletion en/views/helpers/paginator.rst
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ the PaginatorHelper available in views doesn't always need to be restricted as
such.

See the details on
`PaginatorHelper <http://api.cakephp.org/3.0/class-Cake.View.Helper.PaginatorHelper.html>`_ in
`PaginatorHelper <https://api.cakephp.org/3.0/class-Cake.View.Helper.PaginatorHelper.html>`_ in
the API. As mentioned, the PaginatorHelper also offers sorting features which
can be integrated into your table column headers:

Expand Down
2 changes: 1 addition & 1 deletion en/views/helpers/time.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ORM returns :php:class:`Cake\\I18n\\Time` instances for every ``timestamp``
and ``datetime`` column, you can use the methods there to do most tasks.
E.g. to read about the accepted formatting strings take a look at the
`Cake\\I18n\\Time::i18nFormat()
<http://api.cakephp.org/3.0/class-Cake.I18n.Time.html#_i18nFormat>`_ method.
<https://api.cakephp.org/3.0/class-Cake.I18n.Time.html#_i18nFormat>`_ method.

.. meta::
:title lang=en: TimeHelper
Expand Down
2 changes: 1 addition & 1 deletion en/views/helpers/url.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ methods for each of these asset types::
The asset helper methods were added in 3.2.4.

For further information check
`Router::url <http://api.cakephp.org/3.0/class-Cake.Routing.Router.html#_url>`_
`Router::url <https://api.cakephp.org/3.0/class-Cake.Routing.Router.html#_url>`_
in the API.

.. meta::
Expand Down
2 changes: 1 addition & 1 deletion es/contributing/documentation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ comiences a colaborar.

La documentación de CakePHP cuenta con
`integración continua <https://es.wikipedia.org/wiki/Integraci%C3%B3n_continua>`_,
así que puedes er el status de `varias ejecuciones <http://ci.cakephp.org>`_
así que puedes er el status de `varias ejecuciones <https://ci.cakephp.org>`_
en el servidor de Jenkins cuando quieras.

.. note::
Expand Down
4 changes: 2 additions & 2 deletions es/tutorials-and-examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ CakePHP que te ayudarán a comprender el framework y ver cómo se relacionan tod
las piezas.

También puedes ver otros ejemplos en:
`CakePackages <http://plugins.cakephp.org/>`_ y en
`Bakery <http://bakery.cakephp.org/>`_ encontrarás también componentes listos
`CakePackages <https://plugins.cakephp.org/>`_ y en
`Bakery <https://bakery.cakephp.org/>`_ encontrarás también componentes listos
para usar.

.. toctree::
Expand Down
4 changes: 2 additions & 2 deletions es/tutorials-and-examples/blog/part-two.rst
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ muestra el mensaje y elimina la correspondiente variable de sesión. El método
hacia otra URL. El parámetro ``['action' => 'index']`` se traduce a la URL
/articles (p.e. la acción index del controlador de artículos). Puedes echar un
ojo al método :php:func:`Cake\\Routing\\Router::url()` en la `API
<http://api.cakephp.org>`_ para ver los formatos en que puedes especificar una
<https://api.cakephp.org>`_ para ver los formatos en que puedes especificar una
URL para varias funciones de CakePHP.

Al llamar al método ``save()``, comprobará si hay errores de validación primero
Expand Down Expand Up @@ -635,7 +635,7 @@ aplicaciones.

Ahora que ya has creado una aplicación CakePHP básica, estás listo para la vida
real. Empieza tu nuevo proyecto y lee el resto del :doc:`Cookbook </index>` así
como la `API <http://api.cakephp.org>`_.
como la `API <https://api.cakephp.org>`_.

Si necesitas ayuda, hay muchos modos de encontrar la ayuda que buscas - por
favor, míralo en la página :doc:`/intro/where-to-get-help`.
Expand Down
2 changes: 1 addition & 1 deletion fr/appendices/3-0-migration-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ ApiShell Retiré
---------------

ApiShell a été retiré puisqu'il ne fournit aucun bénéfice sur le fichier
source lui-même et sur la documentation/`l'API <http://api.cakephp.org/>`_
source lui-même et sur la documentation/`l'API <https://api.cakephp.org/>`_
en-ligne.

SchemaShell Removed
Expand Down
2 changes: 1 addition & 1 deletion fr/contributing/documentation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ correspondante.
La documentation de CakePHP est `intégrée de façon continue
<http://en.wikipedia.org/wiki/Continuous_integration>`_,
donc vous pouvez vérifier le statut des
`différents builds <http://ci.cakephp.org>`_
`différents builds <https://ci.cakephp.org>`_
sur le serveur Jenkins à tout moment.

Traductions
Expand Down
2 changes: 1 addition & 1 deletion fr/core-libraries/inflector.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ est normalement accessible statiquement. Exemple:
``Inflector::pluralize('example')`` retourne "examples".

Vous pouvez essayer les inflexions en ligne sur
`inflector.cakephp.org <http://inflector.cakephp.org/>`_.
`inflector.cakephp.org <https://inflector.cakephp.org/>`_.

.. _inflector-methods-summary:

Expand Down
2 changes: 1 addition & 1 deletion fr/core-libraries/security.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Security
.. php:class:: Security
La `librairie security
<http://api.cakephp.org/3.0/class-Cake.Utility.Security.html>`_
<https://api.cakephp.org/3.0/class-Cake.Utility.Security.html>`_
gère les mesures basiques de sécurité telles que les méthodes fournies pour
le hashage et les données chiffrées.

Expand Down
2 changes: 1 addition & 1 deletion fr/core-libraries/time.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ avec ``Chronos`` et ``DateTime``, vous pouvez le faire avec ``Time`` et ``Date``
<https://github.com/briannesbitt/Carbon>`__.

Pour plus d'informations sur Chronos, rendez-vous sur
`la documentation de l'API <http://api.cakephp.org/chronos/1.0/>`_.
`la documentation de l'API <https://api.cakephp.org/chronos/1.0/>`_.

.. start-time
Expand Down
4 changes: 2 additions & 2 deletions fr/core-libraries/validation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Le package de validation dans CakePHP fournit des fonctionnalités pour
construire des validators qui peuvent valider des tableaux arbitraires de
données avec simplicité. Vous pouvez trouver une `liste des règles de validation
dans l'API
<http://api.cakephp.org/3.0/class-Cake.Validation.Validation.html>`__.
<https://api.cakephp.org/3.0/class-Cake.Validation.Validation.html>`__.

.. _creating-validators:

Expand Down Expand Up @@ -544,7 +544,7 @@ CakePHP fournit une suite basique de méthodes de validation dans la classe
fournissent des validators pour plusieurs situations de validation habituelles.

La `documentation de l'API
<http://api.cakephp.org/3.0/class-Cake.Validation.Validation.html>`_ pour la
<https://api.cakephp.org/3.0/class-Cake.Validation.Validation.html>`_ pour la
classe ``Validation`` fournit une bonne liste de règles de validation qui sont
disponibles, et leur utilisation basique.

Expand Down
8 changes: 4 additions & 4 deletions fr/core-libraries/xml.rst
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ avec le nom ``xmlns:`` vers un namespace générique ou avec le préfixe

$xmlArray = [
'root' => [
'xmlns:' => 'http://cakephp.org',
'xmlns:' => 'https://cakephp.org',
'child' => 'value'
]
];
Expand All @@ -137,7 +137,7 @@ avec le nom ``xmlns:`` vers un namespace générique ou avec le préfixe
$xmlArray(
'root' => [
'tag' => [
'xmlns:pref' => 'http://cakephp.org',
'xmlns:pref' => 'https://cakephp.org',
'pref:item' => [
'item 1',
'item 2'
Expand All @@ -150,11 +150,11 @@ avec le nom ``xmlns:`` vers un namespace générique ou avec le préfixe
La valeur de ``$xml1`` et ``$xml2`` sera, respectivement::

<?xml version="1.0"?>
<root xmlns="http://cakephp.org"><child>value</child>
<root xmlns="https://cakephp.org"><child>value</child>


<?xml version="1.0"?>
<root><tag xmlns:pref="http://cakephp.org"><pref:item>item 1</pref:item><pref:item>item 2</pref:item></tag></root>
<root><tag xmlns:pref="https://cakephp.org"><pref:item>item 1</pref:item><pref:item>item 2</pref:item></tag></root>

Créer un enfant
---------------
Expand Down
Loading

0 comments on commit 4208be8

Please sign in to comment.