Re: [Webware-discuss] extraPath and relative URLs to images

2002-06-30 Thread Karl Putland
Hello All, Using Webware 0.7 w/ PostgreSQL 7.2.1 and a hacked PyDO. RH7.2, Apache, WebKit.cgi Development was moving right along untill... We inserted 838 rows for testing. When we select small subset of the records, everything seems to work. But, If we select the entire set of records, and tr

RE: [Webware-discuss] extraPath and relative URLs to images

2002-06-27 Thread Jeff Johnson
> Jeff, > there's no way around this. Browsers have no idea that the > url path contains > extraPath so they calculate relative paths from the url path. > You have to > either use absolute paths or include a tag in your > html output. Tavis Ah, now it makes sense. On Cold Fusion I use a

Re: [Webware-discuss] extraPath and relative URLs to images

2002-06-27 Thread Tavis Rudd
Jeff, there's no way around this. Browsers have no idea that the url path contains extraPath so they calculate relative paths from the url path. You have to either use absolute paths or include a tag in your html output. Tavis On June 27, 2002 12:59 pm, Jeff Johnson wrote: > I'm using extraP

Re: [Webware-discuss] extraPath

2002-06-18 Thread Ian Bicking
On Tue, 2002-06-18 at 09:39, Jeff Johnson wrote: > Thanks! That seems to work just fine. Is there any way to leave the ".py" > out of the URL and still have it work? Maybe that's where I'd need > mod_rewrite? The need for the .py is a bug introduced in 0.7. I meant to strictly rewrite that pa

RE: [Webware-discuss] extraPath

2002-06-18 Thread Matt Feifarek
It works if the servlet is the default servlet at that level (main.py or index.py) So, http://domain/wk/context/extra/path/info which is really http://domain/wk/context/index.py/extra/path/info works just fine. | > Thanks! That seems to work just fine. Is there any way to | > leave the ".py"

RE: [Webware-discuss] extraPath

2002-06-18 Thread Jeff Johnson
Thanks Sam, Tracy and Geoff for the help, that's enough info to get me up and running! Bringing you mounds of caffeinated joy >>> http://thinkgeek.com/sf<<< __

RE: [Webware-discuss] extraPath

2002-06-18 Thread Geoffrey Talvola
age - > From: "Sam Brauer" <[EMAIL PROTECTED]> > To: "Jeff Johnson" <[EMAIL PROTECTED]> > Cc: "Webware Discuss" <[EMAIL PROTECTED]> > Sent: Tuesday, June 18, 2002 10:25 AM > Subject: Re: [Webware-discuss] extraPath > > > > I

Re: [Webware-discuss] extraPath

2002-06-18 Thread Jeff Johnson
;[EMAIL PROTECTED]> Cc: "Webware Discuss" <[EMAIL PROTECTED]> Sent: Tuesday, June 18, 2002 10:25 AM Subject: Re: [Webware-discuss] extraPath > In WebWare/WebKit/Configs/Application.config set 'ExtraPathInfo' to 1 to > enable use of extra paths. > Inside your ser

Re: [Webware-discuss] extraPath

2002-06-18 Thread Sam Brauer
In WebWare/WebKit/Configs/Application.config set 'ExtraPathInfo' to 1 to enable use of extra paths. Inside your servlet, you can access the extra path with: transaction.request().extraURLPath() On Tue, 18 Jun 2002, Jeff Johnson wrote: > Is there a way to use extraPath with Webware? I want to h