I had a couple of issues getting QuickWiki installed.

Firstly, I don't have PostgreSQL installed, so I tried to switch to an
sqlite backend.  Apparently, you have to use 4 slashes to specify an
absolute directory with sqlalchemy.  I guess this is more of an
sqlalchemy issue, but still, it took me an hour or so to figure out
that I needed an extra forward slash.  Frustrating!

Then, when displaying FrontPage, only the first letter of the content
was being displayed.  The following patch fixed it.

--- quickwiki/controllers/page.py.old 2006-07-28 15:01:44.000000000
-0700
+++ quickwiki/controllers/page.py     2006-07-28 15:01:51.000000000
-0700
@@ -28,7 +28,7 @@
         if not page:
             page = model.Page()
             page.title = title
-        page.content = request.params['content'][0]
+        page.content = request.params['content']
         c.title = page.title
         c.content = page.get_wiki_content()
         c.message = 'Successfully saved'


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss
-~----------~----~----~----~------~----~------~--~---

Reply via email to