Re: Hold my hand, please

2007-04-20 Thread Dan Korostelev
If you don't want to do any DB interaction, I think you could just edit controllers/template.py for now and make it render specified templates like in it's documentation in that file. About common header/footer. You can just make a base template where you add ${next.body()} command, and in real

Re: Pylon with Apache

2007-04-20 Thread Dan Korostelev
On 4/20/07, Erik Jones [EMAIL PROTECTED] wrote: Actually it's the word database that's that's throwing me, admin is totally cool :) Unless I'm missing the whole point, and I doubt that I am, you guys are writing code to generate scaffold views and controllers for projects' declared models

unicode error

2007-04-20 Thread Wichert Akkerman
Using Pylons 0.9.5 with Kid I get a unicode error from formencode when I have a non-ascii character in my template (copy; in this case). Looking ath the data based to formencode kid returns the template as a utf8-encoded string, while formencode (htmlfill.py line 234) really wants a unicode

Re: Pylon with Apache

2007-04-20 Thread Erik Jones
On 4/20/07, Dan Korostelev [EMAIL PROTECTED] wrote: On 4/20/07, Erik Jones [EMAIL PROTECTED] wrote: Actually it's the word database that's that's throwing me, admin is totally cool :) Unless I'm missing the whole point, and I doubt that I am, you guys are writing code to generate

Re: Hold my hand, please

2007-04-20 Thread Heather
Shoot, did I reply to everyone's email? Well, if I did, that was a mistake :/ I don't know if it's against TOS to post emails w/o the author's permission so if it is, you have my permission if you want to post what I sent. I like to think that I'm not the only one w/ these pylons issues :D

Re: Jinja templates with Pylons?

2007-04-20 Thread Densetsu no Ero-sennin
On 19 April 2007 (Thu), Armin Ronacher wrote: Indeed I did. In SVN there is a plugin available but it requires a small modification in pylons so far. I talked with Ben Bangert about this issue, hopefully it makes it into the release version. Thanks, that worked. I was able to use the plugin

Re: Hold my hand, please

2007-04-20 Thread Shannon -jj Behrens
On 4/19/07, Heather [EMAIL PROTECTED] wrote: I've been reading through stuff on the pylons site for the past few days and feel like I'm not really getting anywhere. But I'm a girl and have no problem asking for directions :) What I want to do is pretty simple. I want to build a site for my

Re: Jinja templates with Pylons?

2007-04-20 Thread Michael Bayer
On Apr 20, 2007, at 1:50 PM, Densetsu no Ero-sennin wrote: Would be nice if it worked out of the box in the next Pylons release and become a default some day. ^_^ Jinja templates are clean and simple, while Myghty (and Mako) language looks way like PHP. :-P there actually *is* a web

Re: Software Wanted page

2007-04-20 Thread Shannon -jj Behrens
On 4/19/07, Mike Orr [EMAIL PROTECTED] wrote: On 4/19/07, Shannon -jj Behrens [EMAIL PROTECTED] wrote: On 4/13/07, Mike Orr [EMAIL PROTECTED] wrote: I've added a page to the Pylons Cookbook listing packages Pylons users would like to see written. Feel free to add stuff or take

Re: Hold my hand, please

2007-04-20 Thread __wyatt
You could maybe try out the Quick Start here: http://code.google.com/p/restler/ It's based on a RESTful controller I put together. It does require a DB, but installing SQLite, say, is pretty simple. You could replace the Monkey class in that example with a Page class and you'd have a basic

Re: Hold my hand, please

2007-04-20 Thread Heather
Thanks, Wyatt. I will definitely check it out. I already have mysql and will need to use that for my project anyway so I'll give that a whirl. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss

Re: Hold my hand, please

2007-04-20 Thread Heather
For absolute Python newbies, I recommend Django. Pylons seems to be for those of us grumpy old programmers who hate being told what to do ;) Ok, I typed out a reply and I have no idea where it went :( Bummer. Anyway, yeah, I could do Django but then I would be beaten :D On the other

Re: `paster serve' from already-running Python process?

2007-04-20 Thread Chas Emerick
On Apr 20, 3:30 pm, Ian Bicking [EMAIL PROTECTED] wrote: Chas Emerick wrote: For various reasons, I need to be able to bring up and tear down Pylons apps from an already-running Python process. I took a look at what pastescript does in the background when one executes a `paster serve