diff options
| author | Claude Paroz <claude@2xlibre.net> | 2012-03-13 17:53:31 +0000 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2012-03-13 17:53:31 +0000 |
| commit | 78638a9a5180eb373df0d4430a2169bd49fa9e42 (patch) | |
| tree | b43ce98ad222048e8c48b64a637c250a2254a137 /docs/internals/contributing/writing-code | |
| parent | 69b96f824d2de0904f03e457c564f22fb8ed57e4 (diff) | |
Replaced http by https in djangoproject.com links
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17703 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/internals/contributing/writing-code')
| -rw-r--r-- | docs/internals/contributing/writing-code/branch-policy.txt | 12 | ||||
| -rw-r--r-- | docs/internals/contributing/writing-code/submitting-patches.txt | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/docs/internals/contributing/writing-code/branch-policy.txt b/docs/internals/contributing/writing-code/branch-policy.txt index 3e6e179a2e..c66f92722f 100644 --- a/docs/internals/contributing/writing-code/branch-policy.txt +++ b/docs/internals/contributing/writing-code/branch-policy.txt @@ -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> diff --git a/docs/internals/contributing/writing-code/submitting-patches.txt b/docs/internals/contributing/writing-code/submitting-patches.txt index f443908285..a369b6ef99 100644 --- a/docs/internals/contributing/writing-code/submitting-patches.txt +++ b/docs/internals/contributing/writing-code/submitting-patches.txt @@ -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 |
