[Webware-discuss] extrapathinfo (Re: virtual paths without mod_rewrite)

2003-08-14 Thread deelan
Nick Murtagh wrote: I would like to do the same with WebKit but http://localhost/WK/MyContex/index.py/param1/param2 does not work as I expected (index.py is not recognized as file to be parsed). Is there any way to fix it? Set ExtraPathInfo to 1 in Application.config. i'm too experimenting with ext

Re: [Webware-discuss] extrapathinfo (Re: virtual paths without mod_rewrite)

2003-08-14 Thread Stephan Diehl
On Tuesday 12 August 2003 10:24, Nick Murtagh wrote: > deelan wrote: > > however there's an unwanted side-effect, in my generated > > page i have some relative URL, e.g. a couple of CSS files, > > included in the HTML code with: > > > > @import url("styles/weblog.css"); > > > > the problem is that

RE: [Webware-discuss] extrapathinfo (Re: virtual paths without mod_rewrite)

2003-08-14 Thread paul.boddie
deelan [mailto:[EMAIL PROTECTED] wrote: > > yes, this is the issue i wanted to point out with my post. > after "index" servlet everything is fictional: "param1" and "param2" > are just used to make the URL more friendly, so instead of write: > http://somehost.com/context/servlet?key=1param1&key2=pa

Re: [Webware-discuss] extrapathinfo (Re: virtual paths without mod_rewrite)

2003-08-14 Thread Nick Murtagh
david e wrote: Regarding extrapath urls. Any suggestions on how to handle "path info" with data containing slashes. Like, /zipcode/12345/name/n/a/ >>> import urllib >>> urllib.quote_plus('n/a') 'n%2Fa' >>> urllib.unquote('n%2Fa') 'n/a' --- Thi

Re: [Webware-discuss] extrapathinfo (Re: virtual paths without mod_rewrite)

2003-08-14 Thread deelan
[EMAIL PROTECTED] wrote: the problem is that webware searches for such CSS files under the /param1/param2/ folders (of course both are fictional): /WK/weblog/index/param1/param2/styles/print.css Relative URLs are converted into absolute ones by the web browser. So there is nothing Webware can do a

Re: [Webware-discuss] extrapathinfo (Re: virtual paths without mod_rewrite)

2003-08-14 Thread Randall Randall
On Sunday, August 10, 2003, at 06:40 AM, deelan wrote: the problem is that webware searches for such CSS files under the /param1/param2/ folders (of course both are fictional): /WK/weblog/index/param1/param2/styles/print.css obviously the CSS are not imported and then the page looks unstyled. for

RE: [Webware-discuss] extrapathinfo (Re: virtual paths without mod_rewrite)

2003-08-14 Thread paul.boddie
Nick Murtagh [mailto:[EMAIL PROTECTED] wrote: > > deelan wrote: > > > > @import url("styles/weblog.css"); > > > > the problem is that webware searches for such CSS files > > under the /param1/param2/ folders (of course both are > > fictional): > > > > /WK/weblog/index/param1/param2/styles/print

Re: [Webware-discuss] extrapathinfo (Re: virtual paths without mod_rewrite)

2003-08-14 Thread Veros Kaplan
deelan wrote: : >Yes, this is a real area of black magic in the sense that the application : >writer would want the relative URLs resolved in terms of the "real part" of : >the URL. : yes, this is the issue i wanted to point out with my post. : after "index" servlet everything is fictional: "param

Re: [Webware-discuss] extrapathinfo (Re: virtual paths without mod_rewrite)

2003-08-12 Thread Nick Murtagh
deelan wrote: however there's an unwanted side-effect, in my generated page i have some relative URL, e.g. a couple of CSS files, included in the HTML code with: @import url("styles/weblog.css"); the problem is that webware searches for such CSS files under the /param1/param2/ folders (of course b

Re: [Webware-discuss] extrapathinfo (Re: virtual paths without mod_rewrite)

2003-08-12 Thread Frank Barknecht
Hallo, deelan hat gesagt: // deelan wrote: > yes, this is the issue i wanted to point out with my post. > after "index" servlet everything is fictional: "param1" and "param2" > are just used to make the URL more friendly, so instead of write: > http://somehost.com/context/servlet?key=1param1&key2=