summaryrefslogtreecommitdiff
path: root/markdown/extensions
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2012-06-28 07:22:08 -0400
committerWaylan Limberg <waylan@gmail.com>2012-06-28 07:22:08 -0400
commit4dd11880a0dd9e23434230a4d1d3ec94d2ad99e4 (patch)
treeeffc37c3428e1e47cb2aa2523c890d29d5e08626 /markdown/extensions
parent3aad1dd72fa5d56c735688d91c4589531044ba02 (diff)
downloadpython-markdown-4dd11880a0dd9e23434230a4d1d3ec94d2ad99e4.tar.gz
Fixed #106. Replaced all references to freewisdom.org (except for Yuri's homepage).
Diffstat (limited to 'markdown/extensions')
-rw-r--r--markdown/extensions/attr_list.py4
-rw-r--r--markdown/extensions/codehilite.py6
-rw-r--r--markdown/extensions/fenced_code.py4
-rw-r--r--markdown/extensions/headerid.py4
-rw-r--r--markdown/extensions/html_tidy.py2
-rw-r--r--markdown/extensions/meta.py4
-rw-r--r--markdown/extensions/nl2br.py2
-rw-r--r--markdown/extensions/rss.py4
-rw-r--r--markdown/extensions/toc.py2
-rw-r--r--markdown/extensions/wikilinks.py2
10 files changed, 17 insertions, 17 deletions
diff --git a/markdown/extensions/attr_list.py b/markdown/extensions/attr_list.py
index 1a1b87f..0aa18e0 100644
--- a/markdown/extensions/attr_list.py
+++ b/markdown/extensions/attr_list.py
@@ -10,11 +10,11 @@ Copyright 2011 [Waylan Limberg](http://achinghead.com/).
Contact: markdown@freewisdom.org
-License: BSD (see ../../LICENSE for details)
+License: BSD (see ../LICENSE.md for details)
Dependencies:
* [Python 2.4+](http://python.org)
-* [Markdown 2.1+](http://www.freewisdom.org/projects/python-markdown/)
+* [Markdown 2.1+](http://packages.python.org/Markdown/)
"""
diff --git a/markdown/extensions/codehilite.py b/markdown/extensions/codehilite.py
index 0e0d32d..b022f3e 100644
--- a/markdown/extensions/codehilite.py
+++ b/markdown/extensions/codehilite.py
@@ -8,14 +8,14 @@ Adds code/syntax highlighting to standard Python-Markdown code blocks.
Copyright 2006-2008 [Waylan Limberg](http://achinghead.com/).
-Project website: <http://www.freewisdom.org/project/python-markdown/CodeHilite>
+Project website: <http://packages.python.org/Markdown/extensions/code_hilite.html>
Contact: markdown@freewisdom.org
-License: BSD (see ../docs/LICENSE for details)
+License: BSD (see ../LICENSE.md for details)
Dependencies:
* [Python 2.3+](http://python.org/)
-* [Markdown 2.0+](http://www.freewisdom.org/projects/python-markdown/)
+* [Markdown 2.0+](http://packages.python.org/Markdown/)
* [Pygments](http://pygments.org/)
"""
diff --git a/markdown/extensions/fenced_code.py b/markdown/extensions/fenced_code.py
index 95fe3b4..457b35d 100644
--- a/markdown/extensions/fenced_code.py
+++ b/markdown/extensions/fenced_code.py
@@ -63,14 +63,14 @@ Optionally backticks instead of tildes as per how github's code block markdown i
Copyright 2007-2008 [Waylan Limberg](http://achinghead.com/).
-Project website: <http://www.freewisdom.org/project/python-markdown/Fenced__Code__Blocks>
+Project website: <http://packages.python.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://www.freewisdom.org/projects/python-markdown/)
+* [Markdown 2.0+](http://packages.python.org/Markdown/)
* [Pygments (optional)](http://pygments.org)
"""
diff --git a/markdown/extensions/headerid.py b/markdown/extensions/headerid.py
index c99c4bd..3f9e4c4 100644
--- a/markdown/extensions/headerid.py
+++ b/markdown/extensions/headerid.py
@@ -65,14 +65,14 @@ Use with MetaData extension:
Copyright 2007-2011 [Waylan Limberg](http://achinghead.com/).
-Project website: <http://www.freewisdom.org/project/python-markdown/HeaderId>
+Project website: <http://packages.python.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://www.freewisdom.org/projects/python-markdown/)
+* [Markdown 2.0+](http://packages.python.org/Markdown/)
"""
diff --git a/markdown/extensions/html_tidy.py b/markdown/extensions/html_tidy.py
index 6aee083..80272a3 100644
--- a/markdown/extensions/html_tidy.py
+++ b/markdown/extensions/html_tidy.py
@@ -22,7 +22,7 @@ License: [BSD](http://www.opensource.org/licenses/bsd-license.php)
Dependencies:
* [Python2.3+](http://python.org)
-* [Markdown 2.0+](http://www.freewisdom.org/projects/python-markdown/)
+* [Markdown 2.0+](http://packages.python.org/Markdown/)
* [HTML Tidy](http://utidylib.berlios.de/)
* [uTidylib](http://utidylib.berlios.de/)
diff --git a/markdown/extensions/meta.py b/markdown/extensions/meta.py
index a3407da..a3ee6fb 100644
--- a/markdown/extensions/meta.py
+++ b/markdown/extensions/meta.py
@@ -34,10 +34,10 @@ 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://www.freewisdom.org/project/python-markdown/Meta-Data>
+Project website: <http://packages.python.org/Markdown/meta_data.html>
Contact: markdown@freewisdom.org
-License: BSD (see ../docs/LICENSE for details)
+License: BSD (see ../LICENSE.md for details)
"""
import re
diff --git a/markdown/extensions/nl2br.py b/markdown/extensions/nl2br.py
index 5ba08a9..7e227c3 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://www.freewisdom.org/projects/python-markdown/)
+* [Markdown 2.1+](http://packages.python.org/Markdown/)
"""
diff --git a/markdown/extensions/rss.py b/markdown/extensions/rss.py
index ae43220..72d6435 100644
--- a/markdown/extensions/rss.py
+++ b/markdown/extensions/rss.py
@@ -1,10 +1,10 @@
import markdown
from markdown.util import etree
-DEFAULT_URL = "http://www.freewisdom.org/projects/python-markdown/"
+DEFAULT_URL = "http://packages.python.org/Markdown/"
DEFAULT_CREATOR = "Yuri Takhteyev"
DEFAULT_TITLE = "Markdown in Python"
-GENERATOR = "http://www.freewisdom.org/projects/python-markdown/markdown2rss"
+GENERATOR = "http://packages.python.org/Markdown/extensions/rss.html"
month_map = { "Jan" : "01",
"Feb" : "02",
diff --git a/markdown/extensions/toc.py b/markdown/extensions/toc.py
index f00a249..36bd2c5 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://www.freewisdom.org/projects/python-markdown/)
+* [Markdown 2.1+](http://packages.python.org/Markdown/)
"""
import markdown
diff --git a/markdown/extensions/wikilinks.py b/markdown/extensions/wikilinks.py
index af43bba..5384adb 100644
--- a/markdown/extensions/wikilinks.py
+++ b/markdown/extensions/wikilinks.py
@@ -75,7 +75,7 @@ License: [BSD](http://www.opensource.org/licenses/bsd-license.php)
Dependencies:
* [Python 2.3+](http://python.org)
-* [Markdown 2.0+](http://www.freewisdom.org/projects/python-markdown/)
+* [Markdown 2.0+](http://packages.python.org/Markdown/)
'''
import markdown