Replaced http by https in djangoproject.com links

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17703 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Claude Paroz 2012-03-13 17:53:31 +00:00
parent 69b96f824d
commit 78638a9a51
59 changed files with 112 additions and 112 deletions

View file

@ -207,7 +207,7 @@ or contentious issues -- including, most notably, votes on new core
committers -- may be held in private.
.. _searching: http://code.djangoproject.com/search
.. _searching: https://code.djangoproject.com/search
.. _custom queries: https://code.djangoproject.com/query
.. _django-developers: http://groups.google.com/group/django-developers
.. _django-users: http://groups.google.com/group/django-users

View file

@ -140,4 +140,4 @@ discovered, please follow these guidelines:
branch without permission if the commit breaks the release branch.
.. _django-developers: http://groups.google.com/group/django-developers
.. _ticket tracker: http://code.djangoproject.com/newticket
.. _ticket tracker: https://code.djangoproject.com/newticket

View file

@ -62,8 +62,8 @@ Browse the following sections to find out how:
.. _django-users: http://groups.google.com/group/django-users
.. _posting guidelines: https://code.djangoproject.com/wiki/UsingTheMailingList
.. _#django IRC channel: irc://irc.freenode.net/django
.. _community page: http://www.djangoproject.com/community/
.. _register it here: http://www.djangoproject.com/community/add/blogs/
.. _community page: https://www.djangoproject.com/community/
.. _register it here: https://www.djangoproject.com/community/add/blogs/
.. _django-developers: http://groups.google.com/group/django-developers
.. _ticket tracker: http://code.djangoproject.com/newticket
.. _easy pickings: http://code.djangoproject.com/query?status=!closed&easy=1
.. _ticket tracker: https://code.djangoproject.com/newticket
.. _easy pickings: https://code.djangoproject.com/query?status=!closed&easy=1

View file

@ -49,9 +49,9 @@ Start with these easy tasks to discover Django's development process.
several that are useful for triaging tickets and reviewing patches as
suggested above.
.. _reports page: http://code.djangoproject.com/wiki/Reports
.. _reports page: https://code.djangoproject.com/wiki/Reports
.. _unreviewed ticket: http://code.djangoproject.com/query?status=!closed&stage=Unreviewed
.. _unreviewed ticket: https://code.djangoproject.com/query?status=!closed&stage=Unreviewed
Guidelines
@ -118,7 +118,7 @@ some advice to make your work on Django more useful and rewarding.
writing the very first tests for that feature, not that you get a pass from
writing tests altogether.
.. _easy pickings: http://code.djangoproject.com/query?status=!closed&easy=1
.. _easy pickings: https://code.djangoproject.com/query?status=!closed&easy=1
.. _new-contributors-faq:

View file

@ -361,7 +361,7 @@ Then, you can help out by:
You can also find more :doc:`new-contributors`.
.. _Reports page: http://code.djangoproject.com/wiki/Reports
.. _Reports page: https://code.djangoproject.com/wiki/Reports
However, we do ask the following of all general community members working in
the ticket database:
@ -384,10 +384,10 @@ the ticket database:
or post a message to `django-developers`_. It's okay to be unsure,
but your input is still valuable.
.. _Trac: http://code.djangoproject.com/
.. _Trac: https://code.djangoproject.com/
.. _django-developers: http://groups.google.com/group/django-developers
.. _i18n branch: http://code.djangoproject.com/browser/django/branches/i18n
.. _`tags/releases`: http://code.djangoproject.com/browser/django/tags/releases
.. _`easy pickings`: http://code.djangoproject.com/query?status=!closed&easy=1
.. _`creating an account on Trac`: http://www.djangoproject.com/accounts/register/
.. _password reset page: http://www.djangoproject.com/accounts/password/reset/
.. _i18n branch: https://code.djangoproject.com/browser/django/branches/i18n
.. _`tags/releases`: https://code.djangoproject.com/browser/django/tags/releases
.. _`easy pickings`: https://code.djangoproject.com/query?status=!closed&easy=1
.. _`creating an account on Trac`: https://www.djangoproject.com/accounts/register/
.. _password reset page: https://www.djangoproject.com/accounts/password/reset/

View file

@ -43,7 +43,7 @@ for feature branches:
.. _git: http://git-scm.com/
.. _mercurial: http://mercurial.selenic.com/
.. _bazaar: http://bazaar.canonical.com/
.. _django branches: http://code.djangoproject.com/wiki/DjangoBranches
.. _django branches: https://code.djangoproject.com/wiki/DjangoBranches
Branch rules
------------
@ -104,7 +104,7 @@ To get the latest version of a branch's code, check it out using Subversion:
.. code-block:: bash
svn co http://code.djangoproject.com/svn/django/branches/<branch>/
svn co https://code.djangoproject.com/svn/django/branches/<branch>/
...where ``<branch>`` is the branch's name. See the `list of branch names`_.
@ -114,7 +114,7 @@ conversion, execute this command from within your ``django`` directory:
.. code-block:: bash
svn switch http://code.djangoproject.com/svn/django/branches/<branch>/
svn switch https://code.djangoproject.com/svn/django/branches/<branch>/
The advantage of using ``svn switch`` instead of ``svn co`` is that the
``switch`` command retains any changes you might have made to your local copy
@ -125,7 +125,7 @@ disadvantage is that it may cause conflicts with your local changes if the
(Note that if you use ``svn switch``, you don't need to point Python at the
new version, as explained in the next section.)
.. _list of branch names: http://code.djangoproject.com/browser/django/branches
.. _list of branch names: https://code.djangoproject.com/browser/django/branches
.. _pointing-python-at-the-new-django-version:
@ -156,12 +156,12 @@ uncomment the line for the branch you want to use ('trunk' in this example) and
make sure all other lines are commented::
# Trunk is a svn checkout of:
# http://code.djangoproject.com/svn/django/trunk/
# https://code.djangoproject.com/svn/django/trunk/
#
/path/to/trunk
# <branch> is a svn checkout of:
# http://code.djangoproject.com/svn/django/branches/<branch>/
# https://code.djangoproject.com/svn/django/branches/<branch>/
#
#/path/to/<branch>

View file

@ -162,5 +162,5 @@ minified scripts when submitting patches for Django's javascript.
.. _Closure Compiler: http://code.google.com/closure/compiler/
.. _django-developers: http://groups.google.com/group/django-developers
.. _list of tickets with patches: http://code.djangoproject.com/query?status=new&status=assigned&status=reopened&has_patch=1&order=priority
.. _ticket tracker: http://code.djangoproject.com/newticket
.. _list of tickets with patches: https://code.djangoproject.com/query?status=new&status=assigned&status=reopened&has_patch=1&order=priority
.. _ticket tracker: https://code.djangoproject.com/newticket

View file

@ -12,7 +12,7 @@ repository. This document covers the way the code repository is laid
out and how to work with and find things in it.
.. _an official packaged release of Django: http://www.djangoproject.com/download/
.. _an official packaged release of Django: https://www.djangoproject.com/download/
High-level overview
@ -27,13 +27,13 @@ systems, and `a free online book`_ is available to help you get up to
speed with using Subversion.
The Django Subversion repository is located online at
`code.djangoproject.com/svn <http://code.djangoproject.com/svn/>`_. `A
`code.djangoproject.com/svn <https://code.djangoproject.com/svn/>`_. `A
friendly Web-based interface for browsing the code`_ is also
available, though when using Subversion you'll always want to use the
repository address instead. At the top level of the repository are two
directories: ``django`` contains the full source code for all Django
releases, while ``djangoproject.com`` contains the source code and
templates for the `djangoproject.com <http://www.djangoproject.com/>`_
templates for the `djangoproject.com <https://www.djangoproject.com/>`_
Web site. For trying out in-development Django code, or contributing
to Django, you'll always want to check out code from some location in
the ``django`` directory.
@ -58,7 +58,7 @@ into three areas:
.. _Subversion: http://subversion.tigris.org/
.. _a free online book: http://svnbook.red-bean.com/
.. _A friendly Web-based interface for browsing the code: http://code.djangoproject.com/browser/
.. _A friendly Web-based interface for browsing the code: https://code.djangoproject.com/browser/
Working with Django's trunk
@ -70,7 +70,7 @@ developing new features, you'll want to get the code from trunk. You
can get a complete copy of this code (a "Subversion checkout") by
typing::
svn co http://code.djangoproject.com/svn/django/trunk/
svn co https://code.djangoproject.com/svn/django/trunk/
Note that this will get *all* of Django: in addition to the top-level
``django`` module containing Python code, you'll also get a copy of