Comments on: a simple wiki with web.py http://www.sitepoint.com/blogs/2006/01/06/a-simple-wiki-with-webpy/ Mon, 12 May 2008 10:14:11 +0000 http://wordpress.org/?v=2.5 By: Kelvin http://www.sitepoint.com/blogs/2006/01/06/a-simple-wiki-with-webpy/#comment-118119 Kelvin Wed, 06 Dec 2006 06:29:51 +0000 http://www.sitepoint.com/blogs/?p=1369#comment-118119 You can do this when you host with <a href="http://www.dreamhost.com/r.cgi?252837" rel="nofollow">DreamHost</a> and get $30 off any hosting package with this promo code <strong>RFX30</strong>. You can do this when you host with DreamHost and get $30 off any hosting package with this promo code RFX30.

]]>
By: kaktusz http://www.sitepoint.com/blogs/2006/01/06/a-simple-wiki-with-webpy/#comment-29458 kaktusz Wed, 07 Jun 2006 23:09:51 +0000 http://www.sitepoint.com/blogs/?p=1369#comment-29458 http://webpy.org/markdown.py is retreiveng quasi empty file with markdown moved to http://www.freewisdom.org/projects/python-markdown/ http://webpy.org/markdown.py is retreiveng quasi empty file with
markdown moved to
http://www.freewisdom.org/projects/python-markdown/

]]>
By: Damjan http://www.sitepoint.com/blogs/2006/01/06/a-simple-wiki-with-webpy/#comment-17802 Damjan Fri, 14 Apr 2006 03:26:55 +0000 http://www.sitepoint.com/blogs/?p=1369#comment-17802 wikidir = os.path.realpath('./pages') will not work if you run you application through mod_python/WSGI.. You need something like this: realpath = os.path.realpath(os.path.dirname(__file__)) wikidir = os.path.join(realpath, "pages") This will work if you run it either standalone, or through mod_python. wikidir = os.path.realpath(’./pages’) will not work if you run you application through mod_python/WSGI.. You need something like this:
realpath = os.path.realpath(os.path.dirname(__file__))
wikidir = os.path.join(realpath, “pages”)
This will work if you run it either standalone, or through mod_python.

]]>
By: The Unkaizened Life » Blog Archive » links for 2006-03-01 http://www.sitepoint.com/blogs/2006/01/06/a-simple-wiki-with-webpy/#comment-17347 The Unkaizened Life » Blog Archive » links for 2006-03-01 Sun, 09 Apr 2006 00:33:43 +0000 http://www.sitepoint.com/blogs/?p=1369#comment-17347 [...] SitePoint Blogs » a simple wiki with web.py (tags: python web.py wiki) [...] […] SitePoint Blogs » a simple wiki with web.py (tags: python web.py wiki) […]

]]>
By: SitePoint Blogs » More PHP frameworks http://www.sitepoint.com/blogs/2006/01/06/a-simple-wiki-with-webpy/#comment-15841 SitePoint Blogs » More PHP frameworks Sat, 18 Mar 2006 13:31:52 +0000 http://www.sitepoint.com/blogs/?p=1369#comment-15841 [...] First up is Tonic by Paul James which labels itself as “A RESTful Web App Development Framework”. It’s interesting because the API of the controllers you write is much like web.py which I covered before here (and tonic actually came first). Some interesting ideas—and it’s one of very few paying attention to HTTP. You’ll need to pull it out of CVS BTW (no download at this time). [...] […] First up is Tonic by Paul James which labels itself as “A RESTful Web App Development Framework”. It’s interesting because the API of the controllers you write is much like web.py which I covered before here (and tonic actually came first). Some interesting ideas—and it’s one of very few paying attention to HTTP. You’ll need to pull it out of CVS BTW (no download at this time). […]

]]>
By: import this. » Blog Archive » Building a simple wiki using web.py http://www.sitepoint.com/blogs/2006/01/06/a-simple-wiki-with-webpy/#comment-14740 import this. » Blog Archive » Building a simple wiki using web.py Thu, 02 Mar 2006 01:42:14 +0000 http://www.sitepoint.com/blogs/?p=1369#comment-14740 [...] SitePoint shows how to build a simple wiki with web.py: More interesting was hacking something together with it—a very simple wiki which took about 2 hours to get to where it is … while reading the docs and tutorial. [...] […] SitePoint shows how to build a simple wiki with web.py: More interesting was hacking something together with it—a very simple wiki which took about 2 hours to get to where it is … while reading the docs and tutorial. […]

]]>
By: Kevin Dangoor http://www.sitepoint.com/blogs/2006/01/06/a-simple-wiki-with-webpy/#comment-12667 Kevin Dangoor Thu, 12 Jan 2006 19:29:52 +0000 http://www.sitepoint.com/blogs/?p=1369#comment-12667 Ugh. Half of my comment was eaten by angle brackets. I was saying that users can easy_install *Package* and get that package and all of its dependencies. This makes it much easier to use other code in your projects without worrying about difficulty installing. setuptools also makes sure that the correct version of a Python package is installed. Linux users get that from their distributions, but Mac and Windows users don't and setuptools works on all. I am the creator of TurboGears, which has gotten very popular since its release (more than 1,000 people on the high-traffic googlegroup). Part of the reason that TurboGears has been successful is that it helps out with many parts of building a web app and uses pre-existing components for the major parts (which is where easy_install has been exceedingly helpful!). It happens that a wiki example is the most popular demo I've done for TurboGears: http://www.turbogears.org/docs/wiki20/ This is a great time to be doing web programming in Python, because there are many people focused on making development easier. Ugh. Half of my comment was eaten by angle brackets.

I was saying that users can easy_install *Package* and get that package and all of its dependencies. This makes it much easier to use other code in your projects without worrying about difficulty installing. setuptools also makes sure that the correct version of a Python package is installed. Linux users get that from their distributions, but Mac and Windows users don’t and setuptools works on all.

I am the creator of TurboGears, which has gotten very popular since its release (more than 1,000 people on the high-traffic googlegroup). Part of the reason that TurboGears has been successful is that it helps out with many parts of building a web app and uses pre-existing components for the major parts (which is where easy_install has been exceedingly helpful!). It happens that a wiki example is the most popular demo I’ve done for TurboGears:
http://www.turbogears.org/docs/wiki20/

This is a great time to be doing web programming in Python, because there are many people focused on making development easier.

]]>
By: Kevin Dangoor http://www.sitepoint.com/blogs/2006/01/06/a-simple-wiki-with-webpy/#comment-12666 Kevin Dangoor Thu, 12 Jan 2006 19:22:12 +0000 http://www.sitepoint.com/blogs/?p=1369#comment-12666 Regarding templates and phphtmllib: you'd probably like STAN which sounds similar to your description. There's an example on this page: http://www.develix.com/software/ Regarding distribution: there's a new package called setuptools that produces "Python Eggs". Eggs provide good metadata about a package including dependencies. So, users on any platform can run "easy_install Regarding templates and phphtmllib: you’d probably like STAN which sounds similar to your description. There’s an example on this page:
http://www.develix.com/software/

Regarding distribution: there’s a new package called setuptools that produces “Python Eggs”. Eggs provide good metadata about a package including dependencies. So, users on any platform can run “easy_install

]]>
By: Pat Kohler http://www.sitepoint.com/blogs/2006/01/06/a-simple-wiki-with-webpy/#comment-12656 Pat Kohler Thu, 12 Jan 2006 15:15:38 +0000 http://www.sitepoint.com/blogs/?p=1369#comment-12656 I have not personally taken the time to go about playing with Python, but there is much noise about Django at <a href="http://www.djangoproject.com/" rel="nofollow">http://www.djangoproject.com/</a> and I have a post-it not telling me about <a href="http://www.diveintopython.org" rel="nofollow">http://www.diveintopython.org</a> that I have not yet looked at either. I have though, looked at a video made by a user of Django, Tom Dyson. The video can be found at <a href="http://www.throwingbeans.org/django_screencasts.html" rel="nofollow">http://www.throwingbeans.org/django_screencasts.html</a>. I have not personally taken the time to go about playing with Python, but there is much noise about Django at http://www.djangoproject.com/ and I have a post-it not telling me about http://www.diveintopython.org that I have not yet looked at either.

I have though, looked at a video made by a user of Django, Tom Dyson. The video can be found at http://www.throwingbeans.org/django_screencasts.html.

]]>
By: HarryF http://www.sitepoint.com/blogs/2006/01/06/a-simple-wiki-with-webpy/#comment-12604 HarryF Tue, 10 Jan 2006 14:28:32 +0000 http://www.sitepoint.com/blogs/?p=1369#comment-12604 <blockquote> You use the url “localhost:8080/pages/somepage” in your example, but your code implies that the url “localhost:8080/page/somepage” should be used. notice the difference (pages vs. page). In the former, you get the default web.py notfound page, in the latter, you get your behavior. </blockquote> Thanks - fixed. <blockquote> I find Zope 3 to be really really cool.. </blockquote> Sitepoint really needs a Python blogger - personally have zero experience of Zope but have read other good things about Zope3

You use the url “localhost:8080/pages/somepage” in your example, but your code implies that the url “localhost:8080/page/somepage” should be used. notice the difference (pages vs. page). In the former, you get the default web.py notfound page, in the latter, you get your behavior.

Thanks - fixed.

I find Zope 3 to be really really cool..

Sitepoint really needs a Python blogger - personally have zero experience of Zope but have read other good things about Zope3

]]>