Merge pull request #229 from justinmayer/master

Updated outdated links and added Contribute link to README for issue #227
This commit is contained in:
Alexis Metaireau 2012-03-06 08:29:18 -08:00
commit 2de789325f
4 changed files with 10 additions and 9 deletions

View file

@ -39,14 +39,15 @@ Source code
You can access the source code via git at: https://github.com/ametaireau/pelican You can access the source code via git at: https://github.com/ametaireau/pelican
If you feel hackish, have a look at the `pelican's internals explanation If you feel hackish, have a look at the explanation of `Pelican's internals
<http://pelican.notmyidea.org/en/latest/internals.html>`_. <http://pelican.notmyidea.org/en/latest/internals.html>`_.
Feedback / Contact us Feedback / Contact us
===================== ---------------------
If you want to see new features in Pelican, don't hesitate to tell me, to clone If you want to see new features in Pelican, don't hesitate to offer suggestions,
the repository, etc. That's open source, dude! clone the repository, etc. There are many ways to `contribute
<http://pelican.notmyidea.org/en/latest/contribute.html>`_. That's open source, dude!
Contact me at "alexis at notmyidea dot org" for any request/feedback! You can Contact me at "alexis at notmyidea dot org" for any request/feedback! You can
also join the team at `#pelican on irc.freenode.org also join the team at `#pelican on irc.freenode.org

View file

@ -71,7 +71,7 @@
<footer id="contentinfo" class="body"> <footer id="contentinfo" class="body">
<address id="about" class="vcard body"> <address id="about" class="vcard body">
Proudly powered by <a href="http://alexis.notmyidea.org/pelican/">pelican</a>, which takes great advantages of <a href="http://python.org">python</a>. Proudly powered by <a href="http://pelican.notmyidea.org/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>.
</address><!-- /#about --> </address><!-- /#about -->
<p>The theme is by <a href="http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/">Smashing Magazine</a>, thanks!</p> <p>The theme is by <a href="http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/">Smashing Magazine</a>, thanks!</p>

View file

@ -29,8 +29,8 @@
{% endblock %} {% endblock %}
<footer id="contentinfo" class="body"> <footer id="contentinfo" class="body">
<address id="about" class="vcard body"> <address id="about" class="vcard body">
Proudly powered by <a href="http://docs.notmyidea.org/alexis/pelican/">pelican</a>, Proudly powered by <a href="http://pelican.notmyidea.org/">Pelican</a>,
and obviously <a href="http://python.org">python</a>! which takes great advantage of <a href="http://python.org">Python</a>.
</address><!-- /#about --> </address><!-- /#about -->
</footer><!-- /#contentinfo --> </footer><!-- /#contentinfo -->
</body> </body>

View file

@ -20,10 +20,10 @@ if sys.platform.startswith('win'):
setup( setup(
name = "pelican", name = "pelican",
version = VERSION, version = VERSION,
url = 'http://alexis.notmyidea.org/pelican/', url = 'http://pelican.notmyidea.org/',
author = 'Alexis Metaireau', author = 'Alexis Metaireau',
author_email = 'alexis@notmyidea.org', author_email = 'alexis@notmyidea.org',
description = "A tool to generate a static blog, with restructured text (or markdown) input files.", description = "A tool to generate a static blog from reStructuredText or Markdown input files.",
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
packages = ['pelican'], packages = ['pelican'],
include_package_data = True, include_package_data = True,