diff options
-rw-r--r-- | community/index.md | 2 | ||||
-rw-r--r-- | docs/developers/index.md | 10 | ||||
-rw-r--r-- | docs/installing/manual_install.md | 4 | ||||
-rw-r--r-- | docs/running/security.md | 2 | ||||
-rw-r--r-- | docs/running/upgrading.md | 2 | ||||
-rw-r--r-- | es/community/index.md | 2 | ||||
-rw-r--r-- | es/docs/developers/index.md | 10 | ||||
-rw-r--r-- | es/docs/installing/manual_install.md | 4 | ||||
-rw-r--r-- | es/docs/running/security.md | 2 | ||||
-rw-r--r-- | es/docs/running/upgrading.md | 2 |
10 files changed, 18 insertions, 22 deletions
diff --git a/community/index.md b/community/index.md index f98a04226..8432d684a 100644 --- a/community/index.md +++ b/community/index.md @@ -66,4 +66,4 @@ found in the documentation: * [this documentation]({{ page.baseurl }}/docs/) — always the first place to look * [the dev wiki](https://github.com/mysociety/alaveteli/wiki) — informal or specific notes -* [docs in the repo](https://github.com/mysociety/alaveteli/tree/rails-3-develop/doc) (although we're slowly phasing these out in favour of the docs you're reading now) +* [docs in the repo](https://github.com/mysociety/alaveteli/tree/develop/doc) (although we're slowly phasing these out in favour of the docs you're reading now) diff --git a/docs/developers/index.md b/docs/developers/index.md index bcf74be16..fcfb144a8 100644 --- a/docs/developers/index.md +++ b/docs/developers/index.md @@ -27,13 +27,11 @@ title: For developers ), which include notes about our use of `gettext`. * We use the [git flow branching - model](http://nvie.com/posts/a-successful-git-branching-model/), with a small - change: currently our `develop` branch is called `rails-3-develop`, which - means that the latest development version is always found on the - [rails-3-develop - branch](https://github.com/mysociety/alaveteli/tree/rails-3-develop). The + model](http://nvie.com/posts/a-successful-git-branching-model/), + the latest development version is always found on the + [develop branch](https://github.com/mysociety/alaveteli). The latest stable version is always on the [master - branch](https://github.com/mysociety/alaveteli). If you plan to collaborate + branch](https://github.com/mysociety/alaveteli/tree/master). If you plan to collaborate on the software, you may find the [git flow extensions](https://github.com/nvie/gitflow) useful. diff --git a/docs/installing/manual_install.md b/docs/installing/manual_install.md index d4e2a6d17..0146762ca 100644 --- a/docs/installing/manual_install.md +++ b/docs/installing/manual_install.md @@ -241,10 +241,10 @@ Create the target directory and clone the Alaveteli source code in to this direc --branch master \ https://github.com/mysociety/alaveteli.git /var/www/alaveteli -This clones the master branch which always contains the latest stable release. If you want to try out the latest (possibly buggy) code you can switch to the `rails-3-develop` branch. +This clones the master branch which always contains the latest stable release. If you want to try out the latest (possibly buggy) code you can switch to the `develop` branch. pushd /var/www/alaveteli - sudo -u alaveteli git checkout rails-3-develop + sudo -u alaveteli git checkout develop sudo -u alaveteli git submodule update popd diff --git a/docs/running/security.md b/docs/running/security.md index a22c4d636..f051a0053 100644 --- a/docs/running/security.md +++ b/docs/running/security.md @@ -11,7 +11,7 @@ title: Security & Maintenance ## New Features -Only the [latest development branch](https://github.com/mysociety/alaveteli/tree/rails-3-develop/) gets new features which will be released in the next main release. +Only the [latest development branch](https://github.com/mysociety/alaveteli/tree/develop/) gets new features which will be released in the next main release. ## Bug Fixes diff --git a/docs/running/upgrading.md b/docs/running/upgrading.md index 39c18163c..4a3bdbdca 100644 --- a/docs/running/upgrading.md +++ b/docs/running/upgrading.md @@ -105,7 +105,7 @@ Deprecation notices allow us to communicate with you that some functionality wil ### What to do if you see a deprecation notice -You will usually see a deprecation notice if you have been using functionality in your theme that is now due to change or be removed. The notice should give you a fair explanation of what to do about it. Usually it will be changing or removing methods. The [changelog](https://github.com/mysociety/alaveteli/blob/rails-3-develop/doc/CHANGES.md) will include more detailed information about the deprecation and how to make the necessary changes. +You will usually see a deprecation notice if you have been using functionality in your theme that is now due to change or be removed. The notice should give you a fair explanation of what to do about it. Usually it will be changing or removing methods. The [changelog](https://github.com/mysociety/alaveteli/blob/develop/doc/CHANGES.md) will include more detailed information about the deprecation and how to make the necessary changes. If you're ever unsure, don't hesitate to ask in the [developer mailing list](https://groups.google.com/group/alaveteli-dev) or [Alaveteli IRC channel](http://www.irc.mysociety.org/). diff --git a/es/community/index.md b/es/community/index.md index 4b7e77db0..f04970934 100644 --- a/es/community/index.md +++ b/es/community/index.md @@ -64,4 +64,4 @@ Aunque consultar a otras personas es magnífico, a menudo lo que desea saber pue * [esta documentación]({{ page.baseurl }}/docs/): los documentos a consultar siempre en primer lugar * [la wiki para desarrolladores](https://github.com/mysociety/alaveteli/wiki): anotaciones informales o específicas -* [documentos del repositorio](https://github.com/mysociety/alaveteli/tree/rails-3-develop/doc) (aunque los estamos eliminando gradualmente para sustituirlos por los documentos que está leyendo actualmente) +* [documentos del repositorio](https://github.com/mysociety/alaveteli/tree/develop/doc) (aunque los estamos eliminando gradualmente para sustituirlos por los documentos que está leyendo actualmente) diff --git a/es/docs/developers/index.md b/es/docs/developers/index.md index 3b7b0eee1..fd28694b1 100644 --- a/es/docs/developers/index.md +++ b/es/docs/developers/index.md @@ -27,14 +27,12 @@ title: Para desarrolladores donde encontrará notas sobre nuestro uso de `gettext`. * Utilizamos el [modelo de ramas de flujo - de git](http://nvie.com/posts/a-successful-git-branching-model/) con un pequeño cambio: - actualmente nuestra rama `develop` se denomina `rails-3-develop`, por lo que + de git](http://nvie.com/posts/a-successful-git-branching-model/) la última versión de desarrollo siempre se halla en la - [rama - rails-3-develop](https://github.com/mysociety/alaveteli/tree/rails-3-develop). La última + [rama develop](https://github.com/mysociety/alaveteli/). La última versión estable se encuentra siempre en la [rama - maestra](https://github.com/mysociety/alaveteli). Si tiene previsto colaborar en - la elaboración del software, es posible que las [extensiones de flujo de + maestra](https://github.com/mysociety/alaveteli/tree/master). Si tiene previsto colaborar en + la elaboración del software, es posible que las [extensiones de flujo de git](https://github.com/nvie/gitflow) le resultes prácticas. * La instalación del software es un tanto compleja, pero poco a poco se vuelve más sencilla. diff --git a/es/docs/installing/manual_install.md b/es/docs/installing/manual_install.md index fdf559cbf..e90092a21 100644 --- a/es/docs/installing/manual_install.md +++ b/es/docs/installing/manual_install.md @@ -241,10 +241,10 @@ Cree el directorio de destino y clone el código fuente de Alaveteli en este dir --branch master \ https://github.com/mysociety/alaveteli.git /var/www/alaveteli -Estos comandos clonan la rama maestra, que siempre contiene la última versión estable. Si desea probar el código más reciente (con posibles errores), puede cambiar a la rama `rails-3-develop`. +Estos comandos clonan la rama maestra, que siempre contiene la última versión estable. Si desea probar el código más reciente (con posibles errores), puede cambiar a la rama `develop`. pushd /var/www/alaveteli - sudo -u alaveteli git checkout rails-3-develop + sudo -u alaveteli git checkout develop sudo -u alaveteli git submodule update popd diff --git a/es/docs/running/security.md b/es/docs/running/security.md index 28f29d3d0..7f671d708 100644 --- a/es/docs/running/security.md +++ b/es/docs/running/security.md @@ -11,7 +11,7 @@ title: Seguridad y mantenimiento ## Nuevas funcionalidades -Solo la [última rama de desarrollo](https://github.com/mysociety/alaveteli/tree/rails-3-develop/) recibe nuevas funcionalidades, que se ofrecerán en la próxima actualización principal. +Solo la [última rama de desarrollo](https://github.com/mysociety/alaveteli/tree/develop/) recibe nuevas funcionalidades, que se ofrecerán en la próxima actualización principal. ## Soluciones de errores diff --git a/es/docs/running/upgrading.md b/es/docs/running/upgrading.md index 76149bdd6..df503f505 100644 --- a/es/docs/running/upgrading.md +++ b/es/docs/running/upgrading.md @@ -104,7 +104,7 @@ Las advertencias sobre características obsoletas nos permiten comunicarle que a ### Qué hacer al ver una advertencia sobre características obsoletas -Normalmente verá una advertencia sobre características obsoletas si ha estado utilizando una funcionalidad en su tema que se va a modificar o eliminar próximamente. La advertencia debería proporcionarle suficientes explicaciones sobre qué hacer con ella. En general se trata siempre de eliminar o modificar métodos. El [registro de cambios](https://github.com/mysociety/alaveteli/blob/rails-3-develop/doc/CHANGES.md) incluirá información más detallada sobre características obsoletas y sobre cómo llevar a cabo las modificaciones pertinentes. +Normalmente verá una advertencia sobre características obsoletas si ha estado utilizando una funcionalidad en su tema que se va a modificar o eliminar próximamente. La advertencia debería proporcionarle suficientes explicaciones sobre qué hacer con ella. En general se trata siempre de eliminar o modificar métodos. El [registro de cambios](https://github.com/mysociety/alaveteli/blob/develop/doc/CHANGES.md) incluirá información más detallada sobre características obsoletas y sobre cómo llevar a cabo las modificaciones pertinentes. Si tiene alguna consulta, no dude en preguntar en la [lista de correo de desarrollo](https://groups.google.com/group/alaveteli-dev) o en [el canal IRC de Alaveteli](http://www.irc.mysociety.org/). |