We are looking for a fast Zope hoster for up to four domains. Good support and in-depth knowledge about Zope are necessary. Any recommendations? Thanks! -- 'K:) -- Kai Vermehr | eBoy http://www.eboy.com
Kai Vermehr wrote:
We are looking for a fast Zope hoster for up to four domains. Good support and in-depth knowledge about Zope are necessary. Any recommendations?
I use imeme.net and have been very impressed, especially with how they handled getting pummelled by AOL's foolish bounceback policies. Their support for muliple domains is very good. --jcc -- "Code generators follow the 80/20 rule. They solve most of the problems, but not all of the problems. There are always features and edge cases that will need hand-coding. Even if code generation could build 100 percent of the application, there will still be an endless supply of boring meetings about feature design." (http://www.devx.com/java/editorial/15511)
I have a dialogue that uploads files to LocalFS. When I upload a file from my Windows machine it uploads filename.ext. When another person uploads a file from their Windows machine it uploads a file called \\complete\path\to\filename.ext. Any idea why this should be? And how to stop it? Thanks -- Mark Barratt Text Matters Information design: we help explain things using language | design | systems | process improvement ______________________________________________________ phone +44 (0)118 986 8313 email markb@textmatters.com web http://www.textmatters.com
Mark Barratt wrote:
I have a dialogue that uploads files to LocalFS. When I upload a file from my Windows machine it uploads filename.ext. When another person uploads a file from their Windows machine it uploads a file called \\complete\path\to\filename.ext.
Any idea why this should be?
It shouldn't be. But IE in at least some popular incarnations uploads the entire path of the file as a name. Naturally, this is against considerations of privacy, security, and interoperability. (Plus, probably, standards compliance.)
And how to stop it?
Glibly, use a browser that isn't broken. There are work-arounds, of course, and you can find them on the list (or simply think up a simple Python expression that will fix this.) But it's very hard to make a universal solution to the problem because of the wide variety of path notations. --jcc -- "Code generators follow the 80/20 rule. They solve most of the problems, but not all of the problems. There are always features and edge cases that will need hand-coding. Even if code generation could build 100 percent of the application, there will still be an endless supply of boring meetings about feature design." (http://www.devx.com/java/editorial/15511)
You could use the python split function and split on the final \ -- David On Nov 13, 2003, at 1:59 PM, J Cameron Cooper wrote:
Mark Barratt wrote:
I have a dialogue that uploads files to LocalFS. When I upload a file from my Windows machine it uploads filename.ext. When another person uploads a file from their Windows machine it uploads a file called \\complete\path\to\filename.ext.
Any idea why this should be?
It shouldn't be. But IE in at least some popular incarnations uploads the entire path of the file as a name. Naturally, this is against considerations of privacy, security, and interoperability. (Plus, probably, standards compliance.)
And how to stop it?
Glibly, use a browser that isn't broken. There are work-arounds, of course, and you can find them on the list (or simply think up a simple Python expression that will fix this.) But it's very hard to make a universal solution to the problem because of the wide variety of path notations.
--jcc
-- "Code generators follow the 80/20 rule. They solve most of the problems, but not all of the problems. There are always features and edge cases that will need hand-coding. Even if code generation could build 100 percent of the application, there will still be an endless supply of boring meetings about feature design." (http://www.devx.com/java/editorial/15511)
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
participants (4)
-
David Siedband -
J Cameron Cooper -
Kai Vermehr -
Mark Barratt