Re: [Webware-discuss] Common Practices

2001-07-10 Thread Mike Orr
On Tue, Jul 10, 2001 at 06:03:40PM -0500, Ian Bicking wrote: > One positive part of a redirect is that once the person has submitted > the form successfully, they won't/can't reload the page and resubmit > the form. Does that screw up the entry in the history list? In other words, if they do w

Re: [Webware-discuss] Session cookies vs. Mozilla 0.9.1

2001-07-10 Thread John Reese
> So this is either a flat out Mozilla bug, or WebKit is doing something > "non-standard/typical" with cookies that IE & NN are forgiving of, but > Mozilla is not. > > I'm not a Mozilla person myself and tend to lean towards "standard is as > standard does". So if IE & NN can deal with it, esp

Re: [Webware-discuss] ModPython problems

2001-07-10 Thread Chuck Esterbrook
At 03:59 PM 7/10/2001 -0700, larry a price wrote: >OK, i did get the Webkit.cgi to work and the ModPythonAdapter seems to >work, does the correct redirect, I guess i was under the impression from >the docs that ModPythonAdapter 'required' ModPythonAppserver to work >correctly. Since that's not the

Re: [Webware-discuss] Common Practices

2001-07-10 Thread Chuck Esterbrook
At 03:40 PM 7/10/2001 -0700, Tim Roberts wrote: >Have I made my query > at all clear? Yes you have. I've used both approaches which pretty much have the pros and cons you mentioned. The browser redirect is: self.response().sendRedirect('someURL') The internal redirect is: se

Re: [Webware-discuss] Common Practices

2001-07-10 Thread Ian Bicking
"Tim Roberts" <[EMAIL PROTECTED]> wrote: > I'm pretty clear on how to implement the first two stages with > WebKit. I'm not so clear on common practice for the third. In the > past, I've just generated a simple HTTP redirect using the Refresh: > header. This has the downside of causing another

Re: [Webware-discuss] ModPython problems

2001-07-10 Thread larry a price
On Tue, 10 Jul 2001, Chuck Esterbrook wrote: > > I'm sorry to say I don't know the answer to your question, but I'm > wondering if you really want to run the ModPythonAppServer, as opposed to > the ModPython adapter which connects to a separately launched app server. > That is the usual techni

Re: [Webware-discuss] Session cookies vs. Mozilla 0.9.1

2001-07-10 Thread Chuck Esterbrook
At 09:37 PM 7/5/2001 -0700, John Reese wrote: >Sure nuff, CountVisits and SecureCountVisits work fine on IE, as on NN >4.6. > >The rundown is thus: >CountVisits and SecureCountVisits, WebWare 0.5 >== >works with IE 6.0 >works with NN 4.6 >does not work with Mozilla 0.9.1 for PowerPC; cookies a

Re: [Webware-discuss] Problems running on OpenBSD ...

2001-07-10 Thread Chuck Esterbrook
At 10:54 AM 7/6/2001 -0700, Aleksandar Kacanski wrote: >Loading context: MKBrowser at >/opt/Webware/Webware/MiddleKit/WebBrowser >Loading plug-in: MiscUtils at >/opt/Webware/Webware/MiscUtils >Loading plug-in: PSP at /opt/Webware/Webware/PSP > >snipsnip--snip---

[Webware-discuss] Common Practices

2001-07-10 Thread Tim Roberts
I'm experimenting with WebWare and have just signed on to this mailing list. I've done a couple of mid-sized web sites with plain Python CGI and HTTPgen, and I like the structure that WebKit brings. However, I'd like to learn more about the strategies that seem to work for real folks. One of

RE: [Webware-discuss] HELP

2001-07-10 Thread Chuck Esterbrook
At 11:05 AM 7/10/2001 -0700, Russell Blank wrote: >Thank you for your help on my problem... The very first problem you get is the slew of warnings from Freeze that no standard modules can be located. Is it possible that you have a Freeze.py that doesn't work properly with Python 2.1? Does Free

Re: [Webware-discuss] ModPython problems

2001-07-10 Thread Chuck Esterbrook
At 02:51 PM 7/10/2001 -0700, larry a price wrote: >Hi, i'm trying to get WebWare 0.5 working with mod_python >i keep on getting this ImportError: module _apache not found >when trying to launch the ModPythonAppServer, >mod_python seems to work fine on it's own, the only thing i can see is >that th

[Webware-discuss] ModPython problems

2001-07-10 Thread larry a price
Hi, i'm trying to get WebWare 0.5 working with mod_python i keep on getting this ImportError: module _apache not found when trying to launch the ModPythonAppServer, mod_python seems to work fine on it's own, the only thing i can see is that there is no _apachemodule.so in lib-dynload, though there

[Webware-discuss] OneShot, no error; WebKit, error

2001-07-10 Thread Trace S. Ruggles
Hi, I've got a simple page using the basic Cheetah template that produces an error with WebKit.cgi, but not with OneShot.cgi. These links are valid right now: http://www.outputlinks.com/cgi-bin/WebKit.cgi/Quizlet/Test2 => import error http://www.outputlinks.com/cgi-bin/OneShot.cgi/Quizlet/Test2

[Webware-discuss] Re: Virtual Private Server recommendation (kinda OT)

2001-07-10 Thread Tracy S. Ruggles
When I was looking for others besides Verio who offered VPS's, I really didn't find much. I'm using Verio to host our site. I'm incredibly happy with their customer service and technical support. They've all been really helpful and responsive, though it does seem expensive. We're running the S

RE: [Webware-discuss] Remote Scripting with PSP

2001-07-10 Thread Jeff Johnson
Wow, this is perfect for my site. I have a list of states and when one is chosen, I need to refresh the page to get a list of counties. Now I don't have to. I was just trying to figure out how to do this yesterday :) We're building our production server for Webware right now, once it's up I sho

RE: [Webware-discuss] HELP

2001-07-10 Thread Russell Blank
When I use Freeze.py to compile the WebKit.py (formally WebKit.cgi with Import Socket and Webwaredir = "c:/webware" added I receive the following error: W: exec statment detected at line 281 of imputil W: No module named dos W: No module named mac W: No module named nt.stat W: No module named os2

[Webware-discuss] Remote Scripting with PSP

2001-07-10 Thread David O'Callaghan
Hi, Some of you will be aware of Remote Scripting (as it is labelled by Microsoft) which basically allows a client to make calls to server functions and get values back allowing a page to update itself without requiring a reload. People have been doing this for year with hidden frames and the lik