Re: [Tutor] Really basic web templating

2007-10-01 Thread Michael Langford
Check to see if mod_python is installed/installable. It would quite easily give you a very simple interface to do what you're looking for. --Michael -- Michael Langford Phone: 404-386-0495 Consulting: http://www.TierOneDesign.com/ On 9/30/07, wormwood_3 <[EMAIL PROTECTED]> wrote: > Hell

Re: [Tutor] Really basic web templating

2007-10-01 Thread wormwood_3
7 8:36:03 AM Subject: Re: [Tutor] Really basic web templating wormwood_3 wrote: > My host actually does support Python. But I don't have access to > Apache rules nor the level of access to install apps like Django, so > I am limited to just scripts I write. Webfaction gives you both

Re: [Tutor] Really basic web templating

2007-10-01 Thread Kent Johnson
wormwood_3 wrote: > My host actually does support Python. But I don't have access to > Apache rules nor the level of access to install apps like Django, so > I am limited to just scripts I write. Webfaction gives you both - you can install anything you like as long as it doesn't require superuser

Re: [Tutor] Really basic web templating

2007-10-01 Thread wormwood_3
t;[EMAIL PROTECTED]> To: wormwood_3 <[EMAIL PROTECTED]> Cc: Python Tutorlist Sent: Monday, October 1, 2007 6:44:45 AM Subject: Re: [Tutor] Really basic web templating wormwood_3 wrote: > I want > to do this because my site is on a shared hosting account, so I cannot > install a

Re: [Tutor] Really basic web templating

2007-10-01 Thread Kent Johnson
wormwood_3 wrote: > I want > to do this because my site is on a shared hosting account, so I cannot > install a web framework like Django Another option is to switch to a hosting account that supports Python. I have been working with WebFaction and I'm very happy with them; an account with Djan

Re: [Tutor] Really basic web templating

2007-10-01 Thread Martin Walsh
wormwood_3 wrote: > Well yes and no:-) This sort of application would fall under the > sprawling category of CGI, yes, and I can use Python scripts on my web > server, so it is supported. But nearly every tutorial I have seen > regarding Python and CGI only have to do with form submissions, doing >

Re: [Tutor] Really basic web templating

2007-10-01 Thread Alan Gauld
"wormwood_3" <[EMAIL PROTECTED]> wrote > ...nearly every tutorial I have seen regarding Python and CGI only > have to do with form submissions, Thats the most common use of CGI but really a form submission is just a standard HTTP GET/POST request with some predefined variables. In reality the us

Re: [Tutor] Really basic web templating

2007-09-30 Thread Steve Willoughby
use a database backend, or whatever. --steve > -Sam > > > - Original Message > From: Ian Witham <[EMAIL PROTECTED]> > To: wormwood_3 <[EMAIL PROTECTED]> > Cc: Python Tutorlist > Sent: Sunday, September 30, 2007 11:52:38 PM > Subject:

Re: [Tutor] Really basic web templating

2007-09-30 Thread wormwood_3
Sent: Sunday, September 30, 2007 11:52:38 PM Subject: Re: [Tutor] Really basic web templating On 10/1/07, wormwood_3 <[EMAIL PROTECTED]> wrote: Hello all, I am trying to think of a way to make this happen, but it may not be at all possible:-) I would like to use Python to generate page

Re: [Tutor] Really basic web templating

2007-09-30 Thread Ian Witham
On 10/1/07, wormwood_3 <[EMAIL PROTECTED]> wrote: > > Hello all, > > I am trying to think of a way to make this happen, but it may not be at > all possible:-) I would like to use Python to generate pages on demand for > my website. By this I mean, when someone hits www.mysite.com/pagex.html, I > wa

[Tutor] Really basic web templating

2007-09-30 Thread wormwood_3
Hello all, I am trying to think of a way to make this happen, but it may not be at all possible:-) I would like to use Python to generate pages on demand for my website. By this I mean, when someone hits www.mysite.com/pagex.html, I want to generate the page pagex.html via a Python script. I h