aboutsummaryrefslogtreecommitdiffstats
path: root/markdown
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2014-08-21 10:12:43 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2014-08-21 10:12:43 -0400
commit96636540ed04d29d6726f253ae014e89ecb0713c (patch)
tree8ba12c2a0955d6474fe396666e5cc6d208eaf28d /markdown
parentd620a31e1eb9ea529fcdf5d64419eda60d2b407e (diff)
downloadmarkdown-96636540ed04d29d6726f253ae014e89ecb0713c.tar.gz
markdown-96636540ed04d29d6726f253ae014e89ecb0713c.tar.bz2
markdown-96636540ed04d29d6726f253ae014e89ecb0713c.zip
'http://packages.python.org/Markdown/' => 'https://pythonhosted.org/Markdown/'. The former redirects to the latter anyway. Might as well point to the actual destination.
Diffstat (limited to 'markdown')
-rw-r--r--markdown/__init__.py2
-rw-r--r--markdown/__main__.py2
-rw-r--r--markdown/extensions/attr_list.py2
-rw-r--r--markdown/extensions/codehilite.py4
-rw-r--r--markdown/extensions/fenced_code.py4
-rw-r--r--markdown/extensions/headerid.py4
-rw-r--r--markdown/extensions/meta.py2
-rw-r--r--markdown/extensions/nl2br.py2
-rw-r--r--markdown/extensions/toc.py2
-rw-r--r--markdown/extensions/wikilinks.py2
10 files changed, 13 insertions, 13 deletions
diff --git a/markdown/__init__.py b/markdown/__init__.py
index 740e932..59dda4c 100644
--- a/markdown/__init__.py
+++ b/markdown/__init__.py
@@ -10,7 +10,7 @@ called from the command line.
import markdown
html = markdown.markdown(your_text_string)
-See <http://packages.python.org/Markdown/> for more
+See <https://pythonhosted.org/Markdown/> for more
information and instructions on how to extend the functionality of
Python Markdown. Read that before you try modifying this file.
diff --git a/markdown/__main__.py b/markdown/__main__.py
index 8ee8c82..b463fdc 100644
--- a/markdown/__main__.py
+++ b/markdown/__main__.py
@@ -20,7 +20,7 @@ def parse_options():
usage = """%prog [options] [INPUTFILE]
(STDIN is assumed if no INPUTFILE is given)"""
desc = "A Python implementation of John Gruber's Markdown. " \
- "http://packages.python.org/Markdown/"
+ "https://pythonhosted.org/Markdown/"
ver = "%%prog %s" % markdown.version
parser = optparse.OptionParser(usage=usage, description=desc, version=ver)
diff --git a/markdown/extensions/attr_list.py b/markdown/extensions/attr_list.py
index f725a17..55b2f1f 100644
--- a/markdown/extensions/attr_list.py
+++ b/markdown/extensions/attr_list.py
@@ -14,7 +14,7 @@ License: BSD (see ../LICENSE.md for details)
Dependencies:
* [Python 2.4+](http://python.org)
-* [Markdown 2.1+](http://packages.python.org/Markdown/)
+* [Markdown 2.1+](https://pythonhosted.org/Markdown/)
"""
diff --git a/markdown/extensions/codehilite.py b/markdown/extensions/codehilite.py
index e3c5b3d..6336cfc 100644
--- a/markdown/extensions/codehilite.py
+++ b/markdown/extensions/codehilite.py
@@ -6,14 +6,14 @@ Adds code/syntax highlighting to standard Python-Markdown code blocks.
Copyright 2006-2008 [Waylan Limberg](http://achinghead.com/).
-Project website: <http://packages.python.org/Markdown/extensions/code_hilite.html>
+Project website: <https://pythonhosted.org/Markdown/extensions/code_hilite.html>
Contact: markdown@freewisdom.org
License: BSD (see ../LICENSE.md for details)
Dependencies:
* [Python 2.3+](http://python.org/)
-* [Markdown 2.0+](http://packages.python.org/Markdown/)
+* [Markdown 2.0+](https://pythonhosted.org/Markdown/)
* [Pygments](http://pygments.org/)
"""
diff --git a/markdown/extensions/fenced_code.py b/markdown/extensions/fenced_code.py
index 25163cf..4403ccd 100644
--- a/markdown/extensions/fenced_code.py
+++ b/markdown/extensions/fenced_code.py
@@ -75,14 +75,14 @@ If the codehighlite extension and Pygments are installed, lines can be highlight
Copyright 2007-2008 [Waylan Limberg](http://achinghead.com/).
-Project website: <http://packages.python.org/Markdown/extensions/fenced_code_blocks.html>
+Project website: <https://pythonhosted.org/Markdown/extensions/fenced_code_blocks.html>
Contact: markdown@freewisdom.org
License: BSD (see ../docs/LICENSE for details)
Dependencies:
* [Python 2.4+](http://python.org)
-* [Markdown 2.0+](http://packages.python.org/Markdown/)
+* [Markdown 2.0+](https://pythonhosted.org/Markdown/)
* [Pygments (optional)](http://pygments.org)
"""
diff --git a/markdown/extensions/headerid.py b/markdown/extensions/headerid.py
index 55e09ce..f96f239 100644
--- a/markdown/extensions/headerid.py
+++ b/markdown/extensions/headerid.py
@@ -63,14 +63,14 @@ Use with MetaData extension:
Copyright 2007-2011 [Waylan Limberg](http://achinghead.com/).
-Project website: <http://packages.python.org/Markdown/extensions/header_id.html>
+Project website: <https://pythonhosted.org/Markdown/extensions/header_id.html>
Contact: markdown@freewisdom.org
License: BSD (see ../docs/LICENSE for details)
Dependencies:
* [Python 2.3+](http://python.org)
-* [Markdown 2.0+](http://packages.python.org/Markdown/)
+* [Markdown 2.0+](https://pythonhosted.org/Markdown/)
"""
diff --git a/markdown/extensions/meta.py b/markdown/extensions/meta.py
index 8de2646..3d89946 100644
--- a/markdown/extensions/meta.py
+++ b/markdown/extensions/meta.py
@@ -32,7 +32,7 @@ Make sure text without Meta Data still works (markdown < 1.6b returns a <p>).
Copyright 2007-2008 [Waylan Limberg](http://achinghead.com).
-Project website: <http://packages.python.org/Markdown/meta_data.html>
+Project website: <https://pythonhosted.org/Markdown/extensions/meta_data.html>
Contact: markdown@freewisdom.org
License: BSD (see ../LICENSE.md for details)
diff --git a/markdown/extensions/nl2br.py b/markdown/extensions/nl2br.py
index c355c13..eab4084 100644
--- a/markdown/extensions/nl2br.py
+++ b/markdown/extensions/nl2br.py
@@ -16,7 +16,7 @@ Copyright 2011 [Brian Neal](http://deathofagremmie.com/)
Dependencies:
* [Python 2.4+](http://python.org)
-* [Markdown 2.1+](http://packages.python.org/Markdown/)
+* [Markdown 2.1+](https://pythonhosted.org/Markdown/)
"""
diff --git a/markdown/extensions/toc.py b/markdown/extensions/toc.py
index f1593b2..8ab8c03 100644
--- a/markdown/extensions/toc.py
+++ b/markdown/extensions/toc.py
@@ -5,7 +5,7 @@ Table of Contents Extension for Python-Markdown
(c) 2008 [Jack Miller](http://codezen.org)
Dependencies:
-* [Markdown 2.1+](http://packages.python.org/Markdown/)
+* [Markdown 2.1+](https://pythonhosted.org/Markdown/)
"""
diff --git a/markdown/extensions/wikilinks.py b/markdown/extensions/wikilinks.py
index c2aab8f..cb20906 100644
--- a/markdown/extensions/wikilinks.py
+++ b/markdown/extensions/wikilinks.py
@@ -73,7 +73,7 @@ License: [BSD](http://www.opensource.org/licenses/bsd-license.php)
Dependencies:
* [Python 2.3+](http://python.org)
-* [Markdown 2.0+](http://packages.python.org/Markdown/)
+* [Markdown 2.0+](https://pythonhosted.org/Markdown/)
'''
from __future__ import absolute_import