Re: Application server

2009-03-01 Thread MilesTogoe
Jose Galvez wrote: Interesting according to their docs they've reimplemented Django in javascript. I know its a jvm appserver but I'm wondering if they'll be able to add support for wsgi standard apps (which pylons really is anyway) rather then having to use jython. The issue I have with

Re: Pylons vs Tomcat+GWT

2009-01-31 Thread MilesTogoe
Tycon wrote: I'm planning on using GWT only for client side code and doing all server calls using JSON, and not using GWT's RPC mechanism. So I guess that would avoid the problem you are talking about ? Correct me if I'm wrong, but neither Perl/CGI not Pylons/Rails etc CANNOT be used to

Re: Pylons vs Tomcat+GWT

2009-01-30 Thread MilesTogoe
Tycon wrote: I heard that many enterprise web applications use tomcat (and Google Web Toolkit to create the client side javascript code). What are the advantages of using a framework like Pylons (or Django, Rails, etc) compared to using Java framworks ? Why can't the Java framwork be used

Re: SQLAlchemy models isn't abstract layer / data model

2009-01-21 Thread MilesTogoe
chris mollis wrote: Agreed.. data persistence should never be tied to the domain model. That's precisely the problem with ActiveRecord (sic Django/RoR) whoa, first Django and RoR do work for thousands of people / sites. The question is can something else work even better? The goal is

Re: Exploring ramework futures

2009-01-19 Thread MilesTogoe
Mike Orr wrote: On Mon, Jan 19, 2009 at 2:24 PM, Noah Gift noah.g...@gmail.com wrote: Although, this might eventually move to an even more common United core that many web frameworks extend off of: http://www.openplans.org/projects/pypefitters/ Well, that requires some

Re: Announcement of Pylons Powered Site

2008-11-04 Thread MilesTogoe
Garland, Ken R wrote: Hey Jerry, I've read and follow most of what you listed and found it all most helpful. Another HUGE help for me were IRC channels like #pylons, #python, #sqlalchemy and others on freenode. This allowed me to learn from others and pass on knowledge. It is surprising how

Re: rendering xhtml

2008-10-17 Thread MilesTogoe
Mike Orr wrote: On Thu, Oct 16, 2008 at 10:44 PM, MilesTogoe [EMAIL PROTECTED] wrote: I'm using jinja and need to render some xhtml and can't seem to find any examples of how to pass the content type in the view. Can someone help out? thks. You set the content type

0.9.7 routing for root (/)

2008-10-17 Thread MilesTogoe
using pylons 0.9.7 I have the following: map.connect('/',controller='main',action='index') but when I go to http://127.0.0.1:5000 I don't get directed to /main/index - my other route settings are working correctly - is there some setting I am missing to get the root set to a controller and

rendering xhtml

2008-10-16 Thread MilesTogoe
I'm using jinja and need to render some xhtml and can't seem to find any examples of how to pass the content type in the view. Can someone help out? thks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Pylons Authentication Options

2008-10-15 Thread MilesTogoe
Mike Orr wrote: On Wed, Oct 15, 2008 at 11:03 AM, Steven [EMAIL PROTECTED] wrote: I'm a newbie trying to get a grasp on what options I have for Authentication and Authorization. From reading the docs and the pylonsbook.com I've found 2 options so far: repoze.who (ported from Zope)

render not defined

2008-10-11 Thread MilesTogoe
I'm trying to run 0.9.7 - I defined the project specifying 'jinja' as the template. I'm trying to display a template using: return render('list.html') I'm getting an error saying render is not defined I tried using an import: from pylons.templating import render_jinja as render that didn't