From 84864a3d1433216ea0cfd0686a482fae55c748bc Mon Sep 17 00:00:00 2001 From: Jiachen Yang Date: Sat, 25 Feb 2012 17:04:24 +0900 Subject: [PATCH 1/4] fixed batchs for pypy --- bin/pelican.bat | 2 +- tools/pelican-import.bat | 2 +- tools/pelican-quickstart.bat | 2 +- tools/pelican-themes.bat | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/pelican.bat b/bin/pelican.bat index 674e1fd7..e76cc41d 100755 --- a/bin/pelican.bat +++ b/bin/pelican.bat @@ -1 +1 @@ -@python "%~dpn0" %* +@pypy "%~dpn0" %* diff --git a/tools/pelican-import.bat b/tools/pelican-import.bat index 674e1fd7..e76cc41d 100755 --- a/tools/pelican-import.bat +++ b/tools/pelican-import.bat @@ -1 +1 @@ -@python "%~dpn0" %* +@pypy "%~dpn0" %* diff --git a/tools/pelican-quickstart.bat b/tools/pelican-quickstart.bat index 674e1fd7..e76cc41d 100755 --- a/tools/pelican-quickstart.bat +++ b/tools/pelican-quickstart.bat @@ -1 +1 @@ -@python "%~dpn0" %* +@pypy "%~dpn0" %* diff --git a/tools/pelican-themes.bat b/tools/pelican-themes.bat index 674e1fd7..e76cc41d 100755 --- a/tools/pelican-themes.bat +++ b/tools/pelican-themes.bat @@ -1 +1 @@ -@python "%~dpn0" %* +@pypy "%~dpn0" %* From b772b2842ccaf212c91fc29af63c607fb3fad939 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Thu, 26 Jul 2012 02:38:16 +0200 Subject: [PATCH 2/4] moved --- README.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 README.rst diff --git a/README.rst b/README.rst new file mode 100644 index 00000000..be90c77a --- /dev/null +++ b/README.rst @@ -0,0 +1 @@ +The pelican repository moved to http://github.com/getpelican/pelican/ From a9148776a262bf8c662a0ceee84556ba43a1f282 Mon Sep 17 00:00:00 2001 From: Jiachen Yang Date: Mon, 1 Dec 2014 18:08:24 +0900 Subject: [PATCH 3/4] Expose tag count to theme template --- pelican/generators.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pelican/generators.py b/pelican/generators.py index 5122fa6d..2cb95f1a 100644 --- a/pelican/generators.py +++ b/pelican/generators.py @@ -572,7 +572,8 @@ class ArticlesGenerator(CachingGenerator): ( tag, int(math.floor(steps - (steps - 1) * math.log(count) - / (math.log(max_count)or 1))) + / (math.log(max_count)or 1))), + count ) for tag, count in tag_cloud ] From e88536962f5725de23c7567523cb987ebbc81aac Mon Sep 17 00:00:00 2001 From: Jiachen Yang Date: Mon, 1 Dec 2014 18:10:43 +0900 Subject: [PATCH 4/4] revert change to README.rst --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index 8642ebaa..58896f1d 100644 --- a/README.rst +++ b/README.rst @@ -61,3 +61,4 @@ See our `contribution submission and feedback guidelines `_. .. |coverage-status| image:: https://img.shields.io/coveralls/getpelican/pelican.svg :target: https://coveralls.io/r/getpelican/pelican :alt: Coveralls: code coverage status +