Re: [Web-SIG] SQLAlchemy Queries & HTML Data Grid

2010-04-07 Thread Randy Syring
It seems you want a sortable HTML table that talks to a back end query engine. I don't see why this needs to be specific to SQLAlchemy. Well...not just sorting though. Sorting, filtering, grouping, column selection, and paging. You are right that the backend does not need to be SQLAlchemy spe

Re: [Web-SIG] SQLAlchemy Queries & HTML Data Grid

2010-04-07 Thread Aaron Watters
Randy: It seems you want a sortable HTML table that talks to a back end query engine.  I don't see why this needs to be specific to SQLAlchemy. Here is a WHIFF middleware which does some of what you are talking about (the demo formatting is basic/ugly for simplicity purposes). Demo   http://wh

Re: [Web-SIG] SQLAlchemy Queries & HTML Data Grid

2010-04-07 Thread Randy Syring
Aaron, Sorry, I must not really have explained clearly. This isn't an abstraction layer, but more like a UI component or widgit that facilities basic reporting. Look at these pages: http://www.redmine.org/issues http://trac.edgewall.org/query Both pages have a similar structure: * UI C

Re: [Web-SIG] IIS and Python CGI - how do I see more than just the form data?

2010-04-07 Thread Aaron Watters
--- On Tue, 4/6/10, J.D. Main wrote: > From: J.D. Main > Subject: Re: [Web-SIG] IIS and Python CGI - how do I see more than just the > form data? > To: web-sig@python.org > Date: Tuesday, April 6, 2010, 9:25 PM > Thanks Aaron, > > I think I will explore the WSGI interface.  However, I > did

Re: [Web-SIG] SQLAlchemy Queries & HTML Data Grid

2010-04-07 Thread Aaron Watters
Thanks Randy, very interesting. My initial reaction is that you are building a stack on top of a stack. It's not clear to me what problem you want to solve and your requirements are.  It's possible that you could find it easier to abstract directly on top of SQL or alternatively you could conside