Re: Ide

2008-06-18 Thread __wyatt
Wing is good if you wanna pay. Komodo Edit is pretty cool too, and it's free. -wlb On Jun 18, 2:23 pm, Rafael Hernandez S [EMAIL PROTECTED] wrote: What Ide I can use with pylons regards _ Connect to the next generation of MSN

Re: Can't start pylons app

2007-08-15 Thread __wyatt
On Aug 15, 10:01 am, Christoph Haas [EMAIL PROTECTED] wrote: On Wed, Aug 15, 2007 at 09:02:22AM -0400, Matt Feifarek wrote: On 8/15/07, Ian Bicking [EMAIL PROTECTED] wrote: Yeah; weird stuff with site-packages or easy-install.pth, perhaps? Doing python -c import pylons; print

Re: Trying to understand about Paste and web-server requirements

2007-07-25 Thread __wyatt
On Jul 25, 4:04 pm, walterbyrd [EMAIL PROTECTED] wrote: On Jul 25, 2:59 pm, Cliff Wells [EMAIL PROTECTED] wrote: It doesn't. Paste provides an HTTP server. You can let it serve directly, or, more likely, put it behind another HTTP server that can proxy (I personally recommend Nginx,

Re: SQLAlchemy and Pylons

2007-05-24 Thread __wyatt
doing something complicated. Using Elixir is like putting Table definitions and object definitions in one place, and it does all the assign_mapper business for you too. Nice 'n' tidy. There are some threads on list discussing how to set up Elixir with Pylons. __wyatt

Re: Using Elixir

2007-05-12 Thread __wyatt
the model before using Elixir's builtin one, for now I never create a `session_context` in my model, so I always end up using Elixir's. HTH, __wyatt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss

Re: Using Elixir

2007-05-12 Thread __wyatt
(model.engine) and add this to model.py: metadata.connect(engine) Also, you could (maybe even should) create your `engine` like this in model.py: from pylons.database import create_engine engine = create_engine() __wyatt --~--~-~--~~~---~--~~ You

Re: Preview of New Admin App

2007-05-12 Thread __wyatt
for more examples). It's often a capitalized version of a project's top level package, but it can be any arbitrary string. HTH, __wyatt On May 12, 12:43 pm, Max Ischenko [EMAIL PROTECTED] wrote: On 5/12/07, Gregory W. Bond [EMAIL PROTECTED] wrote: i just installed this to give it a spin

Re: redirect_to

2007-05-12 Thread __wyatt
'errors' from the session You can see this in context here: http://trac.bycycle.org/browser/apps/web/tripplanner/trunk/tripplanner/controllers/regions.py HTH, __wyatt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Preview of New Admin App

2007-05-12 Thread __wyatt
error traces if you like - just let me know Yes, please do send them. I really appreciate that you're willing to try to work through the issues. __wyatt On May 12, 8:53 pm, __wyatt [EMAIL PROTECTED] wrote: On May 12, 11:05 am, Gregory W. Bond [EMAIL PROTECTED] wrote: if you mean running

Re: RESTful Pylons

2007-04-27 Thread __wyatt
(and now I see that Ben already replied) On Apr 27, 1:13 pm, __wyatt [EMAIL PROTECTED] wrote: On Apr 27, 11:48 am, Gregory W. Bond [EMAIL PROTECTED] wrote: i'm trying to implement a RESTful Pylons controller and i can't figure out how to support client-side DELETE and PUT requests

Re: Preview of New Admin App

2007-04-27 Thread __wyatt
On Apr 27, 12:08 pm, Gregory W. Bond [EMAIL PROTECTED] wrote: On Apr 27, 12:38 pm, __wyatt [EMAIL PROTECTED] wrote: I've been working on a new admin app that I'm calling Restin (for RESTful admin). It's pretty basic right now and has some issues that need working out, but it does provide

Re: restler for complex URIs

2007-04-22 Thread __wyatt
On Apr 22, 10:33 am, Gregory W. Bond [EMAIL PROTECTED] wrote: i just discovered a href=http://code.google.com/p/restler/;restler/ a and it appears to be just what i am looking for - however the overview, while enticing, does not make it clear how i would go about handling more complex URI's

Re: restler for complex URIs

2007-04-22 Thread __wyatt
On Apr 22, 7:01 pm, Gregory W. Bond [EMAIL PROTECTED] wrote: thanks for the prompt reply wyatt - alas, two levels of nesting isn't adequate for my purposes - after looking at the routes documentation, i see that routes only supports two levels of nesting which is why, i assume, restler has

Re: Hold my hand, please

2007-04-20 Thread __wyatt
Pylons site up in running in under an hour. __wyatt On Apr 19, 6:28 pm, 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

Official First (alpha) Release of Restler, a RESTful Base Controller for Pylons

2007-04-17 Thread __wyatt
-for-pylons then try it out and let me know what you think! You can also jump straight to the Quick Start on Google Code: http://code.google.com/p/restler/ __wyatt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Requesting paid help?

2007-04-07 Thread __wyatt
in Pylons contracting adds their names to the page above (or to the equivalent page on the new doc site). Other than that, I'm not really sure. I check craigslist now and then for Python Web jobs (in the Portland, OR, area), but I've never seen anything. __wyatt On Apr 7, 4:43 pm, Stephen F

Re: New to python pylons

2007-03-28 Thread __wyatt
they be in separate files under models or in the same file __init__.py? Thanks in advance I'd recommend checking out this related post and the post it links to: http://groups.google.com/group/pylons-discuss/browse_frm/thread/f33758052225c5d2/8b96885f5b6ec327?lnk=gstq=sqlalchemyrnum=4#8b96885f5b6ec327 __wyatt

Re: Deploying, best practice

2007-03-28 Thread __wyatt
, as long as you have access to httpd.conf (or equivalent), or you're on a shared host like WebFaction. I think the docs may emphasize FastCGI because they assume FastCGI is more widely available than mod_proxy in shared hosting environments. __wyatt

Re: New to python pylons

2007-03-28 Thread __wyatt
On Mar 28, 9:57 am, __wyatt [EMAIL PROTECTED] wrote: On Mar 28, 9:05 am, fintan [EMAIL PROTECTED] wrote: ... Personally I find the way pylons.database works a little bit less explicit than I would like. Another way to create an engine is: from pylons.database import create_engine

Elixir has its own SessionContext

2007-03-26 Thread __wyatt
On Mar 23, 7:37 pm, __wyatt [EMAIL PROTECTED] wrote: Note: I couldn't reply directly to the original message[1] in the group, so I'm creating a new post. [1]http://groups.google.com/group/pylons-discuss/browse_frm/thread/1f05f... On Dec 30 2006, 12:56 am, Ben Bangert [EMAIL PROTECTED] wrote

SQLAlchemy Setup (Response to ANN: Pylons 0.9.4 Released)

2007-03-23 Thread __wyatt
.__call__(self, environ, start_response) And that's everything I have related to setting up SQLAlchemy for use in my app. I struggled with this a bit, so I hope this helps somebody (and I hope it really works!). Any corrections appreciated. __wyatt I primarily useSQLAlchemywith the SessionContext

Re: SQLAlchemy Setup (Response to ANN: Pylons 0.9.4 Released)

2007-03-23 Thread __wyatt
Uh, for some reason, the first line of my response got pushed up so that it looks like part of Ben's message. So, in case it's not clear, my response starts at From my reading of the code, ``create_engine`` *doesn't* store the __wyatt On Mar 23, 7:37 pm, __wyatt [EMAIL PROTECTED] wrote

Re: Odd deployment problem with mod_python

2007-03-19 Thread __wyatt
. __wyatt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED

Re: mod_proxy example

2007-03-12 Thread __wyatt
On Mar 12, 10:44 am, James Gardner [EMAIL PROTECTED] wrote: ... sudo a2enmod proxy sudo a2enmod proxy_http sudo a2enmod proxy_connect I don't seem to need the proxy_connect module in my setup. Is it required for anything in particular? __wyatt